diff --git a/bin/v_add_cron_job b/bin/v_add_cron_job
index 531af4f5..e7bbec07 100755
--- a/bin/v_add_cron_job
+++ b/bin/v_add_cron_job
@@ -1,6 +1,6 @@
#!/bin/bash
# info: add cron job
-# arguments: user min hour day month wday command [job]
+# options: user min hour day month wday command [job]
#
# The function adds a job to cron daemon. When executing commands, any output
# is mailed to user's email if parameter REPORTS is set to 'yes'.
@@ -78,6 +78,9 @@ sync_cron_jobs
# Vesta #
#----------------------------------------------------------#
+# Increasing cron value
+increase_user_value "$user" '$U_CRON_JOBS'
+
# Adding task to the vesta pipe
restart_schedule 'cron'
diff --git a/bin/v_add_db_base b/bin/v_add_db_base
index adfd8e74..e84a5421 100755
--- a/bin/v_add_db_base
+++ b/bin/v_add_db_base
@@ -1,6 +1,6 @@
#!/bin/bash
# info: add database
-# arguments: user db db_user db_password type [host] [encoding]
+# options: user db db_user db_password type [host] [encoding]
#
# The function creates the database concatenating username and user_db.
# Supported yypes of databases you can get using v_list_sys_config script.
diff --git a/bin/v_add_db_host b/bin/v_add_db_host
index 033533e3..e5db5b4b 100755
--- a/bin/v_add_db_host
+++ b/bin/v_add_db_host
@@ -1,6 +1,6 @@
#!/bin/bash
# info: add new database server
-# arguments: type host port db_user db_password [max_db] [tpl]
+# options: type host port db_user db_password [max_db] [tpl]
#
# The function add new database server to the server pool. It supports local
# and remote database servers, which is useful for clusters. By adding a host
diff --git a/bin/v_add_dns_domain b/bin/v_add_dns_domain
index 8e65eaa9..38baf6d0 100755
--- a/bin/v_add_dns_domain
+++ b/bin/v_add_dns_domain
@@ -1,6 +1,6 @@
#!/bin/bash
# info: add dns domain
-# arguments: user domain ip [template] [exp] [soa] [ttl]
+# options: user domain ip [template] [exp] [soa] [ttl]
#
# The function adds DNS zone with records defined in the template. If the exp
# argument isn't stated, the expiration date value will be set to next year.
diff --git a/bin/v_add_dns_domain_record b/bin/v_add_dns_domain_record
index 542ad5ff..bfe34c9e 100755
--- a/bin/v_add_dns_domain_record
+++ b/bin/v_add_dns_domain_record
@@ -1,6 +1,6 @@
#!/bin/bash
# info: add dns domain record
-# arguments: user domain record type value [id]
+# options: user domain record type value [id]
#
# The call is used for adding new DNS record. Complex records of TXT, MX and
# SRV types can be used by a filling in the 'value' argument. The function also
diff --git a/bin/v_add_sys_ip b/bin/v_add_sys_ip
index 9e4a73a0..b92b9eef 100755
--- a/bin/v_add_sys_ip
+++ b/bin/v_add_sys_ip
@@ -1,8 +1,13 @@
#!/bin/bash
# info: add system ip address
-# arguments: ip mask [interface] [user] [ip_status] [ip_name]
+# options: ip mask [interface] [user] [ip_status] [ip_name]
#
-# The function adds ip address into a system including rc scripts.
+# The function adds ip address into a system. It also creates rc scripts. You
+# can specify ip name which will be used as root domain for temporary aliases.
+# For example, if you set a1.myhosting.com as name, each new domain created on
+# this ip will automaticaly receive alias $domain.a1.myhosting.com. Of course
+# you must have wildcard record *.a1.myhosting.com pointed to ip. This feature
+# is very handy when customer wants to test domain before dns migration.
#----------------------------------------------------------#
diff --git a/bin/v_add_user b/bin/v_add_user
index 3fa90340..c2eb6af1 100755
--- a/bin/v_add_user
+++ b/bin/v_add_user
@@ -156,6 +156,7 @@ U_WEB_SSL='0'
U_DNS_DOMAINS='0'
U_DATABASES='0'
U_MAIL_DOMAINS='0'
+U_CRON_JOBS='0'
DATE='$V_DATE'" > $V_USERS/$user/user.conf
# Hiding password
diff --git a/bin/v_change_cron_job b/bin/v_change_cron_job
index d223966c..7183e469 100755
--- a/bin/v_change_cron_job
+++ b/bin/v_change_cron_job
@@ -1,6 +1,6 @@
#!/bin/bash
# info: change cron job
-# arguments: user job min hour day month wday command
+# options: user job min hour day month wday command
#
# The function is used for changing existing job. It fully replace job
# parameters with new one but with same id.
diff --git a/bin/v_change_db_password b/bin/v_change_db_password
index fb54aab4..b96d2bbb 100755
--- a/bin/v_change_db_password
+++ b/bin/v_change_db_password
@@ -1,6 +1,6 @@
#!/bin/bash
# info: change database user password
-# arguments: user db_name db_password
+# options: user db_name db_password
#
# The function for changing database user password to a database. It uses the
# full name of database as argument.
diff --git a/bin/v_change_dns_domain_exp b/bin/v_change_dns_domain_exp
index 273b7fe0..69067aa1 100755
--- a/bin/v_change_dns_domain_exp
+++ b/bin/v_change_dns_domain_exp
@@ -1,6 +1,6 @@
#!/bin/bash
# info: change dns domain expiriation date
-# arguments: user domain exp
+# options: user domain exp
#
# The function of changing the term of expiration domain's registration. The
# serial number will be refreshed automatically during update.
diff --git a/bin/v_change_dns_domain_ip b/bin/v_change_dns_domain_ip
index 3ceb8eac..21501e8b 100755
--- a/bin/v_change_dns_domain_ip
+++ b/bin/v_change_dns_domain_ip
@@ -1,6 +1,6 @@
#!/bin/bash
# info: change dns domain ip address
-# arguments: user domain ip
+# options: user domain ip
#
# The function for changing the main ip of DNS zone.
diff --git a/bin/v_change_dns_domain_record b/bin/v_change_dns_domain_record
index 58a6e668..f2c11f02 100755
--- a/bin/v_change_dns_domain_record
+++ b/bin/v_change_dns_domain_record
@@ -1,6 +1,6 @@
#!/bin/bash
# info: change dns domain record
-# arguments: user domain id record type value
+# options: user domain id record type value
#
# The function for changing DNS record.
diff --git a/bin/v_change_dns_domain_soa b/bin/v_change_dns_domain_soa
index ec978482..abebef28 100755
--- a/bin/v_change_dns_domain_soa
+++ b/bin/v_change_dns_domain_soa
@@ -1,6 +1,6 @@
#!/bin/bash
# info: change dns domain soa record
-# arguments: user domain soa
+# options: user domain soa
#
# The function for changing SOA record. This type of records can not be
# modified by v_change_dns_domain_record call.
diff --git a/bin/v_change_dns_domain_tpl b/bin/v_change_dns_domain_tpl
index 2ed4c6f7..8d1d2268 100755
--- a/bin/v_change_dns_domain_tpl
+++ b/bin/v_change_dns_domain_tpl
@@ -1,6 +1,6 @@
#!/bin/bash
# info: change dns domain template
-# arguments: user domain
+# options: user domain
#
# The function for changing the template of records. By updating old records
# will be removed and new records will be generated in accordance with
diff --git a/bin/v_change_dns_domain_ttl b/bin/v_change_dns_domain_ttl
index 7af31615..7d7b14e0 100755
--- a/bin/v_change_dns_domain_ttl
+++ b/bin/v_change_dns_domain_ttl
@@ -1,6 +1,6 @@
#!/bin/bash
# info: change dns domain ttl
-# arguments: user domain ttl
+# options: user domain ttl
#
# The function for chaning the time to live TTL parameter for all records.
diff --git a/bin/v_change_sys_config_value b/bin/v_change_sys_config_value
index 7cf04251..11e99692 100755
--- a/bin/v_change_sys_config_value
+++ b/bin/v_change_sys_config_value
@@ -1,5 +1,10 @@
#!/bin/bash
-# info: changing sysconfig value
+# info: change sysconfig value
+# options: key value
+#
+# The function is for changing main config settings such as COMPANY_NAME or
+# COMPANY_EMAIL and so on.
+
#----------------------------------------------------------#
# Variable&Function #
@@ -29,8 +34,8 @@ format_validation 'key'
check_ckey=$(grep "^$key='" $V_CONF/vesta.conf)
if [ -z "$check_ckey" ]; then
echo "Error: key not found"
- log_event 'debug' "$E_KEY_INVALID $V_EVENT"
- exit $E_KEY_INVALID
+ log_event 'debug' "$E_INVALID $V_EVENT"
+ exit $E_INVALID
fi
diff --git a/bin/v_change_sys_ip_name b/bin/v_change_sys_ip_name
index d2f07b01..d0c425d1 100755
--- a/bin/v_change_sys_ip_name
+++ b/bin/v_change_sys_ip_name
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: changing ip name
+# info: change ip name
+# options: ip name
+#
+# The function for changing dns domain associated with ip.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_change_sys_ip_owner b/bin/v_change_sys_ip_owner
index d3761a0b..ac269fc2 100755
--- a/bin/v_change_sys_ip_owner
+++ b/bin/v_change_sys_ip_owner
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: changing ip owner
+# info: change ip owner
+# options: ip user
+#
+# The function of changing ip address ownership.
+
#----------------------------------------------------------#
# Variable&Function #
@@ -9,7 +13,6 @@
ip=$1
user=$2
-
# Importing variables
source $VESTA/conf/vars.conf
source $V_CONF/vesta.conf
diff --git a/bin/v_change_sys_ip_status b/bin/v_change_sys_ip_status
index 21795dd0..9999609e 100755
--- a/bin/v_change_sys_ip_status
+++ b/bin/v_change_sys_ip_status
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: changing ip status
+# info: change ip status
+# options: ip ip_status
+#
+# The function of changing an ip address's status.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_change_user_package b/bin/v_change_user_package
index 1b0c7f71..794cbdcf 100755
--- a/bin/v_change_user_package
+++ b/bin/v_change_user_package
@@ -84,6 +84,7 @@ BACKUPS='$BACKUPS'
WEB_TPL='$WEB_TPL'
SUSPENDED='$SUSPENDED'
CONTACT='$CONTACT'
+RKEY='$RKEY'
REPORTS='$REPORTS'
IP_OWNED='$IP_OWNED'
U_DIR_DISK='$U_DIR_DISK'
@@ -94,6 +95,7 @@ U_WEB_SSL='$U_WEB_SSL'
U_DNS_DOMAINS='$U_DNS_DOMAINS'
U_DATABASES='$U_DATABASES'
U_MAIL_DOMAINS='$U_MAIL_DOMAINS'
+U_CRON_JOBS='$U_CRON_JOBS'
DATE='$DATE'" > $V_USERS/$user/user.conf
}
diff --git a/bin/v_change_web_domain_sslcert b/bin/v_change_web_domain_sslcert
index 1a36e7f7..923c3476 100755
--- a/bin/v_change_web_domain_sslcert
+++ b/bin/v_change_web_domain_sslcert
@@ -23,10 +23,10 @@ source $V_FUNC/domain.func
#----------------------------------------------------------#
# Checking arg number
-check_args '3' "$#" 'user domain certificate'
+check_args '3' "$#" 'user domain ssl_dir'
# Checking argument format
-format_validation 'user' 'domain' 'ssl'
+format_validation 'user' 'domain' 'ssl_dir'
# Checking web system is enabled
is_system_enabled 'web'
diff --git a/bin/v_change_web_domain_sslhome b/bin/v_change_web_domain_sslhome
index 2a493d3d..44f65836 100755
--- a/bin/v_change_web_domain_sslhome
+++ b/bin/v_change_web_domain_sslhome
@@ -23,7 +23,7 @@ source $V_FUNC/domain.func
#----------------------------------------------------------#
# Checking arg number
-check_args '3' "$#" 'user domain sslhome'
+check_args '3' "$#" 'user domain ssl_home'
# Checking argument format
format_validation 'user' 'domain'
diff --git a/bin/v_delete_cron_job b/bin/v_delete_cron_job
index 4e8406be..f867df9a 100755
--- a/bin/v_delete_cron_job
+++ b/bin/v_delete_cron_job
@@ -1,6 +1,6 @@
#!/bin/bash
# info: delete cron job
-# arguments: user job
+# options: user job
#
# The function deletes cron job.
@@ -58,6 +58,9 @@ sync_cron_jobs
# Vesta #
#----------------------------------------------------------#
+# Decreasing cron value
+decrease_user_value "$user" '$U_CRON_JOBS'
+
# Adding task to the vesta pipe
restart_schedule 'cron'
diff --git a/bin/v_delete_db_base b/bin/v_delete_db_base
index f22e5406..67e36459 100755
--- a/bin/v_delete_db_base
+++ b/bin/v_delete_db_base
@@ -1,6 +1,6 @@
#!/bin/bash
# info: delete database
-# arguments: user database
+# options: user database
#
# The function for deleting the database. If database user have access to
# another database, he will not be deleted.
diff --git a/bin/v_delete_db_dbases b/bin/v_delete_db_dbases
index 29bafcbd..5c3fc7ab 100755
--- a/bin/v_delete_db_dbases
+++ b/bin/v_delete_db_dbases
@@ -1,6 +1,6 @@
#!/bin/bash
# info: delete user databases
-# arguments: user
+# options: user
#
# The function deletes all user databases.
diff --git a/bin/v_delete_db_host b/bin/v_delete_db_host
index dfc8ef20..5e69ac49 100755
--- a/bin/v_delete_db_host
+++ b/bin/v_delete_db_host
@@ -1,6 +1,6 @@
#!/bin/bash
# info: delete database serve
-# arguments: type host
+# options: type host
#
# The function for deleting the database host from vesta configuration. It will
# be deleted if there are no databases created on it only.
diff --git a/bin/v_delete_dns_domain b/bin/v_delete_dns_domain
index 232c9371..090dffc0 100755
--- a/bin/v_delete_dns_domain
+++ b/bin/v_delete_dns_domain
@@ -1,6 +1,6 @@
#!/bin/bash
# info: delite dns domain
-# arguments: user domain
+# options: user domain
#
# The function for deleting DNS domain. By deleting it all records will also be
# deleted.
diff --git a/bin/v_delete_dns_domain_record b/bin/v_delete_dns_domain_record
index aa37c2c9..35325f4d 100755
--- a/bin/v_delete_dns_domain_record
+++ b/bin/v_delete_dns_domain_record
@@ -1,6 +1,6 @@
#!/bin/bash
# info: delete dns record
-# arguments: user domain id
+# options: user domain id
#
# The function for deleting a certain record of DNS zone.
diff --git a/bin/v_delete_dns_domains b/bin/v_delete_dns_domains
index 2351c8ba..1583b3c2 100755
--- a/bin/v_delete_dns_domains
+++ b/bin/v_delete_dns_domains
@@ -1,6 +1,6 @@
#!/bin/bash
# info: delete dns domains
-# arguments: user
+# options: user
#
# The function for deleting all users DNS domains.
diff --git a/bin/v_delete_sys_ip b/bin/v_delete_sys_ip
index 02738f18..de0821c6 100755
--- a/bin/v_delete_sys_ip
+++ b/bin/v_delete_sys_ip
@@ -1,5 +1,10 @@
#!/bin/bash
-# info: deleting system ip
+# info: delete system ip
+# options: ip
+#
+# The function for deleting a system ip. It does not allow to delete first ip
+# on interface and do not allow to delete ip which is used by a web domain.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_get_dns_domain_value b/bin/v_get_dns_domain_value
index b776b13a..ab0716de 100755
--- a/bin/v_get_dns_domain_value
+++ b/bin/v_get_dns_domain_value
@@ -1,6 +1,6 @@
#!/bin/bash
# info: get dns domain value
-# arguments: user domain key
+# options: user domain key
#
# The function for getting a certain DNS domain parameter.
diff --git a/bin/v_list_cron_jobs b/bin/v_list_cron_jobs
index 1deac5c9..b9ee6998 100755
--- a/bin/v_list_cron_jobs
+++ b/bin/v_list_cron_jobs
@@ -1,6 +1,6 @@
#!/bin/bash
# info: list user cron jobs
-# arguments: user [format]
+# options: user [format]
#
# The function for obtaining the list of all users cron jobs.
diff --git a/bin/v_list_db_base b/bin/v_list_db_base
index 4a95a594..93ffe0f1 100755
--- a/bin/v_list_db_base
+++ b/bin/v_list_db_base
@@ -1,6 +1,6 @@
#!/bin/bash
# info: list database
-# arguments: user database [format]
+# options: user database [format]
#
# The function for obtaining of all database's parameters.
diff --git a/bin/v_list_db_bases b/bin/v_list_db_bases
index 628bcce9..33200c42 100755
--- a/bin/v_list_db_bases
+++ b/bin/v_list_db_bases
@@ -1,6 +1,6 @@
#!/bin/bash
# info: listing data bases
-# arguments: user [format]
+# options: user [format]
#
# The function for obtaining the list of all user's databases.
diff --git a/bin/v_list_db_host b/bin/v_list_db_host
index fda87178..7b4ab032 100755
--- a/bin/v_list_db_host
+++ b/bin/v_list_db_host
@@ -1,6 +1,6 @@
#!/bin/bash
# info: list database host
-# arguments: type host [format]
+# options: type host [format]
#
# The function for obtaining host's database parameters.
diff --git a/bin/v_list_db_hosts b/bin/v_list_db_hosts
index 11964ad2..f7c271a8 100755
--- a/bin/v_list_db_hosts
+++ b/bin/v_list_db_hosts
@@ -1,6 +1,6 @@
#!/bin/bash
# info: list data base servers
-# arguments: type [format]
+# options: type [format]
#
# The function for obtaining the list of all hosts of the same databases' type.
diff --git a/bin/v_list_dns_domain b/bin/v_list_dns_domain
index 72b5fee8..2f6bfd96 100755
--- a/bin/v_list_dns_domain
+++ b/bin/v_list_dns_domain
@@ -1,6 +1,6 @@
#!/bin/bash
# info: list dns domain
-# arguments: user domain [format]
+# options: user domain [format]
#
# The function for getting all DNS domain's parameters.
diff --git a/bin/v_list_dns_domains b/bin/v_list_dns_domains
index 7a76d0bc..5734f5a4 100755
--- a/bin/v_list_dns_domains
+++ b/bin/v_list_dns_domains
@@ -1,6 +1,6 @@
#!/bin/bash
# info: list dns domains
-# arguments: user [format]
+# options: user [format]
#
# The function for obtaining all DNS domains of a user.
diff --git a/bin/v_list_dns_template b/bin/v_list_dns_template
index 1654c7b5..d0961dff 100755
--- a/bin/v_list_dns_template
+++ b/bin/v_list_dns_template
@@ -1,6 +1,6 @@
#!/bin/bash
# info: list dns template
-# arguments: template [format]
+# options: template [format]
#
# The function for obtaining the DNS template parameters.
diff --git a/bin/v_list_dns_templates b/bin/v_list_dns_templates
index bdfecd29..5b55d10c 100755
--- a/bin/v_list_dns_templates
+++ b/bin/v_list_dns_templates
@@ -1,6 +1,6 @@
#!/bin/bash
# info: list dns templates
-# arguments: [format]
+# options: [format]
#
# The function for obtaining the list of all DNS templates available.
diff --git a/bin/v_list_sys_config b/bin/v_list_sys_config
index 41b2d231..808193b7 100755
--- a/bin/v_list_sys_config
+++ b/bin/v_list_sys_config
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: listing system config
+# info: list system config
+# options: [format]
+#
+# The function for obtaining the list of system parameters.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_list_sys_interfaces b/bin/v_list_sys_interfaces
index fe5e4d39..f35fb080 100755
--- a/bin/v_list_sys_interfaces
+++ b/bin/v_list_sys_interfaces
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: listing system interfaces
+# info: list system interfaces
+# options: [format]
+#
+# The function for obtaining the list of network interfaces.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_list_sys_ip b/bin/v_list_sys_ip
index 6cfa1bc6..98744c1f 100755
--- a/bin/v_list_sys_ip
+++ b/bin/v_list_sys_ip
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: listing system ip
+# info: list system ip
+# options: ip [format]
+#
+# The function for getting the list of system ip parameters.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_list_sys_ips b/bin/v_list_sys_ips
index f98831d2..c381da53 100755
--- a/bin/v_list_sys_ips
+++ b/bin/v_list_sys_ips
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: listing system ips
+# info: list system ips
+# options: [format]
+#
+# The function for obtaining the list of system ip's.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_list_sys_rrd b/bin/v_list_sys_rrd
index 26a1f979..433230da 100755
--- a/bin/v_list_sys_rrd
+++ b/bin/v_list_sys_rrd
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: listing available system rrd charts
+# info: list system rrd charts
+# options: [format]
+#
+# List available rrd graphics, its titles and paths.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_list_user b/bin/v_list_user
index 18917afa..9a1ea029 100755
--- a/bin/v_list_user
+++ b/bin/v_list_user
@@ -94,7 +94,7 @@ fields='$USER $FNAME $LNAME $PACKAGE $WEB_DOMAINS $WEB_SSL $WEB_ALIASES
$DATABASES $MAIL_DOMAINS $MAIL_BOXES $MAIL_FORWARDERS $DNS_DOMAINS
$DISK_QUOTA $BANDWIDTH $NS $SHELL $BACKUPS $WEB_TPL $SUSPENDED $CONTACT
$RKEY $REPORTS $IP_OWNED $U_DIR_DISK $U_DISK $U_BANDWIDTH $U_WEB_DOMAINS
- $U_WEB_SSL $U_DNS_DOMAINS $U_DATABASES $U_MAIL_DOMAINS $DATE'
+ $U_WEB_SSL $U_DNS_DOMAINS $U_DATABASES $U_MAIL_DOMAINS $U_CRON_JOBS $DATE'
# Listing user
case $format in
diff --git a/bin/v_list_users b/bin/v_list_users
index 1a12b697..56b46bb7 100755
--- a/bin/v_list_users
+++ b/bin/v_list_users
@@ -91,7 +91,7 @@ fields="$fields \$DNS_DOMAINS \$DISK_QUOTA \$BANDWIDTH \$NS \$SHELL \$BACKUPS"
fields="$fields \$WEB_TPL \$SUSPENDED \$CONTACT \$RKEY \$REPORTS \$IP_OWNED"
fields="$fields \$U_DIR_DISK \$U_DISK \$U_BANDWIDTH \$U_WEB_DOMAINS"
fields="$fields \$U_WEB_SSL \$U_DNS_DOMAINS \$U_DATABASES \$U_MAIL_DOMAINS"
-fields="$fields \$DATE"
+fields="$fields \$U_CRON_JOBS \$DATE"
# Listing domains
case $format in
diff --git a/bin/v_rebuild_cron_jobs b/bin/v_rebuild_cron_jobs
index c7782aa8..c85116e4 100755
--- a/bin/v_rebuild_cron_jobs
+++ b/bin/v_rebuild_cron_jobs
@@ -1,6 +1,6 @@
#!/bin/bash
# info: rebuild cron jobs
-# arguments: user
+# options: user
#
# The function rebuilds system cron config file for specified user.
diff --git a/bin/v_rebuild_dns_domains b/bin/v_rebuild_dns_domains
index 37f0724e..b351b102 100755
--- a/bin/v_rebuild_dns_domains
+++ b/bin/v_rebuild_dns_domains
@@ -1,6 +1,6 @@
#!/bin/bash
# info: rebuild dns domains
-# arguments: user
+# options: user
#
# The function rebuilds BIND configuration files for all dns domains.
diff --git a/bin/v_restart_cron b/bin/v_restart_cron
index 642e2028..cf1e7582 100755
--- a/bin/v_restart_cron
+++ b/bin/v_restart_cron
@@ -1,6 +1,6 @@
#!/bin/bash
# info: restart cron service
-# arguments: none
+# options: none
#
# The function tells crond service to reread its configuration files.
diff --git a/bin/v_restart_dns b/bin/v_restart_dns
index a5c8540d..1f3cd75a 100755
--- a/bin/v_restart_dns
+++ b/bin/v_restart_dns
@@ -1,6 +1,6 @@
#!/bin/bash
# info: restart dns service
-# arguments: none
+# options: none
#
# The function tells BIND service to reload dns zone files.
diff --git a/bin/v_suspend_cron_job b/bin/v_suspend_cron_job
index 702ca2b2..1cde5448 100755
--- a/bin/v_suspend_cron_job
+++ b/bin/v_suspend_cron_job
@@ -1,6 +1,6 @@
#!/bin/bash
# info: suspend cron job
-# arguments: user job
+# options: user job
#
# The function suspends a certain job of the cron scheduler.
diff --git a/bin/v_suspend_cron_jobs b/bin/v_suspend_cron_jobs
index 879068ae..39f2c0f7 100755
--- a/bin/v_suspend_cron_jobs
+++ b/bin/v_suspend_cron_jobs
@@ -1,6 +1,6 @@
#!/bin/bash
# info: Suspending sys cron jobs
-# arguments: user
+# options: user
#
# The function suspends all user cron jobs.
diff --git a/bin/v_suspend_db_base b/bin/v_suspend_db_base
index 4d520496..f31d6cd0 100755
--- a/bin/v_suspend_db_base
+++ b/bin/v_suspend_db_base
@@ -1,6 +1,6 @@
#!/bin/bash
# info: suspend database
-# arguments: user database
+# options: user database
#
# The function for suspending a certain user database.
diff --git a/bin/v_suspend_db_bases b/bin/v_suspend_db_bases
index 187df520..ec6a6d45 100755
--- a/bin/v_suspend_db_bases
+++ b/bin/v_suspend_db_bases
@@ -1,6 +1,6 @@
#!/bin/bash
# info: suspend databases
-# arguments: user
+# options: user
#
# The function for suspending of all databases of a single user.
diff --git a/bin/v_suspend_dns_domain b/bin/v_suspend_dns_domain
index ed602251..6acdc12b 100755
--- a/bin/v_suspend_dns_domain
+++ b/bin/v_suspend_dns_domain
@@ -1,6 +1,6 @@
#!/bin/bash
# info: suspend dns domain
-# arguments: user domain
+# options: user domain
#
# The function suspends a certain user's domain.
diff --git a/bin/v_suspend_dns_domains b/bin/v_suspend_dns_domains
index d5c109e1..9588ce5a 100755
--- a/bin/v_suspend_dns_domains
+++ b/bin/v_suspend_dns_domains
@@ -1,6 +1,6 @@
#!/bin/bash
# info: suspend dns domains
-# arguments: user
+# options: user
#
# The function suspends all user's DNS domains.
diff --git a/bin/v_unsuspend_cron_job b/bin/v_unsuspend_cron_job
index 01818733..fc633e2e 100755
--- a/bin/v_unsuspend_cron_job
+++ b/bin/v_unsuspend_cron_job
@@ -1,6 +1,6 @@
#!/bin/bash
# info: unuspend cron job
-# arguments: user job
+# options: user job
#
# The function unsuspen certain cron job.
diff --git a/bin/v_unsuspend_cron_jobs b/bin/v_unsuspend_cron_jobs
index dcaa6a65..ad4e3c3d 100755
--- a/bin/v_unsuspend_cron_jobs
+++ b/bin/v_unsuspend_cron_jobs
@@ -1,6 +1,6 @@
#!/bin/bash
# info: unuspend sys cron
-# arguments: user
+# options: user
#
# The function unsuspends all suspended cron jobs.
diff --git a/bin/v_unsuspend_db_base b/bin/v_unsuspend_db_base
index 2d46de4a..94b82afc 100755
--- a/bin/v_unsuspend_db_base
+++ b/bin/v_unsuspend_db_base
@@ -1,6 +1,6 @@
#!/bin/bash
# info: unsuspend database
-# arguments: user database
+# options: user database
#
# The function for unsuspending database.
diff --git a/bin/v_unsuspend_db_bases b/bin/v_unsuspend_db_bases
index d85b7e78..49847da8 100755
--- a/bin/v_unsuspend_db_bases
+++ b/bin/v_unsuspend_db_bases
@@ -1,6 +1,6 @@
#!/bin/bash
# info: unsuspend databases
-# arguments: user
+# options: user
#
# The function for unsuspending all user's databases.
diff --git a/bin/v_unsuspend_dns_domain b/bin/v_unsuspend_dns_domain
index 0676cd2e..bb749553 100755
--- a/bin/v_unsuspend_dns_domain
+++ b/bin/v_unsuspend_dns_domain
@@ -1,6 +1,6 @@
#!/bin/bash
# info: unsuspend dns domain
-# arguments: user domain
+# options: user domain
#
# The function unsuspends a certain user's domain.
diff --git a/bin/v_unsuspend_dns_domains b/bin/v_unsuspend_dns_domains
index 41d9049b..421390ae 100755
--- a/bin/v_unsuspend_dns_domains
+++ b/bin/v_unsuspend_dns_domains
@@ -1,6 +1,6 @@
#!/bin/bash
# info: unsuspend dns domains
-# arguments: user
+# options: user
#
# The function unsuspends all user's DNS domains.
diff --git a/bin/v_update_db_base_disk b/bin/v_update_db_base_disk
index f8bfddbe..6baa4e6b 100755
--- a/bin/v_update_db_base_disk
+++ b/bin/v_update_db_base_disk
@@ -1,6 +1,6 @@
#!/bin/bash
# info: update database disk usage
-# arguments: user database
+# options: user database
#
# The function recalculates disk usage for speciefic database.
diff --git a/bin/v_update_db_bases_disk b/bin/v_update_db_bases_disk
index 4cfce5b9..91c9bbc0 100755
--- a/bin/v_update_db_bases_disk
+++ b/bin/v_update_db_bases_disk
@@ -1,6 +1,6 @@
#!/bin/bash
# info: update databases disk usage
-# arguments: user
+# options: user
#
# The function recalculates disk usage for all user databases.
diff --git a/bin/v_update_sys_ip b/bin/v_update_sys_ip
index cda6a866..1b2f240c 100755
--- a/bin/v_update_sys_ip
+++ b/bin/v_update_sys_ip
@@ -1,15 +1,19 @@
#!/bin/bash
-# info: adding system ip
+# info: update system ip
+# options: [owner] [ip_status]
+#
+# The function scans configured ip in the system and register them with vesta
+# internal database. This call is intended for use on vps servers, where ip is
+# set by hypervizor.
+
#----------------------------------------------------------#
# Variable&Function #
#----------------------------------------------------------#
# Argument defenition
-owner=$1
-ip_status=$2
-owner=${3-vesta}
-ip_status=${4-shared}
+owner=${1-vesta}
+ip_status=${2-shared}
# Importing variables
source $VESTA/conf/vars.conf
@@ -27,13 +31,13 @@ source $V_FUNC/domain.func
check_args '0' "$#" '[owner] [ip_status]'
# Checking owner
-if [ ! -z "$owner" ]; then
+if [ ! -z "$1" ]; then
format_validation 'owner'
is_user_valid "$owner"
fi
# Checking ip_status
-if [ ! -z "$ip_status" ]; then
+if [ ! -z "$2" ]; then
format_validation 'ip_status'
fi
diff --git a/bin/v_update_sys_queue b/bin/v_update_sys_queue
index de209f47..7d451898 100755
--- a/bin/v_update_sys_queue
+++ b/bin/v_update_sys_queue
@@ -1,5 +1,13 @@
#!/bin/bash
-# info: updating system queue
+# info: update system queue
+# options: pipe
+#
+# This function is responsible queue processing. Restarts of services,
+# scheduled backups, web log parsing and other heavy resource consuming
+# operations are handled by this script. It helps to optimize system behaviour.
+# In a nutshell Apache will be restarted only once even if 10 domains are
+# added or deleted.
+
#----------------------------------------------------------#
# Variable&Function #
@@ -8,7 +16,7 @@
pipe=$1
# Importing system enviroment as we run this script
-# mostly by cron wich not read it by itself
+# mostly by cron wich not read it by itself
source /etc/profile.d/vesta.sh
# Importing variables
diff --git a/bin/v_update_sys_rrd b/bin/v_update_sys_rrd
index ab6f63ce..fb7549ce 100755
--- a/bin/v_update_sys_rrd
+++ b/bin/v_update_sys_rrd
@@ -1,5 +1,10 @@
#!/bin/bash
-# info: updating system rrd charts
+# info: update system rrd charts
+# options: period
+#
+# The script is wrapper for all rrd functions. It updates all
+# v_update_sys_rrd_* at once.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_sys_rrd_ftp b/bin/v_update_sys_rrd_ftp
index a6d35ca1..506926c8 100755
--- a/bin/v_update_sys_rrd_ftp
+++ b/bin/v_update_sys_rrd_ftp
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: updating ftp rrd
+# info: update ftp rrd
+# options: period
+#
+# The function is for updating ftpd rrd database and graphic.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_sys_rrd_httpd b/bin/v_update_sys_rrd_httpd
index a1a65ce9..97e835f8 100755
--- a/bin/v_update_sys_rrd_httpd
+++ b/bin/v_update_sys_rrd_httpd
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: updating httpd rrd
+# info: update httpd rrd
+# options: period
+#
+# The function is for updating apache rrd database and graphic.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_sys_rrd_la b/bin/v_update_sys_rrd_la
index c4f5f8e4..d4e60a9a 100755
--- a/bin/v_update_sys_rrd_la
+++ b/bin/v_update_sys_rrd_la
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: updating load average rrd
+# info: update load average rrd
+# options: period
+#
+# The function is for updating load average rrd database and graphic.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_sys_rrd_mem b/bin/v_update_sys_rrd_mem
index a988339f..124ba3c4 100755
--- a/bin/v_update_sys_rrd_mem
+++ b/bin/v_update_sys_rrd_mem
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: updating memory rrd
+# info: update memory rrd
+# options: period
+#
+# The function is for updating memory rrd database and graphic.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_sys_rrd_mysql b/bin/v_update_sys_rrd_mysql
index f28885c4..7e7238c9 100755
--- a/bin/v_update_sys_rrd_mysql
+++ b/bin/v_update_sys_rrd_mysql
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: updating MySQL rrd
+# info: update MySQL rrd
+# options: period
+#
+# The function is for updating mysql rrd database and graphic.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_sys_rrd_net b/bin/v_update_sys_rrd_net
index 479462f3..0c48a46b 100755
--- a/bin/v_update_sys_rrd_net
+++ b/bin/v_update_sys_rrd_net
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: updating network rrd
+# info: update network rrd
+# options: period
+#
+# The function is for updating network usage rrd database and graphic.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_sys_rrd_nginx b/bin/v_update_sys_rrd_nginx
index fbd1fac3..eafb47a1 100755
--- a/bin/v_update_sys_rrd_nginx
+++ b/bin/v_update_sys_rrd_nginx
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: updating httpd rrd
+# info: update nginx rrd
+# options: period
+#
+# The function is for updating nginx rrd database and graphic.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_sys_rrd_pgsql b/bin/v_update_sys_rrd_pgsql
index 8fa0797e..278b7023 100755
--- a/bin/v_update_sys_rrd_pgsql
+++ b/bin/v_update_sys_rrd_pgsql
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: updating PostgreSQL rrd
+# info: update PostgreSQL rrd
+# options: period
+#
+# The function is for updating postgresql rrd database and graphic.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_sys_rrd_ssh b/bin/v_update_sys_rrd_ssh
index 9a39a4ee..a577b78c 100755
--- a/bin/v_update_sys_rrd_ssh
+++ b/bin/v_update_sys_rrd_ssh
@@ -1,5 +1,9 @@
#!/bin/bash
-# info: updating ssh rrd
+# info: update ssh rrd
+# options: period
+#
+# The function is for updating ssh rrd database and graphic.
+
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_sys_vesta b/bin/v_update_sys_vesta
index 32a1529e..a749ade6 100755
--- a/bin/v_update_sys_vesta
+++ b/bin/v_update_sys_vesta
@@ -1,8 +1,10 @@
#!/bin/bash
-# info: updating vesta after rpm update
+# info: update vesta after rpm update
+# options: version
+#
+# The function is runs as rpm update trigger. It pulls shell script from vesta
+# server and runs it.
-# warn: please note that this scritp should be runned
-# by yum or rpm only
#----------------------------------------------------------#
# Variable&Function #
diff --git a/bin/v_update_user_bill b/bin/v_update_user_bill
index bdcf0596..55d468e6 100755
--- a/bin/v_update_user_bill
+++ b/bin/v_update_user_bill
@@ -116,6 +116,7 @@ for user in $user_list; do
v_str="$v_str U_MAIL_DOMAINS='$U_MAIL_DOMAINS' IP_OWNED='$IP_OWNED'"
v_str="$v_str U_DISK_WEB_DOMAINS='$U_DISK_WEB_DOMAINS'"
v_str="$v_str U_BANDWIDTH_WEB_DOMAINS='$U_BANDWIDTH_WEB_DOMAINS'"
+ v_str="$v_str U_CRON_JOBS"
# Updating user billing log
billing="$V_USERS/$user/billing.log"
diff --git a/web/js/html.js b/web/js/html.js
index 974cc610..b09e4946 100644
--- a/web/js/html.js
+++ b/web/js/html.js
@@ -204,10 +204,10 @@ App.HTML.Build.cron_form = function (options, id) {
tpl.set(':id', id || '');
options = App.Helpers.evalJSON(options) || {};
if (App.Helpers.isEmpty(options)) {
- tpl.set(':title', 'New cron entry');
+ tpl.set(':title', 'New cron job');
tpl.set(':save_button', 'ADD');
} else {
- tpl.set(':title', 'Edit cron entry');
+ tpl.set(':title', 'Edit cron job');
tpl.set(':save_button', 'SAVE');
}
options = !App.Helpers.isEmpty(options) ? options : {
diff --git a/web/static-templates/backups.html b/web/static-templates/backups.html
new file mode 100644
index 00000000..c69d06b5
--- /dev/null
+++ b/web/static-templates/backups.html
@@ -0,0 +1,403 @@
+
+
+
+
+ Vesta | Backups
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Users
+
+
+
+ 386 users
+ 7 blocked
+
+
+
+
+
+
+
+
+
+ Web
+
+
+
+ 580 domains
+ 22 out of mem
+ 3 waiting
+
+
+
+
+
+
+
+
+
+ Mail
+
+
+
+ 320 domains
+ 1209 mailboxes
+ 25 full
+
+
+
+
+
+
+
+
+
+ DB
+
+
+
+ 7 db
+
+
+
+
+
+
+
+
+
+ Dns
+
+
+
+ 289 records
+
+
+
+
+
+
+
+
+
+ IP
+
+
+
+ 7 templates
+
+
+
+
+
+
+
+
+
+ Cron
+
+
+
+ 15 records
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15 Oct 2011
+ 00:31
+
+ Friday
+
+
+ Generation time:
+ 78 min
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 14 Oct 2011
+ 00:17
+
+ Thursday
+
+
+ Generation time:
+ 12 min
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 12 Oct 2011
+ 00:23
+
+ Sunday
+
+
+ Generation time:
+ 47 min
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cancel
+ Delete
+
+
+
+
+
+
+ Restore process has been added to queue. It could take several hours.
+
+
+
+
+
+
+ 12 Oct 2011
+ 00:23
+
+ Sunday
+
+
+ Generation time:
+ 47 min
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/web/static-templates/cron.html b/web/static-templates/cron.html
new file mode 100644
index 00000000..3e45b44f
--- /dev/null
+++ b/web/static-templates/cron.html
@@ -0,0 +1,466 @@
+
+
+
+
+ Vesta | Cron
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Users
+
+
+
+ 386 users
+ 7 blocked
+
+
+
+
+
+
+
+
+
+ Web Domain
+
+
+
+ 580 domains
+ 22 out of mem
+ 3 waiting
+
+
+
+
+
+
+
+
+
+ Mail
+
+
+
+ 320 domains
+ 1209 mailboxes
+ 25 full
+
+
+
+
+
+
+
+
+
+ DB
+
+
+
+ 7 db
+
+
+
+
+
+
+
+
+
+ Dns
+
+
+
+ 289 records
+
+
+
+
+
+
+
+
+
+ IP
+
+
+
+ 7 templates
+
+
+
+
+
+
+
+
+
+ Cron
+
+
+
+ 15 records
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ min
+ 0
+
+
+ hour
+ 0,6,9 — 15,18
+
+
+ day of Month
+ *
+
+
+ Month
+ Jan, Feb, Mar
+
+
+ day of Week
+ 1 — 5
+
+
+
+ /usr/bin/top -n 1 -b -S
+
+
+
+ reported to:
+ naumov.socolov@gmail.com,
+ vasysualiy.pupkin@gmail.com,
+ na-derevniu-dedushke@dachniy-poselok-za-mkadom.com,
+ vasysualiy.pupkin@gmail.com
+
+
+
+
+
+
+
+
+
+
+
+
+ min
+ 15
+
+
+ hour
+ 1,3,5 — 15,19,21,23
+
+
+ day of Month
+ 1,3,5,7,9,11,13,15,17,19
+
+
+ Month
+ *
+
+
+ day of Week
+ 2 — 7
+
+
+
+ /home/myuser/bin/pinghosts.sh > /home/myuser/pinghosts.log
+
+
+
+ reported to:
+ billy@microsoft.com
+
+
+
+
+
+
+
+
+
+
+
+
+ min
+ *
+
+
+ hour
+ *
+
+
+ day of Month
+ *
+
+
+ Month
+ Jan, Mar, May, Jul, Sep, Nov
+
+
+ day of Week
+ 2 — 7
+
+
+
+ /home/myuser/bin/pinghosts.sh > /home/myuser/home/myuser/home/myuser/pinghosts.log
+
+
+
+ reported to:
+ billy@microsoft.com
+
+
+
+
+
+
+
+
+
+
+
+
+ min
+ 15
+
+
+ hour
+ 1,3,5 — 15,19,21,23
+
+
+ day of Month
+ 1,3,5,7,9,11,13,15,17,19
+
+
+ Month
+ *
+
+
+ day of Week
+ 2 — 7
+
+
+
+ /home/myuser/bin/pinghosts.sh > /home/myuser/pinghosts.log
+
+
+
+ reported to:
+ billy@microsoft.com
+
+
+
+
+
+
+
+
+
+
+
+
+
+ command:
+
+
+
+
+ report to:
+
+
+
+
+ suspended:
+
+
+
+
+
+ Cancel
+ Delete
+
+
+
+
+
+
+
+
+
diff --git a/web/static-templates/css/popup.css b/web/static-templates/css/popup.css
new file mode 100644
index 00000000..f33952ff
--- /dev/null
+++ b/web/static-templates/css/popup.css
@@ -0,0 +1,141 @@
+/* Styles for popups */
+.d-popup{
+ position:absolute;
+ top:100px;
+ left:0;
+ z-index:100;
+ background-color:#ccc;
+ background:url(../i/info-popup-bg-2.png) repeat;
+
+ width:250px;
+
+ border-radius: 10px;
+ -moz-border-radius: 10px;
+ -webkit-border-radius: 10px;
+}
+.d-popup-inner{
+ padding:20px;
+ color:#fff;
+}
+.d-popup .close{
+ position:absolute;
+ top:10px;
+ right:10px;
+
+ display:block;
+ width:14px;
+ height:14px;
+ /*background:url(../i/info-popup-sprite.png) no-repeat;*/
+ background:url(../i/info-popup-sprite-2011-12-14.png) no-repeat 0 -1px;
+ cursor:pointer;
+ font-size:0;
+ line-height:0;
+ text-indent:-9999px;
+ }
+ .d-popup span.close:hover{
+ background-position:0 -17px;
+ }
+ .d-popup span.close:active{
+ background-position:0 -33px;
+ }
+
+.d-popup-title{
+ font-size:11px;
+ text-transform:uppercase;
+ text-align:center;
+ color:#fffdd4;
+ margin:0 0 9px;
+}
+.d-popup-items{
+ font-size:12px;
+ color:#fff;
+}
+.d-popup-items .item{
+ margin:0 0 9px;
+}
+.d-popup-items a{
+ color:#aaa;
+ padding-right:5px;
+}
+.d-popup .prop-box{
+ display:block;
+}
+.d-popup .prop-title{
+ color:#bbb;
+}
+.d-popup .prop-value{
+ color:#fff;
+}
+
+/* errors popup */
+.d-popup-errors{
+ width:auto;
+ background: url(../i/auth/form-bg.png) repeat;
+ }
+ .d-popup-errors .d-popup-inner{
+ width:480px;
+ padding:20px 40px 0;
+ }
+ .d-popup-errors .d-popup-title{
+ position:relative;
+ margin:0 0 27px;
+ padding:0 105px 0 40px;
+ font-size:21px;
+ line-height:27px;
+ font-weight:normal;
+ text-transform:uppercase;
+ color:#6536c4;
+ text-align:left;
+ background:url(../i/auth/planet-1.png) no-repeat 5px 13px;
+ letter-spacing:-1px;
+ }
+ .d-popup-errors .planets{
+ display:block;
+ width:91px;
+ height:7px;
+ position:absolute;
+ top:11px;
+ right:0;
+ background:url(../i/auth/planet-2.png) no-repeat;
+ }
+ .d-popup-errors .d-popup-main{
+ padding-left:40px;
+ min-height:250px;
+ }
+ .d-popup-errors .section-title{
+ margin:0 0 38px;
+ font-size:30px;
+ font-weight:normal;
+ color:#f0f042;
+ }
+ .d-popup-errors .d-popup-summary{
+ padding:0 0 20px 0;
+ font-size:15px;
+ }
+ .d-popup-errors .d-popup-summary li{
+ padding-left:15px;
+ background:url(../i/blue-bullet.png) no-repeat 0 50%;
+ }
+ .d-popup-errors .footnotes{
+ margin: 0 -40px;
+ padding:15px 20px;
+ font-size:14px;
+ line-height:18px;
+ border-top:2px solid #34352f;
+ color:#686c6d;
+ }
+
+ .d-popup-errors .questions-url{
+ color:#686c6d;
+ text-decoration:none;
+ }
+ .d-popup-errors .additional-info{
+ float:left;
+ white-space:nowrap;
+ font-size:12px;
+ }
+ .d-popup-errors .report-case-url{
+ float:right;
+ display:block;
+ color:#686c6d;
+ }
diff --git a/web/static-templates/css/vesta-login-form.css b/web/static-templates/css/vesta-login-form.css
new file mode 100644
index 00000000..67cec49c
--- /dev/null
+++ b/web/static-templates/css/vesta-login-form.css
@@ -0,0 +1,205 @@
+/* Page specific styles */
+.page-auth{
+ background:url(../i/auth/auth-bg.png) repeat;
+}
+.cc:after{
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+*html .cc{
+ zoom:1;
+}
++html .cc{
+ zoom:1;
+}
+.page-auth .b-auth-form{}
+
+.page-auth .b-auth-form{
+ width:525px;
+ margin:7% auto 0;
+ padding:20px 20px 0;
+ background:url(../i/auth/form-bg.png) repeat;
+
+ -webkit-border-radius:15px;
+ -moz-border-radius:15px;
+ border-radius:15px;
+ behavior: url(js/PIE.htc);
+ font-family:Arial, Helvetica, sans-serif;
+}
+.page-auth .b-auth-form-wrap{
+ position:relative;
+ padding-top:30px;
+}
+.page-auth .vesta-logo{
+ position:absolute;
+ top:0;
+ left:0;
+ display:block;
+}
+.page-auth .b-client-title{
+ margin:0 0 45px;
+ padding-left:130px;
+ font-size:35px;
+ background:url(../i/auth/planet-1.png) no-repeat 95px 17px;
+ color:#fff;
+ }
+ .client-title-wrap{
+ position:relative;
+ }
+ .client-title-wrap .planets{
+ display:block;
+ width:91px;
+ height:7px;
+ position:absolute;
+ top:45%;
+ right:-100px;
+ background:url(../i/auth/planet-2.png) no-repeat;
+ }
+.page-auth .form-row{
+ margin:0 0 15px;
+}
+.page-auth .last-row{
+ padding:27px 90px 0 133px;
+}
+ .page-auth .field-label{
+ float:left;
+ width:87px;
+ padding-left:45px;
+ color:#e3d785;
+ font-size:12px;
+ line-height:34px;
+ font-family:Arial, Helvetica, sans-serif;
+ text-transform:uppercase;
+ letter-spacing:-.5px;
+ }
+ .page-auth .field-text{
+ width:290px;
+ padding:4px 5px;
+ font-size:20px;
+ border:2px solid #0c6c9c;
+ background:#2d2c28;
+ color:#fff;
+ }
+ .page-auth .field-text:focus{
+ -moz-box-shadow:0 0 8px rgba(76, 147, 189, 0.7);
+ -webkit-box-shadow:0 0 8px rgba(76, 147, 189, 0.7);
+ border-color:rgba(76, 147, 189, 0.85) !important;
+ }
+
+ .page-auth .b-remember{
+ float:left;
+ padding-top:5px;
+ }
+ .page-auth .remember-label{
+ cursor:pointer;
+ padding:2px 2px 2px 8px;
+ color:#747975;
+ font-size:12px;
+ font-family:Arial, Helvetica, sans-serif;
+ }
+ span.ui-checkbox{
+ display: block;
+ float: left;
+ width: 14px;
+ height: 15px;
+/* background:url(icon_checkbox.png) 0 -40px no-repeat;*/
+ background:url(../i/auth/checkboxes.png) no-repeat;
+ }
+ .ui-helper-hidden-accessible{
+ display: none;
+ }
+ span.ui-checkbox-state-hover{
+ background-position: 0 -15px;
+ }
+ span.ui-checkbox-state-checked,
+ span.ui-checkbox-state-checked-hover{
+ background-position: 0 -30px;
+ }
+
+ .page-auth .sumbit-btn{
+ float:right;
+ overflow:visible;
+ height:30px;
+ padding:0 40px;
+ -webkit-border-radius:9px;
+ -moz-border-radius:9px;
+ border-radius:9px;
+ behavior: url(js/PIE.htc);
+
+ border:2px solid #292929;
+ background-color:#b8be44;
+ color:#ffffdf;
+ font-size:13px;
+ font-family:Arial, Helvetica, sans-serif;
+ font-weight:bold;
+ line-height:27px;
+ text-transform:uppercase;
+ cursor:pointer;
+ }
+ .page-auth .sumbit-btn:focus{
+ position:relative;
+ top:1px;
+ }
+ .page-auth .sumbit-btn:hover{
+ background-color:#ffcc00;
+ color:#483600;
+ border-color:#000;
+ }
+ .page-auth .sumbit-btn:active{
+ top:0;
+ background-color:#483600;
+ color:#ffcc00;
+ border-color:#000;
+ }
+
+ .page-auth .forgot-pwd{
+ padding:60px 0 10px 137px;
+ font-size:13px;
+ }
+ .page-auth .forgot-pwd-url{
+ color:#6f7571;
+ }
+ .page-auth a.forgot-pwd-url:hover{
+ color:#849e54;
+ }
+ .page-auth a.forgot-pwd-url:active{
+ color:#edca38;
+ }
+
+.page-auth .error-box{
+ border-top:1px dashed #f16d6b;
+ padding:10px 0 0 131px;
+ font-size:14px;
+ font-weight:bold;
+ color:#f16d6b;
+}
+
+.page-auth .footnotes{
+ margin:0 -20px;
+ padding:15px 20px;
+ font-size:14px;
+ border-top:2px solid #34352f;
+ color:#5a5e5d;
+ }
+ .page-auth .footnotes .additional-info{
+ float:left;
+ font-size:12px;
+ font-family:Georgia, "Times New Roman", Times, serif;
+ font-style:italic;
+ }
+ .page-auth .footnotes .questions-url{
+ color:#5a5e5d;
+ }
+ .page-auth .footnotes a.questions-url:hover{
+ color:#849e54;
+ }
+ .page-auth .footnotes a.questions-url:active{
+ color:#edca38;
+ }
+ .page-auth .footnotes .imprint{
+ float:right;
+ font-style:normal;
+ }
\ No newline at end of file
diff --git a/web/static-templates/css/vesta-login-form_new.css b/web/static-templates/css/vesta-login-form_new.css
new file mode 100644
index 00000000..72dd3541
--- /dev/null
+++ b/web/static-templates/css/vesta-login-form_new.css
@@ -0,0 +1,209 @@
+/* Page specific styles */
+.page-auth{
+ background:url(../images/auth/auth-bg.png) repeat;
+}
+.cc:after{
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+*html .cc{
+ zoom:1;
+}
++html .cc{
+ zoom:1;
+}
+.page-auth .b-auth-form{}
+
+.page-auth .b-auth-form{
+ width:525px;
+ margin:7% auto 0;
+ padding:20px 20px 0;
+ background:url(../images/auth/form-bg.png) repeat;
+
+ -webkit-border-radius:15px;
+ -moz-border-radius:15px;
+ border-radius:15px;
+ behavior: url(js/PIE.htc);
+ font-family:Arial, Helvetica, sans-serif;
+}
+.page-auth .b-auth-form-wrap{
+ position:relative;
+ padding-top:30px;
+}
+.page-auth .vesta-logo{
+ position:absolute;
+ top:0;
+ left:0;
+ display:block;
+}
+.page-auth .b-client-title{
+ margin:0 0 45px;
+ padding-left:130px;
+ font-size:35px;
+ background:url(../images/auth/planet-1.png) no-repeat 85px 27px;
+ color:#fff;
+ }
+ .client-title-wrap{
+ position:relative;
+ text-transform: uppercase;
+ font-size:24px;
+ }
+ .client-title-wrap .planets{
+ display:block;
+ width:91px;
+ height:7px;
+ position:absolute;
+ top:40%;
+ right:-121px;
+ background:url(../images/auth/planet-2.png) no-repeat scroll 0 -1px;
+ }
+.page-auth .form-row{
+ margin:0 0 15px;
+}
+.page-auth .last-row{
+ padding:27px 90px 0 133px;
+}
+ .page-auth .field-label{
+ float:left;
+ width:87px;
+ padding-left:45px;
+ color:#e3d785;
+ font-size:12px;
+ line-height:34px;
+ font-family:Arial, Helvetica, sans-serif;
+ text-transform:uppercase;
+ /*letter-spacing:-.5px;*/
+ }
+ .page-auth .field-text{
+ width:290px;
+ padding:4px 5px;
+ font-size:20px;
+ border:2px solid #0c6c9c;
+ background:#2d2c28;
+ color:#fff;
+ }
+ .page-auth .field-text:focus{
+ -moz-box-shadow:0 0 8px rgba(76, 147, 189, 0.7);
+ -webkit-box-shadow:0 0 8px rgba(76, 147, 189, 0.7);
+ border-color:rgba(76, 147, 189, 0.85) !important;
+ }
+
+ .page-auth .b-remember{
+ float:left;
+ padding-top:5px;
+ }
+ .page-auth .remember-label{
+ cursor:pointer;
+ padding:2px 2px 2px 8px;
+ color:#747975;
+ font-size:12px;
+ font-family:Arial, Helvetica, sans-serif;
+ }
+ span.ui-checkbox{
+ display: block;
+ float: left;
+ width: 14px;
+ height: 15px;
+/* background:url(icon_checkbox.png) 0 -40px no-repeat;*/
+ background:url(../images/auth/checkboxes.png) no-repeat;
+ }
+ .ui-helper-hidden-accessible{
+ display: none;
+ }
+ span.ui-checkbox-state-hover{
+ background-position: 0 -15px;
+ }
+ span.ui-checkbox-state-checked,
+ span.ui-checkbox-state-checked-hover{
+ background-position: 0 -30px;
+ }
+
+ .page-auth .sumbit-btn{
+ float:right;
+ overflow:visible;
+ height:30px;
+ padding:0 40px;
+ -webkit-border-radius:9px;
+ -moz-border-radius:9px;
+ border-radius:9px;
+ behavior: url(js/PIE.htc);
+
+ border:2px solid #2C2C10;
+ background-color:#BBBF45;
+ color:#ffffdf;
+ font-size:13px;
+ font-family:Arial, Helvetica, sans-serif;
+ font-weight:bold;
+ line-height:27px;
+ text-transform:uppercase;
+ cursor:pointer;
+ }
+ .page-auth .sumbit-btn:focus{
+ position:relative;
+ top:1px;
+ }
+ .page-auth .sumbit-btn:hover{
+ background-color:#ffcc00;
+ color:#483600;
+ border-color:#000;
+ }
+ .page-auth .sumbit-btn:active{
+ top:0;
+ background-color:#96A332;
+ color:#FFFFFF;
+ border-color:#2C2C10;
+ }
+
+ .page-auth .forgot-pwd{
+ padding:60px 0 10px 137px;
+ font-size:13px;
+ }
+ .page-auth .forgot-pwd-url{
+ color:#6f7571;
+ }
+ .page-auth a.forgot-pwd-url:hover{
+ color:#849e54;
+ }
+ .page-auth a.forgot-pwd-url:active{
+ color:#edca38;
+ }
+
+.page-auth .error-box{
+ border-top:1px dashed #f16d6b;
+ padding:10px 0 21px 131px;
+ font-size:14px;
+ font-weight:bold;
+ color:#f16d6b;
+}
+
+.page-auth .footnotes{
+ margin:0 -20px;
+ padding:15px 20px;
+ font-size:14px;
+ border-top:2px solid #34352f;
+ color:#5a5e5d;
+ }
+ .page-auth .footnotes .additional-info{
+ float:left;
+ font-size:12px;
+ font-family:Georgia, "Times New Roman", Times, serif;
+ font-style:italic;
+ }
+ .page-auth .footnotes .questions-url{
+ color:#5a5e5d;
+ }
+ .page-auth .footnotes a.questions-url:hover{
+ color:#849e54;
+ }
+ .page-auth .footnotes a.questions-url:active{
+ color:#edca38;
+ }
+ .page-auth .footnotes .imprint{
+ float:right;
+ font-style:normal;
+ font-size:11px;
+ padding-top:1px;
+ }
diff --git a/web/static-templates/css/vesta.css b/web/static-templates/css/vesta.css
index 3c114e85..878969a5 100644
--- a/web/static-templates/css/vesta.css
+++ b/web/static-templates/css/vesta.css
@@ -1,1752 +1,3177 @@
-/*- - - - - - - - - - - - - - - - - - -
-Title : Vesta
-Author : Eugen Lobicov, eugen.lobicov@gmail.com
-
-created : November 27, 2009
-last updated : January 22, 2011
-- - - - - - - - - - - - - - - - - - */
-
-html{
- font-size:100.01%; /* prevent IE's extreme font-resizing bug*/
-}
-
-body{
- position:relative;
- font:normal 62.5%/1.5 Arial, Helvetica, sans-serif;
- background:#F0F0EE url(../i/thin-grey-line-2.gif) repeat-x;
- color:#333;
-}
-#page{
- width:965px;
- width:955px;
- margin:5px auto 0;
- border:1px solid red;
- border:solid #a9aa98;
- border-width:0 2px;
-/* padding:0 0 0 10px;
- background:url(../i/bg-left.gif) repeat-y;*/
-}
-.outer{
-/* padding:0 10px 0 0;
- background:url(../i/bg-right.gif) repeat-y 100% 0;*/
- padding-bottom:58px;
- background:#fff url(../i/footer-bg.gif) repeat-x 0 100%;
-}
-#header{
- overflow:hidden;
- padding:0 10px;
- height:26px;
- border-bottom:2px solid #333527;
- background-color:#484439;
-}
-.logo-box{
- float:left;
-}
-.logo,
-.logo a,
-.logo a span{
- display:block;
- width:80px;
- height:26px;
-}
-.logo a{
- position:relative;
- overflow:hidden;
- font-size:1.2em; /*12px */
- text-decoration:none;
- color:#fff;
-}
-.logo a span{
- position:absolute;
- top:0;
- left:0;
- z-index:1;
- background:url(../i/vesta-logo.png) no-repeat;
-}
-.settings{
- float:right;
-}
-.settings li{
- float:left;
- display:block;
- margin:0 10px 0 0;
- font-size:1.2em; /*12px*/
- line-height:2.084; /* 25px*/
-}
-.settings li a{
- color:#c6d2d2;
-}
-.settings li a:hover{
- color:#fefda0;
- text-decoration:none;
-}
-.settings li a:active{
- color:#E16734;
- text-decoration:none;
-}
-
-/*Remove button padding in FF*/
-input::-moz-focus-inner{
- border: 0;
- padding: 0;
-}
-.cc:after{
- content: ".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
-}
-.hidden{
- display:none !important;
-}
-
-/* Navigation
-- - - - - - - - - - - - - - - - - - - - */
-#primary-nav-box{
- clear:both;
- height:115px;
- background-color:#ecf3d2;
-}
-.primary-nav{}
-
-.primary-nav .section{
- position:relative;
- float:left;
- display:block;
- padding-right:1px;
-/* border-bottom:4px solid #616a57;*/
-/* background:url(../i/nav-devider-2.png) no-repeat 100% 50%;*/
- background:url(../i/nav-devider-2.png) no-repeat 100% 50%;
-}
-.primary-nav .last-section{
- background:none;
- padding:0;
-}
-.section .section-inner{
- width:130px;
- min-height:100px;
- height:auto !important;
- height:100px;
- padding:15px 0 3px 6px;
- background:url(../i/section-status-sprite-5.gif) no-repeat -420px 115px;
- }
-.primary-nav .last-section .section-inner{
- width:133px;
- width:127px;
-}
-.section .section-title{
- position:absolute;
- left:7px;
- bottom:9px;
- font-family:Arial, Helvetica, sans-serif;
- font-size:15px;
- line-height:1.2;
- font-weight:bold;
- text-transform:uppercase;
- color:#393939;
- color:#33342e;
- }
- .section .section-title .to-section{
- float:left;
- margin-right:4px;
- }
- .section .section-title .add-entry{
- position:relative;
- top:2px;
- float:left;
- display:block;
- width:13px;
- height:13px;
- background:url(../i/primarary-collapsed.gif) no-repeat;
- font-size:0;
- line-height:0;
- }
- .section .section-title .add-entry:hover{
- background:#B5C968;
- }
-
-.dnstpl-nav-item .section-title{
- background-position:100% 85%;
-}
-.section .def{
- display:block;
- font-family:Arial, Helvetica, sans-serif;
- font-size:12px;
- color:#8c9c91;
-}
-.section:hover .section-inner{
- background-position:0 115px;
- background-color:#F1F7D6;
- color:#000;
- cursor:pointer;
- }
- .section:hover .section-title{
- color:#000;
- }
-.primary-nav .active .section-inner{
- background-position:-140px 115px;
- cursor:default;
- }
- .primary-nav .active .def{
- color:#8c9c91;
- }
- .primary-nav .active .section-title{
- color:#393939;
- }
-
-#console{
- position:relative;
- clear:both;
- height:70px;
- background-color:#a09d98;
- background:#535049 url(../i/console-box-bg.png) repeat-x;
- border-bottom:1px solid #7a7967;
-}
-
-.b-console{
- position:absolute;
- left:50%;
-}
-
-.b-console-wrap{
- position:relative;
- right:50%;
- width:655px;
- padding:10px 15px 16px 25px;
- background:url(../i/console-bg.png) repeat;
-
- border-radius: 0 0 5px 5px;
- -moz-border-radius: 0 0 5px 5px;
- -webkit-border-top-right-radius: 0;
- -webkit-border-top-left-radius: 0;
- -webkit-border-bottom-right-radius: 5px;
- -webkit-border-bottom-left-radius: 5px;
-}
- .b-console-form{}
-
- .b-console-field{
- float:left;
- width:548px;
- margin-right:15px;
- padding:5px 10px;
- border:2px solid #42647f;
- font-family:Arial, Helvetica, sans-serif;
- font-size:18px;
- font-style:italic;
- font-weight:bold;
- color:#aaa;
- }
- .b-console-field:focus{
- -moz-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
- -webkit-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
- border-color:rgba(82, 168, 236, 0.75) !important;
- color:#333;
- }
- .b-console-btn{
- float:left;
- overflow:visible;
- height:30px;
- margin:4px 0 0;
- padding:0 20px;
- -webkit-border-radius:4px;
- -moz-border-radius:4px;
- border-radius:4px;
- border:0 none;
- background-color:#fdcd00;
- color:#4b3600;
-
- font-size:13px;
- font-family:Arial, Helvetica, sans-serif;
- font-weight:bold;
- line-height:30px;
- text-transform:uppercase;
- cursor:pointer;
-
- /* a little animation effect on hover for -webkit- */
- -webkit-transition-property: background;
- -webkit-transition-duration: 150ms;
- -webkit-transition-timing-function: ease-in-out;
- }
- .b-console-btn:focus{
- position:relative;
- top:1px;
- }
- .b-console-btn:hover{
- background-color:#ffe84c;
- color:#39351c;
- }
- .b-console-btn:active{
- background-color:#333;
- color:#fff;
- }
-
-.b-console-statuses{
- margin-top:15px;
-}
-
- .b-console-status{
- position:relative;
- padding:5px 80px 5px 10px;
- border:2px dashed #999;
- background-color:#feff99;
- color:#666;
- font-size:12px;
- }
- .b-console-status-message{
- float:left;
- color:#666;
- }
- .b-console-status-action{
- float:right;
- margin-right:-36px;
- text-decoration:underline;
- }
- .b-console-status-message b{
- font-weight:bold;
- color:#333;
- }
- .b-console-status-arrow{
- position:absolute;
- top:10px;
- right:12px;
- display:block;
- width:14px;
- height:8px;
- background:url(../i/status-arrow.png) no-repeat;
- }
-
-
-
-#actions-toolbar{
- clear:both;
- position:relative;
- padding:15px 20px 15px 280px;
- background-color:#f3f3d9;
- border-bottom:1px solid #c9cbc8;
-}
-.add-domain,
-.add-btn{
- position:relative;
- top:2px;
- float:left;
- margin:0 0 0 -260px;
- border-bottom:1px solid #b5c968;
- font-family:Georgia, "Times New Roman", Times, serif;
- font-size:16px;
-/* line-height:18px;*/
- line-height:1;
- text-transform:uppercase;
- color:#66685d;
- text-decoration:none;
-}
-.add-domain .icon,
-.add-btn-icon{
- float:left;
- display:block;
- width:11px;
- height:11px;
- margin:4px 5px 0 0;
- background:url(../i/add-entry-plus.gif) no-repeat;
- font-size:0;
- line-height:0;
-}
-.select-all{
- padding:0 40px 0 0;
- font-size:13px;
- color:#7f7e6c;
- text-decoration:underline;
- cursor:pointer;
- }
- .select-all:hover{
- text-decoration:none;
- }
-.clear-selected{
- font-size:11px;
- line-height:10px;
- text-transform:uppercase;
- color:#bcb6a6;
- cursor:pointer;
- letter-spacing:0.2px;
- border-bottom:1px solid #bcb6a6;
- }
- .clear-selected:hover{
- color:#000;
- border-bottom-color:#b85152;
- }
- .clear-selected:active{
- color:#b85152;
- border-bottom-color:#000;
- }
-
-#content{
- padding:8px 0 50px;
- background:#fff url(../i/content-separator.png) repeat-x;
-}
-.b-ext-info-wrap{
- position:relative;
- min-height:40px;
- }
- .b-ext-info{
- margin:0 0 6px;
- padding:10px 25px 15px;
- background:#ddd;
- font-size:12px;
- color:#000;
- text-shadow: 0px 1px 1px #fff;
- }
- .b-ext-info-btn{
- position:relative;
- left:-1px;
- width:102px;
- height:15px;
- margin-left:-50px;
- margin:-6px auto 0;
- background-color:#fff;
- cursor:pointer;
- }
- .b-ext-info-wrap_collapsed .b-ext-info-btn{
- background:url(../i/more-info-btn.png) no-repeat;
- }
-.content-inner{
- background-color:#fff;
- padding:0 15px 15px;
-}
-/*
-.domains{
- border-bottom:1px solid #333;
- background-color:#fff;
-}
-.domains .item{
- position:relative;
- padding:0 20px;
- background:url(../i/long-dotted-bg.gif) repeat-x;
-}
-.domains .first{
- margin:0;
- background:none;
-}
-.item .view{
- padding:15px 0 10px;
-}
-.item .ip-box{
- float:left;
- width:150px;
- padding-top:12px;
-}
-.ip-box .ip{
- font-size:1.1em; /*11px*
- line-height:21px;
- font-weight:normal;
- letter-spacing:.175em;
-}
-.ip-box .owner{
- display:block;
- font-size:1.2em;
- color:#999;
-}
-.details .names .primary{
- font-size:20px;
- font-family:Georgia, "Times New Roman", Times, serif;
- font-weight:normal;
- font-style:normal;
- color:#000; /* radikal'no cherniy, da! *
-}
-.names .divider{
- font-size:12px;
- line-height:2;
- text-transform:uppercase;
- color:#999;
-}
-.names .domain-name{
- padding:0 10px;
- font-size:12px;
- line-height:2;
- font-style:italic;
- color:#999;
- white-space:nowrap;
-}
-.item .details{
- margin-left:150px;
-}
-.item .details .status{
- float:right;
- width:60%;
- margin:5px 20px 0 0;
- color:#999;
-}
-.details .status .logging{
- float:left;
-}
-.logging .err-log,
-.logging .log,
-.logging .stats{
- float:left;
- display:inline;
- margin:0 20px 0 0;
- padding-right:25px;
- background:url(../i/logging-status-sprite.png) no-repeat -100% -100%;
-}
-.logging .off{
- background-position:100% 0;
-}
-.logging .on{
- background-position:100% 100%;
-}
-.logging .stats{
- margin-right:10px;
-}
-.logging .stat-auth{
- float:left;
- display:inline;
- margin:0 10px 0 0;
- border-bottom:1px solid #9bcad0;
- color:#999;
- cursor:pointer;
-}
-.details .status .params{
- float:right;
-}
-.params .memory,
-.params .t,
-.params .max-weight,
-.params .upload-weight{
- float:left;
- display:inline;
- margin-right:25px;
-}
-.memory{}
-
-.memory dl{
- overflow:hidden;
- margin-bottom:2px;
-}
-
-.memory dt{
- float:left;
- width:15px;
-}
-.memory dd{
- float:left;
-}
-.memory .usage{}
-
-.memory .usage .value{
- float:left;
- width:30px;
-}
-.memory .usage .divider{
- padding-right:2px;
-}
-.memory .usage .max{
- font-weight:bold;
- border-bottom:1px solid #9bcad0;
- cursor:pointer;
-}
-.memory .graph{
- clear:both;
- position:relative;
- border:1px solid #ccc;
- font-size:0;
- line-height:0;
-}
-.memory .graph .bar{
- position:relative;
- display:block;
- height:2px;
-}
-.critical .bar{
- background-color:#f00;
-}
-.middle .bar{
- background-color:#ff9934;
-}
-.low .bar{
- background-color:#acd45a;
-}
-.params .upload-weight{
- margin:0;
-}
-.t .value,
-.max-weight .value,
-.upload-weight .value{
- border-bottom:1px solid #9bcad0;
- cursor:pointer;
-}
-.item .close{
- position:absolute;
- top:30px;
- right:20px;
- display:block;
- width:16px;
- height:16px;
- background:url(../i/sprite.png) no-repeat;
- cursor:pointer;
-}
-.item .close:hover{
- background-position:-16px 0;
-}
-*/
-/* row hover effect
-- - - - - - - - - - - - - - - - - - - */
-/*
-.domains .item:hover{
- background-color:#ffffcb;
-}
-.item:hover .names .primary{
- cursor:pointer;
- border-bottom:1px dotted #ccc;
-}
-.item:hover .logging .err-log,
-.item:hover .logging .log,
-.item:hover .logging .stats,
-.item:hover .memory dt,
-.item:hover .memory .divider,
-.item:hover .params .title{
- color:#98bc65;
-}
-.item:hover .logging .stat-auth,
-.item:hover .memory .max,
-.item:hover .t .value,
-.item:hover .max-weight .value,
-.item:hover .upload-weight .value{
- color:#333;
-}
-*/
-/* Edit
-- - - - - - - - - - - - - - - - - - - */
-/*
-.edit{
- position:relative;
- clear:both;
- margin:0 -20px;
- padding:15px 20px 10px;
- border-top:2px solid #999;
- background-color:#ffffcb;
-}
-.change-ip-box{
- margin:0 0 20px;
-}
-.edit .ip-details{
- float:left;
- margin-right:20px;
-}
-.change-ip{
- width:140px;
- padding:3px 5px;
- border:2px solid #9bcad0;
- font-size:16px;
-}
-.ip-details .created{
- display:block;
- margin:5px 0 0;
- font-size:12px;
-}
-.change-domain-name{
- width:360px;
- padding:3px 5px;
- border:2px solid #9bcad0;
- font-size:16px;
- font-weight:bold;
-}
-.edit .domain-name{
- font-size:20px;
- font-family:Georgia, "Times New Roman", Times, serif;
- font-weight:normal;
- font-style:normal;
- color:#000; /* radikal'no cherniy, da! *
- white-space:nowrap;
- line-height:2;
-}
-.change-logs-box{
- float:left;
- width:170px;
- margin-right:50px;
- padding-left:180px;
-}
-.ownership{
- display:inline;
- float:left;
- width:160px;
- margin:0 0 0 -180px;
- font-size:12px;
-}
-.ownership .owner{
- display:block;
- font-size:16px;
- font-weight:bold;
- font-style:italic;
-}
-.change-logs{
- padding-top:5px;
-}
-.change-logs label{
- display:block;
- margin:0 0 9px;
-}
-.change-logs .last{
- margin:0;
-}
-.change-logs .title{
- display:block;
- float:left;
- width:70px;
- font-size:14px;
-}
-.change-logs .title b{
- font-weight:bold;
-}
-.change-logs .checkbox{
- margin:3px 0 0;
- border:2px solid #9bcad0;
-}
-.change-logs .stat-auth{
- position:relative;
- top:-3px;
- left:10px;
- border-bottom:1px solid #9BCAD0;
- cursor:pointer;
-}
-.change-memory{
- float:left;
- width:150px;
- padding-top:5px;
- font-size:14px;
-}
-.change-memory dl{
- margin-bottom:13px;
-}
-.change-memory .value{
- padding:0 5px;
- font-style:italic;
- font-weight:bold;
- color:#6b930f;
-}
-.change-memory .amount{
- margin-top:7px;
-}
-.change-memory .amount .max{
- width:50px;
- margin-left:10px;
- padding:2px 5px;
- border:2px solid #9bcad0;
- text-align:right;
-}
-.change-memory .graph{
- clear:both;
- position:relative;
- border:1px solid #9c9c82;
- font-size:0;
- line-height:0;
-}
-.change-memory .graph .bar{
- position:relative;
- display:block;
- height:2px;
-}
-.change-params{
- float:right;
- font-size:14px;
-}
-.change-params li{
- margin-top:5px;
- overflow:hidden;
-}
-.change-params .title{
- float:left;
- width:165px;
-}
-.change-params .param-value{
- width:30px;
- margin-right:5px;
- padding:1px 5px;
- border:2px solid #9bcad0;
- text-align:right;
-
-}
-.aliases{
- position:relative;
- padding-top:20px;
- margin-bottom:20px;
-}
-.aliases .title{
- float:left;
- display:block;
- margin-right:20px;
- padding-top:3px;
- font-size:17px;
-}
-.aliases .hint{
- position:absolute;
- top:-15px;
- left:78px;
- font-style:italic;
- color:#999;
-}
-.aliases-list{
- width:90%;
- padding:3px 5px;
- border:2px solid #9bcad0;
- font-size:16px;
-}
-.buttons{}
-
-.buttons .apply{
- width:auto;
- overflow:visible;
- padding:4px 20px 3px 17px;
- background-color:#feff99;
- border:1px solid #728b25;
-
- font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
- font-size:120%;
- font-weight:bold;
- text-transform:uppercase;
-
- line-height:130%;
- color:#6b9e05;
- cursor:pointer;
-
- float:right;
-}
-.buttons .devider{
- text-transform:uppercase;
- float:right;
- display:block;
- line-height:24px;
- margin:0 10px;
-}
-.buttons .cancel{
- float:right;
- width:auto;
- height:20px;
- padding:0;
- border:0 none;
- background:none;
- color:#e09462;
- text-decoration:underline;
- cursor:pointer;
-}
-.hidden{
- display:none;
-}
-.edit .iSelected{ /* descendant selector for more specific style context *
- border-color:#59B4FF; /* blue border on focused input *
- font-weight:bold;
-}
-.edit .not-valid{ /* descendant selector for more specific style context *
- border-color:#f00; /* RED border on error field *
-}
-
-.edit .edit-help{
- padding-bottom:1px;
- font-family:Arial, Helvetica, sans-serif;
- font-size:14px;
- color:#a0a094;
- text-decoration:none;
- text-transform:uppercase;
- border-bottom:1px solid #b5b59b;
-}
-.edit .delete{
- position:absolute;
- top:15px;
- right:25px;
- padding:3px 25px 3px 2px;
- font-family:Arial, Helvetica, sans-serif;
- font-size:14px;
- color:#a0a094;
- text-transform:uppercase;
- background:url(../i/delete.gif) no-repeat 100% 50%;
- cursor:pointer;
-}
-.edit .delete .title{
- padding-bottom:1px;
- border-bottom:1px solid #b5b59b;
-}
-*/
-
-/* IP list
-- - - - - - - - - - - - - - - - - - - - */
-#content{
- padding-bottom:0;
-}
-.ip-list{}
-
- .row{
- padding-top:10px;
- padding:10px 10px 15px 10px;
-/* min-height:125px;
- min-height:110px;*/
- background:url(../i/long-dotted-bg.gif) repeat-x;
- }
- .first-row{
- background-image:none;
- }
- .row-meta{
- float:left;
- width:150px;
- }
- .row-details{
- margin-left:150px;
-/* background:#e0e0e0;*/
- }
- .row-actions-box{
-/* margin:0 0 5px;*/
- }
-
- .row-actions-box .check-this,
- .row-actions-box .check-control{
- float:left;
- width:10px;
- height:10px;
- margin-top:4px;
-/* background:url(../i/logging-status-sprite.png) no-repeat;*/
- background:url(../i/check-row-sprite.png) no-repeat;
- }
- .row-actions-box .row-operations{
- float:right;
- }
- .ip-status-info{
- position:relative;
- display:block;
- float:left;
- margin-right:25px;
- padding-right:15px;
- font-size:12px;
- }
- .ip-status-info .ip-status-text{
- visibility:hidden;
- }
- .row .ip-suspended-status{
- margin-right:78px;
- background:url(../i/suspended-ico.png) no-repeat 100% 65%;
- }
- .row .ip-suspended-status .ip-status-text{
- text-transform:uppercase;
- color:#333;
- font-size:10px;
- visibility:visible;
- }
- .delete-entry{
- position:relative;
- top:2px;
- display:block;
- float:left;
- padding-right:15px;
- font-size:11px;
- text-transform:uppercase;
- }
- .delete-entry .delete-entry-text{
- visibility:hidden;
- }
- .entry-created{
- padding-top:7px;
- font-size:11px;
- color:#6f6f6f;
- }
- .props-main{
- float:left;
- width:425px;
-/* background:#eee;*/
- }
- .props-main .prop-box{
- margin-bottom:15px;
- }
-
- .props-additional{
- float:left;
- width:200px;
- padding:5px 10px 0 0;
-/* background:#ccc;*/
- }
- .props-ext{
- float:right;
- width:120px;
- padding-top:5px;
-/* background:#d5d5d5;*/
- }
- .ip-adr-box{
- margin:0 0 5px;
- }
- .ip-adr{
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
-
- font-size:22px;
- line-height:1;
- font-weight:normal;
- letter-spacing:0.5px;
- }
- .ip-adr:active,
- .ip-adr:focus{
- color:#9fb749;
- }
- .ip-adr .dot{
- padding:0 3px;
- }
- .ip-list .ip-adr{
- border-bottom:1px solid #fff;
- }
- .prop-box{
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
-
- min-width:40%;
- width:auto !important;
- width:40%;
- margin:0 0 3px;
- font-size:10px;
- }
- .prop-title{
- text-transform:uppercase;
- color:#9c9c9c;
- font-size:9px;
- line-height:15px;
- }
- .prop-value{
- padding-left:3px;
- font-size:12px;
- color:#777;
- }
- .show-records{
- display:inline-block;
- padding-right:15px;
- border-bottom:1px solid #c9cabc;
- background:url(../i/show-records-ico.png) no-repeat 100% 50%;
- text-transform:uppercase;
- line-height:13px;
- cursor:pointer;
- }
- .hide-records{
- display:inline-block;
- padding-right:15px;
- border-bottom:1px solid #c9cabc;
- background:url(../i/hide-records-ico.png) no-repeat 100% 50%;
- text-transform:uppercase;
- line-height:13px;
- cursor:pointer;
- }
-
- .props-additional .owner-box{
- padding-left:45px;
- }
- .props-additional .owner-box .prop-title{
- float:left;
- display:inline;
- margin:2px 0 0 -45px;
- }
- .props-additional .owner-box .prop-value{
- padding:0;
- }
-
-/* Suspended row
-- - - - - - - - - - - - - - - - - - - */
-.ip-details-suspended{}
-
-.ip-details-suspended:hover{
- background-color:#fff;
-}
- .ip-details-suspended .entry-created{
- color:#ccc;
- }
- .ip-details-suspended .ip-adr{
- color:#ccc;
- border:none;
- }
- .ip-details-suspended:hover .ip-adr{
- border:none;
- }
- .ip-details-suspended:hover .ip-adr:hover{
- border:none;
- cursor:default;
- }
-.ip-details-suspended .prop-title,
-.ip-details-suspended .prop-value{
- color:#ccc;
-}
-
-/* Entry adding form
-- - - - - - - - - - - - - - - - - - - */
-.b-new-entry{
- border-style:solid;
- border-width:2px 1px 1px;
- border-color:#999 #ccc #ccc #ccc;
-
- background-color:#ffffcb;
- }
- .b-new-entry .entry-header{
- margin:0 0 10px;
- padding:8px 15px 9px;
- border-bottom:1px solid #dcdbab;
- font-size:16px;
- font-family:Georgia, "Times New Roman", Times, serif;
- text-transform:uppercase;
- color:#747668;
- }
- .b-new-entry .form-row{
- position:relative;
- padding:10px 15px;
- }
- .b-new-entry .field-label{
- float:left;
- width:180px;
- font-size:15px;
- line-height:2;
- color:#3d504a;
- }
- .b-new-entry .text-field{
- width:265px;
- margin:0;
- padding:6px 7px;
- border:2px solid #b8c2c3;
- color:#555;
- font-family:Arial, Helvetica, sans-serif;
- font-size:14px;
- font-weight:bold;
- }
- .b-new-entry .field-label .remark{
- position:relative;
- top:-14px;
- display:block;
- font-style:italic;
- font-size:14px;
- color:#a3a590;
- }
-
- .b-new-entry .custom-select{}
-
- .b-new-entry .textarea{
- width:685px;
- height:100px;
- padding:6px 7px;
- border:2px solid #b8c2c3;
- color:#555;
- font-family:Arial, Helvetica, sans-serif;
- font-size:14px;
- font-weight:bold;
- }
- .b-new-entry .ssl-crtfct-box .textarea{
- margin:10px 0 0;
- }
- .b-new-entry .select{
- position: absolute;
- top:auto;
- left:195px;
- width: 195px;
- height: 28px;
- padding: 0 24px 0 8px;
- color: #333;
- font:bold 14px/28px arial,sans-serif;
- background:#fff url(../i/select-arrow.png) no-repeat 100% 50%;
- overflow: hidden;
- border:2px solid #b8c2c3;
- }
- .b-new-entry select.styled{
- top:10px;
- }
- .b-new-entry option{
- font:14px arial,sans-serif;
- }
- .b-new-entry .form-options-group{}
-
- .b-new-entry .group-header{
- margin:12px 25px 12px 60px;
- text-transform:uppercase;
- color:#9c9c9c;
- font-size:11px;
- line-height:15px;
- height:16px;
- background:url(../i/dotted.gif) repeat-x 0 50%;
- }
- .b-new-entry .group-title-outer{
- padding:0 15px 0 0;
- line-height:16px;
- background:#ffffcb;
- }
- .b-new-entry .group-title{
- padding:2px 15px 2px 0;
- }
- .b-new-entry .expanded .group-title{
- background:#ffffcb url(../i/form-group-expanded.png) no-repeat 100% 50%;
- }
- .b-new-entry .collapsed .group-title{
- background:#ffffcb url(../i/form-group-collapsed.png) no-repeat 100% 50%;
- }
-
- .b-new-entry .checkbox{
- display:block;
- float:left;
- width:18px;
- height:18px;
- margin:6px 0 0;
- background:url(../i/checkbox.png) no-repeat;
- }
- .b-new-entry .stats-settings{
- padding-left:40px;
- }
- .b-new-entry .pwd-box .text-field{
- float:left;
- margin:0 15px 0 0;
- }
- .b-new-entry_dns .dns-template-box .styled{
- float:left;
- margin:0 40px 0 0;
- margin:0 20px 0 0;
- width:230px;
- cursor:pointer;
- }
- .generate-pwd,
- .context-settings{
- position:relative;
- top:10px;
- float:left;
- display:block;
- color:#5ea2a1;
- border-bottom:1px solid #cdcea6;
- text-transform:uppercase;
- cursor:pointer;
-
- font-size:12px;
- line-height:1;
- letter-spacing:0.5px;
- }
- .generate-pwd:hover,
- .context-settings:hover{
- color:#575757;
- border-bottom-color:#b4c775;
- }
- .generate-pwd:active,
- .context-settings:active{
- color:#b4c775;
- }
- .b-new-entry .buttons-row{
- position:relative;
- margin-top:10px;
- padding:8px 15px 8px 195px;
- border-top:1px solid #dcdbad;
- background:url(../i/form-bottom-bg.png) repeat-x;
- }
- .b-new-entry .help-btn{
- position:absolute;
- top:13px;
- left:16px;
- font-size:11px;
- line-height:12px;
- color:#b4b39f;
- text-transform:uppercase;
- cursor:pointer;
- border-bottom:1px solid #b4b39f;
- }
- .b-new-entry .help-btn:hover{
- color:#000;
- border-bottom-color:#9fb35a;
- }
- .b-new-entry .help-btn:active{
- color:#4B9427;
- }
- .b-new-entry .cancel-btn{
- position:absolute;
- top:15px;
- right:20px;
- font-size:12px;
- line-height:1;
- text-transform:uppercase;
- color:#cc7c4b;
- cursor:pointer;
- border-bottom:1px solid #cc7c4b;
- }
- .b-new-entry .cancel-btn:hover{
- color:#000;
- border-bottom-color:#c5795f;
- }
- .b-new-entry .cancel-btn:active{
- color:#CC7C4B;
- }
- .b-new-entry .add-entry-btn{
- overflow:visible;
- height:28px;
- padding:0 50px;
- -webkit-border-radius:9px;
- -moz-border-radius:9px;
- border-radius:9px;
- border:2px solid #c8c09c;
- background-color:#feff99;
- color:#444428;
- font-size:14px;
- font-family:Arial, Helvetica, sans-serif;
- font-weight:bold;
- line-height:25px;
- text-transform:uppercase;
- cursor:pointer;
- }
- .b-new-entry .add-entry-btn:focus{
- position:relative;
- top:1px;
- }
- .b-new-entry .add-entry-btn:hover{
- background-color:#feff77;
- color:#464322;
- border-color:#9e977b;
- }
- .b-new-entry .add-entry-btn:active{
- background-color:#928d7a;
- color:#fefe9e;
- border-color:#87826e;
- }
- .b-new-entry .autocomplete-box{
- position:relative;
- float:left;
- padding-right:35px;
- background:#fff;
- }
- .b-new-entry .autocomplete-box .text-field{
- width:213px;
- }
- .b-new-entry .autocomplete-box .arrow{
- position:absolute;
- top:0;
- right:0;
- display:block;
- width:32px;
- height:32px;
- font-size:0;
- line-height:0;
-/* background:#fff url(../i/select-arrow.png) no-repeat 100% 50%;*/
- background:#fff url(../i/autocomplete-field-arrows-sprite.png) no-repeat;
- cursor:pointer;
- }
- .b-new-entry .autocomplete-box .arrow:hover,
- .b-new-entry .autocomplete-box .arrow:active,
- .b-new-entry .autocomplete-box .arrow:focus{
- background-position:0 -32px;
- }
-
- .b-new-entry .form-error{
- position:relative;
- margin:-5px 5px 5px;
- padding:8px 15px;
- border:1px solid #dcdbad;
- background:url(../i/form-bottom-bg.png) repeat-x;
- }
- .form-error .error-box{
- padding-left:18px;
- background:url(../i/error-bullet.png) no-repeat 0 50%;
- }
- .form-error .error-box .error-message{
- color:#9a32ff;
- font-size:16px;
- line-height:22px;
- }
- .form-error .error-box .help-tip-url{
- position:relative;
- top:-1px;
- font-size:12px;
- line-height:15px;
- color:#b4b39f;
- text-transform:uppercase;
- text-decoration:none;
- cursor:pointer;
- border-bottom:1px solid #b4b39f;
- }
- .b-new-entry .help-tip-url:hover{
- color:#000;
- border-bottom-color:#9fb35a;
- }
-
-/* Show/edit dns records form
-- - - - - - - - - - - - - - - - - - - */
-.b-records-list{
- margin-left:160px;
- }
- .b-records-list .entry-header{
- padding-top:6px;
- padding-bottom:11px;
- }
- .b-records-list .hide-records{
- font-size:10px;
- font-family:Arial, Helvetica, sans-serif;
- line-height:13px;
- }
- .b-records-list .add-btn{
- margin:0;
- float:none;
- }
- .b-records-list .form-row{
- padding-top:5px;
- padding-bottom:5px;
- }
- .b-records-list .add-box{
- padding-bottom:15px;
- }
- .b-records-list .buttons-row{
- margin-top:20px;
- }
- .form-row-line{
- position:relative;
- }
- .form-row-line .field-box{
- float:left;
- }
- .form-row-line .field-devider{
- float:left;
- display:block;
- min-height:30px;
- margin:0 15px;
- font-size:15px;
- line-height:2;
- }
- .b-records-list .form-row-line .field-label{
- float:none;
- display:block;
- width:auto;
- line-height:20px;
- }
- .b-records-list .dns-record-box .text-field{
- width:147px;
- float:left;
- }
- .b-records-list .dns-type-box{
- margin-right:15px;
- }
- .b-records-list .dns-type-box .select{
- width:51px;
- left:221px;
- }
- .b-records-list .dns-type-box select.styled{
- width:87px;
- cursor:pointer;
- }
- .b-records-list .dns-value-box .text-field{
- width:390px;
- }
- .b-records-list .delete-record{
- position:relative;
-/* top:31px;
- left:10px;*/
- position:absolute;
- bottom:15px;
- right:11px;
- display:block;
- float:left;
- width:11px;
- height:11px;
- background:url(../i/delete-ico-off.png) no-repeat;
- }
- .b-records-list .delete-record:hover{
- cursor:pointer;
- background-image:url(../i/delete-ico.png);
- }
-
-
-/* Web-domains list
-- - - - - - - - - - - - - - - - - - - */
-.domains-list{}
-
- .domains-list .entry-created{
- padding-top:9px;
- }
- .names{
- margin:0 0 6px;
- color:#acacac;
- }
- .names .alias-title{
- position:relative;
- top:-1px;
- padding-right:3px;
- padding:0 3px 0 25px;
- font-size:10px;
- line-height:1.8;
- text-transform:uppercase;
- }
- .names .domain-name{
- position:relative;
- top:-1px;
- padding:0 3px 0 0;
- font-size:12px;
- line-height:1.5;
- color:#acacac;
- white-space:nowrap;
- }
- .row-details .names .primary{
- top:0;
-/* padding:0 25px 0 0;*/
- font-size:20px;
- font-family:Arial, Helvetica, sans-serif;
- font-weight:normal;
- font-style:normal;
- color:#000; /* radikal'no cherniy, da! */
- }
- .names .primary:active{
- color:#9fb749;
- }
- .domains-list .names .primary,
- .dns-list .names .primary{
- border-bottom:1px solid #fff;
- }
-
- .domains-list .props-main{
- width:345px;
- }
- .domains-list .ip-adr{
- font-size:16px;
- color:#888;
- }
- .domains-list .ip-adr-box .prop-box{
- margin-left:20px;
- }
-/* .domains-list .ip-adr-box .prop-value{
- padding:0;
- cursor:pointer;
- border-bottom:1px solid #cbcbbf;
- } */
- .domains-list .props-additional{
- width:230px;
- padding-top:0;
-/* background:#bbb;*/
- }
- .domains-list .props-ext{
- width:170px;
- padding-top:0;
-/* background:#ddd;*/
- }
-
-.b-usage-box{
- display:block;
-}
-
- .b-usage-box .prop-title{
- float:left;
- margin:2px 15px 0 0;
- }
- .b-usage-box .usage-box{
- float:left;
- width:136px;
- }
- .b-usage-box .usage-box{
-
- }
- .b-usage-box .value-box{
- float:left;
- width:75px;
- }
- .b-usage-box .max-size{
- float:right;
- }
- .b-usage-box .value{
- display:block;
- font-size:11px;
- line-height:1;
- color:#999;
- }
- .b-usage-box .max-size{
- position:relative;
- top:2px;
- font-size:14px;
- line-height:1;
- color:#ababab;
- }
- .b-usage-box .max-size .units{
- font-size:12px;
- color:#797979;
- }
- .graph{
- position:relative;
- border:1px solid #b7b7b9;
- font-size:0;
- line-height:0;
- }
- .graph .bar{
- position:relative;
- display:block;
- height:2px;
- }
- .critical .bar{
- background-color:#f00;
- }
- .middle .bar{
- background-color:#ff9934;
- }
- .low .bar{
- background-color:#9fec00;
- }
-
-.domains-list .disk-usage{
- margin:0 0 6px;
-}
-.domains-list .props-additional .prop-box,
-.domains-list .props-ext .prop-box{
- display:block;
- margin:0;
- }
- .stats-box{}
-
- .stats-box .stats-auth{
- position:relative;
- top:3px;
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
-
- margin:0 0 0 5px;
- padding:0 0 0 10px;
- font-size:12px;
- line-height:1.5;
- color:#777;
- cursor:pointer;
- }
- .stats-box .stats-auth-on{
- background:url(../i/auth-plus.png) no-repeat 0 60%;
- }
- .stats-box .stats-auth-text{
- display:block;
- line-height:11px;
- border-bottom:1px solid #cacbbd;
- }
-
- .nginx-box{}
-
- .nginx-box .nginx-ext-list{
- position:relative;
- top:3px;
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
-
- margin:0 0 0 5px;
- border-bottom:1px solid #cacbbd;
- font-size:12px;
- line-height:1;
- color:#777;
- cursor:pointer;
- }
- .template-box{}
-
- .template-box .prop-value{
- padding:0;
- cursor:pointer;
- border-bottom:1px solid #cbcbbf;
- }
-
-/* DNS list
-- - - - - - - - - - - - - - - - - - - */
-.dns-list{}
-
- .dns-list .entry-created{
- padding-top:9px;
- }
- .dns-list .props-main{
- width:295px;
- }
- .dns-list .props-additional{
- width:200px;
- }
- .dns-list .props-ext{
- width:250px;
- }
-.dns-list .props-additional .prop-box,
-.dns-list .props-ext .prop-box{
- display:block;
- margin:0;
- }
-.dns-list .ip-adr-box{
- margin:0;
- }
- .dns-list .ip-adr{
- font-size:12px;
- line-height:1.5;
- color:#777;
- }
-
-/* row hover effect
-- - - - - - - - - - - - - - - - - - - */
-.row:hover{
- background-color:#ffffcb;
-}
-.ip-list .row:hover .ip-adr,
-.domains-list .row:hover .names .primary,
-.dns-list .row:hover .names .primary{
- border-bottom-style:dashed;
- border-bottom-color:#e5e5e5;
- border-bottom-color:#bbb;
-}
-.ip-list .row:hover .ip-adr:hover,
-.domains-list .row:hover .names .primary:hover,
-.dns-list .row:hover .names .primary:hover{
- cursor:pointer;
- border-bottom-style:solid;
- border-bottom-color:#b4c775;
-}
-.ip-list .ip-details-suspended:hover .ip-adr,
-.ip-list .ip-details-suspended:hover .ip-adr:hover{
- border:none;
- cursor:default;
-}
-.row:hover .ip-status-info{
- background:url(../i/enabled-ico_.png) no-repeat 100% 50%;
-}
-.row:hover .delete-entry{
- background:url(../i/delete-ico-off.png) no-repeat 100% 4px;
-}
-.row:hover .ip-suspended-status{
- background:url(../i/suspended-ico.png) no-repeat 100% 65%;
-}
-.ip-status-info:hover .ip-status-text,
-.delete-entry:hover .delete-entry-text{
- visibility:visible;
-}
-.row .ip-status-info:hover{
- background-image:url(../i/enabled-ico-hover.png);
-}
-.row .delete-entry:hover{
- background-image:url(../i/delete-ico.png);
- cursor:pointer;
-}
-.delete-entry:hover .delete-entry-text{
- color:#333;
-}
-.delete-entry .delete-entry-text:hover{
- cursor:pointer;
-}
-.delete-entry .delete-entry-text:active{
- color:#f00;
-}
-.row:hover .show-records,
-.row:hover .hide-records,
-.row:hover .template-box .prop-value,
-.domains-list .row:hover .stats-box .stats-auth-text,
-.domains-list .row:hover .nginx-box .nginx-ext-list{
- color:#6aa0ac;
- border-bottom-color:#cacbbd;
-}
-.row:hover .template-box .prop-value:hover,
-.row:hover .show-records:hover,
-.hide-records:hover,
-.domains-list .row:hover .stats-box .stats-auth-text:hover,
-.domains-list .row:hover .nginx-box .nginx-ext-list:hover{
- color:#575757;
- border-bottom-color:#b4c775;
-}
-.row:hover .template-box .prop-value:active,
-.row:hover .show-records:active,
-.hide-records:active,
-.domains-list .row:hover .stats-box .stats-auth-text:active,
-.domains-list .row:hover .nginx-box .nginx-ext-list:active{
- color:#b4c775;
-}
-
-/* Checked row
-- - - - - - - - - - - - - - - - - - - */
-.checked-row{
- background-color:#e4f7bf;
-}
- .checked-row .row-actions-box .check-control{
- background-position:0 -46px;
- background-position:0 -30px;
- }
-
- .domains-list .checked-row .names .primary,
- .dns-list .checked-row .names .primary{
- border-bottom:1px solid #e4f7bf;
- }
\ No newline at end of file
+/*- - - - - - - - - - - - - - - - - - -
+Title : Vesta
+Author : Eugen Lobicov, eugen.lobicov@gmail.com
+
+created : November 27, 2009
+last updated : November 16, 2011
+- - - - - - - - - - - - - - - - - - */
+
+html{
+ font-size:100.01%; /* prevent IE's extreme font-resizing bug*/
+}
+
+body{
+ position:relative;
+ font:normal 62.5%/1.5 Helvetica, Arial, sans-serif;
+ background:#B2AD9C url(../i/thin-grey-line-4.gif) repeat-x;
+ color:#333;
+}
+#page{
+ width:965px;
+ width:955px;
+ margin:3px auto 0;
+ border:1px solid red;
+ border:solid #807D70;
+ border-width:0 1px;
+}
+.outer{
+ padding-bottom:58px;
+ background:#fff url(../i/footer-bg.gif) repeat-x 0 100%;
+}
+#header{
+ padding:0 1px 0 10px;
+ height:26px;
+ border-bottom:2px solid #333527;
+ background-color:#484439;
+}
+.logo-box{
+ float:left;
+}
+.logo,
+.logo a,
+.logo a span{
+ display:block;
+ width:80px;
+ height:26px;
+}
+.logo a{
+ position:relative;
+ overflow:hidden;
+ font-size:1.2em; /*12px */
+ text-decoration:none;
+ color:#fff;
+ display:block;
+ text-indent:-9999px;
+}
+.logo a span{
+ position:absolute;
+ top:1px;
+ left:0;
+ z-index:1;
+ width:72px;
+ height:24px;
+ background:url(../i/vesta-logo-2011-12-14.png) no-repeat;
+}
+.settings{
+ float:right;
+}
+.settings .settings-item,
+.extra-services .service-item{
+ float:left;
+ display:block;
+ padding:0 10px;
+ font-size:9px;
+ line-height:26px;
+
+ text-transform:uppercase;
+ letter-spacing:1px;
+}
+.settings .item-title,
+.extra-services .item-title{
+ font-family:Arial, Helvetica, san-serif;
+ font-size:9px;
+ color:#C0BD00;
+ text-decoration:none;
+ border-bottom:1px dotted #68684B;
+}
+.settings a.item-title:hover{
+ color:#fefda0;
+ text-decoration:none;
+}
+.settings a.item-title:active{
+ color:#E16734;
+ text-decoration:none;
+}
+.settings .logged-as{
+ margin:0;
+}
+.settings .logged-as{
+ position:relative;
+ top:1px;
+ padding-right:5px;
+ font-size:16px;
+ line-height:20px;
+ font-family:Georgia, Cambria, "Times New Roman", Times, serif;
+ font-weight:bold;
+ font-style:italic;
+ color:#fff;
+ text-transform:none;
+ border:none;
+ letter-spacing:normal;
+}
+.settings .logout{
+ float:left;
+ display:block;
+ text-transform:uppercase;
+ letter-spacing:1px;
+ line-height:26px;
+ }
+ .settings .logout .item-title{
+ display:block;
+ padding:0 10px;
+ font-size:9px;
+ line-height:26px;
+ border:none;
+ }
+ .settings .logout .item-title-inner{
+ border-bottom:1px dotted #68684B;
+ }
+ .logout a.item-title:hover{
+ background-color:#a3b82d;
+ color:#ffffc5;
+ }
+ .logout a.item-title:hover .item-title-inner{
+ border:none;
+ }
+
+ .logout a.item-title:active{
+ background-color:#ffff66;
+ color:#272700;
+ }
+
+
+.extra-services{
+ float:right;
+ margin-right:59px;
+}
+.extra-services .service-item{
+ position:relative;
+ padding:0 13px;
+ line-height:26px;
+ letter-spacing:normal;
+}
+.extra-services .item-devider{
+ position:absolute;
+ top:-3px;
+ left:0;
+ width:100%;
+ height:3px;
+}
+.extra-services .item-title{
+ font-family:Arial, Helvetica, san-serif;
+ font-size:10px;
+ font-weight:bold;
+ color:#C0E1F3;
+ border-bottom:1px dotted #7D939F;
+}
+.extra-services .active{
+ cursor:default;
+ background:#333;
+ font-weight:bold;
+ }
+ .extra-services .service-item:hover{
+ cursor:pointer;
+ }
+ .extra-services .service-item:hover .item-title{
+ color:#fffa96;
+ border-bottom-color:#fffa96;
+ }
+ .extra-services .service-item:active{
+ background:#333;
+ }
+ .extra-services .service-item:active .item-title{
+ color:#fff;
+ border:none;
+ }
+ .extra-services .active .item-title{
+ color:#fff997;
+ border:none;
+ }
+ .extra-services .active .item-devider{
+ background:#ff6766;
+ }
+
+/*Remove button padding in FF*/
+input::-moz-focus-inner{
+ border: 0;
+ padding: 0;
+}
+.cc:after{
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+.hidden{
+ display:none !important;
+}
+
+/* Navigation
+- - - - - - - - - - - - - - - - - - - - */
+#primary-nav-box{
+ clear:both;
+ height:115px;
+ background-color:#ecf3d2;
+}
+.primary-nav{}
+
+.primary-nav .section{
+ position:relative;
+ float:left;
+ display:block;
+ padding-right:1px;
+ background:url(../i/nav-devider-2.png) no-repeat 100% 50%;
+}
+.primary-nav .last-section{
+ background:none;
+ padding:0;
+}
+.section .section-inner{
+ width:130px;
+ min-height:100px;
+ height:auto !important;
+ height:100px;
+ padding:15px 0 3px 6px;
+ padding:15px 0 0 6px;
+ }
+.primary-nav .last-section .section-inner{
+ width:133px;
+ width:127px;
+}
+.section .section-title{
+ position:absolute;
+ left:7px;
+ bottom:9px;
+ font-family:Arial, Helvetica, sans-serif;
+ font-size:15px;
+ line-height:1.2;
+ font-weight:bold;
+ text-transform:uppercase;
+ color:#393939;
+ color:#33342e;
+ }
+ .section .section-title .to-section{
+ float:left;
+ margin-right:4px;
+ }
+ .section .section-title .add-entry{
+ position:relative;
+ top:2px;
+ float:left;
+ display:block;
+ width:14px;
+ height:14px;
+ background:url(../i/plus-sprite1.png) no-repeat;
+ font-size:0;
+ line-height:0;
+ }
+ .section .section-title .add-entry:hover{
+ background-position:-14px 0;
+ cursor:pointer;
+ }
+
+.section .section-devider{
+ position:absolute;
+ left:0;
+ bottom:0;
+ z-index:10;
+ /*background:url(../i/section-status-sprite-5.gif) no-repeat -420px 115px; */
+ display:block;
+ width:100%;
+ height:3px;
+ background:url(../i/section-status-sprite-6.png) no-repeat -420px 100%;
+}
+
+.dnstpl-nav-item .section-title{
+ background-position:100% 85%;
+}
+.section .def{
+ display:block;
+ font-family:Arial, Helvetica, sans-serif;
+ font-size:12px;
+ color:#8c9c91;
+}
+.section:hover .section-inner{
+ background-color:#F1F7D6;
+ color:#000;
+ cursor:pointer;
+ }
+ .section:hover .section-devider{
+ background-position:0 100%;
+ }
+ .section:hover .section-title{
+ color:#000;
+ }
+.primary-nav .active .section-inner{
+ cursor:default;
+ }
+ .primary-nav .active .section-devider{
+ background-position:-140px 100%;
+ height:5px;
+ bottom:-2px;
+ }
+ .primary-nav .active .def{
+ color:#8c9c91;
+ }
+ .primary-nav .active .section-title{
+ color:#393939;
+ }
+
+#console{
+ position:relative;
+ clear:both;
+ height:70px;
+ background-color:#a09d98;
+ background:#535049 url(../i/console-box-bg.png) repeat-x;
+ border-bottom:1px solid #7a7967;
+ z-index:1;
+}
+
+.b-console{
+ position:absolute;
+ left:50%;
+}
+
+.b-console-wrap{
+ position:relative;
+ right:50%;
+ width:655px;
+ padding:10px 15px 16px 25px;
+ background:url(../i/console-bg.png) repeat;
+
+ border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -webkit-border-top-right-radius: 0;
+ -webkit-border-top-left-radius: 0;
+ -webkit-border-bottom-right-radius: 5px;
+ -webkit-border-bottom-left-radius: 5px;
+}
+ .b-console-form{}
+
+ .b-console-field{
+ float:left;
+ width:548px;
+ margin-right:15px;
+ padding:5px 10px;
+ border:2px solid #42647f;
+ font-family:Arial, Helvetica, sans-serif;
+ font-size:18px;
+ font-style:italic;
+ font-weight:bold;
+ color:#aaa;
+ }
+ .b-console-field:focus{
+ -moz-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
+ -webkit-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
+ border-color:rgba(82, 168, 236, 0.75) !important;
+ color:#333;
+ }
+ .b-console-btn{
+ float:left;
+ overflow:visible;
+ height:30px;
+ margin:4px 0 0;
+ padding:0 20px;
+ -webkit-border-radius:4px;
+ -moz-border-radius:4px;
+ border-radius:4px;
+ border:0 none;
+ background-color:#fdcd00;
+ color:#4b3600;
+
+ font-size:13px;
+ font-family:Arial, Helvetica, sans-serif;
+ font-weight:bold;
+ line-height:30px;
+ text-transform:uppercase;
+ cursor:pointer;
+
+ /* a little animation effect on hover for -webkit- */
+ -webkit-transition-property: background;
+ -webkit-transition-duration: 150ms;
+ -webkit-transition-timing-function: ease-in-out;
+ }
+ .b-console-btn:focus{
+ position:relative;
+ top:1px;
+ }
+ .b-console-btn:hover{
+ background-color:#ffe84c;
+ color:#39351c;
+ }
+ .b-console-btn:active{
+ background-color:#333;
+ color:#fff;
+ }
+
+.b-console-statuses{
+ margin-top:15px;
+}
+
+ .b-console-status{
+ position:relative;
+ padding:5px 80px 5px 10px;
+ border:2px dashed #999;
+ background-color:#feff99;
+ color:#666;
+ font-size:12px;
+ }
+ .b-console-status-message{
+ float:left;
+ color:#666;
+ }
+ .b-console-status-action{
+ float:right;
+ margin-right:-36px;
+ text-decoration:underline;
+ }
+ .b-console-status-message b{
+ font-weight:bold;
+ color:#333;
+ }
+ .b-console-status-arrow{
+ position:absolute;
+ top:10px;
+ right:12px;
+ display:block;
+ width:14px;
+ height:8px;
+ background:url(../i/status-arrow.png) no-repeat;
+ }
+
+
+
+#actions-toolbar{
+ clear:both;
+ position:relative;
+ /*padding:15px 20px 15px 280px;*/
+ padding:15px 20px 15px 250px;
+ background-color:#f3f3d9;
+ border-bottom:1px solid #c9cbc8;
+}
+.add-domain,
+.add-btn{
+ position:relative;
+ top:2px;
+ float:left;
+ /*margin:0 0 0 -260px;*/
+ margin:0 0 0 -230px;
+ border-bottom:1px solid #b5c968;
+ font-family:Georgia, "Times New Roman", Times, serif;
+ font-size:16px;
+ line-height:1;
+ text-transform:uppercase;
+ color:#66685d;
+ text-decoration:none;
+}
+.add-domain .icon,
+.add-btn-icon{
+ float:left;
+ display:block;
+ width:11px;
+ height:11px;
+ margin:4px 5px 0 0;
+ background:url(../i/add-entry-plus.gif) no-repeat;
+ font-size:0;
+ line-height:0;
+ }
+ .add-btn:hover{
+ color:#000;
+ border-bottom-color:#b85152;
+ }
+ .add-btn:active{
+ color:#b85152;
+ border-bottom-color:#000;
+ }
+
+/*
+.select-all{
+ padding:0 40px 0 0;
+ font-size:13px;
+ color:#7f7e6c;
+ text-decoration:underline;
+ cursor:pointer;
+ }
+ .select-all:hover{
+ text-decoration:none;
+ }
+.clear-selected{
+ font-size:11px;
+ line-height:10px;
+ text-transform:uppercase;
+ color:#bcb6a6;
+ cursor:pointer;
+ letter-spacing:0.2px;
+ border-bottom:1px solid #bcb6a6;
+ }
+ .clear-selected:hover{
+ color:#000;
+ border-bottom-color:#b85152;
+ }
+ .clear-selected:active{
+ color:#b85152;
+ border-bottom-color:#000;
+ }
+*/
+.db-manager{
+ float:right;
+ margin:5px 0 0 25px;
+ font-size:11px;
+ line-height:1.273; /*14px*/
+ text-transform:uppercase;
+ letter-spacing:0.2px;
+ border-bottom:1px solid #bcb6a6;
+ text-decoration:none;
+ color:#9b9b8f;
+ }
+ .db-manager .highlighted{
+ font-style:normal;
+ font-weight:bold;
+ color:#4097b3;
+ }
+ .db-manager:hover{
+ color:#4097b3;
+ border-bottom-color:#b85152;
+ }
+ .db-manager:active{
+ color:#b85152;
+ border-bottom-color:#4097b3;
+ }
+ .db-manager:active .highlighted{
+ color:#b85152;
+ }
+
+/* Row filters */
+
+.row-filters{}
+
+ .b-row-selector{
+ float:left;
+ width:240px;
+ }
+
+ .b-row-selector .checkbox-selector{
+ position:relative;
+ top:4px;
+ margin-right:20px;
+ }
+ .b-row-selector .b-cust-sel{
+ width:100px;
+ }
+
+.checkbox-selector,
+.context-actions{
+ display:-moz-inline-stack;
+ display: inline-block;
+ zoom: 1;
+ *display: inline;
+ vertical-align:top;
+ }
+ .checkbox-selector .checkbox{
+ display:block;
+ float:left;
+ width:11px;
+ height:11px;
+ margin:2px 5px 0 0;
+ background:url(../i/chekbox-selector.png) no-repeat;
+ cursor:pointer;
+ }
+ .checkbox-selector .selector-title{
+ float:left;
+ font-size:11px;
+ line-height:15px;
+ text-transform:uppercase;
+ color:#5d5d5d;
+ cursor:pointer;
+ white-space:nowrap;
+ }
+ .checkbox-selector:hover .checkbox{
+ background-position:0 -90px;
+ }
+ .checkbox-selector .selector-title:hover{
+ color:#2ea8bd;
+ }
+ .checkbox-selector .selector-title:active{
+ color:#fc0;
+ }
+
+/* Custom select */
+.b-cust-sel{
+ position: relative;
+ font-size: 12px;
+
+ background-color: #fff;
+/* background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
+ background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
+ background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
+ background-image: -o-linear-gradient(top, #eeeeee 0%,#ffffff 50%);
+ background-image: -ms-linear-gradient(top, #eeeeee 0%,#ffffff 50%);
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
+ background-image: linear-gradient(top, #eeeeee 0%,#ffffff 50%);
+
+ -moz-background-clip : padding;
+ -webkit-background-clip: padding-box;
+ background-clip : padding-box;
+*/
+
+ box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.10);
+ -moz-box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.10);
+ -webkit-box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.10);
+
+ border: 1px solid #c5c4bf;
+ display: block;
+ white-space: nowrap;
+ position: relative;
+ height: 20px;
+ line-height: 20px;
+ padding: 0 0 0 8px;
+ color: #616161;
+
+}
+.b-cust-sel .title{
+ margin-right: 26px;
+ display: block;
+ overflow: hidden;
+ white-space: nowrap;
+ -o-text-overflow: ellipsis;
+ -ms-text-overflow: ellipsis;
+ text-overflow: ellipsis;
+}
+.cust-sel-arrow{
+ -moz-background-clip : padding;
+ -webkit-background-clip: padding-box;
+ background-clip : padding-box;
+ background: #ccc;
+
+/* background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
+ background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
+ background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
+ background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
+ background-image: -ms-linear-gradient(top, #cccccc 0%,#eeeeee 60%);
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#eeeeee',GradientType=0 );
+ background-image: linear-gradient(top, #cccccc 0%,#eeeeee 60%);
+*/
+
+ background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.6, #f5f4ef));
+ background-image: -webkit-linear-gradient(center bottom, #fff 0%, #f5f4ef 60%);
+ background-image: -moz-linear-gradient(center bottom, #fff 0%, #f5f4ef 60%);
+ background-image: -o-linear-gradient(bottom, #fff 0%, #f5f4ef 60%);
+ background-image: -ms-linear-gradient(top, #cccccc 0%,#f5f4ef 60%);
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#f5f4ef',GradientType=0 );
+ background-image: linear-gradient(top, #cccccc 0%,#f5f4ef 60%);
+
+ border-left: 1px solid #c5c4bf;
+ position: absolute;
+ right: 0;
+ top: 0;
+ display: block;
+ height: 100%;
+ width: 21px;
+}
+.cust-sel-arrow i{
+ display: block;
+ width: 100%;
+ height: 100%;
+ background:url(../i/custom-arrow.png) no-repeat 50% 50%;
+}
+.b-cust-sel .cust-sel-options{
+ position:absolute;
+ top:21px;
+ left:-1px;
+ width:100%;
+ padding:5px 0 2px;
+ border:solid #C5C4BF;
+ border-width:0 1px 1px;
+ background:#fff;
+ z-index:100;
+ }
+ .b-cust-sel .cust-sel-option{
+ padding:0 0 4px 18px;
+ background:url(../i/cust-option-bullets.png) no-repeat 5px 7px;
+ color:#828282;
+ cursor:pointer;
+ }
+ .b-cust-sel .cust-sel-option:hover{
+ color:#333;
+ }
+ .b-cust-sel .ico_gray{
+ background-position:5px 7px;
+ }
+ .b-cust-sel .ico_green{
+ background-position:5px -35px;
+ }
+ .b-cust-sel .ico_red{
+ background-position:5px -79px;
+ }
+
+.b-cust-sel_inactive{
+ background:#f3f3d9;
+ box-shadow: none;
+ -moz-box-shadow: none;
+ -webkit-box-shadow: none;
+ }
+ .b-cust-sel_inactive .cust-sel-arrow{
+ background:#f3f3d9;
+ }
+ .b-cust-sel_inactive .cust-sel-options{
+ display:none;
+ }
+
+.domain-groups-selector{
+ float:left;
+ width:270px;
+ padding-top:2px;
+ font-size:11px;
+ line-height:15px;
+ }
+ .domain-groups-selector .selector-wrap{
+ display:-moz-inline-stack;
+ display: inline-block;
+ zoom: 1;
+ *display: inline;
+ vertical-align:top;
+ padding-right:15px;
+ border-bottom:1px solid #d5d6c4;
+ background:url(../i/custom-arrow.png) no-repeat 100% 6px;
+ }
+ .domain-groups-selector .selector-title{
+ padding-right:5px;
+ font-weight:normal;
+ text-transform:uppercase;
+ color:#8b8b8b;
+ }
+ .domain-groups-selector .selected-groups{
+ color:#5d5d5d;
+ }
+
+#content{
+ padding:8px 0 50px;
+ background:#fff url(../i/content-separator.png) repeat-x;
+}
+.b-ext-info-wrap{
+ position:relative;
+ min-height:40px;
+ }
+ .b-ext-info{
+ margin:0 0 6px;
+ padding:10px 25px 15px;
+ background:#ddd;
+ font-size:12px;
+ color:#000;
+ text-shadow: 0px 1px 1px #fff;
+ }
+ .b-ext-info-btn{
+ position:relative;
+ left:-1px;
+ width:102px;
+ height:15px;
+ margin-left:-50px;
+ margin:-6px auto 0;
+ background-color:#fff;
+ cursor:pointer;
+ }
+ .b-ext-info-wrap_collapsed .b-ext-info-btn{
+ background:url(../i/more-info-btn.png) no-repeat;
+ }
+.content-inner{
+ background-color:#fff;
+ padding:0 15px 15px;
+}
+/*
+.domains{
+ border-bottom:1px solid #333;
+ background-color:#fff;
+}
+.domains .item{
+ position:relative;
+ padding:0 20px;
+ background:url(../i/long-dotted-bg.gif) repeat-x;
+}
+.domains .first{
+ margin:0;
+ background:none;
+}
+.item .view{
+ padding:15px 0 10px;
+}
+.item .ip-box{
+ float:left;
+ width:150px;
+ padding-top:12px;
+}
+.ip-box .ip{
+ font-size:1.1em; /*11px*
+ line-height:21px;
+ font-weight:normal;
+ letter-spacing:.175em;
+}
+.ip-box .owner{
+ display:block;
+ font-size:1.2em;
+ color:#999;
+}
+.details .names .primary{
+ font-size:20px;
+ font-family:Georgia, "Times New Roman", Times, serif;
+ font-weight:normal;
+ font-style:normal;
+ color:#000; /* radikal'no cherniy, da! *
+}
+.names .divider{
+ font-size:12px;
+ line-height:2;
+ text-transform:uppercase;
+ color:#999;
+}
+.names .domain-name{
+ padding:0 10px;
+ font-size:12px;
+ line-height:2;
+ font-style:italic;
+ color:#999;
+ white-space:nowrap;
+}
+.item .details{
+ margin-left:150px;
+}
+.item .details .status{
+ float:right;
+ width:60%;
+ margin:5px 20px 0 0;
+ color:#999;
+}
+.details .status .logging{
+ float:left;
+}
+.logging .err-log,
+.logging .log,
+.logging .stats{
+ float:left;
+ display:inline;
+ margin:0 20px 0 0;
+ padding-right:25px;
+ background:url(../i/logging-status-sprite.png) no-repeat -100% -100%;
+}
+.logging .off{
+ background-position:100% 0;
+}
+.logging .on{
+ background-position:100% 100%;
+}
+.logging .stats{
+ margin-right:10px;
+}
+.logging .stat-auth{
+ float:left;
+ display:inline;
+ margin:0 10px 0 0;
+ border-bottom:1px solid #9bcad0;
+ color:#999;
+ cursor:pointer;
+}
+.details .status .params{
+ float:right;
+}
+.params .memory,
+.params .t,
+.params .max-weight,
+.params .upload-weight{
+ float:left;
+ display:inline;
+ margin-right:25px;
+}
+.memory{}
+
+.memory dl{
+ overflow:hidden;
+ margin-bottom:2px;
+}
+
+.memory dt{
+ float:left;
+ width:15px;
+}
+.memory dd{
+ float:left;
+}
+.memory .usage{}
+
+.memory .usage .value{
+ float:left;
+ width:30px;
+}
+.memory .usage .divider{
+ padding-right:2px;
+}
+.memory .usage .max{
+ font-weight:bold;
+ border-bottom:1px solid #9bcad0;
+ cursor:pointer;
+}
+.memory .graph{
+ clear:both;
+ position:relative;
+ border:1px solid #ccc;
+ font-size:0;
+ line-height:0;
+}
+.memory .graph .bar{
+ position:relative;
+ display:block;
+ height:2px;
+}
+.critical .bar{
+ background-color:#f00;
+}
+.middle .bar{
+ background-color:#ff9934;
+}
+.low .bar{
+ background-color:#acd45a;
+}
+.params .upload-weight{
+ margin:0;
+}
+.t .value,
+.max-weight .value,
+.upload-weight .value{
+ border-bottom:1px solid #9bcad0;
+ cursor:pointer;
+}
+.item .close{
+ position:absolute;
+ top:30px;
+ right:20px;
+ display:block;
+ width:16px;
+ height:16px;
+ background:url(../i/sprite.png) no-repeat;
+ cursor:pointer;
+}
+.item .close:hover{
+ background-position:-16px 0;
+}
+*/
+/* row hover effect
+- - - - - - - - - - - - - - - - - - - */
+/*
+.domains .item:hover{
+ background-color:#ffffcb;
+}
+.item:hover .names .primary{
+ cursor:pointer;
+ border-bottom:1px dotted #ccc;
+}
+.item:hover .logging .err-log,
+.item:hover .logging .log,
+.item:hover .logging .stats,
+.item:hover .memory dt,
+.item:hover .memory .divider,
+.item:hover .params .title{
+ color:#98bc65;
+}
+.item:hover .logging .stat-auth,
+.item:hover .memory .max,
+.item:hover .t .value,
+.item:hover .max-weight .value,
+.item:hover .upload-weight .value{
+ color:#333;
+}
+*/
+/* Edit
+- - - - - - - - - - - - - - - - - - - */
+/*
+.edit{
+ position:relative;
+ clear:both;
+ margin:0 -20px;
+ padding:15px 20px 10px;
+ border-top:2px solid #999;
+ background-color:#ffffcb;
+}
+.change-ip-box{
+ margin:0 0 20px;
+}
+.edit .ip-details{
+ float:left;
+ margin-right:20px;
+}
+.change-ip{
+ width:140px;
+ padding:3px 5px;
+ border:2px solid #9bcad0;
+ font-size:16px;
+}
+.ip-details .created{
+ display:block;
+ margin:5px 0 0;
+ font-size:12px;
+}
+.change-domain-name{
+ width:360px;
+ padding:3px 5px;
+ border:2px solid #9bcad0;
+ font-size:16px;
+ font-weight:bold;
+}
+.edit .domain-name{
+ font-size:20px;
+ font-family:Georgia, "Times New Roman", Times, serif;
+ font-weight:normal;
+ font-style:normal;
+ color:#000; /* radikal'no cherniy, da! *
+ white-space:nowrap;
+ line-height:2;
+}
+.change-logs-box{
+ float:left;
+ width:170px;
+ margin-right:50px;
+ padding-left:180px;
+}
+.ownership{
+ display:inline;
+ float:left;
+ width:160px;
+ margin:0 0 0 -180px;
+ font-size:12px;
+}
+.ownership .owner{
+ display:block;
+ font-size:16px;
+ font-weight:bold;
+ font-style:italic;
+}
+.change-logs{
+ padding-top:5px;
+}
+.change-logs label{
+ display:block;
+ margin:0 0 9px;
+}
+.change-logs .last{
+ margin:0;
+}
+.change-logs .title{
+ display:block;
+ float:left;
+ width:70px;
+ font-size:14px;
+}
+.change-logs .title b{
+ font-weight:bold;
+}
+.change-logs .checkbox{
+ margin:3px 0 0;
+ border:2px solid #9bcad0;
+}
+.change-logs .stat-auth{
+ position:relative;
+ top:-3px;
+ left:10px;
+ border-bottom:1px solid #9BCAD0;
+ cursor:pointer;
+}
+.change-memory{
+ float:left;
+ width:150px;
+ padding-top:5px;
+ font-size:14px;
+}
+.change-memory dl{
+ margin-bottom:13px;
+}
+.change-memory .value{
+ padding:0 5px;
+ font-style:italic;
+ font-weight:bold;
+ color:#6b930f;
+}
+.change-memory .amount{
+ margin-top:7px;
+}
+.change-memory .amount .max{
+ width:50px;
+ margin-left:10px;
+ padding:2px 5px;
+ border:2px solid #9bcad0;
+ text-align:right;
+}
+.change-memory .graph{
+ clear:both;
+ position:relative;
+ border:1px solid #9c9c82;
+ font-size:0;
+ line-height:0;
+}
+.change-memory .graph .bar{
+ position:relative;
+ display:block;
+ height:2px;
+}
+.change-params{
+ float:right;
+ font-size:14px;
+}
+.change-params li{
+ margin-top:5px;
+ overflow:hidden;
+}
+.change-params .title{
+ float:left;
+ width:165px;
+}
+.change-params .param-value{
+ width:30px;
+ margin-right:5px;
+ padding:1px 5px;
+ border:2px solid #9bcad0;
+ text-align:right;
+
+}
+.aliases{
+ position:relative;
+ padding-top:20px;
+ margin-bottom:20px;
+}
+.aliases .title{
+ float:left;
+ display:block;
+ margin-right:20px;
+ padding-top:3px;
+ font-size:17px;
+}
+.aliases .hint{
+ position:absolute;
+ top:-15px;
+ left:78px;
+ font-style:italic;
+ color:#999;
+}
+.aliases-list{
+ width:90%;
+ padding:3px 5px;
+ border:2px solid #9bcad0;
+ font-size:16px;
+}
+.buttons{}
+
+.buttons .apply{
+ width:auto;
+ overflow:visible;
+ padding:4px 20px 3px 17px;
+ background-color:#feff99;
+ border:1px solid #728b25;
+
+ font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
+ font-size:120%;
+ font-weight:bold;
+ text-transform:uppercase;
+
+ line-height:130%;
+ color:#6b9e05;
+ cursor:pointer;
+
+ float:right;
+}
+.buttons .devider{
+ text-transform:uppercase;
+ float:right;
+ display:block;
+ line-height:24px;
+ margin:0 10px;
+}
+.buttons .cancel{
+ float:right;
+ width:auto;
+ height:20px;
+ padding:0;
+ border:0 none;
+ background:none;
+ color:#e09462;
+ text-decoration:underline;
+ cursor:pointer;
+}
+.hidden{
+ display:none;
+}
+.edit .iSelected{ /* descendant selector for more specific style context *
+ border-color:#59B4FF; /* blue border on focused input *
+ font-weight:bold;
+}
+.edit .not-valid{ /* descendant selector for more specific style context *
+ border-color:#f00; /* RED border on error field *
+}
+
+.edit .edit-help{
+ padding-bottom:1px;
+ font-family:Arial, Helvetica, sans-serif;
+ font-size:14px;
+ color:#a0a094;
+ text-decoration:none;
+ text-transform:uppercase;
+ border-bottom:1px solid #b5b59b;
+}
+.edit .delete{
+ position:absolute;
+ top:15px;
+ right:25px;
+ padding:3px 25px 3px 2px;
+ font-family:Arial, Helvetica, sans-serif;
+ font-size:14px;
+ color:#a0a094;
+ text-transform:uppercase;
+ background:url(../i/delete.gif) no-repeat 100% 50%;
+ cursor:pointer;
+}
+.edit .delete .title{
+ padding-bottom:1px;
+ border-bottom:1px solid #b5b59b;
+}
+*/
+
+/* IP list
+- - - - - - - - - - - - - - - - - - - - */
+#content{
+ padding-bottom:0;
+}
+.ip-list{}
+
+ .row{
+ padding:6px 10px 26px 10px;
+/* min-height:125px;
+ min-height:110px;*/
+ background:url(../i/long-dotted-bg.gif) repeat-x;
+ }
+ .first-row{
+ padding-top:11px;
+ background-image:none;
+ }
+ .row-meta{
+ float:left;
+ width:150px;
+ }
+ .row-details{
+ margin-left:150px;
+/* background:#e0e0e0;*/
+ }
+ .row-actions-box{}
+
+ .row-actions-box .check-this,
+ .row-actions-box .check-control{
+ float:left;
+ width:10px;
+ height:10px;
+ margin-top:4px;
+/* background:url(../i/logging-status-sprite.png) no-repeat;
+ background:url(../i/check-row-sprite.png) no-repeat;*/
+ background:url(../i/check-row-sprite_.png) no-repeat;
+ }
+ .row-actions-box .check-control:hover{
+ cursor:pointer;
+ background-position:0 -89px;
+ }
+ .row-actions-box .row-operations{
+ float:right;
+ }
+ .ip-status-info{
+ position:relative;
+ display:block;
+ float:left;
+ /*margin-right:25px;*/
+ padding-right:15px;
+ font-size:12px;
+ }
+ .ip-status-info .ip-status-text{
+ visibility:hidden;
+ }
+ .row .ip-suspended-status{
+ margin:0;
+ background:url(../i/suspended-ico.png) no-repeat 100% 65%;
+ }
+ .row .ip-suspended-status .ip-status-text{
+ text-transform:uppercase;
+ color:#333;
+ font-size:10px;
+ visibility:visible;
+ }
+ .delete-entry{
+ position:relative;
+ top:2px;
+ display:block;
+ float:left;
+ padding-right:15px;
+ font-size:11px;
+ text-transform:uppercase;
+ }
+ .delete-entry .delete-entry-text{
+ visibility:hidden;
+ }
+ .entry-created{
+ padding-top:7px;
+ font-size:11px;
+ color:#6f6f6f;
+ }
+ .props-main{
+ float:left;
+ width:425px;
+/* background:#eee;*/
+ }
+ .props-main .prop-box{
+ margin-bottom:15px;
+ }
+
+ .props-additional{
+ float:left;
+ width:200px;
+ padding:5px 10px 0 0;
+/* background:#ccc;*/
+ }
+ .props-ext{
+ float:right;
+ width:120px;
+ padding-top:5px;
+/* background:#d5d5d5;*/
+ }
+ .ip-adr-box,
+ .user-wrap{
+ margin:0 0 5px;
+ }
+ .ip-adr{
+ display:-moz-inline-stack;
+ display:inline-block;
+ vertical-align:top;
+
+ font-size:22px;
+ line-height:1;
+ font-weight:normal;
+ letter-spacing:0.5px;
+ }
+ .ip-adr:active,
+ .ip-adr:focus{
+ color:#9fb749;
+ }
+ .ip-adr .dot{
+ padding:0 3px;
+ }
+ .ip-list .ip-adr{
+ border-bottom:1px solid #fff;
+ }
+ .username-box .user{
+ display:-moz-inline-stack;
+ display:inline-block;
+ vertical-align:top;
+
+ margin-right:10px;
+ }
+ .username-box .nickname{
+ display:-moz-inline-stack;
+ display:inline-block;
+ vertical-align:top;
+ margin-right:5px;
+
+ font-size:20px;
+ line-height:25px;
+ font-family:Arial, Helvetica, sans-serif;
+ color:#000;
+
+ }
+ .username-box .role{
+ display:-moz-inline-stack;
+ display:inline-block;
+ vertical-align:top;
+
+ position:relative;
+ top:2px;
+
+ font-size:12px;
+ line-height:25px;
+ color:#777;
+ }
+
+ .prop-box{
+ display:-moz-inline-stack;
+ display:inline-block;
+ vertical-align:top;
+
+ min-width:40%;
+/* width:auto !important;
+ width:40%;*/
+ margin:0 0 3px;
+ font-size:10px;
+ }
+ .prop-title{
+ text-transform:uppercase;
+ color:#9c9c9c;
+ font-size:9px;
+ line-height:15px;
+ }
+ .prop-value{
+ padding-left:3px;
+ font-size:12px;
+ color:#777;
+ }
+ .prop-value-collapsed-childs{
+ padding-right:15px;
+ background:url(../i/group-values-collapsed.png) no-repeat 100% 5px;
+ cursor:pointer;
+ }
+ .show-records{
+ display:inline-block;
+ padding-right:15px;
+ border-bottom:1px solid #c9cabc;
+ background:url(../i/show-records-ico.png) no-repeat 100% 50%;
+ text-transform:uppercase;
+ line-height:13px;
+ cursor:pointer;
+ }
+ .hide-records{
+ display:inline-block;
+ padding-right:15px;
+ border-bottom:1px solid #c9cabc;
+ background:url(../i/hide-records-ico.png) no-repeat 100% 50%;
+ text-transform:uppercase;
+ line-height:13px;
+ cursor:pointer;
+ }
+
+ .prop-box_group-values{
+ display:block;
+ }
+ .prop-box_group-values .prop-title{
+ float: left;
+ margin:2px 0 0;
+ }
+ .prop-box_group-values .group-values{
+ float:left;
+ margin-left:3px;
+ }
+ .group-values .prop-value{
+ display:block;
+ }
+ .group-values__bullet .prop-value{
+ padding-left:15px;
+ background:url(../i/group-value-bullet.png) no-repeat 5px 8px;
+ }
+ .group-values .group-switcher{
+ padding-right:15px;
+ background:url(../i/group-values-collapsed.png) no-repeat 100% 4px;
+ }
+ .group-values .group-values-count{
+ font-size:12px;
+ font-style:italic;
+ color:#cdcdcd;
+ border-bottom:1px solid #c9cac4;
+ cursor:pointer;
+ }
+
+ .props-additional .owner-box{
+ padding-left:45px;
+ }
+ .props-additional .owner-box .prop-title{
+ float:left;
+ display:inline;
+ margin:2px 0 0 -45px;
+ }
+ .props-additional .owner-box .prop-value{
+ padding:0;
+ }
+
+ .ip-list .row{
+ padding-bottom:24px;
+ }
+ .ip-list .row-details{
+ padding-top:9px;
+ }
+ .ip-list .entry-created{
+ padding-top:16px;
+ }
+ .ip-list .ip-name-box{
+ margin:0;
+ }
+
+
+/* Entry adding form
+- - - - - - - - - - - - - - - - - - - */
+.b-new-entry{
+ margin-top:25px;
+ border-style:solid;
+ border-width:2px 1px 1px;
+ border-color:#999 #ccc #ccc #ccc;
+
+ background-color:#ffffcb;
+ }
+ .b-new-entry .entry-header{
+ margin:0 0 10px;
+ padding:8px 15px 9px;
+ border-bottom:1px solid #dcdbab;
+ font-size:16px;
+ font-family:Georgia, "Times New Roman", Times, serif;
+ text-transform:uppercase;
+ color:#747668;
+ }
+ .b-new-entry .form-row{
+ position:relative;
+ padding:10px 15px;
+ }
+ .b-new-entry .field-label,
+ .b-new-entry .row-header{
+ float:left;
+ width:180px;
+ font-size:15px;
+ line-height:2;
+ color:#3d504a;
+ }
+ .b-new-entry .text-field{
+ float:left;
+ width:265px;
+ margin:0 15px 0 0;
+ padding:6px 7px;
+ border:2px solid #b8c2c3;
+ background:#fff;
+ color:#555;
+ font-family:Arial, Helvetica, sans-serif;
+ font-size:14px;
+ font-weight:bold;
+ }
+ /* for highlighting required fields */
+ .b-new-entry .rule-required{
+ }
+ /* for highlighting disabled fields */
+ .b-new-entry .disabled{
+ border-color:#FFFFCB;
+ background:#FFFFCB;
+ }
+ .b-new-entry .mandatory{
+ padding-right:5px;
+ background:url(../i/asterisk2.png) no-repeat 100% 2px;
+ }
+
+ .b-new-entry .field-label .remark{
+ position:relative;
+ top:-14px;
+ display:block;
+ font-style:italic;
+ font-size:14px;
+ color:#a3a590;
+ }
+
+ .b-new-entry .custom-select{}
+
+ .b-new-entry .textarea{
+ width:685px;
+ height:100px;
+ padding:6px 7px;
+ border:2px solid #b8c2c3;
+ background:#fff;
+ color:#555;
+ font-family:Arial, Helvetica, sans-serif;
+ font-size:14px;
+ font-weight:bold;
+ }
+ .b-new-entry .text-field:focus,
+ .b-new-entry .textarea:focus{
+ -moz-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
+ -webkit-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
+ border-color:rgba(82, 168, 236, 0.75) !important;
+ color:#333;
+ }
+
+ .b-new-entry .ssl-crtfct-box .textarea{
+ margin:10px 0 0;
+ }
+ .b-new-entry .select{
+ position: absolute;
+ top:auto;
+ left:195px;
+ width: 195px;
+ height: 28px;
+ padding: 0 24px 0 8px;
+ color: #333;
+ font:bold 14px/28px arial,sans-serif;
+ background:#fff url(../i/select-arrow-2011-12-18.png) no-repeat 100% 50%;
+ overflow: hidden;
+ border:2px solid #b8c2c3;
+ }
+ .b-new-entry select.styled{
+ top:10px;
+ }
+ .b-new-entry option{
+ font:14px arial,sans-serif;
+ }
+ .b-new-entry .form-options-group{}
+
+ .b-new-entry .group-header{
+ margin:12px 25px 12px 15px;
+ text-transform:uppercase;
+ color:#9c9c9c;
+ font-size:11px;
+ line-height:15px;
+ height:16px;
+ background:url(../i/dotted.gif) repeat-x 0 50%;
+ }
+ .b-new-entry .group-title-outer{
+ display:inline-block;
+ width:165px;
+ padding:0 15px 0 0;
+ line-height:16px;
+ text-align:right;
+ background:#ffffcb;
+ }
+ .b-new-entry .group-title-inner{
+ padding:2px 13px 2px 0;
+ }
+ .b-new-entry .group-title{
+ border-bottom:1px solid #FFFFCB;
+ }
+ .b-new-entry .expanded .group-title-inner{
+ background:#ffffcb url(../i/form-group-expanded.png) no-repeat 100% 50%;
+ }
+ .b-new-entry .collapsed .group-title-inner{
+ background:#ffffcb url(../i/form-group-collapsed.png) no-repeat 100% 50%;
+ }
+ .b-new-entry .group-header:hover{
+ cursor:pointer;
+ }
+ .b-new-entry .group-header:hover .group-title,
+ .b-new-entry .group-header .group-title:hover{
+ color:#000;
+ border-bottom-color:#9fb35a;
+ }
+ .b-new-entry .group-header .group-title:active{
+ color:#4B9427;
+ }
+
+ .b-new-entry .mail-options-group{
+ margin-bottom:27px;
+ }
+ .b-new-entry .mail-options-group .form-row{
+ padding-bottom:0;
+ }
+
+ .b-new-entry .delete-record{
+ display: block;
+ position:relative;
+ top:11px;
+ float: left;
+ width: 11px;
+ height: 11px;
+ background: url(../i/delete-ico-off.png) no-repeat;
+ }
+ .b-new-entry .delete-record:hover{
+ cursor:pointer;
+ background-image:url(../i/delete-ico.png);
+ }
+ .b-new-entry .delete-record:active{
+ cursor:pointer;
+ background-image:url(../i/delete-ico-active.png);
+ }
+
+
+ .b-new-entry .checkbox{
+ display:block;
+ float:left;
+ width:18px;
+ height:18px;
+ margin:6px 0 0;
+ /*background:url(../i/checkbox-1.png) no-repeat;*/
+ background:url(../i/form-checkboxes.png) no-repeat;
+ }
+ .b-new-entry .checkbox:hover{
+ background-position:0 -100px;
+ }
+ .b-new-entry .stats-settings{
+ padding-left:40px;
+ }
+ .b-new-entry .db-credentials .field-label{
+ text-indent:40px;
+ }
+ /*.b-new-entry .pwd-box .text-field{
+ float:left;
+ margin:0 15px 0 0;
+ }*/
+ .b-new-entry_user .lastname-box{
+ margin-bottom:30px;
+ }
+ .b-new-entry_dns .dns-template-box .styled{
+ float:left;
+ margin:0 40px 0 0;
+ margin:0 20px 0 0;
+ width:230px;
+ cursor:pointer;
+ }
+ .b-new-entry_dns .ttl-field{
+ width:75px;
+ }
+ .generate-pwd,
+ .context-settings{
+ position:relative;
+ top:10px;
+ float:left;
+ display:block;
+ color:#5ea2a1;
+ border-bottom:1px solid #cdcea6;
+ text-transform:uppercase;
+ cursor:pointer;
+
+ font-size:11px;
+ line-height:1;
+ letter-spacing:0.5px;
+ }
+ .generate-pwd:hover,
+ .context-settings:hover{
+ color:#575757;
+ border-bottom-color:#b4c775;
+ }
+ .generate-pwd:active,
+ .context-settings:active{
+ color:#b4c775;
+ }
+
+ .b-new-entry .add-ns{
+ display:-moz-inline-stack;
+ display: inline-block;
+ zoom: 1;
+ *display: inline;
+
+ margin:0 0 7px 180px;
+ font-family:Georgia, "Times New Roman", Times, serif;
+ font-size:14px;
+ line-height:1;
+ text-transform:uppercase;
+ color:#66685d;
+ text-decoration:none;
+ }
+ .add-ns .icon{
+ float:left;
+ display:block;
+ width:11px;
+ height:11px;
+ margin:2px 5px 0 0;
+ background:url(../i/add-entry-plus.gif) no-repeat;
+ font-size:0;
+ line-height:0;
+ }
+ .add-ns .btn-title{
+ display:inline-block;
+ border-bottom:1px solid #b5c968;
+ }
+ .add-ns .btn-title:hover{
+ color:#000;
+ border-bottom-color:#b85152;
+ }
+ .add-ns .btn-title:active{
+ color:#b85152;
+ border-bottom-color:#000;
+ }
+
+
+ .b-new-entry .buttons-row{
+ position:relative;
+ margin-top:13px;
+ padding:8px 15px 8px 195px;
+ border-top:1px solid #dcdbad;
+ background:url(../i/form-bottom-bg.png) repeat-x;
+ }
+/* .b-new-entry .help-btn{
+ position:absolute;
+ top:13px;
+ right:20px;
+ font-size:11px;
+ line-height:12px;
+ color:#b4b39f;
+ text-transform:uppercase;
+ cursor:pointer;
+ border-bottom:1px solid #b4b39f;
+ text-decoration:none;
+ }
+ .b-new-entry .help-btn:hover{
+ color:#000;
+ border-bottom-color:#9fb35a;
+ }
+ .b-new-entry .help-btn:active{
+ color:#4B9427;
+ }
+*/
+
+ .b-new-entry .cancel-btn{
+
+ display:-moz-inline-stack;
+ display: inline-block;
+ zoom: 1;
+ *display: inline;
+
+ margin-left:30px;
+ font-size:12px;
+ line-height:1;
+ font-weight:bold;
+
+ text-transform:uppercase;
+ color:#2ca9bd;
+ cursor:pointer;
+ border-bottom:1px solid #2ca9bd;
+ }
+ .b-new-entry .cancel-btn:hover{
+ color:#999;
+ border-bottom-color:#999;
+ }
+ .b-new-entry .cancel-btn:active{
+ color:#fc0;
+ border-bottom-color:#fc0;
+ }
+
+ .b-new-entry .delete-btn{
+ position:absolute;
+ top:15px;
+ right:16px;
+
+ font-size:12px;
+ line-height:14px;
+ text-transform:uppercase;
+ color:#333;
+ letter-spacing:2px;
+ cursor:pointer;
+ border-bottom:1px solid #ff6766;
+ }
+ .b-new-entry .delete-btn:hover{
+ color:#ff6766;
+ }
+ .b-new-entry .delete-btn:active{
+ color:#fc0;
+ border-bottom-color:#fc0;
+ }
+
+
+ .b-new-entry .add-entry-btn{
+ overflow:visible;
+ height:28px;
+ padding:0 50px;
+ -webkit-border-radius:9px;
+ -moz-border-radius:9px;
+ border-radius:9px;
+ border:2px solid #c8c09c;
+ background-color:#feff99;
+ color:#444428;
+ font-size:14px;
+ font-family:Arial, Helvetica, sans-serif;
+ font-weight:bold;
+ line-height:25px;
+ text-transform:uppercase;
+ cursor:pointer;
+ }
+ .b-new-entry .add-entry-btn:focus{
+ position:relative;
+ top:1px;
+ }
+ .b-new-entry .add-entry-btn:hover{
+ background-color:#feff77;
+ color:#464322;
+ border-color:#9e977b;
+ }
+ .b-new-entry .add-entry-btn:active{
+ background-color:#928d7a;
+ color:#fefe9e;
+ border-color:#87826e;
+ }
+ .b-new-entry .autocomplete-box{
+ position:relative;
+ float:left;
+ padding-right:35px;
+ background:#fff;
+ }
+ .b-new-entry .autocomplete-box .text-field{
+ width:213px;
+ margin:0;
+ }
+ .b-new-entry .autocomplete-box .arrow{
+ position:absolute;
+ top:0;
+ right:0;
+ display:block;
+ width:32px;
+ height:32px;
+ font-size:0;
+ line-height:0;
+/* background:#fff url(../i/select-arrow.png) no-repeat 100% 50%;*/
+ background:#fff url(../i/autocomplete-field-arrows-sprite.png) no-repeat;
+ cursor:pointer;
+ }
+ .b-new-entry .autocomplete-box .arrow:hover,
+ .b-new-entry .autocomplete-box .arrow:active,
+ .b-new-entry .autocomplete-box .arrow:focus{
+ background-position:0 -32px;
+ }
+ .b-new-entry .disabled-box,
+ .b-new-entry .disabled-box .text-field{
+ background:#FFFFCB;
+ border-color:#FFFFCB;
+ }
+ .b-new-entry .disabled-box .arrow{
+ display:none;
+ }
+
+ .b-new-entry .form-error{
+ position:relative;
+ margin:-5px 5px 5px;
+ padding:8px 15px;
+ border:1px solid #dcdbad;
+ background:url(../i/form-bottom-bg.png) repeat-x;
+ }
+ .form-error .error-box{
+ padding-left:18px;
+ background:url(../i/error-bullet.png) no-repeat 0 50%;
+ }
+ .form-error .error-box .error-message{
+ color:#9a32ff;
+ font-size:16px;
+ line-height:22px;
+ }
+ .form-error .error-box .help-tip-url{
+ position:relative;
+ top:-1px;
+ font-size:12px;
+ line-height:15px;
+ color:#b4b39f;
+ text-transform:uppercase;
+ text-decoration:none;
+ cursor:pointer;
+ border-bottom:1px solid #b4b39f;
+ }
+ .b-new-entry .help-tip-url:hover{
+ color:#000;
+ border-bottom-color:#9fb35a;
+ }
+
+ .b-new-entry_cron{}
+
+ .b-new-entry_cron .form-row{
+ padding-top:7px;
+ padding-bottom:5px;
+ }
+ .b-new-entry_cron .run-at-box{
+ padding-bottom:7px;
+ }
+ .b-new-entry_cron .run-at-box .row-header{
+ margin-top:35px;
+ }
+ .b-new-entry_cron .form-row-line .field-box{
+ margin-right:14px;
+ }
+ .b-new-entry_cron .form-row-line .cron-week-box{
+ margin:0;
+ }
+ .b-new-entry_cron .form-row-line .field-label{
+ display:block;
+ float:none;
+ width:auto;
+ line-height:1;
+ padding:0 0 8px;
+ color:#7d7d7d;
+
+ font-size:13px;
+ }
+ .b-new-entry_cron .form-row-line .text-field{
+ width:112px;
+ margin:0;
+ }
+ .b-new-entry_cron .form-row-line .cron-week-box .text-field{
+ width:109px;
+ margin:0;
+ }
+ .b-new-entry_cron .textarea{
+ height:60px;
+ }
+
+
+ .b-new-detailed-restore{}
+
+ .b-new-detailed-restore .add-entry-btn{
+ padding:0 30px;
+ }
+/*
+ .b-new-detailed-restore .cancel-btn{
+ left:auto;
+ right:16px;
+ }
+*/
+
+/* Show/edit dns records form
+- - - - - - - - - - - - - - - - - - - */
+.b-records-list{
+ margin-left:160px;
+ }
+ .b-records-list .entry-header{
+ padding-top:6px;
+ padding-bottom:11px;
+ }
+ .b-records-list .hide-records{
+ font-size:10px;
+ font-family:Arial, Helvetica, sans-serif;
+ line-height:13px;
+ }
+ .b-records-list .add-btn{
+ margin:0;
+ float:none;
+ }
+ .b-records-list .form-row{
+ padding-top:5px;
+ padding-bottom:5px;
+ }
+ .b-records-list .add-box{
+ padding-bottom:15px;
+ }
+ .b-records-list .buttons-row{
+ margin-top:20px;
+ }
+ .form-row-line{
+ position:relative;
+ }
+ .form-row-line .field-box{
+ float:left;
+ }
+ .form-row-line .field-devider{
+ float:left;
+ display:block;
+ min-height:30px;
+ margin:0 15px;
+ font-size:15px;
+ line-height:2;
+ }
+ .b-records-list .form-row-line .field-label{
+ float:none;
+ display:block;
+ width:auto;
+ line-height:20px;
+ }
+ .b-records-list .dns-record-box .text-field{
+ width:147px;
+ float:left;
+ margin:0;
+ }
+ .b-records-list .dns-type-box{
+ margin-right:15px;
+ }
+ .b-records-list .dns-type-box .select{
+ width:51px;
+ left:221px;
+ }
+ .b-records-list .dns-type-box select.styled{
+ width:87px;
+ cursor:pointer;
+ }
+ .b-records-list .dns-value-box .text-field{
+ float:none;
+ width:390px;
+ margin:0;
+ }
+ .b-records-list .delete-record{
+ position:absolute;
+ top: auto;
+ bottom:15px;
+ right:11px;
+ display:block;
+ float:left;
+ width:11px;
+ height:11px;
+ background:url(../i/delete-ico-off.png) no-repeat;
+ }
+
+
+/* Web-domains list
+- - - - - - - - - - - - - - - - - - - */
+.domains-list{}
+
+ .domains-list .entry-created{
+ padding-top:9px;
+ }
+ .names{
+ margin:0 0 6px;
+ color:#acacac;
+ }
+ .names .alias-title{
+ position:relative;
+ top:-1px;
+ padding-right:3px;
+ padding:0 3px 0 25px;
+ font-size:11px;
+ line-height:18px;
+ text-transform:uppercase;
+ }
+ .names .domain-name{
+ position:relative;
+ top:-1px;
+ padding:0 3px 0 0;
+ font-size:12px;
+ line-height:1.5;
+ color:#acacac;
+ white-space:nowrap;
+ }
+ .row-details .names .primary{
+ top:0;
+/* padding:0 25px 0 0;*/
+ font-size:20px;
+ font-family:Arial, Helvetica, sans-serif;
+ font-weight:normal;
+ font-style:normal;
+ color:#000; /* radikal'no cherniy, da! */
+ }
+ .names .primary:active{
+ color:#9fb749;
+ }
+ .domains-list .names .primary,
+ .dns-list .names .primary{
+ border-bottom:1px solid #fff;
+ }
+
+ .domains-list .props-main{
+ width:345px;
+ }
+ .domains-list .ip-adr{
+ font-size:16px;
+ color:#888;
+ }
+ .domains-list .ip-adr-box .prop-box{
+ margin-left:20px;
+ }
+
+ .domains-list .props-additional{
+ width:230px;
+ padding-top:0;
+/* background:#bbb;*/
+ }
+ .domains-list .props-ext{
+ width:170px;
+ padding-top:0;
+/* background:#ddd;*/
+ }
+
+.b-usage-box{
+ display:block;
+}
+
+ .b-usage-box .prop-title{
+ float:left;
+ margin:2px 15px 0 0;
+ }
+ .b-usage-box .usage-box{
+ float:left;
+ width:136px;
+ }
+ .b-usage-box .usage-box{
+
+ }
+ .b-usage-box .value-box{
+ float:left;
+ width:75px;
+ }
+ .b-usage-box .max-size{
+ float:right;
+ }
+ .b-usage-box .value{
+ display:block;
+ font-size:11px;
+ line-height:1;
+ color:#999;
+ }
+ .b-usage-box .max-size{
+ position:relative;
+ top:2px;
+ font-size:14px;
+ line-height:1;
+ color:#ababab;
+ }
+ .b-usage-box .max-size .units{
+ font-size:12px;
+ color:#797979;
+ }
+ .graph{
+ position:relative;
+ border:1px solid #b7b7b9;
+ font-size:0;
+ line-height:0;
+ }
+ .graph .bar{
+ position:relative;
+ display:block;
+ height:2px;
+ }
+ .critical .bar{
+ background-color:#f00;
+ }
+ .middle .bar{
+ background-color:#ff9934;
+ }
+ .low .bar{
+ background-color:#9fec00;
+ }
+
+/* New graphs */
+.b-stats-box{
+ position:relative;
+ margin-left:-25px;
+ padding-left:25px;
+ background:url(../i/stats-brace.png) no-repeat 0 50%;
+ }
+ .stats-box-title{
+ position:absolute;
+ top:50%;
+ left:-65px;
+ margin-top:-10px;
+ padding-right:25px;
+ text-transform:uppercase;
+ font-size:9px;
+ line-height:12px;
+ background:url(../i/stats-curve.png) no-repeat 100% 50%;
+ color:#acacac;
+ /*border-bottom:1px solid #acacac;*/
+ }
+.b-usage-box2{
+ display:block;
+ margin:0 0 22px;
+ position:relative;
+ }
+ .b-usage-box2 .prop-title{
+ float:left;
+ margin:2px 15px 0 0;
+ }
+ .b-usage-box2 .usage-box{
+ float:left;
+ }
+ .b-usage-box2 .value-box{
+ padding-top:11px;
+ float:left;
+ width:85px;
+ }
+ .b-usage-box2 .max-size{
+ position:relative;
+ top:11px;
+ float:right;
+ padding:7px 0 0 3px;
+ border-left:1px solid #B7B7B9;
+ font-size:10px;
+ line-height:1;
+ color:#acacac;
+ }
+ .b-usage-box2 .max-size .units{
+ font-size:10px;
+ color:#acacac;
+ }
+ .b-usage-box2 .graph{
+ position:relative;
+ border:solid #b7b7b9;
+ border-width:1px 0 1px 1px;
+ font-size:0;
+ line-height:0;
+ }
+ .b-usage-box2 .value{
+ position:absolute;
+ top:-15px;
+ left:0;
+ z-index:10;
+ display:block;
+ white-space:nowrap;
+ padding:0 0 7px 3px;
+ font-size:11px;
+ line-height:1;
+ background:url(../i/bar-value-mark.png) no-repeat 0 100%;
+ color:#797979;
+ }
+ .b-usage-box2 .value-size{
+ padding-left:3px;
+ }
+ .b-usage-box2 .graph .bar{
+ position:relative;
+ display:block;
+ height:2px;
+ background-color:#9fec00;
+ }
+
+ /* Overdraft */
+ .b-usage-box2 .overdraft{}
+
+ .b-usage-box2 .overdraft .value{
+ margin-left:-1px;
+ color:#F00;
+ }
+
+ .b-usage-box2 .bar_overdraft{
+ position:absolute;
+ top:-1px;
+ z-index:5;
+ display:block;
+ height:2px;
+ border:solid #b7b7b9;
+ border-width:1px 0;
+ background:#ff9934 url(../i/overrun-border.png) no-repeat 100% 0;
+ }
+
+
+.domains-list .disk-usage{
+ margin:0 0 6px;
+}
+.domains-list .props-additional .prop-box,
+.domains-list .props-ext .prop-box{
+ display:block;
+ margin:0;
+ }
+ .stats-box{}
+
+ .stats-box .stats-auth{
+ position:relative;
+ top:3px;
+ display:-moz-inline-stack;
+ display:inline-block;
+ vertical-align:top;
+
+ margin:0 0 0 5px;
+ padding:0 0 0 10px;
+ font-size:12px;
+ line-height:1.5;
+ color:#777;
+ cursor:pointer;
+ }
+ .stats-box .stats-auth-on{
+ background:url(../i/auth-plus.png) no-repeat 0 60%;
+ }
+ .stats-box .stats-auth-text{
+ display:block;
+ line-height:11px;
+ border-bottom:1px solid #cacbbd;
+ }
+
+ .nginx-box{}
+
+ .nginx-box .nginx-ext-list{
+ position:relative;
+ top:3px;
+ display:-moz-inline-stack;
+ display:inline-block;
+ vertical-align:top;
+
+ margin:0 0 0 5px;
+ border-bottom:1px solid #cacbbd;
+ font-size:12px;
+ line-height:1;
+ color:#777;
+ cursor:pointer;
+ }
+ .template-box{}
+
+ .template-box .prop-value{
+ padding:0;
+ cursor:pointer;
+ border-bottom:1px solid #cbcbbf;
+ }
+
+/* DNS list
+- - - - - - - - - - - - - - - - - - - */
+.dns-list{}
+
+ .dns-list .row-details{
+ padding-bottom:2px;
+ }
+ .dns-list .entry-created{
+ padding-top:9px;
+ }
+ .dns-list .props-main{
+ width:295px;
+ }
+ .dns-list .props-additional{
+ width:200px;
+ }
+ .dns-list .props-ext{
+ width:250px;
+ }
+.dns-list .props-additional .prop-box,
+.dns-list .props-ext .prop-box{
+ display:block;
+ margin:0;
+ }
+.dns-list .ip-adr-box{
+ margin:0;
+ }
+ .dns-list .ip-adr{
+ font-size:12px;
+ line-height:1.5;
+ color:#777;
+ }
+
+/* Cron list
+- - - - - - - - - - - - - - - - - - - */
+.cron-list{}
+
+ .cron-list .row{
+ padding-bottom:24px;
+ }
+
+ .cron-list .entry-created{
+ padding-top:8px;
+ }
+ .cron-list .cron-meta{
+ margin:-9px 0 9px;
+ }
+ .cron-meta .prop-box{
+ min-width:0;
+ }
+ .cron-meta .prop-title{
+ display:block;
+ text-transform:none;
+ font-size:10px;
+ }
+ .cron-meta .prop-value{
+ padding:0;
+ font-size:16px;
+ color:#7c7c7c;
+ }
+ .cron-meta .cron-min,
+ .cron-meta .cron-hour,
+ .cron-meta .cron-day,
+ .cron-meta .cron-week,
+ .cron-meta .cron-month{
+ min-width:45px;
+ padding-right:20px;
+ }
+
+ .cron-command-box{
+ margin:0 0 5px;
+ }
+ .cron-command-line{
+ position:relative;
+ padding:0 3px 0 0;
+ font-family:Arial, Helvetica, sans-serif;
+ font-size:20px;
+ line-height:1.5;
+ font-weight:normal;
+ font-style:normal;
+ color:#000;
+
+ }
+ .cron-command-line:active{
+ color:#9fb749;
+ }
+ .cron-list .cron-command-line{
+ border-bottom:1px solid #fff;
+ }
+
+ .cron-reported-to{}
+
+ .cron-reported-to .prop-box{
+ margin:0;
+ }
+ .cron-reported-to .prop-title{
+ padding-right:3px;
+ }
+ .cron-reported-to .prop-value{
+ padding:0 3px 0 0;
+ }
+
+/* Users list
+- - - - - - - - - - - - - - - - - - - */
+.users-list{}
+
+ .users-list .row{
+ padding-bottom:17px;
+ }
+ .users-list .row-details{
+ padding-top:3px;
+ }
+ .users-list .entry-created{
+ padding-top:10px;
+ }
+ .users-list .user-wrap{
+ margin:0 0 19px;
+ }
+ .users-list .props-main{
+ width:345px;
+ width:330px;
+ }
+ .users-list .username-box{
+ padding-top:6px;
+ margin:0 0 15px;
+ }
+ .users-list .username-box .user{
+ position:relative;
+ top:-6px;
+ }
+ .users-list .username-box .nickname{
+ border-bottom:1px solid #fff;
+ }
+
+ .user-backups-box{
+ margin-top:5px;
+ }
+ .user-backups-box .prop-title{
+ border-bottom:1px solid #CBCBBF;
+ font-size:12px;
+ text-transform:capitalize;
+ cursor:pointer;
+ color:#777;
+ }
+
+ .users-list .props-additional{
+ width:200px;
+ width:225px;
+ }
+ .users-list .props-additional .prop-box,
+ .users-list .props-ext .prop-box{
+ display:block;
+ }
+ .users-list .props-additional .ns1-box,
+ .users-list .props-additional .ns2-box{
+ padding-left:27px;
+ }
+ .users-list .webtpl-box .group-switcher,
+ .users-list .ns-list-box .group-switcher{
+ padding-left:15px;
+ }
+ .users-list .props-additional .ns1-box .prop-title,
+ .users-list .props-additional .ns2-box .prop-title{
+ display: inline;
+ float: left;
+ margin: 2px 0 0 -27px;
+ }
+ .users-list .props-additional .ns1-box .prop-value,
+ .users-list .props-additional .ns2-box .prop-value{
+ padding:0;
+ }
+
+ .users-list .props-ext{
+ width:190px;
+ }
+
+ .users-list .db-box,
+ .users-list .dnsdomains-box{
+ margin-top:24px;
+ }
+ .users-list .backups-box{
+ margin:0;
+ }
+
+ .username-box .prop-box{
+ position:relative;
+ margin:0;
+ }
+ .user-details{
+ font-size:12px;
+ }
+ .user-details .user-email{
+ color:#777;
+ padding-right:5px;
+ }
+ .user-details .user-reports{
+ color:#9c9c9c;
+ }
+ .user-details-box .prop-box{
+ margin:0 0 5px;
+ }
+ .user-details-box .user-name .prop-value,
+ .user-details-box .user-email{
+ font-style:italic;
+ color:#706f6b;
+ }
+
+/* DB list
+- - - - - - - - - - - - - - - - - - - */
+.db-list{
+ padding-top:6px;
+}
+
+ .db-list .first-row{
+ padding-top:5px;
+ }
+ .db-list .row-details{
+ padding-top:3px;
+ padding-bottom:2px;
+ }
+ .db-list .db-devider{
+ margin-top:15px;
+ position:relative;
+ display:block;
+ border-bottom:1px solid #e0e0e0;
+ }
+ .db-list .db-devider-title{
+ display:block;
+ position:absolute;
+ top:-8px;
+ left:-50%;
+ width:200%;
+ }
+ .db-list .db-devider-outer{
+ display:block;
+ position:absolute;
+ left:50%;
+ }
+ .db-list .db-devider-inner{
+ background:#fff;
+ position:relative;
+ left:-50%;
+ padding:0 10px;
+
+ font-size:11px;
+ font-weight:bold;
+ text-transform:uppercase;
+ color:#4097B3;
+ }
+
+ .db-list .props-main{
+ width:210px;
+ padding-right:10px;
+ }
+ .db-list .props-additional{
+ width:340px;
+ padding-top:6px;
+ }
+ .db-list .props-ext{
+ width:185px;
+ padding-top:6px;
+ }
+ .db-name{
+ position:relative;
+ margin:0 0 6px;
+ padding:0 3px 0 0;
+ }
+ .db-name-box .db-name{
+ font-size:20px;
+ font-family:Arial, Helvetica, sans-serif;
+ font-weight:normal;
+ font-style:normal;
+ line-height:27px;
+ }
+ .db-name:active{
+ color:#9fb749;
+ }
+ .db-list .db-name{
+ border-bottom:1px solid #fff;
+ }
+
+ .db-list .ownership .prop-box{
+ margin:9px 0 0;
+ }
+ .db-list .ownership .prop-value{
+ padding:0;
+ font-size:11px;
+ font-style:italic;
+ }
+ .db-list .entry-created{
+ padding:0;
+ }
+ .db-user-box{
+ margin:0 0 10px;
+ }
+ .db-user-box .db-user{
+ position:relative;
+ display:block;
+ float:left;
+ margin-right:25px;
+ padding-right:20px;
+
+ font-size:12px;
+ line-height:1.25; /*15px*/
+ font-style:italic;
+ color:#999;
+ }
+ .db-user-box .db-user:hover{
+ color:#f00;
+ }
+ .db-user-box .change-pwd{
+ position:relative;
+ top:1px;
+ display:inline-block;
+ border-bottom:1px solid #c9cabc;
+ text-transform:uppercase;
+ line-height:13px;
+ cursor:pointer;
+ visibility:hidden;
+ }
+ .add-db-user{
+ border-bottom:1px solid #c9cabc;
+ text-transform:uppercase;
+ line-height:13px;
+ padding-left:10px;
+ background:url(../i/auth-plus.png) no-repeat 0 50%;
+ color:#555;
+ cursor:pointer;
+ }
+ .backup-db{
+ float:left;
+ position:relative;
+ top:2px;
+ display:-moz-inline-stack;
+ display:inline-block;
+ vertical-align:top;
+
+ border-bottom:1px solid #cacbbd;
+ font-size:12px;
+ line-height:13px;
+ color:#777;
+ cursor:pointer;
+ }
+ .db-list .b-usage-box{
+ float:right;
+ position:relative;
+ top:1px;
+ }
+ .db-list .b-usage-box .usage-box{
+ width:auto;
+ }
+ .db-list .b-usage-box .value,
+ .db-list .b-usage-box .max-size{
+ color:#797979;
+ }
+ .db-list .b-usage-box .value-box{
+ width:60px;
+ margin-right:5px;
+ }
+ .db-list .b-usage-box .max-size{
+ float:left;
+ }
+ .db-list .b-usage-box .max-size .units{
+ color:#ABABAB;
+ }
+
+/* Backups list
+- - - - - - - - - - - - - - - - - - - */
+.backups-list{}
+
+ .backups-list .row{
+ padding:25px 10px 15px;
+ }
+ .backups-list .ownership{
+ padding:5px 0 0;
+ }
+ .backups-list .props-main{
+ padding-top:5px;
+ }
+ .backups-list .props-main .prop-box{
+ margin:0;
+ }
+ .backups-list .props-additional{
+ width:165px;
+ padding:4px 0 0;
+ }
+ .backups-list .props-ext{
+ width:165px;
+ padding:0;
+ }
+ .backups-list .entry-created{
+ width:185px;
+ padding:0;
+ }
+ .backups-list .backup-date,
+ .backups-list .backup-weekday{
+ display:-moz-inline-stack;
+ display:inline-block;
+ vertical-align:top;
+ }
+ .backups-list .backup-date .backup-day{
+ display:block;
+ width:105px;
+ font-size:14px;
+ font-family:Arial,Helvetica,sans-serif;
+ font-weight:bold;
+ line-height:20px;
+ color:#47443f;
+ }
+ .backups-list .backup-weekday{
+ padding-top:4px;
+ color:#408abb;
+ }
+ .backups-list .backup-time,
+ .backups-list .generation-time .prop-value{
+ font-size:10px;
+ color:#999;
+ }
+ .backups-list .generation-time .prop-value{
+ color:#9C9C9C;
+ }
+
+ .backups-list .generation-time{
+ padding-top:4px;
+ }
+ .backups-list .backup-size{
+ display:-moz-inline-stack;
+ display:inline-block;
+ padding-right:12px;
+
+ font-size:10px;
+ line-height:24px;
+
+ background:url(../i/green-bracket-l.png) no-repeat 0 50%;
+ color:#595959;
+ }
+ .backups-list .backup-size-inner{
+ display:-moz-inline-stack;
+ display:inline-block;
+
+ padding:0 10px;
+ background:url(../i/green-bracket-r.png) no-repeat 100% 50%;
+ }
+ .backups-list .backup-url,
+ .backups-list .backup-actions{
+ font-size:13px;
+ color:#999;
+ }
+ .backups-list .backup-actions{
+ background:#ccc;
+ }
+ .backups-list .backup-actions-url{
+ float:right;
+ display:-moz-inline-stack;
+ display:inline-block;
+ vertical-align:top;
+
+ -webkit-border-radius:9px;
+ -moz-border-radius:9px;
+ border-radius:9px;
+
+ border:2px solid #fff;
+ color:#999;
+ line-height:26px;
+ }
+ .backups-list .row a.backup-actions-url:hover{
+ padding:0 12px;
+
+ border-color:#c8c09c;
+ background-color:#feff99;
+ color:#444428;
+ font-size:14px;
+ font-family:Arial, Helvetica, sans-serif;
+ font-weight:bold;
+ cursor:pointer;
+ text-decoration:none;
+ text-transform:uppercase;
+ }
+
+ .backups-list .detailed-restore-ext{
+ display:none;
+ }
+
+ .backups-list a.detailed-restore-url:hover .detailed-restore-title{
+ text-transform:none;
+ }
+ .backups-list a.detailed-restore-url:hover .detailed-restore-ext{
+ display:inline-block;
+ }
+
+ .backups-list .restore-url{
+ margin-left:10px;
+ color:#93b749;
+ }
+
+ .backup-tree{
+ padding-left:130px;
+ }
+
+ .backup-tree .backup-tree-item{
+ padding:0 0 7px 25px;
+ background:url(../i/backup-checkbox.png) no-repeat 0 .5em;
+ }
+ .backup-tree .unchecked{
+ background:url(../i/backup-checkbox-unchecked.png) no-repeat 0 .5em;
+ }
+ .backup-tree .checked{
+ background:url(../i/backup-checkbox-checked.png) no-repeat 0 .5em;
+ }
+
+ .backup-tree .backup-sections,
+ .backup-tree .backup-sections .sub-tree{
+ padding:10px 0 0 25px;
+ }
+
+ .backup-tree .node-item{
+ font-size:13px;
+ font-weight:bold;
+ padding-left:15px;
+ background:url(../i/backup-collapsed-ico.png) no-repeat 0 .3em;
+ border-bottom:1px dashed #cfd19f;
+ color:#5a6962;
+ cursor:pointer;
+ }
+ .backup-tree .node-item:hover{
+ color:#ffcf0b;
+ }
+
+ .backup-tree .expanded{
+ background:url(../i/backup-expand-ico.png) no-repeat 0 .45em;
+ }
+ .backup-tree .backup-sections .sub-tree .node-item{
+ font-style:italic;
+ color:#abad85;
+ padding:0;
+ background:none;
+ border:none;
+ }
+ .backup-tree .backup-sections .sub-tree .node-item:hover{
+ color:#abad85;
+ }
+
+ .backup-tree .backup-sections .sub-tree .checked .node-item{
+ color:#5a6962;
+ font-style:normal;
+ }
+
+/* Highlighted backup row */
+.backup-details-row_highlighted,
+.backups-list .backup-details-row_highlighted:hover{
+ background:#666;
+ }
+ .backup-details-row_highlighted .notes-wrap{
+ font-size:14px;
+ line-height:25px;
+ font-weight:bold;
+ text-transform:uppercase;
+ color:#bad23e;
+ text-align:center;
+ padding:0 0 10px;
+ }
+ .backup-details-row_highlighted .restore-ico{
+ padding:4px 0 4px 30px;
+ line-height:25px;
+ background:url(../i/backup-restore-ico.png) no-repeat;
+ }
+ .backup-details-row_highlighted .backup-time{
+ color:#fff;
+ }
+ .backup-details-row_highlighted .ownership .prop-value{
+ color:#c8c8c8;
+ }
+ .backups-list .backup-details-row_highlighted .backup-day{
+ color:#fff;
+ }
+ .backups-list .backup-details-row_highlighted .backup-size{
+ color:#ccc;
+ }
+ .backups-list .backup-details-row_highlighted .backup-actions{
+ display:none;
+ }
+
+/* row hover effect
+- - - - - - - - - - - - - - - - - - - */
+.row:hover{
+ background-color:#ffffcb;
+}
+.ip-list .row:hover .ip-adr,
+.domains-list .row:hover .names .primary,
+.dns-list .row:hover .names .primary,
+.cron-list .row:hover .cron-command-line,
+.users-list .row:hover .username-box .nickname,
+.db-list .row:hover .db-name{
+ border-bottom-style:dashed;
+ border-bottom-color:#e5e5e5;
+ border-bottom-color:#bbb;
+}
+.ip-list .row:hover .ip-adr:hover,
+.domains-list .row:hover .names .primary:hover,
+.dns-list .row:hover .names .primary:hover,
+.cron-list .row:hover .cron-command-line:hover,
+.users-list .row:hover .username-box .nickname:hover,
+.db-list .row:hover .db-name:hover{
+ cursor:pointer;
+ border-bottom-style:solid;
+ border-bottom-color:#b4c775;
+}
+.ip-list .ip-details-suspended:hover .ip-adr,
+.ip-list .ip-details-suspended:hover .ip-adr:hover{
+ border:none;
+ cursor:default;
+}
+.backups-list .row:hover .backup-actions-url{
+ border-color:#ffffcb;
+}
+
+.row:hover .ip-status-info{
+ background:url(../i/enabled-ico_.png) no-repeat 100% 50%;
+}
+.row:hover .delete-entry,
+.row:hover .db-user-box .db-user{
+ background:url(../i/delete-ico-off.png) no-repeat 100% 4px;
+}
+.row:hover .ip-suspended-status{
+ background:url(../i/suspended-ico.png) no-repeat 100% 65%;
+}
+.ip-status-info:hover .ip-status-text,
+.delete-entry:hover .delete-entry-text,
+.row:hover .db-user-box .change-pwd{
+ visibility:visible;
+}
+.row .ip-status-info:hover{
+ background-image:url(../i/enabled-ico-hover.png);
+}
+.row .ip-suspended-status:hover{
+ background-image:url(../i/suspended-ico.png);
+}
+.row .delete-entry:hover,
+.row .db-user-box .db-user:hover{
+ background-image:url(../i/delete-ico.png);
+ cursor:pointer;
+}
+.row .delete-entry:active{
+ background-image:url(../i/delete-ico-active.png);
+ cursor:pointer;
+}
+.delete-entry:hover .delete-entry-text{
+ color:#333;
+}
+.delete-entry .delete-entry-text:hover{
+ cursor:pointer;
+}
+.delete-entry .delete-entry-text:active{
+ color:#f00;
+}
+.row:hover .show-records,
+.row:hover .hide-records,
+.row:hover .template-box .prop-value,
+.domains-list .row:hover .stats-box .stats-auth-text,
+.domains-list .row:hover .nginx-box .nginx-ext-list,
+.row:hover .db-user-box .change-pwd,
+.row:hover .add-db-user,
+.row:hover .backup-db,
+.row:hover .user-backups-box .prop-title{
+ color:#6aa0ac;
+ border-bottom-color:#cacbbd;
+}
+.row:hover .template-box .prop-value:hover,
+.row:hover .show-records:hover,
+.hide-records:hover,
+.domains-list .row:hover .stats-box .stats-auth-text:hover,
+.domains-list .row:hover .nginx-box .nginx-ext-list:hover,
+.row .db-user-box .change-pwd:hover,
+.row .add-db-user:hover,
+.row .backup-db:hover,
+.row .user-backups-box:hover .prop-title{
+ color:#575757;
+ border-bottom-color:#b4c775;
+}
+.row .template-box .prop-value:active,
+.row .show-records:active,
+.hide-records:active,
+.domains-list .row:hover .stats-box .stats-auth-text:active,
+.domains-list .row:hover .nginx-box .nginx-ext-list:active,
+.domains-list .row:hover .template-box .prop-value:active,
+.users-list .username-box .nickname:active,
+.users-list .user-backups-box .prop-title:active,
+.row .db-user-box .change-pwd:active,
+.row .add-db-user:active,
+.row .backup-db:active,
+.row .user-backups-box .prop-title:active{
+ color:#b4c775;
+}
+
+/* Checked row
+- - - - - - - - - - - - - - - - - - - */
+.checked-row{
+ background-color:#e4f7bf;
+}
+ .checked-row .row-actions-box .check-control{
+ background-position:0 -30px;
+ }
+
+ .domains-list .checked-row .names .primary,
+ .dns-list .checked-row .names .primary,
+ .cron-list .checked-row .cron-command-line,
+ .users-list .checked-row .username-box .nickname,
+ .db-list .checked-row .db-name{
+ border-bottom:1px solid #e4f7bf;
+ }
+
+/* Suspended row
+- - - - - - - - - - - - - - - - - - - */
+.ip-details-suspended,
+.suspended-row{}
+
+.ip-details-suspended:hover,
+.suspended-row:hover{
+ background-color:#fff;
+}
+ .ip-details-suspended .entry-created,
+ .suspended-row .entry-created,
+ .suspended-row .username-box .role{
+ color:#ccc;
+ }
+ .ip-details-suspended .ip-adr,
+ .suspended-row .ip-adr,
+ .suspended-row .cron-command-line,
+ .suspended-row .username-box,
+ .suspended-row .username-box .nickname,
+ .suspended-row .user-name .prop-value,
+ .suspended-row .user-backups-box .prop-title,
+ .suspended-row .user-details .user-email,
+ .suspended-row .user-details .user-reports,
+ .suspended-row .template-box .prop-value,
+ .suspended-row .stats-box-title,
+ .suspended-row .stats-box .stats-auth,
+ .suspended-row .nginx-box .nginx-ext-list{
+ color:#ccc;
+ border:none;
+ }
+ .ip-details-suspended:hover .ip-adr,
+ .suspended-row:hover .ip-adr,
+ .suspended-row:hover .names .primary,
+ .domains-list .suspended-row:hover .names .primary,
+ .dns-list .suspended-row:hover .names .primary,
+ .cron-list .suspended-row:hover .cron-command-line,
+ .users-list .suspended-row:hover .username-box .nickname,
+ .users-list .suspended-row:hover .user-backups-box .prop-title,
+ .suspended-row .stats-box .stats-auth-text{
+ border:none;
+ }
+ .ip-details-suspended:hover .ip-adr:hover,
+ .suspended-row:hover .ip-adr:hover,
+ .cron-list .suspended-row:hover .cron-command-line:hover,
+ .users-list .suspended-row:hover .username-box .nickname:hover,
+ .users-list .suspended-row:hover .user-backups-box .prop-title:hover,
+ .cron-list .suspended-row:hover .cron-command-line{
+ border:none;
+ cursor:default;
+ }
+ .users-list .suspended-row .username-box .nickname:active,
+ .users-list .suspended-row .user-backups-box .prop-title:active{
+ color:#ccc;
+ }
+
+.ip-details-suspended .prop-title,
+.ip-details-suspended .prop-value,
+.suspended-row .prop-title,
+.suspended-row .prop-value,
+.suspended-row .b-usage-box .value,
+.suspended-row .b-usage-box .max-size,
+.suspended-row .b-usage-box .max-size .units,
+.suspended-row .b-usage-box2 .value,
+.suspended-row .b-usage-box2 .max-size,
+.suspended-row .names .primary{
+ color:#ccc;
+}
+.suspended-row .b-usage-box .bar,
+.suspended-row .b-usage-box2 .graph .bar {
+ background-color:#ccc;
+}
+.suspended-row:hover .show-records,
+.suspended-row:hover .hide-records,
+.suspended-row:hover .template-box .prop-value,
+.domains-list .suspended-row:hover .stats-box .stats-auth-text,
+.domains-list .suspended-row:hover .nginx-box .nginx-ext-list,
+.suspended-row:hover .user-backups-box .prop-title,
+.suspended-row:hover .template-box .prop-value:hover,
+.suspended-row:hover .show-records:hover,
+.suspended-row .hide-records:hover,
+.domains-list .suspended-row:hover .stats-box .stats-auth-text:hover,
+.domains-list .suspended-row:hover .nginx-box .nginx-ext-list:hover,
+.domains-list .suspended-row:hover .names .primary:hover,
+.dns-list .suspended-row:hover .names .primary:hover{
+ color:#ccc;
+ border:none;
+ cursor:default;
+}
+.suspended-row:hover .template-box .prop-value:active,
+.suspended-row:hover .show-records:active,
+.suspended-row .hide-records:active,
+.domains-list .suspended-row:hover .stats-box .stats-auth-text:active,
+.domains-list .suspended-row:hover .nginx-box .nginx-ext-list:active,
+.users-list .suspended-row .username-box .nickname:active,
+.users-list .suspended-row .user-backups-box .prop-title:active{
+ color:#ccc;
+}
+.suspended-row .stats-box-title{
+ background-image:url(../i/stats-curve-grey.png);
+}
\ No newline at end of file
diff --git a/web/static-templates/db.html b/web/static-templates/db.html
new file mode 100644
index 00000000..321e7247
--- /dev/null
+++ b/web/static-templates/db.html
@@ -0,0 +1,700 @@
+
+
+
+
+ Vesta | Databases
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Users
+
+
+
+ 386 users
+ 7 blocked
+
+
+
+
+
+
+
+
+
+ Web Domain
+
+
+
+ 580 domains
+ 22 out of mem
+ 3 waiting
+
+
+
+
+
+
+
+
+
+ Mail
+
+
+
+ 320 domains
+ 1209 mailboxes
+ 25 full
+
+
+
+
+
+
+
+
+
+ DB
+
+
+
+ 7 db
+
+
+
+
+
+
+
+
+
+ Dns
+
+
+
+ 289 records
+
+
+
+
+
+
+
+
+
+ IP
+
+
+
+ 7 templates
+
+
+
+
+
+
+
+
+
+ Cron
+
+
+
+ 15 records
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MySQL
+
+
+
+
+
+
+
+
+
+
+ Clinton Brazeal Super DB
+
+
+
+
+
+ naumov-socolov
+
+ change password
+
+
+
+ socialmediaexaminer (read only)
+
+ change password
+
+
Add user
+
+
+
+
+
+
+
+
+
+
+
+
+ Example database name
+
+
+
+
+
+ Lance Lafata
+
+ change password
+
+
+
+ Tania Maietta (read only)
+
+ change password
+
+
+
+ Tyrone Diangelo
+
+ change password
+
+
+
+ Elinor Boissonneault (read only)
+
+ change password
+
+
Add user
+
+
+
+
+
+
+
+
+
+
+
+
+ Twitter User Object
+
+
+
+
+
+ Evan Williams
+
+ change password
+
+
+
+ Jack Dorsey
+
+ change password
+
+
+
+ Biz Stone
+
+ change password
+
+
+
+ Abdur Chowdhury
+
+ change password
+
+
+
+ Jason Goldman
+
+ change password
+
+
+
+ Sean Garrett
+
+ change password
+
+
+
+ Greg Pass (read only)
+
+ change password
+
+
Add user
+
+
+
+
+
+
+
+
+ Postgres
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Pat Condon
+
+ change password
+
+
+
+ Graham Weston (read only)
+
+ change password
+
+
+
+ Mark Roenigk
+
+ change password
+
+
+
+ Bruce Knooihuizen (read only)
+
+ change password
+
+
+
+ John Engates
+
+ change password
+
+
+
+ Lanham Napier
+
+ change password
+
+
Add user
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Jim Whitehurst
+
+ change password
+
+
+
+ Naren Gupta (read only)
+
+ change password
+
+
+
+ Jeff Clarke
+
+ change password
+
+
+
+ Micheline Chau (read only)
+
+ change password
+
+
+
+ Jeff Clarke
+
+ change password
+
+
Add user
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Jason Fried
+
+ change password
+
+
+
+ David Heinemeier Hansson
+
+ change password
+
+
+
+ Stephen Campbell
+
+ change password
+
+
Add user
+
+
+
+
+
+
+
+
+
+
+ db type:
+
+ MySQL
+ Postgres
+
+
+
+ db name:
+
+
+
+
+ db host:
+
+ user
+ smashingmagazine.com
+
+
+
+
+ suspended:
+
+
+
+
+
+ Cancel
+ Delete
+
+
+
+
+
+
+
+
+
diff --git a/web/static-templates/dns.html b/web/static-templates/dns.html
index 6ce77966..fe21c334 100644
--- a/web/static-templates/dns.html
+++ b/web/static-templates/dns.html
@@ -1,450 +1,504 @@
-
-
-
-
- Vesta | DNS
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Users
-
-
-
- 386 users
- 7 blocked
-
-
-
-
-
-
-
-
- Web Domain
-
-
-
- 580 domains
- 22 out of mem
- 3 waiting
-
-
-
-
-
-
-
-
- Mail
-
-
-
- 320 domains
- 1209 mailboxes
- 25 full
-
-
-
-
-
-
-
-
- DB
-
-
-
- 7 db
-
-
-
-
-
-
-
-
- Dns
-
-
-
- 289 records
-
-
-
-
-
-
-
-
- IP
-
-
-
- 7 templates
-
-
-
-
-
-
-
-
- Cron
-
-
-
- 15 records
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Механическая природа пододвигается под устойчивый силовой трёхосный гироскопический стабилизатор, что увязывается со структурно-тектонической обстановкой, гидродинамическими условиями и литолого-минералогическим составом пород. Фосфоритообразование методически опускает уходящий огненный пояс, исходя из суммы моментов. Инерциальная навигация, в соответствии с основным законом динамики, представляет собой тальк, пользуясь последними системами уравнений. Имея такие данные, можно сделать существенный вывод о том, что маховик неустойчив.
-
-
-
-
-
-
-
-
-
-
- enabled
- delete
-
-
-
-
-
-
- naumov-socolov.co.uk
-
-
Show records
-
-
-
- 192. 52. 107. 26
-
- template:
- default
-
-
-
-
-
- ttl:
- 7200
-
-
- soa:
- n1.readwriteweb.com
-
-
-
-
-
-
-
-
-
-
- enabled
- delete
-
-
-
-
-
-
- naumov-socolov.co.uk
-
-
Show records
-
-
-
- 192. 52. 107. 26
-
- template:
- default
-
-
-
-
-
- ttl:
- 7200
-
-
- soa:
- n1.readwriteweb.com
-
-
-
-
-
-
-
-
-
-
- enabled
- delete
-
-
-
-
-
-
- naumov-socolov.co.uk
-
-
Show records
-
-
-
- 192. 52. 107. 26
-
- template:
- default
-
-
-
-
-
- ttl:
- 7200
-
-
- soa:
- n1.readwriteweb.com
-
-
-
-
-
-
-
-
-
-
- enabled
- delete
-
-
-
-
-
-
- naumov-socolov.co.uk
-
-
Show records
-
-
-
- 192. 52. 107. 26
-
- template:
- default
-
-
-
-
-
- ttl:
- 7200
-
-
- soa:
- n1.readwriteweb.com
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Cancel
- Help
-
-
-
-
-
-
-
- domain:
-
-
-
-
- template:
-
- default
- custom
- advanced
-
- View template settings
-
-
-
-
- Cancel
- Help
-
-
-
-
-
-
-
-
-
+
+
+
+
+ Vesta | DNS
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Users
+
+
+
+ 386 users
+ 7 blocked
+
+
+
+
+
+
+
+
+
+ Web Domain
+
+
+
+ 580 domains
+ 22 out of mem
+ 3 waiting
+
+
+
+
+
+
+
+
+
+ Mail
+
+
+
+ 320 domains
+ 1209 mailboxes
+ 25 full
+
+
+
+
+
+
+
+
+
+ DB
+
+
+
+ 7 db
+
+
+
+
+
+
+
+
+
+ Dns
+
+
+
+ 289 records
+
+
+
+
+
+
+
+
+
+ IP
+
+
+
+ 7 templates
+
+
+
+
+
+
+
+
+
+ Cron
+
+
+
+ 15 records
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ naumov-socolov.co.uk
+
+
Show records
+
+
+
+ 192. 52. 107. 26
+
+ template:
+ default
+
+
+
+
+
+ ttl:
+ 7200
+
+
+ soa:
+ n1.readwriteweb.com
+
+
+
+
+
+
+
+
+
+
+
+
+ naumov-socolov.co.uk
+
+
Show records
+
+
+
+ 192. 52. 107. 26
+
+ template:
+ default
+
+
+
+
+
+ ttl:
+ 7200
+
+
+ soa:
+ n1.readwriteweb.com
+
+
+
+
+
+
+
+
+
+
+
+
+ naumov-socolov.co.uk
+
+
Show records
+
+
+
+ 192. 52. 107. 26
+
+ template:
+ default
+
+
+
+
+
+ ttl:
+ 7200
+
+
+ soa:
+ n1.readwriteweb.com
+
+
+
+
+
+
+
+
+
+
+
+
+ naumov-socolov.co.uk
+
+
Show records
+
+
+
+ 192. 52. 107. 26
+
+ template:
+ default
+
+
+
+
+
+ ttl:
+ 7200
+
+
+ soa:
+ n1.readwriteweb.com
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cancel
+ Delete
+
+
+
+
+
+
+
+
+ domain:
+
+
+
+
+ template:
+
+ default
+ custom
+ advanced
+
+ View template settings
+
+
+ ttl:
+
+
+
+ soa:
+
+
+
+
+ suspended:
+
+
+
+
+
+ Cancel
+ Delete
+
+
+
+
+
+
+
+
+
diff --git a/web/static-templates/i/_asterisk.gif b/web/static-templates/i/_asterisk.gif
new file mode 100644
index 00000000..1cdb3d56
Binary files /dev/null and b/web/static-templates/i/_asterisk.gif differ
diff --git a/web/static-templates/i/asterisk1.png b/web/static-templates/i/asterisk1.png
new file mode 100644
index 00000000..a3fb831f
Binary files /dev/null and b/web/static-templates/i/asterisk1.png differ
diff --git a/web/static-templates/i/asterisk2.png b/web/static-templates/i/asterisk2.png
new file mode 100644
index 00000000..363ea7ad
Binary files /dev/null and b/web/static-templates/i/asterisk2.png differ
diff --git a/web/static-templates/i/auth/auth-bg.png b/web/static-templates/i/auth/auth-bg.png
new file mode 100644
index 00000000..d605bba5
Binary files /dev/null and b/web/static-templates/i/auth/auth-bg.png differ
diff --git a/web/static-templates/i/auth/checkboxes.png b/web/static-templates/i/auth/checkboxes.png
new file mode 100644
index 00000000..9700e1ac
Binary files /dev/null and b/web/static-templates/i/auth/checkboxes.png differ
diff --git a/web/static-templates/i/auth/form-bg.png b/web/static-templates/i/auth/form-bg.png
new file mode 100644
index 00000000..b08d533a
Binary files /dev/null and b/web/static-templates/i/auth/form-bg.png differ
diff --git a/web/static-templates/i/auth/logo.png b/web/static-templates/i/auth/logo.png
new file mode 100644
index 00000000..4ce3235d
Binary files /dev/null and b/web/static-templates/i/auth/logo.png differ
diff --git a/web/static-templates/i/auth/planet-1.png b/web/static-templates/i/auth/planet-1.png
new file mode 100644
index 00000000..37909486
Binary files /dev/null and b/web/static-templates/i/auth/planet-1.png differ
diff --git a/web/static-templates/i/auth/planet-2.png b/web/static-templates/i/auth/planet-2.png
new file mode 100644
index 00000000..4e68279c
Binary files /dev/null and b/web/static-templates/i/auth/planet-2.png differ
diff --git a/web/static-templates/i/autocomplete-field-arrows-sprite.png b/web/static-templates/i/autocomplete-field-arrows-sprite.png
new file mode 100644
index 00000000..355589fd
Binary files /dev/null and b/web/static-templates/i/autocomplete-field-arrows-sprite.png differ
diff --git a/web/static-templates/i/backup-checkbox-checked.png b/web/static-templates/i/backup-checkbox-checked.png
new file mode 100644
index 00000000..80ce7f98
Binary files /dev/null and b/web/static-templates/i/backup-checkbox-checked.png differ
diff --git a/web/static-templates/i/backup-checkbox-unchecked.png b/web/static-templates/i/backup-checkbox-unchecked.png
new file mode 100644
index 00000000..d6757ce4
Binary files /dev/null and b/web/static-templates/i/backup-checkbox-unchecked.png differ
diff --git a/web/static-templates/i/backup-checkbox.png b/web/static-templates/i/backup-checkbox.png
new file mode 100644
index 00000000..7a29e0cb
Binary files /dev/null and b/web/static-templates/i/backup-checkbox.png differ
diff --git a/web/static-templates/i/backup-checkboxes.png b/web/static-templates/i/backup-checkboxes.png
new file mode 100644
index 00000000..792bc1c1
Binary files /dev/null and b/web/static-templates/i/backup-checkboxes.png differ
diff --git a/web/static-templates/i/backup-collapsed-ico.png b/web/static-templates/i/backup-collapsed-ico.png
new file mode 100644
index 00000000..0b120fe4
Binary files /dev/null and b/web/static-templates/i/backup-collapsed-ico.png differ
diff --git a/web/static-templates/i/backup-expand-ico.png b/web/static-templates/i/backup-expand-ico.png
new file mode 100644
index 00000000..50f68706
Binary files /dev/null and b/web/static-templates/i/backup-expand-ico.png differ
diff --git a/web/static-templates/i/backup-ico.png b/web/static-templates/i/backup-ico.png
new file mode 100644
index 00000000..b032ea21
Binary files /dev/null and b/web/static-templates/i/backup-ico.png differ
diff --git a/web/static-templates/i/backup-restore-ico.png b/web/static-templates/i/backup-restore-ico.png
new file mode 100644
index 00000000..69619664
Binary files /dev/null and b/web/static-templates/i/backup-restore-ico.png differ
diff --git a/web/static-templates/i/bar-value-mark.png b/web/static-templates/i/bar-value-mark.png
new file mode 100644
index 00000000..c793daee
Binary files /dev/null and b/web/static-templates/i/bar-value-mark.png differ
diff --git a/web/static-templates/i/check-row-sprite-2011-12-18.png b/web/static-templates/i/check-row-sprite-2011-12-18.png
new file mode 100644
index 00000000..385b0dd3
Binary files /dev/null and b/web/static-templates/i/check-row-sprite-2011-12-18.png differ
diff --git a/web/static-templates/i/check-row-sprite_.png b/web/static-templates/i/check-row-sprite_.png
new file mode 100644
index 00000000..385b0dd3
Binary files /dev/null and b/web/static-templates/i/check-row-sprite_.png differ
diff --git a/web/static-templates/i/checkbox-1.png b/web/static-templates/i/checkbox-1.png
new file mode 100644
index 00000000..f24061a4
Binary files /dev/null and b/web/static-templates/i/checkbox-1.png differ
diff --git a/web/static-templates/i/checkboxes-2011-12-18.png b/web/static-templates/i/checkboxes-2011-12-18.png
new file mode 100644
index 00000000..43ca35db
Binary files /dev/null and b/web/static-templates/i/checkboxes-2011-12-18.png differ
diff --git a/web/static-templates/i/chekbox-selector.png b/web/static-templates/i/chekbox-selector.png
new file mode 100644
index 00000000..698ac83b
Binary files /dev/null and b/web/static-templates/i/chekbox-selector.png differ
diff --git a/web/static-templates/i/chosen-sprite.png b/web/static-templates/i/chosen-sprite.png
new file mode 100644
index 00000000..d08e4b7e
Binary files /dev/null and b/web/static-templates/i/chosen-sprite.png differ
diff --git a/web/static-templates/i/cust-option-bullets.png b/web/static-templates/i/cust-option-bullets.png
new file mode 100644
index 00000000..074b8f84
Binary files /dev/null and b/web/static-templates/i/cust-option-bullets.png differ
diff --git a/web/static-templates/i/custom-arrow.png b/web/static-templates/i/custom-arrow.png
new file mode 100644
index 00000000..86519025
Binary files /dev/null and b/web/static-templates/i/custom-arrow.png differ
diff --git a/web/static-templates/i/delete-ico-active.png b/web/static-templates/i/delete-ico-active.png
new file mode 100644
index 00000000..b7e334f3
Binary files /dev/null and b/web/static-templates/i/delete-ico-active.png differ
diff --git a/web/static-templates/i/fav.ico b/web/static-templates/i/fav.ico
new file mode 100644
index 00000000..7c26ae9d
Binary files /dev/null and b/web/static-templates/i/fav.ico differ
diff --git a/web/static-templates/i/form-checkboxes.png b/web/static-templates/i/form-checkboxes.png
new file mode 100644
index 00000000..fadce3ea
Binary files /dev/null and b/web/static-templates/i/form-checkboxes.png differ
diff --git a/web/static-templates/i/form-group-collapsed.png b/web/static-templates/i/form-group-collapsed.png
index f8ce963d..63bc551c 100644
Binary files a/web/static-templates/i/form-group-collapsed.png and b/web/static-templates/i/form-group-collapsed.png differ
diff --git a/web/static-templates/i/form-group-collapsed_.png b/web/static-templates/i/form-group-collapsed_.png
new file mode 100644
index 00000000..f8ce963d
Binary files /dev/null and b/web/static-templates/i/form-group-collapsed_.png differ
diff --git a/web/static-templates/i/green-bracket-l-highlighted.png b/web/static-templates/i/green-bracket-l-highlighted.png
new file mode 100644
index 00000000..7f37fae8
Binary files /dev/null and b/web/static-templates/i/green-bracket-l-highlighted.png differ
diff --git a/web/static-templates/i/green-bracket-l.png b/web/static-templates/i/green-bracket-l.png
new file mode 100644
index 00000000..4702e9f6
Binary files /dev/null and b/web/static-templates/i/green-bracket-l.png differ
diff --git a/web/static-templates/i/green-bracket-r-highlighted.png b/web/static-templates/i/green-bracket-r-highlighted.png
new file mode 100644
index 00000000..ae8303f6
Binary files /dev/null and b/web/static-templates/i/green-bracket-r-highlighted.png differ
diff --git a/web/static-templates/i/green-bracket-r.png b/web/static-templates/i/green-bracket-r.png
new file mode 100644
index 00000000..df81a6de
Binary files /dev/null and b/web/static-templates/i/green-bracket-r.png differ
diff --git a/web/static-templates/i/group-value-bullet.png b/web/static-templates/i/group-value-bullet.png
new file mode 100644
index 00000000..44ac08fa
Binary files /dev/null and b/web/static-templates/i/group-value-bullet.png differ
diff --git a/web/static-templates/i/group-values-collapsed.png b/web/static-templates/i/group-values-collapsed.png
new file mode 100644
index 00000000..fefb4963
Binary files /dev/null and b/web/static-templates/i/group-values-collapsed.png differ
diff --git a/web/static-templates/i/info-popup-bg-1.png b/web/static-templates/i/info-popup-bg-1.png
new file mode 100644
index 00000000..cf1afa74
Binary files /dev/null and b/web/static-templates/i/info-popup-bg-1.png differ
diff --git a/web/static-templates/i/info-popup-bg-2.png b/web/static-templates/i/info-popup-bg-2.png
new file mode 100644
index 00000000..e625cb85
Binary files /dev/null and b/web/static-templates/i/info-popup-bg-2.png differ
diff --git a/web/static-templates/i/info-popup-bg.png b/web/static-templates/i/info-popup-bg.png
new file mode 100644
index 00000000..d6b44c2a
Binary files /dev/null and b/web/static-templates/i/info-popup-bg.png differ
diff --git a/web/static-templates/i/info-popup-sprite-2011-12-14.png b/web/static-templates/i/info-popup-sprite-2011-12-14.png
new file mode 100644
index 00000000..9a754625
Binary files /dev/null and b/web/static-templates/i/info-popup-sprite-2011-12-14.png differ
diff --git a/web/static-templates/i/info-popup-sprite.png b/web/static-templates/i/info-popup-sprite.png
new file mode 100644
index 00000000..95fecff3
Binary files /dev/null and b/web/static-templates/i/info-popup-sprite.png differ
diff --git a/web/static-templates/i/old-add-entry-plus.gif b/web/static-templates/i/old-add-entry-plus.gif
new file mode 100644
index 00000000..06f0cf98
Binary files /dev/null and b/web/static-templates/i/old-add-entry-plus.gif differ
diff --git a/web/static-templates/i/overrun-border.png b/web/static-templates/i/overrun-border.png
new file mode 100644
index 00000000..171463f3
Binary files /dev/null and b/web/static-templates/i/overrun-border.png differ
diff --git a/web/static-templates/i/plus-sprite.png b/web/static-templates/i/plus-sprite.png
new file mode 100644
index 00000000..b4bcacf2
Binary files /dev/null and b/web/static-templates/i/plus-sprite.png differ
diff --git a/web/static-templates/i/plus-sprite1.png b/web/static-templates/i/plus-sprite1.png
new file mode 100644
index 00000000..d2a6fa19
Binary files /dev/null and b/web/static-templates/i/plus-sprite1.png differ
diff --git a/web/static-templates/i/primary-plus.gif b/web/static-templates/i/primary-plus.gif
new file mode 100644
index 00000000..bf607fce
Binary files /dev/null and b/web/static-templates/i/primary-plus.gif differ
diff --git a/web/static-templates/i/primary-plus_active.png b/web/static-templates/i/primary-plus_active.png
new file mode 100644
index 00000000..5cded98e
Binary files /dev/null and b/web/static-templates/i/primary-plus_active.png differ
diff --git a/web/static-templates/i/section-status-sprite-6.png b/web/static-templates/i/section-status-sprite-6.png
new file mode 100644
index 00000000..ad22619e
Binary files /dev/null and b/web/static-templates/i/section-status-sprite-6.png differ
diff --git a/web/static-templates/i/select-arrow-2011-12-18.png b/web/static-templates/i/select-arrow-2011-12-18.png
new file mode 100644
index 00000000..79c34f0d
Binary files /dev/null and b/web/static-templates/i/select-arrow-2011-12-18.png differ
diff --git a/web/static-templates/i/stats-brace.png b/web/static-templates/i/stats-brace.png
new file mode 100644
index 00000000..83839038
Binary files /dev/null and b/web/static-templates/i/stats-brace.png differ
diff --git a/web/static-templates/i/stats-curve-grey.png b/web/static-templates/i/stats-curve-grey.png
new file mode 100644
index 00000000..0ca48f65
Binary files /dev/null and b/web/static-templates/i/stats-curve-grey.png differ
diff --git a/web/static-templates/i/stats-curve.png b/web/static-templates/i/stats-curve.png
new file mode 100644
index 00000000..7ea06d8e
Binary files /dev/null and b/web/static-templates/i/stats-curve.png differ
diff --git a/web/static-templates/i/thin-grey-line-3.gif b/web/static-templates/i/thin-grey-line-3.gif
new file mode 100644
index 00000000..107d0751
Binary files /dev/null and b/web/static-templates/i/thin-grey-line-3.gif differ
diff --git a/web/static-templates/i/thin-grey-line-4.gif b/web/static-templates/i/thin-grey-line-4.gif
new file mode 100644
index 00000000..f88848bf
Binary files /dev/null and b/web/static-templates/i/thin-grey-line-4.gif differ
diff --git a/web/static-templates/i/vesta-italic-logo.png b/web/static-templates/i/vesta-italic-logo.png
new file mode 100644
index 00000000..73df0925
Binary files /dev/null and b/web/static-templates/i/vesta-italic-logo.png differ
diff --git a/web/static-templates/i/vesta-logo-2011-11-16.png b/web/static-templates/i/vesta-logo-2011-11-16.png
new file mode 100644
index 00000000..994e0091
Binary files /dev/null and b/web/static-templates/i/vesta-logo-2011-11-16.png differ
diff --git a/web/static-templates/i/vesta-logo-2011-11-25.png b/web/static-templates/i/vesta-logo-2011-11-25.png
new file mode 100644
index 00000000..de3c489d
Binary files /dev/null and b/web/static-templates/i/vesta-logo-2011-11-25.png differ
diff --git a/web/static-templates/i/vesta-logo-2011-12-14.png b/web/static-templates/i/vesta-logo-2011-12-14.png
new file mode 100644
index 00000000..e66fab8c
Binary files /dev/null and b/web/static-templates/i/vesta-logo-2011-12-14.png differ
diff --git a/web/static-templates/ip.html b/web/static-templates/ip.html
index 6399a0d9..69a4e0ae 100644
--- a/web/static-templates/ip.html
+++ b/web/static-templates/ip.html
@@ -1,435 +1,472 @@
-
-
-
-
- Vesta | IP
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Users
-
-
-
- 386 users
- 7 blocked
-
-
-
-
-
-
-
-
- Web Domain
-
-
-
- 580 domains
- 22 out of mem
- 3 waiting
-
-
-
-
-
-
-
-
- Mail
-
-
-
- 320 domains
- 1209 mailboxes
- 25 full
-
-
-
-
-
-
-
-
- DB
-
-
-
- 7 db
-
-
-
-
-
-
-
-
- Dns
-
-
-
- 289 records
-
-
-
-
-
-
-
-
- IP
-
-
-
- 7 templates
-
-
-
-
-
-
-
-
- Cron
-
-
-
- 15 records
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Механическая природа пододвигается под устойчивый силовой трёхосный гироскопический стабилизатор, что увязывается со структурно-тектонической обстановкой, гидродинамическими условиями и литолого-минералогическим составом пород. Фосфоритообразование методически опускает уходящий огненный пояс, исходя из суммы моментов. Инерциальная навигация, в соответствии с основным законом динамики, представляет собой тальк, пользуясь последними системами уравнений. Имея такие данные, можно сделать существенный вывод о том, что маховик неустойчив.
-
-
-
-
-
-
-
-
-
-
- enabled
- delete
-
-
-
-
-
-
- 192. 52. 107. 26
-
-
- netmask:
- 255.255.255.0
-
-
- interface:
- eth1
-
-
- name:
- shared1.hosting-with-very-long-name.co.uk
-
-
-
-
- owner:
- shared1.hosting-with-very-long-name.co.uk
-
-
- status:
- shared
-
-
-
-
- sys users:
- 9 999
-
-
- web domains:
- 2 346
-
-
-
-
-
-
-
-
-
-
- enabled
- delete
-
-
-
-
-
-
- 192. 52. 107. 26
-
-
- netmask:
- 255.255.255.0
-
-
- interface:
- eth1
-
-
- name:
- shared1.hosting-with-very-long-name.co.uk
-
-
-
-
- owner:
- shared1.hosting-with-very-long-name.co.uk
-
-
- status:
- shared
-
-
-
-
- sys users:
- 9 999
-
-
- web domains:
- 2 346
-
-
-
-
-
-
-
-
-
-
- enabled
- delete
-
-
-
-
-
-
- 192. 52. 107. 26
-
-
- netmask:
- 255.255.255.0
-
-
- interface:
- eth1
-
-
- name:
- shared1.hosting-with-very-long-name.co.uk
-
-
-
-
- owner:
- shared1.hosting-with-very-long-name.co.uk
-
-
- status:
- shared
-
-
-
-
- sys users:
- 9 999
-
-
- web domains:
- 2 346
-
-
-
-
-
-
-
-
-
-
-
-
- 192. 52. 107. 26
-
-
- netmask:
- 255.255.255.0
-
-
- interface:
- eth1
-
-
- name:
- shared1.hosting-with-very-long-name.co.uk
-
-
-
-
- owner:
- shared1.hosting-with-very-long-name.co.uk
-
-
- status:
- shared
-
-
-
-
- sys users:
- 9 999
-
-
- web domains:
- 2 346
-
-
-
-
-
-
-
-
-
-
- ip address:
-
-
-
- owner:
-
- vesta
- new mexico
- land of magic
-
-
-
- status:
-
- shared
- suspended
- other
-
-
-
- name:
-
-
-
- interface:
-
- eth1
- eth2
- eth3
-
-
-
-
-
- Cancel
- Help
-
-
-
-
-
-
-
-
-
+
+
+
+
+ Vesta | IP
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Users
+
+
+
+ 386 users
+ 7 blocked
+
+
+
+
+
+
+
+
+
+ Web Domain
+
+
+
+ 580 domains
+ 22 out of mem
+ 3 waiting
+
+
+
+
+
+
+
+
+
+ Mail
+
+
+
+ 320 domains
+ 1209 mailboxes
+ 25 full
+
+
+
+
+
+
+
+
+
+ DB
+
+
+
+ 7 db
+
+
+
+
+
+
+
+
+
+ Dns
+
+
+
+ 289 records
+
+
+
+
+
+
+
+
+
+ IP
+
+
+
+ 7 templates
+
+
+
+
+
+
+
+
+
+ Cron
+
+
+
+ 15 records
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 192. 52. 107. 26
+
+
+ netmask:
+ 255.255.255.0
+
+
+ interface:
+ eth1
+
+
+ name:
+ shared1.hosting-with-very-long-name.co.uk
+
+
+
+
+ owner:
+ shared1.hosting-with-very-long-name.co.uk
+
+
+ status:
+ shared
+
+
+
+
+ sys users:
+ 9 999
+
+
+ web domains:
+ 2 346
+
+
+
+
+
+
+
+
+
+
+
+
+ 192. 52. 107. 26
+
+
+ netmask:
+ 255.255.255.0
+
+
+ interface:
+ eth1
+
+
+ name:
+ shared1.hosting-with-very-long-name.co.uk
+
+
+
+
+ owner:
+ shared1.hosting-with-very-long-name.co.uk
+
+
+ status:
+ shared
+
+
+
+
+ sys users:
+ 9 999
+
+
+ web domains:
+ 2 346
+
+
+
+
+
+
+
+
+
+
+
+
+ 192. 52. 107. 26
+
+
+ netmask:
+ 255.255.255.0
+
+
+ interface:
+ eth1
+
+
+ name:
+ shared1.hosting-with-very-long-name.co.uk
+
+
+
+
+ owner:
+ shared1.hosting-with-very-long-name.co.uk
+
+
+ status:
+ shared
+
+
+
+
+ sys users:
+ 9 999
+
+
+ web domains:
+ 2 346
+
+
+
+
+
+
+
+
+
+
+
+
+ 192. 52. 107. 26
+
+
+ netmask:
+ 255.255.255.0
+
+
+ interface:
+ eth1
+
+
+ name:
+ shared1.hosting-with-very-long-name.co.uk
+
+
+
+
+ owner:
+ shared1.hosting-with-very-long-name.co.uk
+
+
+ status:
+ shared
+
+
+
+
+ sys users:
+ 9 999
+
+
+ web domains:
+ 2 346
+
+
+
+
+
+
+
+
+
+
+ ip address:
+
+
+
+ owner:
+
+ vesta
+ new mexico
+ land of magic
+
+
+
+ status:
+
+ shared
+ suspended
+ other
+
+
+
+ name:
+
+
+
+ interface:
+
+ eth1
+ eth2
+ eth3
+
+
+
+
+
+ Cancel
+ Delete
+
+
+
+
+
+
+
+
+
diff --git a/web/static-templates/js/PIE.htc b/web/static-templates/js/PIE.htc
new file mode 100644
index 00000000..b39af01a
--- /dev/null
+++ b/web/static-templates/js/PIE.htc
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
diff --git a/web/static-templates/js/backups-control.js b/web/static-templates/js/backups-control.js
new file mode 100644
index 00000000..dde9d22c
--- /dev/null
+++ b/web/static-templates/js/backups-control.js
@@ -0,0 +1,13 @@
+$(document).ready(function(){
+
+var area = $('.backups-list .detailed-restore-url');
+
+
+area.hover(
+ function() {
+ $(this).prev().hide();
+ },
+ function() {
+ $(this).prev().show();
+ });
+});
\ No newline at end of file
diff --git a/web/static-templates/js/common.js b/web/static-templates/js/common.js
new file mode 100644
index 00000000..f502ca23
--- /dev/null
+++ b/web/static-templates/js/common.js
@@ -0,0 +1,3 @@
+$(document).ready(function(){
+ $('.remember-me').checkBox();
+});
\ No newline at end of file
diff --git a/web/static-templates/js/custom-form-elements.js b/web/static-templates/js/custom-form-elements.js
index 6cb8df1a..3c55a343 100644
--- a/web/static-templates/js/custom-form-elements.js
+++ b/web/static-templates/js/custom-form-elements.js
@@ -1,144 +1,144 @@
-/*
-
-CUSTOM FORM ELEMENTS
-
-Created by Ryan Fait
-www.ryanfait.com
-
-The only things you may need to change in this file are the following
-variables: checkboxHeight, radioHeight and selectWidth (lines 24, 25, 26)
-
-The numbers you set for checkboxHeight and radioHeight should be one quarter
-of the total height of the image want to use for checkboxes and radio
-buttons. Both images should contain the four stages of both inputs stacked
-on top of each other in this order: unchecked, unchecked-clicked, checked,
-checked-clicked.
-
-You may need to adjust your images a bit if there is a slight vertical
-movement during the different stages of the button activation.
-
-The value of selectWidth should be the width of your select list image.
-
-Visit http://ryanfait.com/ for more information.
-
-*/
-
-var checkboxHeight = "25";
-var radioHeight = "25";
-var selectWidth = "210";
-
-
-/* No need to change anything after this */
-
-
-document.write('');
-
-var Custom = {
- init: function() {
- var inputs = document.getElementsByTagName("input"), span = Array(), textnode, option, active;
- for(a = 0; a < inputs.length; a++) {
- if((inputs[a].type == "checkbox" || inputs[a].type == "radio") && inputs[a].className == "styled") {
- span[a] = document.createElement("span");
- span[a].className = inputs[a].type;
-
- if(inputs[a].checked == true) {
- if(inputs[a].type == "checkbox") {
- position = "0 -" + (checkboxHeight*2) + "px";
- span[a].style.backgroundPosition = position;
- } else {
- position = "0 -" + (radioHeight*2) + "px";
- span[a].style.backgroundPosition = position;
- }
- }
- inputs[a].parentNode.insertBefore(span[a], inputs[a]);
- inputs[a].onchange = Custom.clear;
- if(!inputs[a].getAttribute("disabled")) {
- span[a].onmousedown = Custom.pushed;
- span[a].onmouseup = Custom.check;
- } else {
- span[a].className = span[a].className += " disabled";
- }
- }
- }
- inputs = document.getElementsByTagName("select");
- for(a = 0; a < inputs.length; a++) {
- if(inputs[a].className == "styled") {
- option = inputs[a].getElementsByTagName("option");
- active = option[0].childNodes[0].nodeValue;
- textnode = document.createTextNode(active);
- for(b = 0; b < option.length; b++) {
- if(option[b].selected == true) {
- textnode = document.createTextNode(option[b].childNodes[0].nodeValue);
- }
- }
- span[a] = document.createElement("span");
- span[a].className = "select";
- span[a].id = "select" + inputs[a].name;
- span[a].appendChild(textnode);
- inputs[a].parentNode.insertBefore(span[a], inputs[a]);
- if(!inputs[a].getAttribute("disabled")) {
- inputs[a].onchange = Custom.choose;
- } else {
- inputs[a].previousSibling.className = inputs[a].previousSibling.className += " disabled";
- }
- }
- }
- document.onmouseup = Custom.clear;
- },
- pushed: function() {
- element = this.nextSibling;
- if(element.checked == true && element.type == "checkbox") {
- this.style.backgroundPosition = "0 -" + checkboxHeight*3 + "px";
- } else if(element.checked == true && element.type == "radio") {
- this.style.backgroundPosition = "0 -" + radioHeight*3 + "px";
- } else if(element.checked != true && element.type == "checkbox") {
- this.style.backgroundPosition = "0 -" + checkboxHeight + "px";
- } else {
- this.style.backgroundPosition = "0 -" + radioHeight + "px";
- }
- },
- check: function() {
- element = this.nextSibling;
- if(element.checked == true && element.type == "checkbox") {
- this.style.backgroundPosition = "0 0";
- element.checked = false;
- } else {
- if(element.type == "checkbox") {
- this.style.backgroundPosition = "0 -" + checkboxHeight*2 + "px";
- } else {
- this.style.backgroundPosition = "0 -" + radioHeight*2 + "px";
- group = this.nextSibling.name;
- inputs = document.getElementsByTagName("input");
- for(a = 0; a < inputs.length; a++) {
- if(inputs[a].name == group && inputs[a] != this.nextSibling) {
- inputs[a].previousSibling.style.backgroundPosition = "0 0";
- }
- }
- }
- element.checked = true;
- }
- },
- clear: function() {
- inputs = document.getElementsByTagName("input");
- for(var b = 0; b < inputs.length; b++) {
- if(inputs[b].type == "checkbox" && inputs[b].checked == true && inputs[b].className == "styled") {
- inputs[b].previousSibling.style.backgroundPosition = "0 -" + checkboxHeight*2 + "px";
- } else if(inputs[b].type == "checkbox" && inputs[b].className == "styled") {
- inputs[b].previousSibling.style.backgroundPosition = "0 0";
- } else if(inputs[b].type == "radio" && inputs[b].checked == true && inputs[b].className == "styled") {
- inputs[b].previousSibling.style.backgroundPosition = "0 -" + radioHeight*2 + "px";
- } else if(inputs[b].type == "radio" && inputs[b].className == "styled") {
- inputs[b].previousSibling.style.backgroundPosition = "0 0";
- }
- }
- },
- choose: function() {
- option = this.getElementsByTagName("option");
- for(d = 0; d < option.length; d++) {
- if(option[d].selected == true)
- document.getElementById("select" + this.name).childNodes[0].nodeValue = option[d].childNodes[0].nodeValue;
- }
- }
- }
-}
-window.onload = Custom.init;
+/*
+
+CUSTOM FORM ELEMENTS
+
+Created by Ryan Fait
+www.ryanfait.com
+
+The only things you may need to change in this file are the following
+variables: checkboxHeight, radioHeight and selectWidth (lines 24, 25, 26)
+
+The numbers you set for checkboxHeight and radioHeight should be one quarter
+of the total height of the image want to use for checkboxes and radio
+buttons. Both images should contain the four stages of both inputs stacked
+on top of each other in this order: unchecked, unchecked-clicked, checked,
+checked-clicked.
+
+You may need to adjust your images a bit if there is a slight vertical
+movement during the different stages of the button activation.
+
+The value of selectWidth should be the width of your select list image.
+
+Visit http://ryanfait.com/ for more information.
+
+*/
+
+var checkboxHeight = "25";
+var radioHeight = "25";
+var selectWidth = "210";
+
+
+/* No need to change anything after this */
+
+
+document.write('');
+
+var Custom = {
+ init: function() {
+ var inputs = document.getElementsByTagName("input"), span = Array(), textnode, option, active;
+ for(a = 0; a < inputs.length; a++) {
+ if((inputs[a].type == "checkbox" || inputs[a].type == "radio") && inputs[a].className == "styled") {
+ span[a] = document.createElement("span");
+ span[a].className = inputs[a].type;
+
+ if(inputs[a].checked == true) {
+ if(inputs[a].type == "checkbox") {
+ position = "0 -" + (checkboxHeight*2) + "px";
+ span[a].style.backgroundPosition = position;
+ } else {
+ position = "0 -" + (radioHeight*2) + "px";
+ span[a].style.backgroundPosition = position;
+ }
+ }
+ inputs[a].parentNode.insertBefore(span[a], inputs[a]);
+ inputs[a].onchange = Custom.clear;
+ if(!inputs[a].getAttribute("disabled")) {
+ span[a].onmousedown = Custom.pushed;
+ span[a].onmouseup = Custom.check;
+ } else {
+ span[a].className = span[a].className += " disabled";
+ }
+ }
+ }
+ inputs = document.getElementsByTagName("select");
+ for(a = 0; a < inputs.length; a++) {
+ if(inputs[a].className == "styled") {
+ option = inputs[a].getElementsByTagName("option");
+ active = option[0].childNodes[0].nodeValue;
+ textnode = document.createTextNode(active);
+ for(b = 0; b < option.length; b++) {
+ if(option[b].selected == true) {
+ textnode = document.createTextNode(option[b].childNodes[0].nodeValue);
+ }
+ }
+ span[a] = document.createElement("span");
+ span[a].className = "select";
+ span[a].id = "select" + inputs[a].name;
+ span[a].appendChild(textnode);
+ inputs[a].parentNode.insertBefore(span[a], inputs[a]);
+ if(!inputs[a].getAttribute("disabled")) {
+ inputs[a].onchange = Custom.choose;
+ } else {
+ inputs[a].previousSibling.className = inputs[a].previousSibling.className += " disabled";
+ }
+ }
+ }
+ document.onmouseup = Custom.clear;
+ },
+ pushed: function() {
+ element = this.nextSibling;
+ if(element.checked == true && element.type == "checkbox") {
+ this.style.backgroundPosition = "0 -" + checkboxHeight*3 + "px";
+ } else if(element.checked == true && element.type == "radio") {
+ this.style.backgroundPosition = "0 -" + radioHeight*3 + "px";
+ } else if(element.checked != true && element.type == "checkbox") {
+ this.style.backgroundPosition = "0 -" + checkboxHeight + "px";
+ } else {
+ this.style.backgroundPosition = "0 -" + radioHeight + "px";
+ }
+ },
+ check: function() {
+ element = this.nextSibling;
+ if(element.checked == true && element.type == "checkbox") {
+ this.style.backgroundPosition = "0 0";
+ element.checked = false;
+ } else {
+ if(element.type == "checkbox") {
+ this.style.backgroundPosition = "0 -" + checkboxHeight*2 + "px";
+ } else {
+ this.style.backgroundPosition = "0 -" + radioHeight*2 + "px";
+ group = this.nextSibling.name;
+ inputs = document.getElementsByTagName("input");
+ for(a = 0; a < inputs.length; a++) {
+ if(inputs[a].name == group && inputs[a] != this.nextSibling) {
+ inputs[a].previousSibling.style.backgroundPosition = "0 0";
+ }
+ }
+ }
+ element.checked = true;
+ }
+ },
+ clear: function() {
+ inputs = document.getElementsByTagName("input");
+ for(var b = 0; b < inputs.length; b++) {
+ if(inputs[b].type == "checkbox" && inputs[b].checked == true && inputs[b].className == "styled") {
+ inputs[b].previousSibling.style.backgroundPosition = "0 -" + checkboxHeight*2 + "px";
+ } else if(inputs[b].type == "checkbox" && inputs[b].className == "styled") {
+ inputs[b].previousSibling.style.backgroundPosition = "0 0";
+ } else if(inputs[b].type == "radio" && inputs[b].checked == true && inputs[b].className == "styled") {
+ inputs[b].previousSibling.style.backgroundPosition = "0 -" + radioHeight*2 + "px";
+ } else if(inputs[b].type == "radio" && inputs[b].className == "styled") {
+ inputs[b].previousSibling.style.backgroundPosition = "0 0";
+ }
+ }
+ },
+ choose: function() {
+ option = this.getElementsByTagName("option");
+ for(d = 0; d < option.length; d++) {
+ if(option[d].selected == true) {
+ document.getElementById("select" + this.name).childNodes[0].nodeValue = option[d].childNodes[0].nodeValue;
+ }
+ }
+ }
+}
+window.onload = Custom.init;
\ No newline at end of file
diff --git a/web/static-templates/js/jquery-1.4.2.js b/web/static-templates/js/jquery-1.4.2.js
new file mode 100644
index 00000000..fff67764
--- /dev/null
+++ b/web/static-templates/js/jquery-1.4.2.js
@@ -0,0 +1,6240 @@
+/*!
+ * jQuery JavaScript Library v1.4.2
+ * http://jquery.com/
+ *
+ * Copyright 2010, John Resig
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * Includes Sizzle.js
+ * http://sizzlejs.com/
+ * Copyright 2010, The Dojo Foundation
+ * Released under the MIT, BSD, and GPL Licenses.
+ *
+ * Date: Sat Feb 13 22:33:48 2010 -0500
+ */
+(function( window, undefined ) {
+
+// Define a local copy of jQuery
+var jQuery = function( selector, context ) {
+ // The jQuery object is actually just the init constructor 'enhanced'
+ return new jQuery.fn.init( selector, context );
+ },
+
+ // Map over jQuery in case of overwrite
+ _jQuery = window.jQuery,
+
+ // Map over the $ in case of overwrite
+ _$ = window.$,
+
+ // Use the correct document accordingly with window argument (sandbox)
+ document = window.document,
+
+ // A central reference to the root jQuery(document)
+ rootjQuery,
+
+ // A simple way to check for HTML strings or ID strings
+ // (both of which we optimize for)
+ quickExpr = /^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,
+
+ // Is it a simple selector
+ isSimple = /^.[^:#\[\.,]*$/,
+
+ // Check if a string has a non-whitespace character in it
+ rnotwhite = /\S/,
+
+ // Used for trimming whitespace
+ rtrim = /^(\s|\u00A0)+|(\s|\u00A0)+$/g,
+
+ // Match a standalone tag
+ rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/,
+
+ // Keep a UserAgent string for use with jQuery.browser
+ userAgent = navigator.userAgent,
+
+ // For matching the engine and version of the browser
+ browserMatch,
+
+ // Has the ready events already been bound?
+ readyBound = false,
+
+ // The functions to execute on DOM ready
+ readyList = [],
+
+ // The ready event handler
+ DOMContentLoaded,
+
+ // Save a reference to some core methods
+ toString = Object.prototype.toString,
+ hasOwnProperty = Object.prototype.hasOwnProperty,
+ push = Array.prototype.push,
+ slice = Array.prototype.slice,
+ indexOf = Array.prototype.indexOf;
+
+jQuery.fn = jQuery.prototype = {
+ init: function( selector, context ) {
+ var match, elem, ret, doc;
+
+ // Handle $(""), $(null), or $(undefined)
+ if ( !selector ) {
+ return this;
+ }
+
+ // Handle $(DOMElement)
+ if ( selector.nodeType ) {
+ this.context = this[0] = selector;
+ this.length = 1;
+ return this;
+ }
+
+ // The body element only exists once, optimize finding it
+ if ( selector === "body" && !context ) {
+ this.context = document;
+ this[0] = document.body;
+ this.selector = "body";
+ this.length = 1;
+ return this;
+ }
+
+ // Handle HTML strings
+ if ( typeof selector === "string" ) {
+ // Are we dealing with HTML string or an ID?
+ match = quickExpr.exec( selector );
+
+ // Verify a match, and that no context was specified for #id
+ if ( match && (match[1] || !context) ) {
+
+ // HANDLE: $(html) -> $(array)
+ if ( match[1] ) {
+ doc = (context ? context.ownerDocument || context : document);
+
+ // If a single string is passed in and it's a single tag
+ // just do a createElement and skip the rest
+ ret = rsingleTag.exec( selector );
+
+ if ( ret ) {
+ if ( jQuery.isPlainObject( context ) ) {
+ selector = [ document.createElement( ret[1] ) ];
+ jQuery.fn.attr.call( selector, context, true );
+
+ } else {
+ selector = [ doc.createElement( ret[1] ) ];
+ }
+
+ } else {
+ ret = buildFragment( [ match[1] ], [ doc ] );
+ selector = (ret.cacheable ? ret.fragment.cloneNode(true) : ret.fragment).childNodes;
+ }
+
+ return jQuery.merge( this, selector );
+
+ // HANDLE: $("#id")
+ } else {
+ elem = document.getElementById( match[2] );
+
+ if ( elem ) {
+ // Handle the case where IE and Opera return items
+ // by name instead of ID
+ if ( elem.id !== match[2] ) {
+ return rootjQuery.find( selector );
+ }
+
+ // Otherwise, we inject the element directly into the jQuery object
+ this.length = 1;
+ this[0] = elem;
+ }
+
+ this.context = document;
+ this.selector = selector;
+ return this;
+ }
+
+ // HANDLE: $("TAG")
+ } else if ( !context && /^\w+$/.test( selector ) ) {
+ this.selector = selector;
+ this.context = document;
+ selector = document.getElementsByTagName( selector );
+ return jQuery.merge( this, selector );
+
+ // HANDLE: $(expr, $(...))
+ } else if ( !context || context.jquery ) {
+ return (context || rootjQuery).find( selector );
+
+ // HANDLE: $(expr, context)
+ // (which is just equivalent to: $(context).find(expr)
+ } else {
+ return jQuery( context ).find( selector );
+ }
+
+ // HANDLE: $(function)
+ // Shortcut for document ready
+ } else if ( jQuery.isFunction( selector ) ) {
+ return rootjQuery.ready( selector );
+ }
+
+ if (selector.selector !== undefined) {
+ this.selector = selector.selector;
+ this.context = selector.context;
+ }
+
+ return jQuery.makeArray( selector, this );
+ },
+
+ // Start with an empty selector
+ selector: "",
+
+ // The current version of jQuery being used
+ jquery: "1.4.2",
+
+ // The default length of a jQuery object is 0
+ length: 0,
+
+ // The number of elements contained in the matched element set
+ size: function() {
+ return this.length;
+ },
+
+ toArray: function() {
+ return slice.call( this, 0 );
+ },
+
+ // Get the Nth element in the matched element set OR
+ // Get the whole matched element set as a clean array
+ get: function( num ) {
+ return num == null ?
+
+ // Return a 'clean' array
+ this.toArray() :
+
+ // Return just the object
+ ( num < 0 ? this.slice(num)[ 0 ] : this[ num ] );
+ },
+
+ // Take an array of elements and push it onto the stack
+ // (returning the new matched element set)
+ pushStack: function( elems, name, selector ) {
+ // Build a new jQuery matched element set
+ var ret = jQuery();
+
+ if ( jQuery.isArray( elems ) ) {
+ push.apply( ret, elems );
+
+ } else {
+ jQuery.merge( ret, elems );
+ }
+
+ // Add the old object onto the stack (as a reference)
+ ret.prevObject = this;
+
+ ret.context = this.context;
+
+ if ( name === "find" ) {
+ ret.selector = this.selector + (this.selector ? " " : "") + selector;
+ } else if ( name ) {
+ ret.selector = this.selector + "." + name + "(" + selector + ")";
+ }
+
+ // Return the newly-formed element set
+ return ret;
+ },
+
+ // Execute a callback for every element in the matched set.
+ // (You can seed the arguments with an array of args, but this is
+ // only used internally.)
+ each: function( callback, args ) {
+ return jQuery.each( this, callback, args );
+ },
+
+ ready: function( fn ) {
+ // Attach the listeners
+ jQuery.bindReady();
+
+ // If the DOM is already ready
+ if ( jQuery.isReady ) {
+ // Execute the function immediately
+ fn.call( document, jQuery );
+
+ // Otherwise, remember the function for later
+ } else if ( readyList ) {
+ // Add the function to the wait list
+ readyList.push( fn );
+ }
+
+ return this;
+ },
+
+ eq: function( i ) {
+ return i === -1 ?
+ this.slice( i ) :
+ this.slice( i, +i + 1 );
+ },
+
+ first: function() {
+ return this.eq( 0 );
+ },
+
+ last: function() {
+ return this.eq( -1 );
+ },
+
+ slice: function() {
+ return this.pushStack( slice.apply( this, arguments ),
+ "slice", slice.call(arguments).join(",") );
+ },
+
+ map: function( callback ) {
+ return this.pushStack( jQuery.map(this, function( elem, i ) {
+ return callback.call( elem, i, elem );
+ }));
+ },
+
+ end: function() {
+ return this.prevObject || jQuery(null);
+ },
+
+ // For internal use only.
+ // Behaves like an Array's method, not like a jQuery method.
+ push: push,
+ sort: [].sort,
+ splice: [].splice
+};
+
+// Give the init function the jQuery prototype for later instantiation
+jQuery.fn.init.prototype = jQuery.fn;
+
+jQuery.extend = jQuery.fn.extend = function() {
+ // copy reference to target object
+ var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy;
+
+ // Handle a deep copy situation
+ if ( typeof target === "boolean" ) {
+ deep = target;
+ target = arguments[1] || {};
+ // skip the boolean and the target
+ i = 2;
+ }
+
+ // Handle case when target is a string or something (possible in deep copy)
+ if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
+ target = {};
+ }
+
+ // extend jQuery itself if only one argument is passed
+ if ( length === i ) {
+ target = this;
+ --i;
+ }
+
+ for ( ; i < length; i++ ) {
+ // Only deal with non-null/undefined values
+ if ( (options = arguments[ i ]) != null ) {
+ // Extend the base object
+ for ( name in options ) {
+ src = target[ name ];
+ copy = options[ name ];
+
+ // Prevent never-ending loop
+ if ( target === copy ) {
+ continue;
+ }
+
+ // Recurse if we're merging object literal values or arrays
+ if ( deep && copy && ( jQuery.isPlainObject(copy) || jQuery.isArray(copy) ) ) {
+ var clone = src && ( jQuery.isPlainObject(src) || jQuery.isArray(src) ) ? src
+ : jQuery.isArray(copy) ? [] : {};
+
+ // Never move original objects, clone them
+ target[ name ] = jQuery.extend( deep, clone, copy );
+
+ // Don't bring in undefined values
+ } else if ( copy !== undefined ) {
+ target[ name ] = copy;
+ }
+ }
+ }
+ }
+
+ // Return the modified object
+ return target;
+};
+
+jQuery.extend({
+ noConflict: function( deep ) {
+ window.$ = _$;
+
+ if ( deep ) {
+ window.jQuery = _jQuery;
+ }
+
+ return jQuery;
+ },
+
+ // Is the DOM ready to be used? Set to true once it occurs.
+ isReady: false,
+
+ // Handle when the DOM is ready
+ ready: function() {
+ // Make sure that the DOM is not already loaded
+ if ( !jQuery.isReady ) {
+ // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
+ if ( !document.body ) {
+ return setTimeout( jQuery.ready, 13 );
+ }
+
+ // Remember that the DOM is ready
+ jQuery.isReady = true;
+
+ // If there are functions bound, to execute
+ if ( readyList ) {
+ // Execute all of them
+ var fn, i = 0;
+ while ( (fn = readyList[ i++ ]) ) {
+ fn.call( document, jQuery );
+ }
+
+ // Reset the list of functions
+ readyList = null;
+ }
+
+ // Trigger any bound ready events
+ if ( jQuery.fn.triggerHandler ) {
+ jQuery( document ).triggerHandler( "ready" );
+ }
+ }
+ },
+
+ bindReady: function() {
+ if ( readyBound ) {
+ return;
+ }
+
+ readyBound = true;
+
+ // Catch cases where $(document).ready() is called after the
+ // browser event has already occurred.
+ if ( document.readyState === "complete" ) {
+ return jQuery.ready();
+ }
+
+ // Mozilla, Opera and webkit nightlies currently support this event
+ if ( document.addEventListener ) {
+ // Use the handy event callback
+ document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false );
+
+ // A fallback to window.onload, that will always work
+ window.addEventListener( "load", jQuery.ready, false );
+
+ // If IE event model is used
+ } else if ( document.attachEvent ) {
+ // ensure firing before onload,
+ // maybe late but safe also for iframes
+ document.attachEvent("onreadystatechange", DOMContentLoaded);
+
+ // A fallback to window.onload, that will always work
+ window.attachEvent( "onload", jQuery.ready );
+
+ // If IE and not a frame
+ // continually check to see if the document is ready
+ var toplevel = false;
+
+ try {
+ toplevel = window.frameElement == null;
+ } catch(e) {}
+
+ if ( document.documentElement.doScroll && toplevel ) {
+ doScrollCheck();
+ }
+ }
+ },
+
+ // See test/unit/core.js for details concerning isFunction.
+ // Since version 1.3, DOM methods and functions like alert
+ // aren't supported. They return false on IE (#2968).
+ isFunction: function( obj ) {
+ return toString.call(obj) === "[object Function]";
+ },
+
+ isArray: function( obj ) {
+ return toString.call(obj) === "[object Array]";
+ },
+
+ isPlainObject: function( obj ) {
+ // Must be an Object.
+ // Because of IE, we also have to check the presence of the constructor property.
+ // Make sure that DOM nodes and window objects don't pass through, as well
+ if ( !obj || toString.call(obj) !== "[object Object]" || obj.nodeType || obj.setInterval ) {
+ return false;
+ }
+
+ // Not own constructor property must be Object
+ if ( obj.constructor
+ && !hasOwnProperty.call(obj, "constructor")
+ && !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {
+ return false;
+ }
+
+ // Own properties are enumerated firstly, so to speed up,
+ // if last one is own, then all properties are own.
+
+ var key;
+ for ( key in obj ) {}
+
+ return key === undefined || hasOwnProperty.call( obj, key );
+ },
+
+ isEmptyObject: function( obj ) {
+ for ( var name in obj ) {
+ return false;
+ }
+ return true;
+ },
+
+ error: function( msg ) {
+ throw msg;
+ },
+
+ parseJSON: function( data ) {
+ if ( typeof data !== "string" || !data ) {
+ return null;
+ }
+
+ // Make sure leading/trailing whitespace is removed (IE can't handle it)
+ data = jQuery.trim( data );
+
+ // Make sure the incoming data is actual JSON
+ // Logic borrowed from http://json.org/json2.js
+ if ( /^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, "@")
+ .replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, "]")
+ .replace(/(?:^|:|,)(?:\s*\[)+/g, "")) ) {
+
+ // Try to use the native JSON parser first
+ return window.JSON && window.JSON.parse ?
+ window.JSON.parse( data ) :
+ (new Function("return " + data))();
+
+ } else {
+ jQuery.error( "Invalid JSON: " + data );
+ }
+ },
+
+ noop: function() {},
+
+ // Evalulates a script in a global context
+ globalEval: function( data ) {
+ if ( data && rnotwhite.test(data) ) {
+ // Inspired by code by Andrea Giammarchi
+ // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
+ var head = document.getElementsByTagName("head")[0] || document.documentElement,
+ script = document.createElement("script");
+
+ script.type = "text/javascript";
+
+ if ( jQuery.support.scriptEval ) {
+ script.appendChild( document.createTextNode( data ) );
+ } else {
+ script.text = data;
+ }
+
+ // Use insertBefore instead of appendChild to circumvent an IE6 bug.
+ // This arises when a base node is used (#2709).
+ head.insertBefore( script, head.firstChild );
+ head.removeChild( script );
+ }
+ },
+
+ nodeName: function( elem, name ) {
+ return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase();
+ },
+
+ // args is for internal usage only
+ each: function( object, callback, args ) {
+ var name, i = 0,
+ length = object.length,
+ isObj = length === undefined || jQuery.isFunction(object);
+
+ if ( args ) {
+ if ( isObj ) {
+ for ( name in object ) {
+ if ( callback.apply( object[ name ], args ) === false ) {
+ break;
+ }
+ }
+ } else {
+ for ( ; i < length; ) {
+ if ( callback.apply( object[ i++ ], args ) === false ) {
+ break;
+ }
+ }
+ }
+
+ // A special, fast, case for the most common use of each
+ } else {
+ if ( isObj ) {
+ for ( name in object ) {
+ if ( callback.call( object[ name ], name, object[ name ] ) === false ) {
+ break;
+ }
+ }
+ } else {
+ for ( var value = object[0];
+ i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {}
+ }
+ }
+
+ return object;
+ },
+
+ trim: function( text ) {
+ return (text || "").replace( rtrim, "" );
+ },
+
+ // results is for internal usage only
+ makeArray: function( array, results ) {
+ var ret = results || [];
+
+ if ( array != null ) {
+ // The window, strings (and functions) also have 'length'
+ // The extra typeof function check is to prevent crashes
+ // in Safari 2 (See: #3039)
+ if ( array.length == null || typeof array === "string" || jQuery.isFunction(array) || (typeof array !== "function" && array.setInterval) ) {
+ push.call( ret, array );
+ } else {
+ jQuery.merge( ret, array );
+ }
+ }
+
+ return ret;
+ },
+
+ inArray: function( elem, array ) {
+ if ( array.indexOf ) {
+ return array.indexOf( elem );
+ }
+
+ for ( var i = 0, length = array.length; i < length; i++ ) {
+ if ( array[ i ] === elem ) {
+ return i;
+ }
+ }
+
+ return -1;
+ },
+
+ merge: function( first, second ) {
+ var i = first.length, j = 0;
+
+ if ( typeof second.length === "number" ) {
+ for ( var l = second.length; j < l; j++ ) {
+ first[ i++ ] = second[ j ];
+ }
+
+ } else {
+ while ( second[j] !== undefined ) {
+ first[ i++ ] = second[ j++ ];
+ }
+ }
+
+ first.length = i;
+
+ return first;
+ },
+
+ grep: function( elems, callback, inv ) {
+ var ret = [];
+
+ // Go through the array, only saving the items
+ // that pass the validator function
+ for ( var i = 0, length = elems.length; i < length; i++ ) {
+ if ( !inv !== !callback( elems[ i ], i ) ) {
+ ret.push( elems[ i ] );
+ }
+ }
+
+ return ret;
+ },
+
+ // arg is for internal usage only
+ map: function( elems, callback, arg ) {
+ var ret = [], value;
+
+ // Go through the array, translating each of the items to their
+ // new value (or values).
+ for ( var i = 0, length = elems.length; i < length; i++ ) {
+ value = callback( elems[ i ], i, arg );
+
+ if ( value != null ) {
+ ret[ ret.length ] = value;
+ }
+ }
+
+ return ret.concat.apply( [], ret );
+ },
+
+ // A global GUID counter for objects
+ guid: 1,
+
+ proxy: function( fn, proxy, thisObject ) {
+ if ( arguments.length === 2 ) {
+ if ( typeof proxy === "string" ) {
+ thisObject = fn;
+ fn = thisObject[ proxy ];
+ proxy = undefined;
+
+ } else if ( proxy && !jQuery.isFunction( proxy ) ) {
+ thisObject = proxy;
+ proxy = undefined;
+ }
+ }
+
+ if ( !proxy && fn ) {
+ proxy = function() {
+ return fn.apply( thisObject || this, arguments );
+ };
+ }
+
+ // Set the guid of unique handler to the same of original handler, so it can be removed
+ if ( fn ) {
+ proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++;
+ }
+
+ // So proxy can be declared as an argument
+ return proxy;
+ },
+
+ // Use of jQuery.browser is frowned upon.
+ // More details: http://docs.jquery.com/Utilities/jQuery.browser
+ uaMatch: function( ua ) {
+ ua = ua.toLowerCase();
+
+ var match = /(webkit)[ \/]([\w.]+)/.exec( ua ) ||
+ /(opera)(?:.*version)?[ \/]([\w.]+)/.exec( ua ) ||
+ /(msie) ([\w.]+)/.exec( ua ) ||
+ !/compatible/.test( ua ) && /(mozilla)(?:.*? rv:([\w.]+))?/.exec( ua ) ||
+ [];
+
+ return { browser: match[1] || "", version: match[2] || "0" };
+ },
+
+ browser: {}
+});
+
+browserMatch = jQuery.uaMatch( userAgent );
+if ( browserMatch.browser ) {
+ jQuery.browser[ browserMatch.browser ] = true;
+ jQuery.browser.version = browserMatch.version;
+}
+
+// Deprecated, use jQuery.browser.webkit instead
+if ( jQuery.browser.webkit ) {
+ jQuery.browser.safari = true;
+}
+
+if ( indexOf ) {
+ jQuery.inArray = function( elem, array ) {
+ return indexOf.call( array, elem );
+ };
+}
+
+// All jQuery objects should point back to these
+rootjQuery = jQuery(document);
+
+// Cleanup functions for the document ready method
+if ( document.addEventListener ) {
+ DOMContentLoaded = function() {
+ document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false );
+ jQuery.ready();
+ };
+
+} else if ( document.attachEvent ) {
+ DOMContentLoaded = function() {
+ // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
+ if ( document.readyState === "complete" ) {
+ document.detachEvent( "onreadystatechange", DOMContentLoaded );
+ jQuery.ready();
+ }
+ };
+}
+
+// The DOM ready check for Internet Explorer
+function doScrollCheck() {
+ if ( jQuery.isReady ) {
+ return;
+ }
+
+ try {
+ // If IE is used, use the trick by Diego Perini
+ // http://javascript.nwbox.com/IEContentLoaded/
+ document.documentElement.doScroll("left");
+ } catch( error ) {
+ setTimeout( doScrollCheck, 1 );
+ return;
+ }
+
+ // and execute any waiting functions
+ jQuery.ready();
+}
+
+function evalScript( i, elem ) {
+ if ( elem.src ) {
+ jQuery.ajax({
+ url: elem.src,
+ async: false,
+ dataType: "script"
+ });
+ } else {
+ jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );
+ }
+
+ if ( elem.parentNode ) {
+ elem.parentNode.removeChild( elem );
+ }
+}
+
+// Mutifunctional method to get and set values to a collection
+// The value/s can be optionally by executed if its a function
+function access( elems, key, value, exec, fn, pass ) {
+ var length = elems.length;
+
+ // Setting many attributes
+ if ( typeof key === "object" ) {
+ for ( var k in key ) {
+ access( elems, k, key[k], exec, fn, value );
+ }
+ return elems;
+ }
+
+ // Setting one attribute
+ if ( value !== undefined ) {
+ // Optionally, function values get executed if exec is true
+ exec = !pass && exec && jQuery.isFunction(value);
+
+ for ( var i = 0; i < length; i++ ) {
+ fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass );
+ }
+
+ return elems;
+ }
+
+ // Getting an attribute
+ return length ? fn( elems[0], key ) : undefined;
+}
+
+function now() {
+ return (new Date).getTime();
+}
+(function() {
+
+ jQuery.support = {};
+
+ var root = document.documentElement,
+ script = document.createElement("script"),
+ div = document.createElement("div"),
+ id = "script" + now();
+
+ div.style.display = "none";
+ div.innerHTML = " a ";
+
+ var all = div.getElementsByTagName("*"),
+ a = div.getElementsByTagName("a")[0];
+
+ // Can't get basic test support
+ if ( !all || !all.length || !a ) {
+ return;
+ }
+
+ jQuery.support = {
+ // IE strips leading whitespace when .innerHTML is used
+ leadingWhitespace: div.firstChild.nodeType === 3,
+
+ // Make sure that tbody elements aren't automatically inserted
+ // IE will insert them into empty tables
+ tbody: !div.getElementsByTagName("tbody").length,
+
+ // Make sure that link elements get serialized correctly by innerHTML
+ // This requires a wrapper element in IE
+ htmlSerialize: !!div.getElementsByTagName("link").length,
+
+ // Get the style information from getAttribute
+ // (IE uses .cssText insted)
+ style: /red/.test( a.getAttribute("style") ),
+
+ // Make sure that URLs aren't manipulated
+ // (IE normalizes it by default)
+ hrefNormalized: a.getAttribute("href") === "/a",
+
+ // Make sure that element opacity exists
+ // (IE uses filter instead)
+ // Use a regex to work around a WebKit issue. See #5145
+ opacity: /^0.55$/.test( a.style.opacity ),
+
+ // Verify style float existence
+ // (IE uses styleFloat instead of cssFloat)
+ cssFloat: !!a.style.cssFloat,
+
+ // Make sure that if no value is specified for a checkbox
+ // that it defaults to "on".
+ // (WebKit defaults to "" instead)
+ checkOn: div.getElementsByTagName("input")[0].value === "on",
+
+ // Make sure that a selected-by-default option has a working selected property.
+ // (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
+ optSelected: document.createElement("select").appendChild( document.createElement("option") ).selected,
+
+ parentNode: div.removeChild( div.appendChild( document.createElement("div") ) ).parentNode === null,
+
+ // Will be defined later
+ deleteExpando: true,
+ checkClone: false,
+ scriptEval: false,
+ noCloneEvent: true,
+ boxModel: null
+ };
+
+ script.type = "text/javascript";
+ try {
+ script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
+ } catch(e) {}
+
+ root.insertBefore( script, root.firstChild );
+
+ // Make sure that the execution of code works by injecting a script
+ // tag with appendChild/createTextNode
+ // (IE doesn't support this, fails, and uses .text instead)
+ if ( window[ id ] ) {
+ jQuery.support.scriptEval = true;
+ delete window[ id ];
+ }
+
+ // Test to see if it's possible to delete an expando from an element
+ // Fails in Internet Explorer
+ try {
+ delete script.test;
+
+ } catch(e) {
+ jQuery.support.deleteExpando = false;
+ }
+
+ root.removeChild( script );
+
+ if ( div.attachEvent && div.fireEvent ) {
+ div.attachEvent("onclick", function click() {
+ // Cloning a node shouldn't copy over any
+ // bound event handlers (IE does this)
+ jQuery.support.noCloneEvent = false;
+ div.detachEvent("onclick", click);
+ });
+ div.cloneNode(true).fireEvent("onclick");
+ }
+
+ div = document.createElement("div");
+ div.innerHTML = " ";
+
+ var fragment = document.createDocumentFragment();
+ fragment.appendChild( div.firstChild );
+
+ // WebKit doesn't clone checked state correctly in fragments
+ jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked;
+
+ // Figure out if the W3C box model works as expected
+ // document.body must exist before we can do this
+ jQuery(function() {
+ var div = document.createElement("div");
+ div.style.width = div.style.paddingLeft = "1px";
+
+ document.body.appendChild( div );
+ jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
+ document.body.removeChild( div ).style.display = 'none';
+
+ div = null;
+ });
+
+ // Technique from Juriy Zaytsev
+ // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
+ var eventSupported = function( eventName ) {
+ var el = document.createElement("div");
+ eventName = "on" + eventName;
+
+ var isSupported = (eventName in el);
+ if ( !isSupported ) {
+ el.setAttribute(eventName, "return;");
+ isSupported = typeof el[eventName] === "function";
+ }
+ el = null;
+
+ return isSupported;
+ };
+
+ jQuery.support.submitBubbles = eventSupported("submit");
+ jQuery.support.changeBubbles = eventSupported("change");
+
+ // release memory in IE
+ root = script = div = all = a = null;
+})();
+
+jQuery.props = {
+ "for": "htmlFor",
+ "class": "className",
+ readonly: "readOnly",
+ maxlength: "maxLength",
+ cellspacing: "cellSpacing",
+ rowspan: "rowSpan",
+ colspan: "colSpan",
+ tabindex: "tabIndex",
+ usemap: "useMap",
+ frameborder: "frameBorder"
+};
+var expando = "jQuery" + now(), uuid = 0, windowData = {};
+
+jQuery.extend({
+ cache: {},
+
+ expando:expando,
+
+ // The following elements throw uncatchable exceptions if you
+ // attempt to add expando properties to them.
+ noData: {
+ "embed": true,
+ "object": true,
+ "applet": true
+ },
+
+ data: function( elem, name, data ) {
+ if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) {
+ return;
+ }
+
+ elem = elem == window ?
+ windowData :
+ elem;
+
+ var id = elem[ expando ], cache = jQuery.cache, thisCache;
+
+ if ( !id && typeof name === "string" && data === undefined ) {
+ return null;
+ }
+
+ // Compute a unique ID for the element
+ if ( !id ) {
+ id = ++uuid;
+ }
+
+ // Avoid generating a new cache unless none exists and we
+ // want to manipulate it.
+ if ( typeof name === "object" ) {
+ elem[ expando ] = id;
+ thisCache = cache[ id ] = jQuery.extend(true, {}, name);
+
+ } else if ( !cache[ id ] ) {
+ elem[ expando ] = id;
+ cache[ id ] = {};
+ }
+
+ thisCache = cache[ id ];
+
+ // Prevent overriding the named cache with undefined values
+ if ( data !== undefined ) {
+ thisCache[ name ] = data;
+ }
+
+ return typeof name === "string" ? thisCache[ name ] : thisCache;
+ },
+
+ removeData: function( elem, name ) {
+ if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) {
+ return;
+ }
+
+ elem = elem == window ?
+ windowData :
+ elem;
+
+ var id = elem[ expando ], cache = jQuery.cache, thisCache = cache[ id ];
+
+ // If we want to remove a specific section of the element's data
+ if ( name ) {
+ if ( thisCache ) {
+ // Remove the section of cache data
+ delete thisCache[ name ];
+
+ // If we've removed all the data, remove the element's cache
+ if ( jQuery.isEmptyObject(thisCache) ) {
+ jQuery.removeData( elem );
+ }
+ }
+
+ // Otherwise, we want to remove all of the element's data
+ } else {
+ if ( jQuery.support.deleteExpando ) {
+ delete elem[ jQuery.expando ];
+
+ } else if ( elem.removeAttribute ) {
+ elem.removeAttribute( jQuery.expando );
+ }
+
+ // Completely remove the data cache
+ delete cache[ id ];
+ }
+ }
+});
+
+jQuery.fn.extend({
+ data: function( key, value ) {
+ if ( typeof key === "undefined" && this.length ) {
+ return jQuery.data( this[0] );
+
+ } else if ( typeof key === "object" ) {
+ return this.each(function() {
+ jQuery.data( this, key );
+ });
+ }
+
+ var parts = key.split(".");
+ parts[1] = parts[1] ? "." + parts[1] : "";
+
+ if ( value === undefined ) {
+ var data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]);
+
+ if ( data === undefined && this.length ) {
+ data = jQuery.data( this[0], key );
+ }
+ return data === undefined && parts[1] ?
+ this.data( parts[0] ) :
+ data;
+ } else {
+ return this.trigger("setData" + parts[1] + "!", [parts[0], value]).each(function() {
+ jQuery.data( this, key, value );
+ });
+ }
+ },
+
+ removeData: function( key ) {
+ return this.each(function() {
+ jQuery.removeData( this, key );
+ });
+ }
+});
+jQuery.extend({
+ queue: function( elem, type, data ) {
+ if ( !elem ) {
+ return;
+ }
+
+ type = (type || "fx") + "queue";
+ var q = jQuery.data( elem, type );
+
+ // Speed up dequeue by getting out quickly if this is just a lookup
+ if ( !data ) {
+ return q || [];
+ }
+
+ if ( !q || jQuery.isArray(data) ) {
+ q = jQuery.data( elem, type, jQuery.makeArray(data) );
+
+ } else {
+ q.push( data );
+ }
+
+ return q;
+ },
+
+ dequeue: function( elem, type ) {
+ type = type || "fx";
+
+ var queue = jQuery.queue( elem, type ), fn = queue.shift();
+
+ // If the fx queue is dequeued, always remove the progress sentinel
+ if ( fn === "inprogress" ) {
+ fn = queue.shift();
+ }
+
+ if ( fn ) {
+ // Add a progress sentinel to prevent the fx queue from being
+ // automatically dequeued
+ if ( type === "fx" ) {
+ queue.unshift("inprogress");
+ }
+
+ fn.call(elem, function() {
+ jQuery.dequeue(elem, type);
+ });
+ }
+ }
+});
+
+jQuery.fn.extend({
+ queue: function( type, data ) {
+ if ( typeof type !== "string" ) {
+ data = type;
+ type = "fx";
+ }
+
+ if ( data === undefined ) {
+ return jQuery.queue( this[0], type );
+ }
+ return this.each(function( i, elem ) {
+ var queue = jQuery.queue( this, type, data );
+
+ if ( type === "fx" && queue[0] !== "inprogress" ) {
+ jQuery.dequeue( this, type );
+ }
+ });
+ },
+ dequeue: function( type ) {
+ return this.each(function() {
+ jQuery.dequeue( this, type );
+ });
+ },
+
+ // Based off of the plugin by Clint Helfers, with permission.
+ // http://blindsignals.com/index.php/2009/07/jquery-delay/
+ delay: function( time, type ) {
+ time = jQuery.fx ? jQuery.fx.speeds[time] || time : time;
+ type = type || "fx";
+
+ return this.queue( type, function() {
+ var elem = this;
+ setTimeout(function() {
+ jQuery.dequeue( elem, type );
+ }, time );
+ });
+ },
+
+ clearQueue: function( type ) {
+ return this.queue( type || "fx", [] );
+ }
+});
+var rclass = /[\n\t]/g,
+ rspace = /\s+/,
+ rreturn = /\r/g,
+ rspecialurl = /href|src|style/,
+ rtype = /(button|input)/i,
+ rfocusable = /(button|input|object|select|textarea)/i,
+ rclickable = /^(a|area)$/i,
+ rradiocheck = /radio|checkbox/;
+
+jQuery.fn.extend({
+ attr: function( name, value ) {
+ return access( this, name, value, true, jQuery.attr );
+ },
+
+ removeAttr: function( name, fn ) {
+ return this.each(function(){
+ jQuery.attr( this, name, "" );
+ if ( this.nodeType === 1 ) {
+ this.removeAttribute( name );
+ }
+ });
+ },
+
+ addClass: function( value ) {
+ if ( jQuery.isFunction(value) ) {
+ return this.each(function(i) {
+ var self = jQuery(this);
+ self.addClass( value.call(this, i, self.attr("class")) );
+ });
+ }
+
+ if ( value && typeof value === "string" ) {
+ var classNames = (value || "").split( rspace );
+
+ for ( var i = 0, l = this.length; i < l; i++ ) {
+ var elem = this[i];
+
+ if ( elem.nodeType === 1 ) {
+ if ( !elem.className ) {
+ elem.className = value;
+
+ } else {
+ var className = " " + elem.className + " ", setClass = elem.className;
+ for ( var c = 0, cl = classNames.length; c < cl; c++ ) {
+ if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) {
+ setClass += " " + classNames[c];
+ }
+ }
+ elem.className = jQuery.trim( setClass );
+ }
+ }
+ }
+ }
+
+ return this;
+ },
+
+ removeClass: function( value ) {
+ if ( jQuery.isFunction(value) ) {
+ return this.each(function(i) {
+ var self = jQuery(this);
+ self.removeClass( value.call(this, i, self.attr("class")) );
+ });
+ }
+
+ if ( (value && typeof value === "string") || value === undefined ) {
+ var classNames = (value || "").split(rspace);
+
+ for ( var i = 0, l = this.length; i < l; i++ ) {
+ var elem = this[i];
+
+ if ( elem.nodeType === 1 && elem.className ) {
+ if ( value ) {
+ var className = (" " + elem.className + " ").replace(rclass, " ");
+ for ( var c = 0, cl = classNames.length; c < cl; c++ ) {
+ className = className.replace(" " + classNames[c] + " ", " ");
+ }
+ elem.className = jQuery.trim( className );
+
+ } else {
+ elem.className = "";
+ }
+ }
+ }
+ }
+
+ return this;
+ },
+
+ toggleClass: function( value, stateVal ) {
+ var type = typeof value, isBool = typeof stateVal === "boolean";
+
+ if ( jQuery.isFunction( value ) ) {
+ return this.each(function(i) {
+ var self = jQuery(this);
+ self.toggleClass( value.call(this, i, self.attr("class"), stateVal), stateVal );
+ });
+ }
+
+ return this.each(function() {
+ if ( type === "string" ) {
+ // toggle individual class names
+ var className, i = 0, self = jQuery(this),
+ state = stateVal,
+ classNames = value.split( rspace );
+
+ while ( (className = classNames[ i++ ]) ) {
+ // check each className given, space seperated list
+ state = isBool ? state : !self.hasClass( className );
+ self[ state ? "addClass" : "removeClass" ]( className );
+ }
+
+ } else if ( type === "undefined" || type === "boolean" ) {
+ if ( this.className ) {
+ // store className if set
+ jQuery.data( this, "__className__", this.className );
+ }
+
+ // toggle whole className
+ this.className = this.className || value === false ? "" : jQuery.data( this, "__className__" ) || "";
+ }
+ });
+ },
+
+ hasClass: function( selector ) {
+ var className = " " + selector + " ";
+ for ( var i = 0, l = this.length; i < l; i++ ) {
+ if ( (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) {
+ return true;
+ }
+ }
+
+ return false;
+ },
+
+ val: function( value ) {
+ if ( value === undefined ) {
+ var elem = this[0];
+
+ if ( elem ) {
+ if ( jQuery.nodeName( elem, "option" ) ) {
+ return (elem.attributes.value || {}).specified ? elem.value : elem.text;
+ }
+
+ // We need to handle select boxes special
+ if ( jQuery.nodeName( elem, "select" ) ) {
+ var index = elem.selectedIndex,
+ values = [],
+ options = elem.options,
+ one = elem.type === "select-one";
+
+ // Nothing was selected
+ if ( index < 0 ) {
+ return null;
+ }
+
+ // Loop through all the selected options
+ for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
+ var option = options[ i ];
+
+ if ( option.selected ) {
+ // Get the specifc value for the option
+ value = jQuery(option).val();
+
+ // We don't need an array for one selects
+ if ( one ) {
+ return value;
+ }
+
+ // Multi-Selects return an array
+ values.push( value );
+ }
+ }
+
+ return values;
+ }
+
+ // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified
+ if ( rradiocheck.test( elem.type ) && !jQuery.support.checkOn ) {
+ return elem.getAttribute("value") === null ? "on" : elem.value;
+ }
+
+
+ // Everything else, we just grab the value
+ return (elem.value || "").replace(rreturn, "");
+
+ }
+
+ return undefined;
+ }
+
+ var isFunction = jQuery.isFunction(value);
+
+ return this.each(function(i) {
+ var self = jQuery(this), val = value;
+
+ if ( this.nodeType !== 1 ) {
+ return;
+ }
+
+ if ( isFunction ) {
+ val = value.call(this, i, self.val());
+ }
+
+ // Typecast each time if the value is a Function and the appended
+ // value is therefore different each time.
+ if ( typeof val === "number" ) {
+ val += "";
+ }
+
+ if ( jQuery.isArray(val) && rradiocheck.test( this.type ) ) {
+ this.checked = jQuery.inArray( self.val(), val ) >= 0;
+
+ } else if ( jQuery.nodeName( this, "select" ) ) {
+ var values = jQuery.makeArray(val);
+
+ jQuery( "option", this ).each(function() {
+ this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0;
+ });
+
+ if ( !values.length ) {
+ this.selectedIndex = -1;
+ }
+
+ } else {
+ this.value = val;
+ }
+ });
+ }
+});
+
+jQuery.extend({
+ attrFn: {
+ val: true,
+ css: true,
+ html: true,
+ text: true,
+ data: true,
+ width: true,
+ height: true,
+ offset: true
+ },
+
+ attr: function( elem, name, value, pass ) {
+ // don't set attributes on text and comment nodes
+ if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) {
+ return undefined;
+ }
+
+ if ( pass && name in jQuery.attrFn ) {
+ return jQuery(elem)[name](value);
+ }
+
+ var notxml = elem.nodeType !== 1 || !jQuery.isXMLDoc( elem ),
+ // Whether we are setting (or getting)
+ set = value !== undefined;
+
+ // Try to normalize/fix the name
+ name = notxml && jQuery.props[ name ] || name;
+
+ // Only do all the following if this is a node (faster for style)
+ if ( elem.nodeType === 1 ) {
+ // These attributes require special treatment
+ var special = rspecialurl.test( name );
+
+ // Safari mis-reports the default selected property of an option
+ // Accessing the parent's selectedIndex property fixes it
+ if ( name === "selected" && !jQuery.support.optSelected ) {
+ var parent = elem.parentNode;
+ if ( parent ) {
+ parent.selectedIndex;
+
+ // Make sure that it also works with optgroups, see #5701
+ if ( parent.parentNode ) {
+ parent.parentNode.selectedIndex;
+ }
+ }
+ }
+
+ // If applicable, access the attribute via the DOM 0 way
+ if ( name in elem && notxml && !special ) {
+ if ( set ) {
+ // We can't allow the type property to be changed (since it causes problems in IE)
+ if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) {
+ jQuery.error( "type property can't be changed" );
+ }
+
+ elem[ name ] = value;
+ }
+
+ // browsers index elements by id/name on forms, give priority to attributes.
+ if ( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) ) {
+ return elem.getAttributeNode( name ).nodeValue;
+ }
+
+ // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
+ // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
+ if ( name === "tabIndex" ) {
+ var attributeNode = elem.getAttributeNode( "tabIndex" );
+
+ return attributeNode && attributeNode.specified ?
+ attributeNode.value :
+ rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
+ 0 :
+ undefined;
+ }
+
+ return elem[ name ];
+ }
+
+ if ( !jQuery.support.style && notxml && name === "style" ) {
+ if ( set ) {
+ elem.style.cssText = "" + value;
+ }
+
+ return elem.style.cssText;
+ }
+
+ if ( set ) {
+ // convert the value to a string (all browsers do this but IE) see #1070
+ elem.setAttribute( name, "" + value );
+ }
+
+ var attr = !jQuery.support.hrefNormalized && notxml && special ?
+ // Some attributes require a special call on IE
+ elem.getAttribute( name, 2 ) :
+ elem.getAttribute( name );
+
+ // Non-existent attributes return null, we normalize to undefined
+ return attr === null ? undefined : attr;
+ }
+
+ // elem is actually elem.style ... set the style
+ // Using attr for specific style information is now deprecated. Use style instead.
+ return jQuery.style( elem, name, value );
+ }
+});
+var rnamespaces = /\.(.*)$/,
+ fcleanup = function( nm ) {
+ return nm.replace(/[^\w\s\.\|`]/g, function( ch ) {
+ return "\\" + ch;
+ });
+ };
+
+/*
+ * A number of helper functions used for managing events.
+ * Many of the ideas behind this code originated from
+ * Dean Edwards' addEvent library.
+ */
+jQuery.event = {
+
+ // Bind an event to an element
+ // Original by Dean Edwards
+ add: function( elem, types, handler, data ) {
+ if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
+ return;
+ }
+
+ // For whatever reason, IE has trouble passing the window object
+ // around, causing it to be cloned in the process
+ if ( elem.setInterval && ( elem !== window && !elem.frameElement ) ) {
+ elem = window;
+ }
+
+ var handleObjIn, handleObj;
+
+ if ( handler.handler ) {
+ handleObjIn = handler;
+ handler = handleObjIn.handler;
+ }
+
+ // Make sure that the function being executed has a unique ID
+ if ( !handler.guid ) {
+ handler.guid = jQuery.guid++;
+ }
+
+ // Init the element's event structure
+ var elemData = jQuery.data( elem );
+
+ // If no elemData is found then we must be trying to bind to one of the
+ // banned noData elements
+ if ( !elemData ) {
+ return;
+ }
+
+ var events = elemData.events = elemData.events || {},
+ eventHandle = elemData.handle, eventHandle;
+
+ if ( !eventHandle ) {
+ elemData.handle = eventHandle = function() {
+ // Handle the second event of a trigger and when
+ // an event is called after a page has unloaded
+ return typeof jQuery !== "undefined" && !jQuery.event.triggered ?
+ jQuery.event.handle.apply( eventHandle.elem, arguments ) :
+ undefined;
+ };
+ }
+
+ // Add elem as a property of the handle function
+ // This is to prevent a memory leak with non-native events in IE.
+ eventHandle.elem = elem;
+
+ // Handle multiple events separated by a space
+ // jQuery(...).bind("mouseover mouseout", fn);
+ types = types.split(" ");
+
+ var type, i = 0, namespaces;
+
+ while ( (type = types[ i++ ]) ) {
+ handleObj = handleObjIn ?
+ jQuery.extend({}, handleObjIn) :
+ { handler: handler, data: data };
+
+ // Namespaced event handlers
+ if ( type.indexOf(".") > -1 ) {
+ namespaces = type.split(".");
+ type = namespaces.shift();
+ handleObj.namespace = namespaces.slice(0).sort().join(".");
+
+ } else {
+ namespaces = [];
+ handleObj.namespace = "";
+ }
+
+ handleObj.type = type;
+ handleObj.guid = handler.guid;
+
+ // Get the current list of functions bound to this event
+ var handlers = events[ type ],
+ special = jQuery.event.special[ type ] || {};
+
+ // Init the event handler queue
+ if ( !handlers ) {
+ handlers = events[ type ] = [];
+
+ // Check for a special event handler
+ // Only use addEventListener/attachEvent if the special
+ // events handler returns false
+ if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
+ // Bind the global event handler to the element
+ if ( elem.addEventListener ) {
+ elem.addEventListener( type, eventHandle, false );
+
+ } else if ( elem.attachEvent ) {
+ elem.attachEvent( "on" + type, eventHandle );
+ }
+ }
+ }
+
+ if ( special.add ) {
+ special.add.call( elem, handleObj );
+
+ if ( !handleObj.handler.guid ) {
+ handleObj.handler.guid = handler.guid;
+ }
+ }
+
+ // Add the function to the element's handler list
+ handlers.push( handleObj );
+
+ // Keep track of which events have been used, for global triggering
+ jQuery.event.global[ type ] = true;
+ }
+
+ // Nullify elem to prevent memory leaks in IE
+ elem = null;
+ },
+
+ global: {},
+
+ // Detach an event or set of events from an element
+ remove: function( elem, types, handler, pos ) {
+ // don't do events on text and comment nodes
+ if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
+ return;
+ }
+
+ var ret, type, fn, i = 0, all, namespaces, namespace, special, eventType, handleObj, origType,
+ elemData = jQuery.data( elem ),
+ events = elemData && elemData.events;
+
+ if ( !elemData || !events ) {
+ return;
+ }
+
+ // types is actually an event object here
+ if ( types && types.type ) {
+ handler = types.handler;
+ types = types.type;
+ }
+
+ // Unbind all events for the element
+ if ( !types || typeof types === "string" && types.charAt(0) === "." ) {
+ types = types || "";
+
+ for ( type in events ) {
+ jQuery.event.remove( elem, type + types );
+ }
+
+ return;
+ }
+
+ // Handle multiple events separated by a space
+ // jQuery(...).unbind("mouseover mouseout", fn);
+ types = types.split(" ");
+
+ while ( (type = types[ i++ ]) ) {
+ origType = type;
+ handleObj = null;
+ all = type.indexOf(".") < 0;
+ namespaces = [];
+
+ if ( !all ) {
+ // Namespaced event handlers
+ namespaces = type.split(".");
+ type = namespaces.shift();
+
+ namespace = new RegExp("(^|\\.)" +
+ jQuery.map( namespaces.slice(0).sort(), fcleanup ).join("\\.(?:.*\\.)?") + "(\\.|$)")
+ }
+
+ eventType = events[ type ];
+
+ if ( !eventType ) {
+ continue;
+ }
+
+ if ( !handler ) {
+ for ( var j = 0; j < eventType.length; j++ ) {
+ handleObj = eventType[ j ];
+
+ if ( all || namespace.test( handleObj.namespace ) ) {
+ jQuery.event.remove( elem, origType, handleObj.handler, j );
+ eventType.splice( j--, 1 );
+ }
+ }
+
+ continue;
+ }
+
+ special = jQuery.event.special[ type ] || {};
+
+ for ( var j = pos || 0; j < eventType.length; j++ ) {
+ handleObj = eventType[ j ];
+
+ if ( handler.guid === handleObj.guid ) {
+ // remove the given handler for the given type
+ if ( all || namespace.test( handleObj.namespace ) ) {
+ if ( pos == null ) {
+ eventType.splice( j--, 1 );
+ }
+
+ if ( special.remove ) {
+ special.remove.call( elem, handleObj );
+ }
+ }
+
+ if ( pos != null ) {
+ break;
+ }
+ }
+ }
+
+ // remove generic event handler if no more handlers exist
+ if ( eventType.length === 0 || pos != null && eventType.length === 1 ) {
+ if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) {
+ removeEvent( elem, type, elemData.handle );
+ }
+
+ ret = null;
+ delete events[ type ];
+ }
+ }
+
+ // Remove the expando if it's no longer used
+ if ( jQuery.isEmptyObject( events ) ) {
+ var handle = elemData.handle;
+ if ( handle ) {
+ handle.elem = null;
+ }
+
+ delete elemData.events;
+ delete elemData.handle;
+
+ if ( jQuery.isEmptyObject( elemData ) ) {
+ jQuery.removeData( elem );
+ }
+ }
+ },
+
+ // bubbling is internal
+ trigger: function( event, data, elem /*, bubbling */ ) {
+ // Event object or event type
+ var type = event.type || event,
+ bubbling = arguments[3];
+
+ if ( !bubbling ) {
+ event = typeof event === "object" ?
+ // jQuery.Event object
+ event[expando] ? event :
+ // Object literal
+ jQuery.extend( jQuery.Event(type), event ) :
+ // Just the event type (string)
+ jQuery.Event(type);
+
+ if ( type.indexOf("!") >= 0 ) {
+ event.type = type = type.slice(0, -1);
+ event.exclusive = true;
+ }
+
+ // Handle a global trigger
+ if ( !elem ) {
+ // Don't bubble custom events when global (to avoid too much overhead)
+ event.stopPropagation();
+
+ // Only trigger if we've ever bound an event for it
+ if ( jQuery.event.global[ type ] ) {
+ jQuery.each( jQuery.cache, function() {
+ if ( this.events && this.events[type] ) {
+ jQuery.event.trigger( event, data, this.handle.elem );
+ }
+ });
+ }
+ }
+
+ // Handle triggering a single element
+
+ // don't do events on text and comment nodes
+ if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) {
+ return undefined;
+ }
+
+ // Clean up in case it is reused
+ event.result = undefined;
+ event.target = elem;
+
+ // Clone the incoming data, if any
+ data = jQuery.makeArray( data );
+ data.unshift( event );
+ }
+
+ event.currentTarget = elem;
+
+ // Trigger the event, it is assumed that "handle" is a function
+ var handle = jQuery.data( elem, "handle" );
+ if ( handle ) {
+ handle.apply( elem, data );
+ }
+
+ var parent = elem.parentNode || elem.ownerDocument;
+
+ // Trigger an inline bound script
+ try {
+ if ( !(elem && elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()]) ) {
+ if ( elem[ "on" + type ] && elem[ "on" + type ].apply( elem, data ) === false ) {
+ event.result = false;
+ }
+ }
+
+ // prevent IE from throwing an error for some elements with some event types, see #3533
+ } catch (e) {}
+
+ if ( !event.isPropagationStopped() && parent ) {
+ jQuery.event.trigger( event, data, parent, true );
+
+ } else if ( !event.isDefaultPrevented() ) {
+ var target = event.target, old,
+ isClick = jQuery.nodeName(target, "a") && type === "click",
+ special = jQuery.event.special[ type ] || {};
+
+ if ( (!special._default || special._default.call( elem, event ) === false) &&
+ !isClick && !(target && target.nodeName && jQuery.noData[target.nodeName.toLowerCase()]) ) {
+
+ try {
+ if ( target[ type ] ) {
+ // Make sure that we don't accidentally re-trigger the onFOO events
+ old = target[ "on" + type ];
+
+ if ( old ) {
+ target[ "on" + type ] = null;
+ }
+
+ jQuery.event.triggered = true;
+ target[ type ]();
+ }
+
+ // prevent IE from throwing an error for some elements with some event types, see #3533
+ } catch (e) {}
+
+ if ( old ) {
+ target[ "on" + type ] = old;
+ }
+
+ jQuery.event.triggered = false;
+ }
+ }
+ },
+
+ handle: function( event ) {
+ var all, handlers, namespaces, namespace, events;
+
+ event = arguments[0] = jQuery.event.fix( event || window.event );
+ event.currentTarget = this;
+
+ // Namespaced event handlers
+ all = event.type.indexOf(".") < 0 && !event.exclusive;
+
+ if ( !all ) {
+ namespaces = event.type.split(".");
+ event.type = namespaces.shift();
+ namespace = new RegExp("(^|\\.)" + namespaces.slice(0).sort().join("\\.(?:.*\\.)?") + "(\\.|$)");
+ }
+
+ var events = jQuery.data(this, "events"), handlers = events[ event.type ];
+
+ if ( events && handlers ) {
+ // Clone the handlers to prevent manipulation
+ handlers = handlers.slice(0);
+
+ for ( var j = 0, l = handlers.length; j < l; j++ ) {
+ var handleObj = handlers[ j ];
+
+ // Filter the functions by class
+ if ( all || namespace.test( handleObj.namespace ) ) {
+ // Pass in a reference to the handler function itself
+ // So that we can later remove it
+ event.handler = handleObj.handler;
+ event.data = handleObj.data;
+ event.handleObj = handleObj;
+
+ var ret = handleObj.handler.apply( this, arguments );
+
+ if ( ret !== undefined ) {
+ event.result = ret;
+ if ( ret === false ) {
+ event.preventDefault();
+ event.stopPropagation();
+ }
+ }
+
+ if ( event.isImmediatePropagationStopped() ) {
+ break;
+ }
+ }
+ }
+ }
+
+ return event.result;
+ },
+
+ props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
+
+ fix: function( event ) {
+ if ( event[ expando ] ) {
+ return event;
+ }
+
+ // store a copy of the original event object
+ // and "clone" to set read-only properties
+ var originalEvent = event;
+ event = jQuery.Event( originalEvent );
+
+ for ( var i = this.props.length, prop; i; ) {
+ prop = this.props[ --i ];
+ event[ prop ] = originalEvent[ prop ];
+ }
+
+ // Fix target property, if necessary
+ if ( !event.target ) {
+ event.target = event.srcElement || document; // Fixes #1925 where srcElement might not be defined either
+ }
+
+ // check if target is a textnode (safari)
+ if ( event.target.nodeType === 3 ) {
+ event.target = event.target.parentNode;
+ }
+
+ // Add relatedTarget, if necessary
+ if ( !event.relatedTarget && event.fromElement ) {
+ event.relatedTarget = event.fromElement === event.target ? event.toElement : event.fromElement;
+ }
+
+ // Calculate pageX/Y if missing and clientX/Y available
+ if ( event.pageX == null && event.clientX != null ) {
+ var doc = document.documentElement, body = document.body;
+ event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc && doc.clientLeft || body && body.clientLeft || 0);
+ event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc && doc.clientTop || body && body.clientTop || 0);
+ }
+
+ // Add which for key events
+ if ( !event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode) ) {
+ event.which = event.charCode || event.keyCode;
+ }
+
+ // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs)
+ if ( !event.metaKey && event.ctrlKey ) {
+ event.metaKey = event.ctrlKey;
+ }
+
+ // Add which for click: 1 === left; 2 === middle; 3 === right
+ // Note: button is not normalized, so don't use it
+ if ( !event.which && event.button !== undefined ) {
+ event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) ));
+ }
+
+ return event;
+ },
+
+ // Deprecated, use jQuery.guid instead
+ guid: 1E8,
+
+ // Deprecated, use jQuery.proxy instead
+ proxy: jQuery.proxy,
+
+ special: {
+ ready: {
+ // Make sure the ready event is setup
+ setup: jQuery.bindReady,
+ teardown: jQuery.noop
+ },
+
+ live: {
+ add: function( handleObj ) {
+ jQuery.event.add( this, handleObj.origType, jQuery.extend({}, handleObj, {handler: liveHandler}) );
+ },
+
+ remove: function( handleObj ) {
+ var remove = true,
+ type = handleObj.origType.replace(rnamespaces, "");
+
+ jQuery.each( jQuery.data(this, "events").live || [], function() {
+ if ( type === this.origType.replace(rnamespaces, "") ) {
+ remove = false;
+ return false;
+ }
+ });
+
+ if ( remove ) {
+ jQuery.event.remove( this, handleObj.origType, liveHandler );
+ }
+ }
+
+ },
+
+ beforeunload: {
+ setup: function( data, namespaces, eventHandle ) {
+ // We only want to do this special case on windows
+ if ( this.setInterval ) {
+ this.onbeforeunload = eventHandle;
+ }
+
+ return false;
+ },
+ teardown: function( namespaces, eventHandle ) {
+ if ( this.onbeforeunload === eventHandle ) {
+ this.onbeforeunload = null;
+ }
+ }
+ }
+ }
+};
+
+var removeEvent = document.removeEventListener ?
+ function( elem, type, handle ) {
+ elem.removeEventListener( type, handle, false );
+ } :
+ function( elem, type, handle ) {
+ elem.detachEvent( "on" + type, handle );
+ };
+
+jQuery.Event = function( src ) {
+ // Allow instantiation without the 'new' keyword
+ if ( !this.preventDefault ) {
+ return new jQuery.Event( src );
+ }
+
+ // Event object
+ if ( src && src.type ) {
+ this.originalEvent = src;
+ this.type = src.type;
+ // Event type
+ } else {
+ this.type = src;
+ }
+
+ // timeStamp is buggy for some events on Firefox(#3843)
+ // So we won't rely on the native value
+ this.timeStamp = now();
+
+ // Mark it as fixed
+ this[ expando ] = true;
+};
+
+function returnFalse() {
+ return false;
+}
+function returnTrue() {
+ return true;
+}
+
+// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
+// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
+jQuery.Event.prototype = {
+ preventDefault: function() {
+ this.isDefaultPrevented = returnTrue;
+
+ var e = this.originalEvent;
+ if ( !e ) {
+ return;
+ }
+
+ // if preventDefault exists run it on the original event
+ if ( e.preventDefault ) {
+ e.preventDefault();
+ }
+ // otherwise set the returnValue property of the original event to false (IE)
+ e.returnValue = false;
+ },
+ stopPropagation: function() {
+ this.isPropagationStopped = returnTrue;
+
+ var e = this.originalEvent;
+ if ( !e ) {
+ return;
+ }
+ // if stopPropagation exists run it on the original event
+ if ( e.stopPropagation ) {
+ e.stopPropagation();
+ }
+ // otherwise set the cancelBubble property of the original event to true (IE)
+ e.cancelBubble = true;
+ },
+ stopImmediatePropagation: function() {
+ this.isImmediatePropagationStopped = returnTrue;
+ this.stopPropagation();
+ },
+ isDefaultPrevented: returnFalse,
+ isPropagationStopped: returnFalse,
+ isImmediatePropagationStopped: returnFalse
+};
+
+// Checks if an event happened on an element within another element
+// Used in jQuery.event.special.mouseenter and mouseleave handlers
+var withinElement = function( event ) {
+ // Check if mouse(over|out) are still within the same parent element
+ var parent = event.relatedTarget;
+
+ // Firefox sometimes assigns relatedTarget a XUL element
+ // which we cannot access the parentNode property of
+ try {
+ // Traverse up the tree
+ while ( parent && parent !== this ) {
+ parent = parent.parentNode;
+ }
+
+ if ( parent !== this ) {
+ // set the correct event type
+ event.type = event.data;
+
+ // handle event if we actually just moused on to a non sub-element
+ jQuery.event.handle.apply( this, arguments );
+ }
+
+ // assuming we've left the element since we most likely mousedover a xul element
+ } catch(e) { }
+},
+
+// In case of event delegation, we only need to rename the event.type,
+// liveHandler will take care of the rest.
+delegate = function( event ) {
+ event.type = event.data;
+ jQuery.event.handle.apply( this, arguments );
+};
+
+// Create mouseenter and mouseleave events
+jQuery.each({
+ mouseenter: "mouseover",
+ mouseleave: "mouseout"
+}, function( orig, fix ) {
+ jQuery.event.special[ orig ] = {
+ setup: function( data ) {
+ jQuery.event.add( this, fix, data && data.selector ? delegate : withinElement, orig );
+ },
+ teardown: function( data ) {
+ jQuery.event.remove( this, fix, data && data.selector ? delegate : withinElement );
+ }
+ };
+});
+
+// submit delegation
+if ( !jQuery.support.submitBubbles ) {
+
+ jQuery.event.special.submit = {
+ setup: function( data, namespaces ) {
+ if ( this.nodeName.toLowerCase() !== "form" ) {
+ jQuery.event.add(this, "click.specialSubmit", function( e ) {
+ var elem = e.target, type = elem.type;
+
+ if ( (type === "submit" || type === "image") && jQuery( elem ).closest("form").length ) {
+ return trigger( "submit", this, arguments );
+ }
+ });
+
+ jQuery.event.add(this, "keypress.specialSubmit", function( e ) {
+ var elem = e.target, type = elem.type;
+
+ if ( (type === "text" || type === "password") && jQuery( elem ).closest("form").length && e.keyCode === 13 ) {
+ return trigger( "submit", this, arguments );
+ }
+ });
+
+ } else {
+ return false;
+ }
+ },
+
+ teardown: function( namespaces ) {
+ jQuery.event.remove( this, ".specialSubmit" );
+ }
+ };
+
+}
+
+// change delegation, happens here so we have bind.
+if ( !jQuery.support.changeBubbles ) {
+
+ var formElems = /textarea|input|select/i,
+
+ changeFilters,
+
+ getVal = function( elem ) {
+ var type = elem.type, val = elem.value;
+
+ if ( type === "radio" || type === "checkbox" ) {
+ val = elem.checked;
+
+ } else if ( type === "select-multiple" ) {
+ val = elem.selectedIndex > -1 ?
+ jQuery.map( elem.options, function( elem ) {
+ return elem.selected;
+ }).join("-") :
+ "";
+
+ } else if ( elem.nodeName.toLowerCase() === "select" ) {
+ val = elem.selectedIndex;
+ }
+
+ return val;
+ },
+
+ testChange = function testChange( e ) {
+ var elem = e.target, data, val;
+
+ if ( !formElems.test( elem.nodeName ) || elem.readOnly ) {
+ return;
+ }
+
+ data = jQuery.data( elem, "_change_data" );
+ val = getVal(elem);
+
+ // the current data will be also retrieved by beforeactivate
+ if ( e.type !== "focusout" || elem.type !== "radio" ) {
+ jQuery.data( elem, "_change_data", val );
+ }
+
+ if ( data === undefined || val === data ) {
+ return;
+ }
+
+ if ( data != null || val ) {
+ e.type = "change";
+ return jQuery.event.trigger( e, arguments[1], elem );
+ }
+ };
+
+ jQuery.event.special.change = {
+ filters: {
+ focusout: testChange,
+
+ click: function( e ) {
+ var elem = e.target, type = elem.type;
+
+ if ( type === "radio" || type === "checkbox" || elem.nodeName.toLowerCase() === "select" ) {
+ return testChange.call( this, e );
+ }
+ },
+
+ // Change has to be called before submit
+ // Keydown will be called before keypress, which is used in submit-event delegation
+ keydown: function( e ) {
+ var elem = e.target, type = elem.type;
+
+ if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== "textarea") ||
+ (e.keyCode === 32 && (type === "checkbox" || type === "radio")) ||
+ type === "select-multiple" ) {
+ return testChange.call( this, e );
+ }
+ },
+
+ // Beforeactivate happens also before the previous element is blurred
+ // with this event you can't trigger a change event, but you can store
+ // information/focus[in] is not needed anymore
+ beforeactivate: function( e ) {
+ var elem = e.target;
+ jQuery.data( elem, "_change_data", getVal(elem) );
+ }
+ },
+
+ setup: function( data, namespaces ) {
+ if ( this.type === "file" ) {
+ return false;
+ }
+
+ for ( var type in changeFilters ) {
+ jQuery.event.add( this, type + ".specialChange", changeFilters[type] );
+ }
+
+ return formElems.test( this.nodeName );
+ },
+
+ teardown: function( namespaces ) {
+ jQuery.event.remove( this, ".specialChange" );
+
+ return formElems.test( this.nodeName );
+ }
+ };
+
+ changeFilters = jQuery.event.special.change.filters;
+}
+
+function trigger( type, elem, args ) {
+ args[0].type = type;
+ return jQuery.event.handle.apply( elem, args );
+}
+
+// Create "bubbling" focus and blur events
+if ( document.addEventListener ) {
+ jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
+ jQuery.event.special[ fix ] = {
+ setup: function() {
+ this.addEventListener( orig, handler, true );
+ },
+ teardown: function() {
+ this.removeEventListener( orig, handler, true );
+ }
+ };
+
+ function handler( e ) {
+ e = jQuery.event.fix( e );
+ e.type = fix;
+ return jQuery.event.handle.call( this, e );
+ }
+ });
+}
+
+jQuery.each(["bind", "one"], function( i, name ) {
+ jQuery.fn[ name ] = function( type, data, fn ) {
+ // Handle object literals
+ if ( typeof type === "object" ) {
+ for ( var key in type ) {
+ this[ name ](key, data, type[key], fn);
+ }
+ return this;
+ }
+
+ if ( jQuery.isFunction( data ) ) {
+ fn = data;
+ data = undefined;
+ }
+
+ var handler = name === "one" ? jQuery.proxy( fn, function( event ) {
+ jQuery( this ).unbind( event, handler );
+ return fn.apply( this, arguments );
+ }) : fn;
+
+ if ( type === "unload" && name !== "one" ) {
+ this.one( type, data, fn );
+
+ } else {
+ for ( var i = 0, l = this.length; i < l; i++ ) {
+ jQuery.event.add( this[i], type, handler, data );
+ }
+ }
+
+ return this;
+ };
+});
+
+jQuery.fn.extend({
+ unbind: function( type, fn ) {
+ // Handle object literals
+ if ( typeof type === "object" && !type.preventDefault ) {
+ for ( var key in type ) {
+ this.unbind(key, type[key]);
+ }
+
+ } else {
+ for ( var i = 0, l = this.length; i < l; i++ ) {
+ jQuery.event.remove( this[i], type, fn );
+ }
+ }
+
+ return this;
+ },
+
+ delegate: function( selector, types, data, fn ) {
+ return this.live( types, data, fn, selector );
+ },
+
+ undelegate: function( selector, types, fn ) {
+ if ( arguments.length === 0 ) {
+ return this.unbind( "live" );
+
+ } else {
+ return this.die( types, null, fn, selector );
+ }
+ },
+
+ trigger: function( type, data ) {
+ return this.each(function() {
+ jQuery.event.trigger( type, data, this );
+ });
+ },
+
+ triggerHandler: function( type, data ) {
+ if ( this[0] ) {
+ var event = jQuery.Event( type );
+ event.preventDefault();
+ event.stopPropagation();
+ jQuery.event.trigger( event, data, this[0] );
+ return event.result;
+ }
+ },
+
+ toggle: function( fn ) {
+ // Save reference to arguments for access in closure
+ var args = arguments, i = 1;
+
+ // link all the functions, so any of them can unbind this click handler
+ while ( i < args.length ) {
+ jQuery.proxy( fn, args[ i++ ] );
+ }
+
+ return this.click( jQuery.proxy( fn, function( event ) {
+ // Figure out which function to execute
+ var lastToggle = ( jQuery.data( this, "lastToggle" + fn.guid ) || 0 ) % i;
+ jQuery.data( this, "lastToggle" + fn.guid, lastToggle + 1 );
+
+ // Make sure that clicks stop
+ event.preventDefault();
+
+ // and execute the function
+ return args[ lastToggle ].apply( this, arguments ) || false;
+ }));
+ },
+
+ hover: function( fnOver, fnOut ) {
+ return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
+ }
+});
+
+var liveMap = {
+ focus: "focusin",
+ blur: "focusout",
+ mouseenter: "mouseover",
+ mouseleave: "mouseout"
+};
+
+jQuery.each(["live", "die"], function( i, name ) {
+ jQuery.fn[ name ] = function( types, data, fn, origSelector /* Internal Use Only */ ) {
+ var type, i = 0, match, namespaces, preType,
+ selector = origSelector || this.selector,
+ context = origSelector ? this : jQuery( this.context );
+
+ if ( jQuery.isFunction( data ) ) {
+ fn = data;
+ data = undefined;
+ }
+
+ types = (types || "").split(" ");
+
+ while ( (type = types[ i++ ]) != null ) {
+ match = rnamespaces.exec( type );
+ namespaces = "";
+
+ if ( match ) {
+ namespaces = match[0];
+ type = type.replace( rnamespaces, "" );
+ }
+
+ if ( type === "hover" ) {
+ types.push( "mouseenter" + namespaces, "mouseleave" + namespaces );
+ continue;
+ }
+
+ preType = type;
+
+ if ( type === "focus" || type === "blur" ) {
+ types.push( liveMap[ type ] + namespaces );
+ type = type + namespaces;
+
+ } else {
+ type = (liveMap[ type ] || type) + namespaces;
+ }
+
+ if ( name === "live" ) {
+ // bind live handler
+ context.each(function(){
+ jQuery.event.add( this, liveConvert( type, selector ),
+ { data: data, selector: selector, handler: fn, origType: type, origHandler: fn, preType: preType } );
+ });
+
+ } else {
+ // unbind live handler
+ context.unbind( liveConvert( type, selector ), fn );
+ }
+ }
+
+ return this;
+ }
+});
+
+function liveHandler( event ) {
+ var stop, elems = [], selectors = [], args = arguments,
+ related, match, handleObj, elem, j, i, l, data,
+ events = jQuery.data( this, "events" );
+
+ // Make sure we avoid non-left-click bubbling in Firefox (#3861)
+ if ( event.liveFired === this || !events || !events.live || event.button && event.type === "click" ) {
+ return;
+ }
+
+ event.liveFired = this;
+
+ var live = events.live.slice(0);
+
+ for ( j = 0; j < live.length; j++ ) {
+ handleObj = live[j];
+
+ if ( handleObj.origType.replace( rnamespaces, "" ) === event.type ) {
+ selectors.push( handleObj.selector );
+
+ } else {
+ live.splice( j--, 1 );
+ }
+ }
+
+ match = jQuery( event.target ).closest( selectors, event.currentTarget );
+
+ for ( i = 0, l = match.length; i < l; i++ ) {
+ for ( j = 0; j < live.length; j++ ) {
+ handleObj = live[j];
+
+ if ( match[i].selector === handleObj.selector ) {
+ elem = match[i].elem;
+ related = null;
+
+ // Those two events require additional checking
+ if ( handleObj.preType === "mouseenter" || handleObj.preType === "mouseleave" ) {
+ related = jQuery( event.relatedTarget ).closest( handleObj.selector )[0];
+ }
+
+ if ( !related || related !== elem ) {
+ elems.push({ elem: elem, handleObj: handleObj });
+ }
+ }
+ }
+ }
+
+ for ( i = 0, l = elems.length; i < l; i++ ) {
+ match = elems[i];
+ event.currentTarget = match.elem;
+ event.data = match.handleObj.data;
+ event.handleObj = match.handleObj;
+
+ if ( match.handleObj.origHandler.apply( match.elem, args ) === false ) {
+ stop = false;
+ break;
+ }
+ }
+
+ return stop;
+}
+
+function liveConvert( type, selector ) {
+ return "live." + (type && type !== "*" ? type + "." : "") + selector.replace(/\./g, "`").replace(/ /g, "&");
+}
+
+jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
+ "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
+ "change select submit keydown keypress keyup error").split(" "), function( i, name ) {
+
+ // Handle event binding
+ jQuery.fn[ name ] = function( fn ) {
+ return fn ? this.bind( name, fn ) : this.trigger( name );
+ };
+
+ if ( jQuery.attrFn ) {
+ jQuery.attrFn[ name ] = true;
+ }
+});
+
+// Prevent memory leaks in IE
+// Window isn't included so as not to unbind existing unload events
+// More info:
+// - http://isaacschlueter.com/2006/10/msie-memory-leaks/
+if ( window.attachEvent && !window.addEventListener ) {
+ window.attachEvent("onunload", function() {
+ for ( var id in jQuery.cache ) {
+ if ( jQuery.cache[ id ].handle ) {
+ // Try/Catch is to handle iframes being unloaded, see #4280
+ try {
+ jQuery.event.remove( jQuery.cache[ id ].handle.elem );
+ } catch(e) {}
+ }
+ }
+ });
+}
+/*!
+ * Sizzle CSS Selector Engine - v1.0
+ * Copyright 2009, The Dojo Foundation
+ * Released under the MIT, BSD, and GPL Licenses.
+ * More information: http://sizzlejs.com/
+ */
+(function(){
+
+var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,
+ done = 0,
+ toString = Object.prototype.toString,
+ hasDuplicate = false,
+ baseHasDuplicate = true;
+
+// Here we check if the JavaScript engine is using some sort of
+// optimization where it does not always call our comparision
+// function. If that is the case, discard the hasDuplicate value.
+// Thus far that includes Google Chrome.
+[0, 0].sort(function(){
+ baseHasDuplicate = false;
+ return 0;
+});
+
+var Sizzle = function(selector, context, results, seed) {
+ results = results || [];
+ var origContext = context = context || document;
+
+ if ( context.nodeType !== 1 && context.nodeType !== 9 ) {
+ return [];
+ }
+
+ if ( !selector || typeof selector !== "string" ) {
+ return results;
+ }
+
+ var parts = [], m, set, checkSet, extra, prune = true, contextXML = isXML(context),
+ soFar = selector;
+
+ // Reset the position of the chunker regexp (start from head)
+ while ( (chunker.exec(""), m = chunker.exec(soFar)) !== null ) {
+ soFar = m[3];
+
+ parts.push( m[1] );
+
+ if ( m[2] ) {
+ extra = m[3];
+ break;
+ }
+ }
+
+ if ( parts.length > 1 && origPOS.exec( selector ) ) {
+ if ( parts.length === 2 && Expr.relative[ parts[0] ] ) {
+ set = posProcess( parts[0] + parts[1], context );
+ } else {
+ set = Expr.relative[ parts[0] ] ?
+ [ context ] :
+ Sizzle( parts.shift(), context );
+
+ while ( parts.length ) {
+ selector = parts.shift();
+
+ if ( Expr.relative[ selector ] ) {
+ selector += parts.shift();
+ }
+
+ set = posProcess( selector, set );
+ }
+ }
+ } else {
+ // Take a shortcut and set the context if the root selector is an ID
+ // (but not if it'll be faster if the inner selector is an ID)
+ if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML &&
+ Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) {
+ var ret = Sizzle.find( parts.shift(), context, contextXML );
+ context = ret.expr ? Sizzle.filter( ret.expr, ret.set )[0] : ret.set[0];
+ }
+
+ if ( context ) {
+ var ret = seed ?
+ { expr: parts.pop(), set: makeArray(seed) } :
+ Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML );
+ set = ret.expr ? Sizzle.filter( ret.expr, ret.set ) : ret.set;
+
+ if ( parts.length > 0 ) {
+ checkSet = makeArray(set);
+ } else {
+ prune = false;
+ }
+
+ while ( parts.length ) {
+ var cur = parts.pop(), pop = cur;
+
+ if ( !Expr.relative[ cur ] ) {
+ cur = "";
+ } else {
+ pop = parts.pop();
+ }
+
+ if ( pop == null ) {
+ pop = context;
+ }
+
+ Expr.relative[ cur ]( checkSet, pop, contextXML );
+ }
+ } else {
+ checkSet = parts = [];
+ }
+ }
+
+ if ( !checkSet ) {
+ checkSet = set;
+ }
+
+ if ( !checkSet ) {
+ Sizzle.error( cur || selector );
+ }
+
+ if ( toString.call(checkSet) === "[object Array]" ) {
+ if ( !prune ) {
+ results.push.apply( results, checkSet );
+ } else if ( context && context.nodeType === 1 ) {
+ for ( var i = 0; checkSet[i] != null; i++ ) {
+ if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && contains(context, checkSet[i])) ) {
+ results.push( set[i] );
+ }
+ }
+ } else {
+ for ( var i = 0; checkSet[i] != null; i++ ) {
+ if ( checkSet[i] && checkSet[i].nodeType === 1 ) {
+ results.push( set[i] );
+ }
+ }
+ }
+ } else {
+ makeArray( checkSet, results );
+ }
+
+ if ( extra ) {
+ Sizzle( extra, origContext, results, seed );
+ Sizzle.uniqueSort( results );
+ }
+
+ return results;
+};
+
+Sizzle.uniqueSort = function(results){
+ if ( sortOrder ) {
+ hasDuplicate = baseHasDuplicate;
+ results.sort(sortOrder);
+
+ if ( hasDuplicate ) {
+ for ( var i = 1; i < results.length; i++ ) {
+ if ( results[i] === results[i-1] ) {
+ results.splice(i--, 1);
+ }
+ }
+ }
+ }
+
+ return results;
+};
+
+Sizzle.matches = function(expr, set){
+ return Sizzle(expr, null, null, set);
+};
+
+Sizzle.find = function(expr, context, isXML){
+ var set, match;
+
+ if ( !expr ) {
+ return [];
+ }
+
+ for ( var i = 0, l = Expr.order.length; i < l; i++ ) {
+ var type = Expr.order[i], match;
+
+ if ( (match = Expr.leftMatch[ type ].exec( expr )) ) {
+ var left = match[1];
+ match.splice(1,1);
+
+ if ( left.substr( left.length - 1 ) !== "\\" ) {
+ match[1] = (match[1] || "").replace(/\\/g, "");
+ set = Expr.find[ type ]( match, context, isXML );
+ if ( set != null ) {
+ expr = expr.replace( Expr.match[ type ], "" );
+ break;
+ }
+ }
+ }
+ }
+
+ if ( !set ) {
+ set = context.getElementsByTagName("*");
+ }
+
+ return {set: set, expr: expr};
+};
+
+Sizzle.filter = function(expr, set, inplace, not){
+ var old = expr, result = [], curLoop = set, match, anyFound,
+ isXMLFilter = set && set[0] && isXML(set[0]);
+
+ while ( expr && set.length ) {
+ for ( var type in Expr.filter ) {
+ if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) {
+ var filter = Expr.filter[ type ], found, item, left = match[1];
+ anyFound = false;
+
+ match.splice(1,1);
+
+ if ( left.substr( left.length - 1 ) === "\\" ) {
+ continue;
+ }
+
+ if ( curLoop === result ) {
+ result = [];
+ }
+
+ if ( Expr.preFilter[ type ] ) {
+ match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter );
+
+ if ( !match ) {
+ anyFound = found = true;
+ } else if ( match === true ) {
+ continue;
+ }
+ }
+
+ if ( match ) {
+ for ( var i = 0; (item = curLoop[i]) != null; i++ ) {
+ if ( item ) {
+ found = filter( item, match, i, curLoop );
+ var pass = not ^ !!found;
+
+ if ( inplace && found != null ) {
+ if ( pass ) {
+ anyFound = true;
+ } else {
+ curLoop[i] = false;
+ }
+ } else if ( pass ) {
+ result.push( item );
+ anyFound = true;
+ }
+ }
+ }
+ }
+
+ if ( found !== undefined ) {
+ if ( !inplace ) {
+ curLoop = result;
+ }
+
+ expr = expr.replace( Expr.match[ type ], "" );
+
+ if ( !anyFound ) {
+ return [];
+ }
+
+ break;
+ }
+ }
+ }
+
+ // Improper expression
+ if ( expr === old ) {
+ if ( anyFound == null ) {
+ Sizzle.error( expr );
+ } else {
+ break;
+ }
+ }
+
+ old = expr;
+ }
+
+ return curLoop;
+};
+
+Sizzle.error = function( msg ) {
+ throw "Syntax error, unrecognized expression: " + msg;
+};
+
+var Expr = Sizzle.selectors = {
+ order: [ "ID", "NAME", "TAG" ],
+ match: {
+ ID: /#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,
+ CLASS: /\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,
+ NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,
+ ATTR: /\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,
+ TAG: /^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,
+ CHILD: /:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,
+ POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,
+ PSEUDO: /:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/
+ },
+ leftMatch: {},
+ attrMap: {
+ "class": "className",
+ "for": "htmlFor"
+ },
+ attrHandle: {
+ href: function(elem){
+ return elem.getAttribute("href");
+ }
+ },
+ relative: {
+ "+": function(checkSet, part){
+ var isPartStr = typeof part === "string",
+ isTag = isPartStr && !/\W/.test(part),
+ isPartStrNotTag = isPartStr && !isTag;
+
+ if ( isTag ) {
+ part = part.toLowerCase();
+ }
+
+ for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) {
+ if ( (elem = checkSet[i]) ) {
+ while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {}
+
+ checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ?
+ elem || false :
+ elem === part;
+ }
+ }
+
+ if ( isPartStrNotTag ) {
+ Sizzle.filter( part, checkSet, true );
+ }
+ },
+ ">": function(checkSet, part){
+ var isPartStr = typeof part === "string";
+
+ if ( isPartStr && !/\W/.test(part) ) {
+ part = part.toLowerCase();
+
+ for ( var i = 0, l = checkSet.length; i < l; i++ ) {
+ var elem = checkSet[i];
+ if ( elem ) {
+ var parent = elem.parentNode;
+ checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false;
+ }
+ }
+ } else {
+ for ( var i = 0, l = checkSet.length; i < l; i++ ) {
+ var elem = checkSet[i];
+ if ( elem ) {
+ checkSet[i] = isPartStr ?
+ elem.parentNode :
+ elem.parentNode === part;
+ }
+ }
+
+ if ( isPartStr ) {
+ Sizzle.filter( part, checkSet, true );
+ }
+ }
+ },
+ "": function(checkSet, part, isXML){
+ var doneName = done++, checkFn = dirCheck;
+
+ if ( typeof part === "string" && !/\W/.test(part) ) {
+ var nodeCheck = part = part.toLowerCase();
+ checkFn = dirNodeCheck;
+ }
+
+ checkFn("parentNode", part, doneName, checkSet, nodeCheck, isXML);
+ },
+ "~": function(checkSet, part, isXML){
+ var doneName = done++, checkFn = dirCheck;
+
+ if ( typeof part === "string" && !/\W/.test(part) ) {
+ var nodeCheck = part = part.toLowerCase();
+ checkFn = dirNodeCheck;
+ }
+
+ checkFn("previousSibling", part, doneName, checkSet, nodeCheck, isXML);
+ }
+ },
+ find: {
+ ID: function(match, context, isXML){
+ if ( typeof context.getElementById !== "undefined" && !isXML ) {
+ var m = context.getElementById(match[1]);
+ return m ? [m] : [];
+ }
+ },
+ NAME: function(match, context){
+ if ( typeof context.getElementsByName !== "undefined" ) {
+ var ret = [], results = context.getElementsByName(match[1]);
+
+ for ( var i = 0, l = results.length; i < l; i++ ) {
+ if ( results[i].getAttribute("name") === match[1] ) {
+ ret.push( results[i] );
+ }
+ }
+
+ return ret.length === 0 ? null : ret;
+ }
+ },
+ TAG: function(match, context){
+ return context.getElementsByTagName(match[1]);
+ }
+ },
+ preFilter: {
+ CLASS: function(match, curLoop, inplace, result, not, isXML){
+ match = " " + match[1].replace(/\\/g, "") + " ";
+
+ if ( isXML ) {
+ return match;
+ }
+
+ for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) {
+ if ( elem ) {
+ if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n]/g, " ").indexOf(match) >= 0) ) {
+ if ( !inplace ) {
+ result.push( elem );
+ }
+ } else if ( inplace ) {
+ curLoop[i] = false;
+ }
+ }
+ }
+
+ return false;
+ },
+ ID: function(match){
+ return match[1].replace(/\\/g, "");
+ },
+ TAG: function(match, curLoop){
+ return match[1].toLowerCase();
+ },
+ CHILD: function(match){
+ if ( match[1] === "nth" ) {
+ // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6'
+ var test = /(-?)(\d*)n((?:\+|-)?\d*)/.exec(
+ match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" ||
+ !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]);
+
+ // calculate the numbers (first)n+(last) including if they are negative
+ match[2] = (test[1] + (test[2] || 1)) - 0;
+ match[3] = test[3] - 0;
+ }
+
+ // TODO: Move to normal caching system
+ match[0] = done++;
+
+ return match;
+ },
+ ATTR: function(match, curLoop, inplace, result, not, isXML){
+ var name = match[1].replace(/\\/g, "");
+
+ if ( !isXML && Expr.attrMap[name] ) {
+ match[1] = Expr.attrMap[name];
+ }
+
+ if ( match[2] === "~=" ) {
+ match[4] = " " + match[4] + " ";
+ }
+
+ return match;
+ },
+ PSEUDO: function(match, curLoop, inplace, result, not){
+ if ( match[1] === "not" ) {
+ // If we're dealing with a complex expression, or a simple one
+ if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) {
+ match[3] = Sizzle(match[3], null, null, curLoop);
+ } else {
+ var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not);
+ if ( !inplace ) {
+ result.push.apply( result, ret );
+ }
+ return false;
+ }
+ } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) {
+ return true;
+ }
+
+ return match;
+ },
+ POS: function(match){
+ match.unshift( true );
+ return match;
+ }
+ },
+ filters: {
+ enabled: function(elem){
+ return elem.disabled === false && elem.type !== "hidden";
+ },
+ disabled: function(elem){
+ return elem.disabled === true;
+ },
+ checked: function(elem){
+ return elem.checked === true;
+ },
+ selected: function(elem){
+ // Accessing this property makes selected-by-default
+ // options in Safari work properly
+ elem.parentNode.selectedIndex;
+ return elem.selected === true;
+ },
+ parent: function(elem){
+ return !!elem.firstChild;
+ },
+ empty: function(elem){
+ return !elem.firstChild;
+ },
+ has: function(elem, i, match){
+ return !!Sizzle( match[3], elem ).length;
+ },
+ header: function(elem){
+ return /h\d/i.test( elem.nodeName );
+ },
+ text: function(elem){
+ return "text" === elem.type;
+ },
+ radio: function(elem){
+ return "radio" === elem.type;
+ },
+ checkbox: function(elem){
+ return "checkbox" === elem.type;
+ },
+ file: function(elem){
+ return "file" === elem.type;
+ },
+ password: function(elem){
+ return "password" === elem.type;
+ },
+ submit: function(elem){
+ return "submit" === elem.type;
+ },
+ image: function(elem){
+ return "image" === elem.type;
+ },
+ reset: function(elem){
+ return "reset" === elem.type;
+ },
+ button: function(elem){
+ return "button" === elem.type || elem.nodeName.toLowerCase() === "button";
+ },
+ input: function(elem){
+ return /input|select|textarea|button/i.test(elem.nodeName);
+ }
+ },
+ setFilters: {
+ first: function(elem, i){
+ return i === 0;
+ },
+ last: function(elem, i, match, array){
+ return i === array.length - 1;
+ },
+ even: function(elem, i){
+ return i % 2 === 0;
+ },
+ odd: function(elem, i){
+ return i % 2 === 1;
+ },
+ lt: function(elem, i, match){
+ return i < match[3] - 0;
+ },
+ gt: function(elem, i, match){
+ return i > match[3] - 0;
+ },
+ nth: function(elem, i, match){
+ return match[3] - 0 === i;
+ },
+ eq: function(elem, i, match){
+ return match[3] - 0 === i;
+ }
+ },
+ filter: {
+ PSEUDO: function(elem, match, i, array){
+ var name = match[1], filter = Expr.filters[ name ];
+
+ if ( filter ) {
+ return filter( elem, i, match, array );
+ } else if ( name === "contains" ) {
+ return (elem.textContent || elem.innerText || getText([ elem ]) || "").indexOf(match[3]) >= 0;
+ } else if ( name === "not" ) {
+ var not = match[3];
+
+ for ( var i = 0, l = not.length; i < l; i++ ) {
+ if ( not[i] === elem ) {
+ return false;
+ }
+ }
+
+ return true;
+ } else {
+ Sizzle.error( "Syntax error, unrecognized expression: " + name );
+ }
+ },
+ CHILD: function(elem, match){
+ var type = match[1], node = elem;
+ switch (type) {
+ case 'only':
+ case 'first':
+ while ( (node = node.previousSibling) ) {
+ if ( node.nodeType === 1 ) {
+ return false;
+ }
+ }
+ if ( type === "first" ) {
+ return true;
+ }
+ node = elem;
+ case 'last':
+ while ( (node = node.nextSibling) ) {
+ if ( node.nodeType === 1 ) {
+ return false;
+ }
+ }
+ return true;
+ case 'nth':
+ var first = match[2], last = match[3];
+
+ if ( first === 1 && last === 0 ) {
+ return true;
+ }
+
+ var doneName = match[0],
+ parent = elem.parentNode;
+
+ if ( parent && (parent.sizcache !== doneName || !elem.nodeIndex) ) {
+ var count = 0;
+ for ( node = parent.firstChild; node; node = node.nextSibling ) {
+ if ( node.nodeType === 1 ) {
+ node.nodeIndex = ++count;
+ }
+ }
+ parent.sizcache = doneName;
+ }
+
+ var diff = elem.nodeIndex - last;
+ if ( first === 0 ) {
+ return diff === 0;
+ } else {
+ return ( diff % first === 0 && diff / first >= 0 );
+ }
+ }
+ },
+ ID: function(elem, match){
+ return elem.nodeType === 1 && elem.getAttribute("id") === match;
+ },
+ TAG: function(elem, match){
+ return (match === "*" && elem.nodeType === 1) || elem.nodeName.toLowerCase() === match;
+ },
+ CLASS: function(elem, match){
+ return (" " + (elem.className || elem.getAttribute("class")) + " ")
+ .indexOf( match ) > -1;
+ },
+ ATTR: function(elem, match){
+ var name = match[1],
+ result = Expr.attrHandle[ name ] ?
+ Expr.attrHandle[ name ]( elem ) :
+ elem[ name ] != null ?
+ elem[ name ] :
+ elem.getAttribute( name ),
+ value = result + "",
+ type = match[2],
+ check = match[4];
+
+ return result == null ?
+ type === "!=" :
+ type === "=" ?
+ value === check :
+ type === "*=" ?
+ value.indexOf(check) >= 0 :
+ type === "~=" ?
+ (" " + value + " ").indexOf(check) >= 0 :
+ !check ?
+ value && result !== false :
+ type === "!=" ?
+ value !== check :
+ type === "^=" ?
+ value.indexOf(check) === 0 :
+ type === "$=" ?
+ value.substr(value.length - check.length) === check :
+ type === "|=" ?
+ value === check || value.substr(0, check.length + 1) === check + "-" :
+ false;
+ },
+ POS: function(elem, match, i, array){
+ var name = match[2], filter = Expr.setFilters[ name ];
+
+ if ( filter ) {
+ return filter( elem, i, match, array );
+ }
+ }
+ }
+};
+
+var origPOS = Expr.match.POS;
+
+for ( var type in Expr.match ) {
+ Expr.match[ type ] = new RegExp( Expr.match[ type ].source + /(?![^\[]*\])(?![^\(]*\))/.source );
+ Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, function(all, num){
+ return "\\" + (num - 0 + 1);
+ }));
+}
+
+var makeArray = function(array, results) {
+ array = Array.prototype.slice.call( array, 0 );
+
+ if ( results ) {
+ results.push.apply( results, array );
+ return results;
+ }
+
+ return array;
+};
+
+// Perform a simple check to determine if the browser is capable of
+// converting a NodeList to an array using builtin methods.
+// Also verifies that the returned array holds DOM nodes
+// (which is not the case in the Blackberry browser)
+try {
+ Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType;
+
+// Provide a fallback method if it does not work
+} catch(e){
+ makeArray = function(array, results) {
+ var ret = results || [];
+
+ if ( toString.call(array) === "[object Array]" ) {
+ Array.prototype.push.apply( ret, array );
+ } else {
+ if ( typeof array.length === "number" ) {
+ for ( var i = 0, l = array.length; i < l; i++ ) {
+ ret.push( array[i] );
+ }
+ } else {
+ for ( var i = 0; array[i]; i++ ) {
+ ret.push( array[i] );
+ }
+ }
+ }
+
+ return ret;
+ };
+}
+
+var sortOrder;
+
+if ( document.documentElement.compareDocumentPosition ) {
+ sortOrder = function( a, b ) {
+ if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) {
+ if ( a == b ) {
+ hasDuplicate = true;
+ }
+ return a.compareDocumentPosition ? -1 : 1;
+ }
+
+ var ret = a.compareDocumentPosition(b) & 4 ? -1 : a === b ? 0 : 1;
+ if ( ret === 0 ) {
+ hasDuplicate = true;
+ }
+ return ret;
+ };
+} else if ( "sourceIndex" in document.documentElement ) {
+ sortOrder = function( a, b ) {
+ if ( !a.sourceIndex || !b.sourceIndex ) {
+ if ( a == b ) {
+ hasDuplicate = true;
+ }
+ return a.sourceIndex ? -1 : 1;
+ }
+
+ var ret = a.sourceIndex - b.sourceIndex;
+ if ( ret === 0 ) {
+ hasDuplicate = true;
+ }
+ return ret;
+ };
+} else if ( document.createRange ) {
+ sortOrder = function( a, b ) {
+ if ( !a.ownerDocument || !b.ownerDocument ) {
+ if ( a == b ) {
+ hasDuplicate = true;
+ }
+ return a.ownerDocument ? -1 : 1;
+ }
+
+ var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange();
+ aRange.setStart(a, 0);
+ aRange.setEnd(a, 0);
+ bRange.setStart(b, 0);
+ bRange.setEnd(b, 0);
+ var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange);
+ if ( ret === 0 ) {
+ hasDuplicate = true;
+ }
+ return ret;
+ };
+}
+
+// Utility function for retreiving the text value of an array of DOM nodes
+function getText( elems ) {
+ var ret = "", elem;
+
+ for ( var i = 0; elems[i]; i++ ) {
+ elem = elems[i];
+
+ // Get the text from text nodes and CDATA nodes
+ if ( elem.nodeType === 3 || elem.nodeType === 4 ) {
+ ret += elem.nodeValue;
+
+ // Traverse everything else, except comment nodes
+ } else if ( elem.nodeType !== 8 ) {
+ ret += getText( elem.childNodes );
+ }
+ }
+
+ return ret;
+}
+
+// Check to see if the browser returns elements by name when
+// querying by getElementById (and provide a workaround)
+(function(){
+ // We're going to inject a fake input element with a specified name
+ var form = document.createElement("div"),
+ id = "script" + (new Date).getTime();
+ form.innerHTML = " ";
+
+ // Inject it into the root element, check its status, and remove it quickly
+ var root = document.documentElement;
+ root.insertBefore( form, root.firstChild );
+
+ // The workaround has to do additional checks after a getElementById
+ // Which slows things down for other browsers (hence the branching)
+ if ( document.getElementById( id ) ) {
+ Expr.find.ID = function(match, context, isXML){
+ if ( typeof context.getElementById !== "undefined" && !isXML ) {
+ var m = context.getElementById(match[1]);
+ return m ? m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? [m] : undefined : [];
+ }
+ };
+
+ Expr.filter.ID = function(elem, match){
+ var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id");
+ return elem.nodeType === 1 && node && node.nodeValue === match;
+ };
+ }
+
+ root.removeChild( form );
+ root = form = null; // release memory in IE
+})();
+
+(function(){
+ // Check to see if the browser returns only elements
+ // when doing getElementsByTagName("*")
+
+ // Create a fake element
+ var div = document.createElement("div");
+ div.appendChild( document.createComment("") );
+
+ // Make sure no comments are found
+ if ( div.getElementsByTagName("*").length > 0 ) {
+ Expr.find.TAG = function(match, context){
+ var results = context.getElementsByTagName(match[1]);
+
+ // Filter out possible comments
+ if ( match[1] === "*" ) {
+ var tmp = [];
+
+ for ( var i = 0; results[i]; i++ ) {
+ if ( results[i].nodeType === 1 ) {
+ tmp.push( results[i] );
+ }
+ }
+
+ results = tmp;
+ }
+
+ return results;
+ };
+ }
+
+ // Check to see if an attribute returns normalized href attributes
+ div.innerHTML = " ";
+ if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" &&
+ div.firstChild.getAttribute("href") !== "#" ) {
+ Expr.attrHandle.href = function(elem){
+ return elem.getAttribute("href", 2);
+ };
+ }
+
+ div = null; // release memory in IE
+})();
+
+if ( document.querySelectorAll ) {
+ (function(){
+ var oldSizzle = Sizzle, div = document.createElement("div");
+ div.innerHTML = "
";
+
+ // Safari can't handle uppercase or unicode characters when
+ // in quirks mode.
+ if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) {
+ return;
+ }
+
+ Sizzle = function(query, context, extra, seed){
+ context = context || document;
+
+ // Only use querySelectorAll on non-XML documents
+ // (ID selectors don't work in non-HTML documents)
+ if ( !seed && context.nodeType === 9 && !isXML(context) ) {
+ try {
+ return makeArray( context.querySelectorAll(query), extra );
+ } catch(e){}
+ }
+
+ return oldSizzle(query, context, extra, seed);
+ };
+
+ for ( var prop in oldSizzle ) {
+ Sizzle[ prop ] = oldSizzle[ prop ];
+ }
+
+ div = null; // release memory in IE
+ })();
+}
+
+(function(){
+ var div = document.createElement("div");
+
+ div.innerHTML = "
";
+
+ // Opera can't find a second classname (in 9.6)
+ // Also, make sure that getElementsByClassName actually exists
+ if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) {
+ return;
+ }
+
+ // Safari caches class attributes, doesn't catch changes (in 3.2)
+ div.lastChild.className = "e";
+
+ if ( div.getElementsByClassName("e").length === 1 ) {
+ return;
+ }
+
+ Expr.order.splice(1, 0, "CLASS");
+ Expr.find.CLASS = function(match, context, isXML) {
+ if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) {
+ return context.getElementsByClassName(match[1]);
+ }
+ };
+
+ div = null; // release memory in IE
+})();
+
+function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
+ for ( var i = 0, l = checkSet.length; i < l; i++ ) {
+ var elem = checkSet[i];
+ if ( elem ) {
+ elem = elem[dir];
+ var match = false;
+
+ while ( elem ) {
+ if ( elem.sizcache === doneName ) {
+ match = checkSet[elem.sizset];
+ break;
+ }
+
+ if ( elem.nodeType === 1 && !isXML ){
+ elem.sizcache = doneName;
+ elem.sizset = i;
+ }
+
+ if ( elem.nodeName.toLowerCase() === cur ) {
+ match = elem;
+ break;
+ }
+
+ elem = elem[dir];
+ }
+
+ checkSet[i] = match;
+ }
+ }
+}
+
+function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
+ for ( var i = 0, l = checkSet.length; i < l; i++ ) {
+ var elem = checkSet[i];
+ if ( elem ) {
+ elem = elem[dir];
+ var match = false;
+
+ while ( elem ) {
+ if ( elem.sizcache === doneName ) {
+ match = checkSet[elem.sizset];
+ break;
+ }
+
+ if ( elem.nodeType === 1 ) {
+ if ( !isXML ) {
+ elem.sizcache = doneName;
+ elem.sizset = i;
+ }
+ if ( typeof cur !== "string" ) {
+ if ( elem === cur ) {
+ match = true;
+ break;
+ }
+
+ } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) {
+ match = elem;
+ break;
+ }
+ }
+
+ elem = elem[dir];
+ }
+
+ checkSet[i] = match;
+ }
+ }
+}
+
+var contains = document.compareDocumentPosition ? function(a, b){
+ return !!(a.compareDocumentPosition(b) & 16);
+} : function(a, b){
+ return a !== b && (a.contains ? a.contains(b) : true);
+};
+
+var isXML = function(elem){
+ // documentElement is verified for cases where it doesn't yet exist
+ // (such as loading iframes in IE - #4833)
+ var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement;
+ return documentElement ? documentElement.nodeName !== "HTML" : false;
+};
+
+var posProcess = function(selector, context){
+ var tmpSet = [], later = "", match,
+ root = context.nodeType ? [context] : context;
+
+ // Position selectors must be done after the filter
+ // And so must :not(positional) so we move all PSEUDOs to the end
+ while ( (match = Expr.match.PSEUDO.exec( selector )) ) {
+ later += match[0];
+ selector = selector.replace( Expr.match.PSEUDO, "" );
+ }
+
+ selector = Expr.relative[selector] ? selector + "*" : selector;
+
+ for ( var i = 0, l = root.length; i < l; i++ ) {
+ Sizzle( selector, root[i], tmpSet );
+ }
+
+ return Sizzle.filter( later, tmpSet );
+};
+
+// EXPOSE
+jQuery.find = Sizzle;
+jQuery.expr = Sizzle.selectors;
+jQuery.expr[":"] = jQuery.expr.filters;
+jQuery.unique = Sizzle.uniqueSort;
+jQuery.text = getText;
+jQuery.isXMLDoc = isXML;
+jQuery.contains = contains;
+
+return;
+
+window.Sizzle = Sizzle;
+
+})();
+var runtil = /Until$/,
+ rparentsprev = /^(?:parents|prevUntil|prevAll)/,
+ // Note: This RegExp should be improved, or likely pulled from Sizzle
+ rmultiselector = /,/,
+ slice = Array.prototype.slice;
+
+// Implement the identical functionality for filter and not
+var winnow = function( elements, qualifier, keep ) {
+ if ( jQuery.isFunction( qualifier ) ) {
+ return jQuery.grep(elements, function( elem, i ) {
+ return !!qualifier.call( elem, i, elem ) === keep;
+ });
+
+ } else if ( qualifier.nodeType ) {
+ return jQuery.grep(elements, function( elem, i ) {
+ return (elem === qualifier) === keep;
+ });
+
+ } else if ( typeof qualifier === "string" ) {
+ var filtered = jQuery.grep(elements, function( elem ) {
+ return elem.nodeType === 1;
+ });
+
+ if ( isSimple.test( qualifier ) ) {
+ return jQuery.filter(qualifier, filtered, !keep);
+ } else {
+ qualifier = jQuery.filter( qualifier, filtered );
+ }
+ }
+
+ return jQuery.grep(elements, function( elem, i ) {
+ return (jQuery.inArray( elem, qualifier ) >= 0) === keep;
+ });
+};
+
+jQuery.fn.extend({
+ find: function( selector ) {
+ var ret = this.pushStack( "", "find", selector ), length = 0;
+
+ for ( var i = 0, l = this.length; i < l; i++ ) {
+ length = ret.length;
+ jQuery.find( selector, this[i], ret );
+
+ if ( i > 0 ) {
+ // Make sure that the results are unique
+ for ( var n = length; n < ret.length; n++ ) {
+ for ( var r = 0; r < length; r++ ) {
+ if ( ret[r] === ret[n] ) {
+ ret.splice(n--, 1);
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ return ret;
+ },
+
+ has: function( target ) {
+ var targets = jQuery( target );
+ return this.filter(function() {
+ for ( var i = 0, l = targets.length; i < l; i++ ) {
+ if ( jQuery.contains( this, targets[i] ) ) {
+ return true;
+ }
+ }
+ });
+ },
+
+ not: function( selector ) {
+ return this.pushStack( winnow(this, selector, false), "not", selector);
+ },
+
+ filter: function( selector ) {
+ return this.pushStack( winnow(this, selector, true), "filter", selector );
+ },
+
+ is: function( selector ) {
+ return !!selector && jQuery.filter( selector, this ).length > 0;
+ },
+
+ closest: function( selectors, context ) {
+ if ( jQuery.isArray( selectors ) ) {
+ var ret = [], cur = this[0], match, matches = {}, selector;
+
+ if ( cur && selectors.length ) {
+ for ( var i = 0, l = selectors.length; i < l; i++ ) {
+ selector = selectors[i];
+
+ if ( !matches[selector] ) {
+ matches[selector] = jQuery.expr.match.POS.test( selector ) ?
+ jQuery( selector, context || this.context ) :
+ selector;
+ }
+ }
+
+ while ( cur && cur.ownerDocument && cur !== context ) {
+ for ( selector in matches ) {
+ match = matches[selector];
+
+ if ( match.jquery ? match.index(cur) > -1 : jQuery(cur).is(match) ) {
+ ret.push({ selector: selector, elem: cur });
+ delete matches[selector];
+ }
+ }
+ cur = cur.parentNode;
+ }
+ }
+
+ return ret;
+ }
+
+ var pos = jQuery.expr.match.POS.test( selectors ) ?
+ jQuery( selectors, context || this.context ) : null;
+
+ return this.map(function( i, cur ) {
+ while ( cur && cur.ownerDocument && cur !== context ) {
+ if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selectors) ) {
+ return cur;
+ }
+ cur = cur.parentNode;
+ }
+ return null;
+ });
+ },
+
+ // Determine the position of an element within
+ // the matched set of elements
+ index: function( elem ) {
+ if ( !elem || typeof elem === "string" ) {
+ return jQuery.inArray( this[0],
+ // If it receives a string, the selector is used
+ // If it receives nothing, the siblings are used
+ elem ? jQuery( elem ) : this.parent().children() );
+ }
+ // Locate the position of the desired element
+ return jQuery.inArray(
+ // If it receives a jQuery object, the first element is used
+ elem.jquery ? elem[0] : elem, this );
+ },
+
+ add: function( selector, context ) {
+ var set = typeof selector === "string" ?
+ jQuery( selector, context || this.context ) :
+ jQuery.makeArray( selector ),
+ all = jQuery.merge( this.get(), set );
+
+ return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ?
+ all :
+ jQuery.unique( all ) );
+ },
+
+ andSelf: function() {
+ return this.add( this.prevObject );
+ }
+});
+
+// A painfully simple check to see if an element is disconnected
+// from a document (should be improved, where feasible).
+function isDisconnected( node ) {
+ return !node || !node.parentNode || node.parentNode.nodeType === 11;
+}
+
+jQuery.each({
+ parent: function( elem ) {
+ var parent = elem.parentNode;
+ return parent && parent.nodeType !== 11 ? parent : null;
+ },
+ parents: function( elem ) {
+ return jQuery.dir( elem, "parentNode" );
+ },
+ parentsUntil: function( elem, i, until ) {
+ return jQuery.dir( elem, "parentNode", until );
+ },
+ next: function( elem ) {
+ return jQuery.nth( elem, 2, "nextSibling" );
+ },
+ prev: function( elem ) {
+ return jQuery.nth( elem, 2, "previousSibling" );
+ },
+ nextAll: function( elem ) {
+ return jQuery.dir( elem, "nextSibling" );
+ },
+ prevAll: function( elem ) {
+ return jQuery.dir( elem, "previousSibling" );
+ },
+ nextUntil: function( elem, i, until ) {
+ return jQuery.dir( elem, "nextSibling", until );
+ },
+ prevUntil: function( elem, i, until ) {
+ return jQuery.dir( elem, "previousSibling", until );
+ },
+ siblings: function( elem ) {
+ return jQuery.sibling( elem.parentNode.firstChild, elem );
+ },
+ children: function( elem ) {
+ return jQuery.sibling( elem.firstChild );
+ },
+ contents: function( elem ) {
+ return jQuery.nodeName( elem, "iframe" ) ?
+ elem.contentDocument || elem.contentWindow.document :
+ jQuery.makeArray( elem.childNodes );
+ }
+}, function( name, fn ) {
+ jQuery.fn[ name ] = function( until, selector ) {
+ var ret = jQuery.map( this, fn, until );
+
+ if ( !runtil.test( name ) ) {
+ selector = until;
+ }
+
+ if ( selector && typeof selector === "string" ) {
+ ret = jQuery.filter( selector, ret );
+ }
+
+ ret = this.length > 1 ? jQuery.unique( ret ) : ret;
+
+ if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) {
+ ret = ret.reverse();
+ }
+
+ return this.pushStack( ret, name, slice.call(arguments).join(",") );
+ };
+});
+
+jQuery.extend({
+ filter: function( expr, elems, not ) {
+ if ( not ) {
+ expr = ":not(" + expr + ")";
+ }
+
+ return jQuery.find.matches(expr, elems);
+ },
+
+ dir: function( elem, dir, until ) {
+ var matched = [], cur = elem[dir];
+ while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {
+ if ( cur.nodeType === 1 ) {
+ matched.push( cur );
+ }
+ cur = cur[dir];
+ }
+ return matched;
+ },
+
+ nth: function( cur, result, dir, elem ) {
+ result = result || 1;
+ var num = 0;
+
+ for ( ; cur; cur = cur[dir] ) {
+ if ( cur.nodeType === 1 && ++num === result ) {
+ break;
+ }
+ }
+
+ return cur;
+ },
+
+ sibling: function( n, elem ) {
+ var r = [];
+
+ for ( ; n; n = n.nextSibling ) {
+ if ( n.nodeType === 1 && n !== elem ) {
+ r.push( n );
+ }
+ }
+
+ return r;
+ }
+});
+var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g,
+ rleadingWhitespace = /^\s+/,
+ rxhtmlTag = /(<([\w:]+)[^>]*?)\/>/g,
+ rselfClosing = /^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,
+ rtagName = /<([\w:]+)/,
+ rtbody = /" + tag + ">";
+ },
+ wrapMap = {
+ option: [ 1, "", " " ],
+ legend: [ 1, "", " " ],
+ thead: [ 1, "" ],
+ tr: [ 2, "" ],
+ td: [ 3, "" ],
+ col: [ 2, "" ],
+ area: [ 1, "", " " ],
+ _default: [ 0, "", "" ]
+ };
+
+wrapMap.optgroup = wrapMap.option;
+wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
+wrapMap.th = wrapMap.td;
+
+// IE can't serialize and
+
+
+
+
+
+