From 3cdc8028f589e7215c4a04874021223e112b511e Mon Sep 17 00:00:00 2001 From: Robert Styles Date: Sat, 5 Jun 2010 16:48:36 -0400 Subject: [PATCH] initial commit --- README | 0 __init__.py | 0 backends.py | 22 + countries/.svn/all-wcprops | 17 + countries/.svn/entries | 105 + countries/.svn/format | 1 + countries/.svn/text-base/__init__.py.svn-base | 0 countries/.svn/text-base/models.py.svn-base | 65 + countries/__init__.py | 0 countries/__init__.pyc | Bin 0 -> 148 bytes countries/admin.py | 7 + countries/admin.pyc | Bin 0 -> 554 bytes countries/fixtures/.svn/all-wcprops | 17 + countries/fixtures/.svn/entries | 96 + countries/fixtures/.svn/format | 1 + .../.svn/text-base/UPDATED.txt.svn-base | 21 + .../.svn/text-base/initial_data.xml.svn-base | 1728 ++++ countries/fixtures/UPDATED.txt | 21 + countries/fixtures/initial_data.xml | 1728 ++++ countries/models.py | 65 + countries/models.pyc | Bin 0 -> 3498 bytes countries/templatetags/.svn/all-wcprops | 17 + countries/templatetags/.svn/entries | 96 + countries/templatetags/.svn/format | 1 + .../.svn/text-base/__init__.py.svn-base | 0 .../.svn/text-base/countries_tags.py.svn-base | 24 + countries/templatetags/__init__.py | 0 countries/templatetags/__init__.pyc | Bin 0 -> 161 bytes countries/templatetags/countries_tags.py | 24 + countries/utils/.svn/all-wcprops | 17 + countries/utils/.svn/entries | 96 + countries/utils/.svn/format | 1 + .../utils/.svn/text-base/__init__.py.svn-base | 0 .../utils/.svn/text-base/isoflag.py.svn-base | 35 + countries/utils/__init__.py | 0 countries/utils/isoflag.py | 35 + debug_toolbar/__init__.py | 2 + debug_toolbar/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 1862 bytes debug_toolbar/locale/de/LC_MESSAGES/django.po | 375 + debug_toolbar/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 367 bytes debug_toolbar/locale/en/LC_MESSAGES/django.po | 362 + debug_toolbar/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 1690 bytes debug_toolbar/locale/es/LC_MESSAGES/django.po | 378 + debug_toolbar/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 4195 bytes debug_toolbar/locale/fr/LC_MESSAGES/django.po | 376 + debug_toolbar/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 1647 bytes debug_toolbar/locale/he/LC_MESSAGES/django.po | 372 + debug_toolbar/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 2514 bytes debug_toolbar/locale/ru/LC_MESSAGES/django.po | 379 + debug_toolbar/management/__init__.py | 0 debug_toolbar/management/commands/__init__.py | 0 .../management/commands/debugsqlshell.py | 76 + debug_toolbar/media/debug_toolbar/Makefile | 9 + debug_toolbar/media/debug_toolbar/back.png | Bin 0 -> 1039 bytes .../media/debug_toolbar/back_hover.png | Bin 0 -> 1030 bytes debug_toolbar/media/debug_toolbar/close.png | Bin 0 -> 1045 bytes .../media/debug_toolbar/close_hover.png | Bin 0 -> 1155 bytes .../media/debug_toolbar/djdt_vertical.png | Bin 0 -> 1349 bytes .../media/debug_toolbar/indicator.png | Bin 0 -> 607 bytes .../media/debug_toolbar/jquery.cookie.js | 96 + debug_toolbar/media/debug_toolbar/jquery.js | 32 + .../media/debug_toolbar/panel_bg.png | Bin 0 -> 110 bytes debug_toolbar/media/debug_toolbar/toolbar.css | 391 + debug_toolbar/media/debug_toolbar/toolbar.js | 141 + .../media/debug_toolbar/toolbar.min.css | 1 + .../media/debug_toolbar/toolbar.min.js | 1 + debug_toolbar/middleware.py | 93 + debug_toolbar/models.py | 0 debug_toolbar/panels/__init__.py | 48 + debug_toolbar/panels/cache.py | 105 + debug_toolbar/panels/headers.py | 54 + debug_toolbar/panels/logger.py | 83 + debug_toolbar/panels/request_vars.py | 44 + debug_toolbar/panels/settings_vars.py | 29 + debug_toolbar/panels/signals.py | 87 + debug_toolbar/panels/sql.py | 208 + debug_toolbar/panels/template.py | 115 + debug_toolbar/panels/timer.py | 93 + debug_toolbar/panels/version.py | 59 + .../templates/debug_toolbar/base.html | 74 + .../templates/debug_toolbar/panels/cache.html | 56 + .../debug_toolbar/panels/headers.html | 17 + .../debug_toolbar/panels/logger.html | 26 + .../debug_toolbar/panels/request_vars.html | 121 + .../debug_toolbar/panels/settings_vars.html | 17 + .../debug_toolbar/panels/signals.html | 19 + .../templates/debug_toolbar/panels/sql.html | 69 + .../debug_toolbar/panels/sql_explain.html | 33 + .../debug_toolbar/panels/sql_profile.html | 40 + .../debug_toolbar/panels/sql_select.html | 37 + .../debug_toolbar/panels/template_source.html | 14 + .../debug_toolbar/panels/templates.html | 44 + .../templates/debug_toolbar/panels/timer.html | 21 + .../debug_toolbar/panels/versions.html | 18 + .../templates/debug_toolbar/redirect.html | 12 + debug_toolbar/toolbar/__init__.py | 0 debug_toolbar/toolbar/loader.py | 75 + debug_toolbar/urls.py | 18 + debug_toolbar/utils/__init__.py | 0 debug_toolbar/utils/sqlparse/__init__.py | 59 + .../utils/sqlparse/engine/__init__.py | 80 + debug_toolbar/utils/sqlparse/engine/filter.py | 99 + .../utils/sqlparse/engine/grouping.py | 250 + debug_toolbar/utils/sqlparse/filters.py | 440 + debug_toolbar/utils/sqlparse/formatter.py | 122 + debug_toolbar/utils/sqlparse/keywords.py | 590 ++ debug_toolbar/utils/sqlparse/lexer.py | 315 + debug_toolbar/utils/sqlparse/sql.py | 457 + debug_toolbar/utils/sqlparse/tokens.py | 131 + debug_toolbar/views.py | 188 + engine/__init__.py | 0 engine/admin.py | 48 + engine/forms.py | 135 + engine/models.py | 304 + engine/templatetags/extra_tags.py | 4 + engine/tests.py | 23 + engine/views.py | 366 + facebook/__init__.py | 1431 +++ facebook/__init__.pyc | Bin 0 -> 36370 bytes facebook/djangofb/__init__.py | 248 + facebook/djangofb/__init__.pyc | Bin 0 -> 9881 bytes facebook/djangofb/context_processors.py | 6 + facebook/djangofb/default_app/__init__.py | 0 facebook/djangofb/default_app/models.py | 31 + .../default_app/templates/canvas.fbml | 22 + facebook/djangofb/default_app/urls.py | 7 + facebook/djangofb/default_app/views.py | 37 + facebook/djangofb/models.py | 36 + facebook/webappfb.py | 170 + facebook/wsgi.py | 129 + get_map.py | 20 + libs/__init__.py | 0 libs/__init__.pyc | Bin 0 -> 143 bytes libs/formutils.py | 204 + libs/formutils.pyc | Bin 0 -> 8549 bytes manage.py | 11 + media/css/all.css | 957 ++ media/css/lt8.css | 64 + media/css/massivecoupon.css | 74 + media/css/yui2.8-reset-fonts-grids.css | 7 + media/css/yui3-base-reset-fonts-grids.css | 29 + media/deal_images/blah.jpg | Bin 0 -> 36442 bytes media/deal_images/breville_banner0909.gif | Bin 0 -> 23184 bytes media/deal_images/hammam.jpg | Bin 0 -> 45203 bytes media/deal_images/hammam_.jpg | Bin 0 -> 45203 bytes media/deal_images/hammam__.jpg | Bin 0 -> 45203 bytes media/deals/photos/1n84DNkitkat2_small.JPG | Bin 0 -> 10110 bytes media/deals/photos/1n9bT1kitkat2_small.JPG | Bin 0 -> 10110 bytes media/deals/photos/1n9bTakitkat2_small.JPG | Bin 0 -> 10110 bytes media/deals/photos/1n9bTdkitkat2_small.JPG | Bin 0 -> 10110 bytes media/deals/photos/1ne8LOjobdeals_logo.jpg | Bin 0 -> 17769 bytes .../photos/1ne8Lxashlierobweddingbands.jpg | Bin 0 -> 28192 bytes .../photos/1ne9UDashlierobweddingbands.jpg | Bin 0 -> 28192 bytes .../photos/1ne9Z1ashlierobweddingbands.jpg | Bin 0 -> 28192 bytes .../photos/1nea28ashlierobweddingbands.jpg | Bin 0 -> 28192 bytes .../photos/1nefuLashlierobweddingbands.jpg | Bin 0 -> 28192 bytes ...1n7E88halloween2009001_admin_thumbnail.JPG | Bin 0 -> 3619 bytes .../1n7E88halloween2009001_thumbnail.JPG | Bin 0 -> 3619 bytes .../1n7Ee8kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7Ee8kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7EeFkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7EeFkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7EePkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7EePkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7Ef8kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7Ef8kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7EfGkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7EfGkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7EgIkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7EgIkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7GKXkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7GKXkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7GLvkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7GLvkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7GLzkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7GLzkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7GO9kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7GO9kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7GRukitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7GRukitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7GS4kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7GS4kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7GSbkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7GSbkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7GSekitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7GSekitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7GgHziggy_admin_thumbnail.jpg | Bin 0 -> 3193 bytes .../photos/cache/1n7GgHziggy_thumbnail.jpg | Bin 0 -> 3193 bytes .../cache/1n7Gglziggy_admin_thumbnail.jpg | Bin 0 -> 3193 bytes .../photos/cache/1n7Gglziggy_thumbnail.jpg | Bin 0 -> 3193 bytes .../cache/1n7Ghgziggy_admin_thumbnail.jpg | Bin 0 -> 3193 bytes .../photos/cache/1n7Ghgziggy_thumbnail.jpg | Bin 0 -> 3193 bytes .../1n7Hu3kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7Hu3kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7Hu7kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7Hu7kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7Hutkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7Hutkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7Hv4kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7Hv4kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7Hv7kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7Hv7kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7J3EPhoto_091308_001_thumbnail.jpg | Bin 0 -> 4660 bytes .../cache/1n7J3nkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7J3skitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n7J3xkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n7J6Ghalloween2009025_thumbnail.JPG | Bin 0 -> 5172 bytes .../cache/1n7J6cP1010093_admin_thumbnail.jpg | Bin 0 -> 5652 bytes .../photos/cache/1n7J6cP1010093_thumbnail.jpg | Bin 0 -> 5652 bytes ..._2007_1600x1200_wallpaper_01_thumbnail.jpg | Bin 0 -> 2889 bytes .../1n7JgQPhoto_091308_001_thumbnail.jpg | Bin 0 -> 4660 bytes .../cache/1n7JnGkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n836Kkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n836Kkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n838Bkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n838Bkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n838Dkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n838Dkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n838vkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n838vkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n838xkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n838xkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n838ykitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n838ykitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n8396kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n8396kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n839Bkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n839Bkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83aKkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83aKkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83aekitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83aekitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83aikitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83aikitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83amkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83amkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83aqkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83aqkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83azkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83azkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83fBkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83fBkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83fNkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83fNkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83fRkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83fRkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83fUkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83fUkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83fXkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83fXkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83g1kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83g1kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83iEkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83iEkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83iGkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83iGkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83iJkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83iJkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83iLkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83iLkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83iNkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83iNkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n83iQkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n83iQkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n84DNkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n84DNkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n9Plbkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n9Plbkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n9Pldkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n9Pldkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n9Qnxkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n9Qnxkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n9QoDkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n9QoDkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes ...1n9QoLhalloween2009010_admin_thumbnail.JPG | Bin 0 -> 3682 bytes .../1n9QoLhalloween2009010_thumbnail.JPG | Bin 0 -> 3682 bytes .../1n9bT1kitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n9bT1kitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n9bTakitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n9bTakitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1n9bTdkitkat2_small_admin_thumbnail.JPG | Bin 0 -> 3211 bytes .../cache/1n9bTdkitkat2_small_thumbnail.JPG | Bin 0 -> 3211 bytes .../1ne8LOjobdeals_logo_admin_thumbnail.jpg | Bin 0 -> 2080 bytes .../cache/1ne8LOjobdeals_logo_thumbnail.jpg | Bin 0 -> 2080 bytes ...xashlierobweddingbands_admin_thumbnail.jpg | Bin 0 -> 3295 bytes .../1ne8Lxashlierobweddingbands_thumbnail.jpg | Bin 0 -> 3295 bytes ...Dashlierobweddingbands_admin_thumbnail.jpg | Bin 0 -> 3295 bytes .../1ne9UDashlierobweddingbands_thumbnail.jpg | Bin 0 -> 3295 bytes ...1ashlierobweddingbands_admin_thumbnail.jpg | Bin 0 -> 3295 bytes .../1ne9Z1ashlierobweddingbands_thumbnail.jpg | Bin 0 -> 3295 bytes ...8ashlierobweddingbands_admin_thumbnail.jpg | Bin 0 -> 3295 bytes ...Lashlierobweddingbands_admin_thumbnail.jpg | Bin 0 -> 3295 bytes .../1nefuLashlierobweddingbands_thumbnail.jpg | Bin 0 -> 3295 bytes media/images/arrow-add-nav.gif | Bin 0 -> 166 bytes media/images/bg-add-nav-c.gif | Bin 0 -> 258 bytes media/images/bg-add-nav-l.gif | Bin 0 -> 363 bytes media/images/bg-add-nav-r.gif | Bin 0 -> 363 bytes media/images/bg-blockquote.gif | Bin 0 -> 565 bytes media/images/bg-buy-b.gif | Bin 0 -> 112 bytes media/images/bg-buy-block.gif | Bin 0 -> 1050 bytes media/images/bg-buy-t.gif | Bin 0 -> 111 bytes media/images/bg-content-box-b.png | Bin 0 -> 3215 bytes media/images/bg-content-box-t.png | Bin 0 -> 3191 bytes media/images/bg-content-box2-b.png | Bin 0 -> 456 bytes media/images/bg-content-box2-c.gif | Bin 0 -> 54 bytes media/images/bg-content-box2-t.png | Bin 0 -> 478 bytes media/images/bg-discuss-b.png | Bin 0 -> 3101 bytes media/images/bg-discuss-t.png | Bin 0 -> 3116 bytes media/images/bg-discuss-txt.png | Bin 0 -> 1181 bytes media/images/bg-give-box-b.gif | Bin 0 -> 136 bytes media/images/bg-give-box-t.gif | Bin 0 -> 136 bytes media/images/bg-header-main-b.png | Bin 0 -> 1482 bytes media/images/bg-header-main-t.gif | Bin 0 -> 232 bytes media/images/bg-main.jpg | Bin 0 -> 27977 bytes media/images/bg-main.jpg.old | Bin 0 -> 24744 bytes media/images/bg-navbar-c.gif | Bin 0 -> 263 bytes media/images/bg-navbar-l.png | Bin 0 -> 305 bytes media/images/bg-navbar-r.png | Bin 0 -> 311 bytes media/images/bg-price-b.gif | Bin 0 -> 1086 bytes media/images/bg-price-t.gif | Bin 0 -> 334 bytes media/images/bg-sb-box-b.png | Bin 0 -> 3090 bytes media/images/bg-sb-box-t.png | Bin 0 -> 3141 bytes media/images/bg-world-txt-b.gif | Bin 0 -> 127 bytes media/images/bg-world-txt-t.gif | Bin 0 -> 126 bytes media/images/blue-pixel.png | Bin 0 -> 150 bytes media/images/btn-buy-for-friend-b.gif | Bin 0 -> 264 bytes media/images/btn-buy-for-friend-c.gif | Bin 0 -> 55 bytes media/images/btn-buy-for-friend-t.gif | Bin 0 -> 1878 bytes media/images/btn-buy-gift-card.gif | Bin 0 -> 2612 bytes media/images/btn-connect-facebook.gif | Bin 0 -> 4232 bytes media/images/btn_xpressCheckout.gif | Bin 0 -> 3091 bytes media/images/bullet-fine-box-list.gif | Bin 0 -> 152 bytes media/images/divider-add-nav.gif | Bin 0 -> 43 bytes media/images/divider-buy-details.gif | Bin 0 -> 54 bytes media/images/divider-fine-box.gif | Bin 0 -> 43 bytes media/images/divider-main-nav.gif | Bin 0 -> 156 bytes media/images/favicon.ico | Bin 0 -> 1003 bytes media/images/ico-business.gif | Bin 0 -> 2340 bytes media/images/ico-clock.gif | Bin 0 -> 2196 bytes media/images/ico-coupon.png | Bin 0 -> 6944 bytes media/images/ico-deal-on.gif | Bin 0 -> 1865 bytes media/images/ico-email.gif | Bin 0 -> 3255 bytes media/images/ico-facebook.gif | Bin 0 -> 2897 bytes media/images/ico-twitter.gif | Bin 0 -> 2982 bytes media/images/img1.jpg | Bin 0 -> 46841 bytes media/images/img2.png | Bin 0 -> 7135 bytes media/images/img3.png | Bin 0 -> 2064 bytes media/images/lock-icon.png | Bin 0 -> 3470 bytes media/images/logo.gif | Bin 0 -> 11554 bytes media/images/logo2.gif | Bin 0 -> 1652 bytes media/images/logo3.gif | Bin 0 -> 8313 bytes media/images/logo4.gif | Bin 0 -> 2426 bytes media/images/map.png | Bin 0 -> 65653 bytes media/images/none.gif | Bin 0 -> 821 bytes media/images/progressbar.gif | Bin 0 -> 120 bytes media/images/progressbg_black.gif | Bin 0 -> 1626 bytes media/images/progressbg_green.gif | Bin 0 -> 1308 bytes media/images/progressbg_orange.gif | Bin 0 -> 1308 bytes media/images/progressbg_red.gif | Bin 0 -> 1308 bytes media/images/progressbg_yellow.gif | Bin 0 -> 1308 bytes media/images/securepaypal.jpg | Bin 0 -> 2413 bytes media/images/signin-button.gif | Bin 0 -> 577 bytes media/images/text-daily-deals.gif | Bin 0 -> 936 bytes media/images/text-slogan.gif | Bin 0 -> 1030 bytes media/images/text-the-world.gif | Bin 0 -> 1774 bytes media/index.html | 232 + media/js/FeatureLoader.js | 24 + media/js/cd-led.png | Bin 0 -> 339 bytes media/js/countdownBasics.html | 33 + .../ui-bg_diagonals-thick_18_b81900_40x40.png | Bin 0 -> 260 bytes .../ui-bg_diagonals-thick_20_666666_40x40.png | Bin 0 -> 251 bytes .../images/ui-bg_flat_10_000000_40x100.png | Bin 0 -> 178 bytes .../images/ui-bg_glass_100_f6f6f6_1x400.png | Bin 0 -> 104 bytes .../images/ui-bg_glass_100_fdf5ce_1x400.png | Bin 0 -> 125 bytes .../images/ui-bg_glass_65_ffffff_1x400.png | Bin 0 -> 105 bytes .../ui-bg_gloss-wave_35_f6a828_500x100.png | Bin 0 -> 3762 bytes .../ui-bg_highlight-soft_100_eeeeee_1x100.png | Bin 0 -> 90 bytes .../ui-bg_highlight-soft_75_ffe45c_1x100.png | Bin 0 -> 129 bytes .../images/ui-icons_222222_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_228ef1_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_ef8c08_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_ffd27a_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_ffffff_256x240.png | Bin 0 -> 4369 bytes .../ui-lightness/jquery-ui-1.7.2.custom.css | 406 + media/js/development-bundle/AUTHORS.txt | 30 + media/js/development-bundle/GPL-LICENSE.txt | 278 + media/js/development-bundle/MIT-LICENSE.txt | 25 + .../demos/accordion/collapsible.html | 58 + .../demos/accordion/custom-icons.html | 60 + .../demos/accordion/default.html | 83 + .../demos/accordion/fillspace.html | 76 + .../demos/accordion/index.html | 20 + .../demos/accordion/mouseover.html | 57 + .../demos/accordion/no-auto-height.html | 57 + .../demos/addClass/default.html | 51 + .../demos/addClass/index.html | 17 + .../demos/animate/default.html | 52 + .../demos/animate/index.html | 17 + .../demos/datepicker/alt-field.html | 31 + .../demos/datepicker/buttonbar.html | 33 + .../demos/datepicker/date-formats.html | 43 + .../demos/datepicker/default.html | 31 + .../demos/datepicker/dropdown-month-year.html | 34 + .../demos/datepicker/icon-trigger.html | 31 + .../demos/datepicker/images/calendar.gif | Bin 0 -> 269 bytes .../demos/datepicker/index.html | 26 + .../demos/datepicker/inline.html | 31 + .../demos/datepicker/localization.html | 120 + .../demos/datepicker/min-max.html | 31 + .../demos/datepicker/multiple-calendars.html | 34 + media/js/development-bundle/demos/demos.css | 334 + .../demos/dialog/default.html | 51 + .../demos/dialog/index.html | 21 + .../demos/dialog/modal-confirmation.html | 67 + .../demos/dialog/modal-form.html | 178 + .../demos/dialog/modal-message.html | 64 + .../demos/dialog/modal.html | 55 + .../demos/draggable/constrain-movement.html | 67 + .../demos/draggable/cursor-style.html | 46 + .../demos/draggable/default.html | 38 + .../demos/draggable/delay-start.html | 42 + .../demos/draggable/events.html | 74 + .../demos/draggable/handle.html | 45 + .../demos/draggable/index.html | 27 + .../demos/draggable/revert.html | 41 + .../demos/draggable/scroll.html | 48 + .../demos/draggable/snap-to.html | 67 + .../demos/draggable/sortable.html | 54 + .../demos/draggable/visual-feedback.html | 73 + .../demos/droppable/accepted-elements.html | 55 + .../demos/droppable/default.html | 46 + .../demos/droppable/images/high_tatras.jpg | Bin 0 -> 23627 bytes .../demos/droppable/images/high_tatras2.jpg | Bin 0 -> 26332 bytes .../droppable/images/high_tatras2_min.jpg | Bin 0 -> 2164 bytes .../demos/droppable/images/high_tatras3.jpg | Bin 0 -> 25219 bytes .../droppable/images/high_tatras3_min.jpg | Bin 0 -> 1901 bytes .../demos/droppable/images/high_tatras4.jpg | Bin 0 -> 25656 bytes .../droppable/images/high_tatras4_min.jpg | Bin 0 -> 2541 bytes .../droppable/images/high_tatras_min.jpg | Bin 0 -> 2147 bytes .../demos/droppable/index.html | 22 + .../demos/droppable/photo-manager.html | 164 + .../demos/droppable/propagation.html | 71 + .../demos/droppable/revert.html | 55 + .../demos/droppable/visual-feedback.html | 70 + .../demos/effect/default.html | 104 + .../demos/effect/index.html | 17 + .../demos/hide/default.html | 105 + .../development-bundle/demos/hide/index.html | 17 + .../demos/images/calendar.gif | Bin 0 -> 269 bytes .../demos/images/demo-config-on-tile.gif | Bin 0 -> 180 bytes .../demos/images/demo-config-on.gif | Bin 0 -> 343 bytes .../demos/images/demo-spindown-closed.gif | Bin 0 -> 104 bytes .../demos/images/demo-spindown-open.gif | Bin 0 -> 105 bytes .../demos/images/icon-docs-info.gif | Bin 0 -> 214 bytes .../demos/images/pbar-ani.gif | Bin 0 -> 304064 bytes media/js/development-bundle/demos/index.html | 292 + .../demos/progressbar/animated.html | 42 + .../demos/progressbar/default.html | 37 + .../demos/progressbar/images/pbar-ani.gif | Bin 0 -> 304064 bytes .../demos/progressbar/index.html | 19 + .../demos/progressbar/resize.html | 37 + .../demos/removeClass/default.html | 51 + .../demos/removeClass/index.html | 17 + .../demos/resizable/animate.html | 38 + .../demos/resizable/aspect-ratio.html | 37 + .../demos/resizable/constrain-area.html | 42 + .../demos/resizable/default.html | 35 + .../demos/resizable/delay-start.html | 49 + .../demos/resizable/index.html | 25 + .../demos/resizable/max-min.html | 40 + .../demos/resizable/snap-to-grid.html | 37 + .../demos/resizable/synchronous-resize.html | 44 + .../demos/resizable/visual-feedback.html | 38 + .../demos/selectable/default.html | 45 + .../demos/selectable/display-grid.html | 50 + .../demos/selectable/index.html | 19 + .../demos/selectable/serialize.html | 56 + .../demos/show/default.html | 106 + .../development-bundle/demos/show/index.html | 17 + .../demos/slider/colorpicker.html | 92 + .../demos/slider/default.html | 34 + .../demos/slider/index.html | 25 + .../demos/slider/multiple-vertical.html | 76 + .../demos/slider/range-vertical.html | 47 + .../demos/slider/range.html | 48 + .../demos/slider/rangemax.html | 47 + .../demos/slider/rangemin.html | 48 + .../demos/slider/slider-vertical.html | 49 + .../demos/slider/steps.html | 48 + .../sortable/connect-lists-through-tabs.html | 76 + .../demos/sortable/connect-lists.html | 55 + .../demos/sortable/default.html | 48 + .../demos/sortable/delay-start.html | 64 + .../demos/sortable/display-grid.html | 51 + .../demos/sortable/empty-lists.html | 66 + .../demos/sortable/index.html | 25 + .../demos/sortable/items.html | 68 + .../demos/sortable/placeholder.html | 53 + .../demos/sortable/portlets.html | 93 + .../demos/switchClass/default.html | 47 + .../demos/switchClass/index.html | 17 + .../development-bundle/demos/tabs/ajax.html | 40 + .../demos/tabs/ajax/content1.html | 4 + .../demos/tabs/ajax/content2.html | 4 + .../demos/tabs/collapsible.html | 54 + .../demos/tabs/default.html | 47 + .../development-bundle/demos/tabs/index.html | 21 + .../demos/tabs/mouseover.html | 52 + .../demos/tabs/sortable.html | 62 + .../demos/tabs/vertical.html | 62 + .../demos/toggle/default.html | 94 + .../demos/toggle/index.html | 17 + .../demos/toggleClass/default.html | 45 + .../demos/toggleClass/index.html | 17 + .../js/development-bundle/docs/accordion.html | 869 ++ .../js/development-bundle/docs/addClass.html | 108 + media/js/development-bundle/docs/animate.html | 78 + .../development-bundle/docs/datepicker.html | 2150 ++++ media/js/development-bundle/docs/dialog.html | 1520 +++ .../js/development-bundle/docs/draggable.html | 1448 +++ .../js/development-bundle/docs/droppable.html | 704 ++ media/js/development-bundle/docs/effect.html | 142 + media/js/development-bundle/docs/hide.html | 143 + .../development-bundle/docs/progressbar.html | 295 + .../development-bundle/docs/removeClass.html | 112 + .../js/development-bundle/docs/resizable.html | 1075 ++ .../development-bundle/docs/selectable.html | 707 ++ media/js/development-bundle/docs/show.html | 143 + media/js/development-bundle/docs/slider.html | 733 ++ .../js/development-bundle/docs/sortable.html | 1818 ++++ .../development-bundle/docs/switchClass.html | 128 + media/js/development-bundle/docs/tabs.html | 1426 +++ media/js/development-bundle/docs/toggle.html | 143 + .../development-bundle/docs/toggleClass.html | 110 + .../external/bgiframe/ChangeLog.txt | 20 + .../external/bgiframe/META.json | 32 + .../external/bgiframe/docs/index.html | 113 + .../external/bgiframe/jquery.bgiframe.js | 100 + .../external/bgiframe/jquery.bgiframe.min.js | 10 + .../external/bgiframe/jquery.bgiframe.pack.js | 10 + .../external/bgiframe/test/index.html | 197 + .../external/cookie/jquery.cookie.js | 97 + .../external/cookie/jquery.cookie.min.js | 10 + .../external/cookie/jquery.cookie.pack.js | 10 + .../external/cookie/jquery.cookie.zip | Bin 0 -> 3471 bytes .../external/jsdiff/jsdiff.js | 159 + .../external/qunit/testrunner.js | 780 ++ .../external/qunit/testsuite.css | 120 + .../external/simulate/jquery.simulate.js | 152 + media/js/development-bundle/jquery-1.3.2.js | 4376 ++++++++ .../images/ui-bg_flat_0_aaaaaa_40x100.png | Bin 0 -> 180 bytes .../images/ui-bg_flat_75_ffffff_40x100.png | Bin 0 -> 178 bytes .../images/ui-bg_glass_55_fbf9ee_1x400.png | Bin 0 -> 120 bytes .../images/ui-bg_glass_65_ffffff_1x400.png | Bin 0 -> 105 bytes .../images/ui-bg_glass_75_dadada_1x400.png | Bin 0 -> 111 bytes .../images/ui-bg_glass_75_e6e6e6_1x400.png | Bin 0 -> 110 bytes .../images/ui-bg_glass_95_fef1ec_1x400.png | Bin 0 -> 119 bytes .../ui-bg_highlight-soft_75_cccccc_1x100.png | Bin 0 -> 101 bytes .../base/images/ui-icons_222222_256x240.png | Bin 0 -> 4369 bytes .../base/images/ui-icons_2e83ff_256x240.png | Bin 0 -> 4369 bytes .../base/images/ui-icons_454545_256x240.png | Bin 0 -> 4369 bytes .../base/images/ui-icons_888888_256x240.png | Bin 0 -> 4369 bytes .../base/images/ui-icons_cd0a0a_256x240.png | Bin 0 -> 4369 bytes .../themes/base/ui.accordion.css | 9 + .../development-bundle/themes/base/ui.all.css | 2 + .../themes/base/ui.base.css | 8 + .../themes/base/ui.core.css | 37 + .../themes/base/ui.datepicker.css | 62 + .../themes/base/ui.dialog.css | 13 + .../themes/base/ui.progressbar.css | 4 + .../themes/base/ui.resizable.css | 13 + .../themes/base/ui.slider.css | 17 + .../themes/base/ui.tabs.css | 11 + .../themes/base/ui.theme.css | 245 + .../ui-bg_diagonals-thick_18_b81900_40x40.png | Bin 0 -> 260 bytes .../ui-bg_diagonals-thick_20_666666_40x40.png | Bin 0 -> 251 bytes .../images/ui-bg_flat_10_000000_40x100.png | Bin 0 -> 178 bytes .../images/ui-bg_glass_100_f6f6f6_1x400.png | Bin 0 -> 104 bytes .../images/ui-bg_glass_100_fdf5ce_1x400.png | Bin 0 -> 125 bytes .../images/ui-bg_glass_65_ffffff_1x400.png | Bin 0 -> 105 bytes .../ui-bg_gloss-wave_35_f6a828_500x100.png | Bin 0 -> 3762 bytes .../ui-bg_highlight-soft_100_eeeeee_1x100.png | Bin 0 -> 90 bytes .../ui-bg_highlight-soft_75_ffe45c_1x100.png | Bin 0 -> 129 bytes .../images/ui-icons_222222_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_228ef1_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_ef8c08_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_ffd27a_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_ffffff_256x240.png | Bin 0 -> 4369 bytes .../ui-lightness/jquery-ui-1.7.2.custom.css | 406 + .../themes/ui-lightness/ui.accordion.css | 9 + .../themes/ui-lightness/ui.all.css | 2 + .../themes/ui-lightness/ui.base.css | 8 + .../themes/ui-lightness/ui.core.css | 37 + .../themes/ui-lightness/ui.datepicker.css | 62 + .../themes/ui-lightness/ui.dialog.css | 13 + .../themes/ui-lightness/ui.progressbar.css | 4 + .../themes/ui-lightness/ui.resizable.css | 13 + .../themes/ui-lightness/ui.slider.css | 17 + .../themes/ui-lightness/ui.tabs.css | 11 + .../themes/ui-lightness/ui.theme.css | 247 + .../js/development-bundle/ui/effects.blind.js | 49 + .../development-bundle/ui/effects.bounce.js | 78 + .../js/development-bundle/ui/effects.clip.js | 54 + .../js/development-bundle/ui/effects.core.js | 545 + .../js/development-bundle/ui/effects.drop.js | 50 + .../development-bundle/ui/effects.explode.js | 79 + .../js/development-bundle/ui/effects.fold.js | 56 + .../ui/effects.highlight.js | 48 + .../development-bundle/ui/effects.pulsate.js | 56 + .../js/development-bundle/ui/effects.scale.js | 180 + .../js/development-bundle/ui/effects.shake.js | 57 + .../js/development-bundle/ui/effects.slide.js | 50 + .../development-bundle/ui/effects.transfer.js | 45 + .../ui/i18n/jquery-ui-i18n.js | 771 ++ .../ui/i18n/ui.datepicker-ar.js | 20 + .../ui/i18n/ui.datepicker-bg.js | 20 + .../ui/i18n/ui.datepicker-ca.js | 19 + .../ui/i18n/ui.datepicker-cs.js | 19 + .../ui/i18n/ui.datepicker-da.js | 19 + .../ui/i18n/ui.datepicker-de.js | 19 + .../ui/i18n/ui.datepicker-el.js | 19 + .../ui/i18n/ui.datepicker-eo.js | 19 + .../ui/i18n/ui.datepicker-es.js | 19 + .../ui/i18n/ui.datepicker-fa.js | 19 + .../ui/i18n/ui.datepicker-fi.js | 19 + .../ui/i18n/ui.datepicker-fr.js | 19 + .../ui/i18n/ui.datepicker-he.js | 19 + .../ui/i18n/ui.datepicker-hr.js | 19 + .../ui/i18n/ui.datepicker-hu.js | 19 + .../ui/i18n/ui.datepicker-hy.js | 19 + .../ui/i18n/ui.datepicker-id.js | 19 + .../ui/i18n/ui.datepicker-is.js | 19 + .../ui/i18n/ui.datepicker-it.js | 19 + .../ui/i18n/ui.datepicker-ja.js | 20 + .../ui/i18n/ui.datepicker-ko.js | 19 + .../ui/i18n/ui.datepicker-lt.js | 19 + .../ui/i18n/ui.datepicker-lv.js | 19 + .../ui/i18n/ui.datepicker-ms.js | 19 + .../ui/i18n/ui.datepicker-nl.js | 19 + .../ui/i18n/ui.datepicker-no.js | 19 + .../ui/i18n/ui.datepicker-pl.js | 19 + .../ui/i18n/ui.datepicker-pt-BR.js | 19 + .../ui/i18n/ui.datepicker-ro.js | 22 + .../ui/i18n/ui.datepicker-ru.js | 19 + .../ui/i18n/ui.datepicker-sk.js | 19 + .../ui/i18n/ui.datepicker-sl.js | 20 + .../ui/i18n/ui.datepicker-sq.js | 19 + .../ui/i18n/ui.datepicker-sr-SR.js | 19 + .../ui/i18n/ui.datepicker-sr.js | 19 + .../ui/i18n/ui.datepicker-sv.js | 19 + .../ui/i18n/ui.datepicker-th.js | 19 + .../ui/i18n/ui.datepicker-tr.js | 19 + .../ui/i18n/ui.datepicker-uk.js | 25 + .../ui/i18n/ui.datepicker-zh-CN.js | 19 + .../ui/i18n/ui.datepicker-zh-TW.js | 19 + .../ui/jquery-ui-1.7.2.custom.js | 9133 +++++++++++++++++ .../js/development-bundle/ui/ui.accordion.js | 477 + media/js/development-bundle/ui/ui.core.js | 519 + .../js/development-bundle/ui/ui.datepicker.js | 1636 +++ media/js/development-bundle/ui/ui.dialog.js | 671 ++ .../js/development-bundle/ui/ui.draggable.js | 766 ++ .../js/development-bundle/ui/ui.droppable.js | 282 + .../development-bundle/ui/ui.progressbar.js | 116 + .../js/development-bundle/ui/ui.resizable.js | 800 ++ .../js/development-bundle/ui/ui.selectable.js | 257 + media/js/development-bundle/ui/ui.slider.js | 558 + media/js/development-bundle/ui/ui.sortable.js | 1019 ++ media/js/development-bundle/ui/ui.tabs.js | 685 ++ media/js/development-bundle/version.txt | 1 + media/js/gmaps.CircleOverlay.js | 66 + media/js/index.html | 367 + media/js/index_progbar.html | 232 + media/js/jqbrowser-compressed.js | 2 + media/js/jquery-1.3.2.min.js | 19 + media/js/jquery-ui-1.7.2.custom.min.js | 298 + media/js/jquery.autocomplete.js | 808 ++ media/js/jquery.autocomplete.min.js | 13 + media/js/jquery.autocomplete.pack.js | 12 + media/js/jquery.ba-dotimeout.js | 262 + media/js/jquery.ba-dotimeout.min.js | 9 + media/js/jquery.countdown.css | 51 + media/js/jquery.countdown.js | 694 ++ media/js/jquery.countdown.min.js | 7 + media/js/jquery.countdown.pack.js | 7 + media/js/jquery.progressbar/demo.php | 173 + media/js/jquery.progressbar/demo.txt | 173 + media/js/jquery.progressbar/js/jquery.js | 19 + .../js/jquery.progressbar.js | 183 + .../js/jquery.progressbar.min.js | 19 + media/js/jquery.qtip-1.0.0-rc3.min.js | 15 + media/js/jquery.tagbox.js | 411 + media/js/jquery.watermarkinput.js | 81 + media/js/massivecoupon.js | 84 + media/js/multiup/documentation.css | 78 + media/js/multiup/documentation.js | 15 + media/js/multiup/index.html | 986 ++ media/js/multiup/jquery.MetaData.js | 119 + media/js/multiup/jquery.MultiFile.js | 535 + media/js/multiup/jquery.MultiFile.pack.js | 11 + media/js/multiup/jquery.blockUI.js | 398 + media/js/multiup/jquery.form.js | 632 ++ media/js/multiup/jquery.js | 4376 ++++++++ .../js/uploadify/Uploadify v2.1.0 Manual.pdf | Bin 0 -> 556466 bytes media/js/uploadify/cancel.png | Bin 0 -> 603 bytes media/js/uploadify/check.php | 35 + .../com/adobe/air/logging/FileTarget.as | 98 + media/js/uploadify/com/adobe/crypto/HMAC.as | 127 + media/js/uploadify/com/adobe/crypto/MD5.as | 281 + .../uploadify/com/adobe/crypto/MD5Stream.as | 402 + media/js/uploadify/com/adobe/crypto/SHA1.as | 271 + media/js/uploadify/com/adobe/crypto/SHA224.as | 257 + media/js/uploadify/com/adobe/crypto/SHA256.as | 261 + .../com/adobe/crypto/WSSEUsernameToken.as | 114 + .../com/adobe/errors/IllegalStateError.as | 63 + .../com/adobe/fileformats/vcard/Address.as | 47 + .../com/adobe/fileformats/vcard/Email.as | 39 + .../com/adobe/fileformats/vcard/Phone.as | 39 + .../com/adobe/fileformats/vcard/VCard.as | 54 + .../adobe/fileformats/vcard/VCardParser.as | 246 + .../uploadify/com/adobe/images/BitString.as | 39 + .../uploadify/com/adobe/images/JPGEncoder.as | 648 ++ .../uploadify/com/adobe/images/PNGEncoder.as | 141 + .../com/adobe/net/DynamicURLLoader.as | 55 + .../uploadify/com/adobe/net/IURIResolver.as | 76 + .../js/uploadify/com/adobe/net/MimeTypeMap.as | 196 + media/js/uploadify/com/adobe/net/URI.as | 2466 +++++ .../com/adobe/net/URIEncodingBitmap.as | 139 + .../com/adobe/net/proxies/RFC2817Socket.as | 198 + .../com/adobe/protocols/dict/Database.as | 34 + .../com/adobe/protocols/dict/Definition.as | 39 + .../com/adobe/protocols/dict/Dict.as | 328 + .../adobe/protocols/dict/DictionaryServer.as | 28 + .../com/adobe/protocols/dict/MatchStrategy.as | 34 + .../com/adobe/protocols/dict/Response.as | 39 + .../protocols/dict/events/ConnectedEvent.as | 14 + .../protocols/dict/events/DatabaseEvent.as | 26 + .../protocols/dict/events/DefinitionEvent.as | 27 + .../dict/events/DefinitionHeaderEvent.as | 26 + .../dict/events/DictionaryServerEvent.as | 26 + .../dict/events/DisconnectedEvent.as | 14 + .../adobe/protocols/dict/events/ErrorEvent.as | 37 + .../adobe/protocols/dict/events/MatchEvent.as | 26 + .../dict/events/MatchStrategiesEvent.as | 26 + .../protocols/dict/events/NoMatchEvent.as | 14 + .../dict/util/CompleteResponseEvent.as | 25 + .../adobe/protocols/dict/util/SocketHelper.as | 49 + .../com/adobe/serialization/json/JSON.as | 85 + .../adobe/serialization/json/JSONDecoder.as | 221 + .../adobe/serialization/json/JSONEncoder.as | 299 + .../serialization/json/JSONParseError.as | 87 + .../com/adobe/serialization/json/JSONToken.as | 104 + .../adobe/serialization/json/JSONTokenType.as | 67 + .../adobe/serialization/json/JSONTokenizer.as | 583 ++ .../js/uploadify/com/adobe/utils/ArrayUtil.as | 187 + .../js/uploadify/com/adobe/utils/DateUtil.as | 699 ++ .../com/adobe/utils/DictionaryUtil.as | 87 + media/js/uploadify/com/adobe/utils/IntUtil.as | 99 + .../com/adobe/utils/NumberFormatter.as | 74 + .../uploadify/com/adobe/utils/StringUtil.as | 270 + media/js/uploadify/com/adobe/utils/XMLUtil.as | 168 + .../com/adobe/webapis/ServiceBase.as | 48 + .../com/adobe/webapis/URLLoaderBase.as | 108 + .../com/adobe/webapis/events/ServiceEvent.as | 75 + media/js/uploadify/example/_notes/dwsync.xml | 5 + media/js/uploadify/example/cancel.png | Bin 0 -> 603 bytes .../uploadify/example/css/_notes/dwsync.xml | 5 + media/js/uploadify/example/css/default.css | 10 + media/js/uploadify/example/css/uploadify.css | 53 + media/js/uploadify/example/index.php | 31 + .../example/scripts/_notes/dwsync.xml | 10 + media/js/uploadify/example/scripts/check.php | 35 + .../example/scripts/expressInstall.swf | Bin 0 -> 727 bytes .../example/scripts/jquery-1.3.2.min.js | 19 + .../scripts/jquery.uploadify.v2.1.0.min.js | 26 + .../js/uploadify/example/scripts/swfobject.js | 4 + .../uploadify/example/scripts/uploadify.php | 46 + .../uploadify/example/scripts/uploadify.swf | Bin 0 -> 23119 bytes media/js/uploadify/expressInstall.swf | Bin 0 -> 727 bytes media/js/uploadify/jquery-1.3.2.min.js | 19 + .../js/uploadify/jquery.uploadify-v2.1.0.zip | Bin 0 -> 681370 bytes media/js/uploadify/jquery.uploadify.js | 258 + media/js/uploadify/jquery.uploadify.min.js | 26 + media/js/uploadify/jquery.uploadify.v2.1.0.js | 258 + media/js/uploadify/swfobject.js | 4 + media/js/uploadify/uploadify.allglyphs.swf | Bin 0 -> 239838 bytes media/js/uploadify/uploadify.css | 53 + media/js/uploadify/uploadify.fla | Bin 0 -> 125952 bytes media/js/uploadify/uploadify.php | 46 + media/js/uploadify/uploadify.swf | Bin 0 -> 23118 bytes paypalxpress/.svn/all-wcprops | 41 + paypalxpress/.svn/entries | 232 + paypalxpress/.svn/format | 1 + .../.svn/prop-base/__init__.py.svn-base | 5 + paypalxpress/.svn/prop-base/admin.py.svn-base | 5 + .../.svn/prop-base/driver.py.svn-base | 5 + .../.svn/prop-base/models.py.svn-base | 5 + paypalxpress/.svn/prop-base/utils.py.svn-base | 5 + paypalxpress/.svn/prop-base/views.py.svn-base | 5 + .../.svn/text-base/__init__.py.svn-base | 0 paypalxpress/.svn/text-base/admin.py.svn-base | 17 + .../.svn/text-base/driver.py.svn-base | 303 + .../.svn/text-base/models.py.svn-base | 108 + paypalxpress/.svn/text-base/utils.py.svn-base | 72 + paypalxpress/.svn/text-base/views.py.svn-base | 143 + paypalxpress/__init__.py | 0 paypalxpress/__init__.pyc | Bin 0 -> 151 bytes paypalxpress/admin.py | 17 + paypalxpress/admin.pyc | Bin 0 -> 909 bytes paypalxpress/driver.py | 353 + paypalxpress/driver.pyc | Bin 0 -> 11668 bytes paypalxpress/models.py | 108 + paypalxpress/models.pyc | Bin 0 -> 5507 bytes paypalxpress/utils.py | 72 + paypalxpress/views.py | 143 + photologue/__init__.py | 1 + photologue/__init__.pyc | Bin 0 -> 192 bytes photologue/admin.py | 70 + photologue/admin.pyc | Bin 0 -> 3865 bytes photologue/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 8782 bytes photologue/locale/pl/LC_MESSAGES/django.po | 419 + photologue/management/__init__.py | 1 + photologue/management/__init__.pyc | Bin 0 -> 160 bytes photologue/management/commands/__init__.py | 37 + photologue/management/commands/plcache.py | 43 + .../management/commands/plcreatesize.py | 13 + photologue/management/commands/plflush.py | 35 + photologue/management/commands/plinit.py | 30 + photologue/models.py | 733 ++ photologue/models.pyc | Bin 0 -> 34458 bytes photologue/res/sample.jpg | Bin 0 -> 14453 bytes photologue/res/test_landscape.jpg | Bin 0 -> 659 bytes photologue/res/test_portrait.jpg | Bin 0 -> 659 bytes photologue/res/test_square.jpg | Bin 0 -> 573 bytes .../templates/photologue/gallery_archive.html | 26 + .../photologue/gallery_archive_day.html | 26 + .../photologue/gallery_archive_month.html | 26 + .../photologue/gallery_archive_year.html | 16 + .../templates/photologue/gallery_detail.html | 19 + .../templates/photologue/gallery_list.html | 31 + .../templates/photologue/photo_archive.html | 20 + .../photologue/photo_archive_day.html | 20 + .../photologue/photo_archive_month.html | 20 + .../photologue/photo_archive_year.html | 14 + .../templates/photologue/photo_detail.html | 23 + .../templates/photologue/photo_list.html | 26 + photologue/templates/photologue/root.html | 1 + .../photologue/tags/next_in_gallery.html | 3 + .../photologue/tags/prev_in_gallery.html | 3 + photologue/templatetags/__init__.py | 0 photologue/templatetags/__init__.pyc | Bin 0 -> 162 bytes photologue/templatetags/photologue_tags.py | 11 + photologue/tests.py | 218 + photologue/urls.py | 36 + photologue/utils/EXIF.py | 1767 ++++ photologue/utils/EXIF.pyc | Bin 0 -> 39686 bytes photologue/utils/__init__.py | 0 photologue/utils/__init__.pyc | Bin 0 -> 138 bytes photologue/utils/reflection.py | 92 + photologue/utils/reflection.pyc | Bin 0 -> 3484 bytes photologue/utils/watermark.py | 64 + photologue/utils/watermark.pyc | Bin 0 -> 2419 bytes run-debug.sh | 4 + settings.py | 148 + socialregistration/__init__.py | 0 socialregistration/__init__.pyc | Bin 0 -> 157 bytes socialregistration/admin.py | 12 + socialregistration/admin.pyc | Bin 0 -> 523 bytes socialregistration/auth.py | 46 + socialregistration/auth.pyc | Bin 0 -> 2367 bytes socialregistration/forms.py | 35 + socialregistration/forms.pyc | Bin 0 -> 1721 bytes socialregistration/middleware.py | 14 + socialregistration/middleware.pyc | Bin 0 -> 1102 bytes socialregistration/models.py | 61 + socialregistration/models.pyc | Bin 0 -> 3769 bytes .../socialregistration/facebook.html | 2 + .../socialregistration/facebook_button.html | 7 + .../socialregistration/facebook_js.html | 16 + .../socialregistration/friendfeed_button.html | 1 + .../templates/socialregistration/openid.html | 2 + .../socialregistration/openid_form.html | 4 + .../templates/socialregistration/setup.html | 7 + .../socialregistration/twitter_button.html | 7 + .../socialregistration/xd_receiver.html | 10 + .../socialregistration/xd_receiver.html.fb | 1 + socialregistration/templatetags/__init__.py | 5 + socialregistration/templatetags/__init__.pyc | Bin 0 -> 231 bytes .../templatetags/facebook_tags.py | 21 + .../templatetags/facebook_tags.pyc | Bin 0 -> 1334 bytes .../templatetags/friendfeed_tags.py | 12 + .../templatetags/openid_tags.py | 12 + .../templatetags/twitter_tags.py | 16 + socialregistration/tests.py | 28 + socialregistration/urls.py | 92 + socialregistration/utils.py | 327 + socialregistration/utils.pyc | Bin 0 -> 13002 bytes socialregistration/views.py | 275 + socialregistration/views.pyc | Bin 0 -> 8350 bytes tagging/__init__.py | 30 + tagging/__init__.pyc | Bin 0 -> 1272 bytes tagging/admin.py | 13 + tagging/admin.pyc | Bin 0 -> 648 bytes tagging/fields.py | 119 + tagging/fields.pyc | Bin 0 -> 4994 bytes tagging/forms.py | 40 + tagging/forms.pyc | Bin 0 -> 2083 bytes tagging/generic.py | 40 + tagging/managers.py | 68 + tagging/managers.pyc | Bin 0 -> 3834 bytes tagging/models.py | 480 + tagging/models.pyc | Bin 0 -> 18498 bytes tagging/settings.py | 13 + tagging/settings.pyc | Bin 0 -> 511 bytes tagging/templatetags/__init__.py | 0 tagging/templatetags/__init__.pyc | Bin 0 -> 159 bytes tagging/templatetags/tagging_tags.py | 231 + tagging/tests/__init__.py | 0 tagging/tests/models.py | 42 + tagging/tests/settings.py | 27 + tagging/tests/tags.txt | 122 + tagging/tests/tests.py | 920 ++ tagging/utils.py | 263 + tagging/utils.pyc | Bin 0 -> 8222 bytes tagging/views.py | 52 + templates/404.html | 134 + templates/500.html | 134 + templates/aboutus.html | 144 + templates/base.html | 93 + templates/bid.html | 254 + templates/contactus.html | 148 + templates/deal_checkout.html | 313 + templates/deal_checkout.html.old | 258 + templates/deal_detail.html | 322 + templates/deal_detail.html.good | 301 + templates/deal_detail.html.old | 121 + templates/email_subscribe.html | 178 + templates/faq.html | 152 + templates/footer.html | 40 + templates/footer.html.bak | 43 + templates/header.html | 86 + templates/howitworks.html | 158 + templates/terms.html | 157 + templates/user_login.html | 131 + templates/user_logout.html | 7 + templates/user_signup.html | 134 + urls.py | 133 + 946 files changed, 99158 insertions(+) create mode 100644 README create mode 100644 __init__.py create mode 100644 backends.py create mode 100644 countries/.svn/all-wcprops create mode 100644 countries/.svn/entries create mode 100644 countries/.svn/format create mode 100644 countries/.svn/text-base/__init__.py.svn-base create mode 100644 countries/.svn/text-base/models.py.svn-base create mode 100644 countries/__init__.py create mode 100644 countries/__init__.pyc create mode 100644 countries/admin.py create mode 100644 countries/admin.pyc create mode 100644 countries/fixtures/.svn/all-wcprops create mode 100644 countries/fixtures/.svn/entries create mode 100644 countries/fixtures/.svn/format create mode 100644 countries/fixtures/.svn/text-base/UPDATED.txt.svn-base create mode 100644 countries/fixtures/.svn/text-base/initial_data.xml.svn-base create mode 100644 countries/fixtures/UPDATED.txt create mode 100644 countries/fixtures/initial_data.xml create mode 100644 countries/models.py create mode 100644 countries/models.pyc create mode 100644 countries/templatetags/.svn/all-wcprops create mode 100644 countries/templatetags/.svn/entries create mode 100644 countries/templatetags/.svn/format create mode 100644 countries/templatetags/.svn/text-base/__init__.py.svn-base create mode 100644 countries/templatetags/.svn/text-base/countries_tags.py.svn-base create mode 100644 countries/templatetags/__init__.py create mode 100644 countries/templatetags/__init__.pyc create mode 100644 countries/templatetags/countries_tags.py create mode 100644 countries/utils/.svn/all-wcprops create mode 100644 countries/utils/.svn/entries create mode 100644 countries/utils/.svn/format create mode 100644 countries/utils/.svn/text-base/__init__.py.svn-base create mode 100644 countries/utils/.svn/text-base/isoflag.py.svn-base create mode 100644 countries/utils/__init__.py create mode 100644 countries/utils/isoflag.py create mode 100644 debug_toolbar/__init__.py create mode 100644 debug_toolbar/locale/de/LC_MESSAGES/django.mo create mode 100644 debug_toolbar/locale/de/LC_MESSAGES/django.po create mode 100644 debug_toolbar/locale/en/LC_MESSAGES/django.mo create mode 100644 debug_toolbar/locale/en/LC_MESSAGES/django.po create mode 100644 debug_toolbar/locale/es/LC_MESSAGES/django.mo create mode 100644 debug_toolbar/locale/es/LC_MESSAGES/django.po create mode 100644 debug_toolbar/locale/fr/LC_MESSAGES/django.mo create mode 100644 debug_toolbar/locale/fr/LC_MESSAGES/django.po create mode 100644 debug_toolbar/locale/he/LC_MESSAGES/django.mo create mode 100644 debug_toolbar/locale/he/LC_MESSAGES/django.po create mode 100644 debug_toolbar/locale/ru/LC_MESSAGES/django.mo create mode 100644 debug_toolbar/locale/ru/LC_MESSAGES/django.po create mode 100644 debug_toolbar/management/__init__.py create mode 100644 debug_toolbar/management/commands/__init__.py create mode 100644 debug_toolbar/management/commands/debugsqlshell.py create mode 100644 debug_toolbar/media/debug_toolbar/Makefile create mode 100644 debug_toolbar/media/debug_toolbar/back.png create mode 100644 debug_toolbar/media/debug_toolbar/back_hover.png create mode 100644 debug_toolbar/media/debug_toolbar/close.png create mode 100644 debug_toolbar/media/debug_toolbar/close_hover.png create mode 100644 debug_toolbar/media/debug_toolbar/djdt_vertical.png create mode 100644 debug_toolbar/media/debug_toolbar/indicator.png create mode 100644 debug_toolbar/media/debug_toolbar/jquery.cookie.js create mode 100644 debug_toolbar/media/debug_toolbar/jquery.js create mode 100644 debug_toolbar/media/debug_toolbar/panel_bg.png create mode 100644 debug_toolbar/media/debug_toolbar/toolbar.css create mode 100644 debug_toolbar/media/debug_toolbar/toolbar.js create mode 100644 debug_toolbar/media/debug_toolbar/toolbar.min.css create mode 100644 debug_toolbar/media/debug_toolbar/toolbar.min.js create mode 100644 debug_toolbar/middleware.py create mode 100644 debug_toolbar/models.py create mode 100644 debug_toolbar/panels/__init__.py create mode 100644 debug_toolbar/panels/cache.py create mode 100644 debug_toolbar/panels/headers.py create mode 100644 debug_toolbar/panels/logger.py create mode 100644 debug_toolbar/panels/request_vars.py create mode 100644 debug_toolbar/panels/settings_vars.py create mode 100644 debug_toolbar/panels/signals.py create mode 100644 debug_toolbar/panels/sql.py create mode 100644 debug_toolbar/panels/template.py create mode 100644 debug_toolbar/panels/timer.py create mode 100644 debug_toolbar/panels/version.py create mode 100644 debug_toolbar/templates/debug_toolbar/base.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/cache.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/headers.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/logger.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/request_vars.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/settings_vars.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/signals.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/sql.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/sql_explain.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/sql_profile.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/sql_select.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/template_source.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/templates.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/timer.html create mode 100644 debug_toolbar/templates/debug_toolbar/panels/versions.html create mode 100644 debug_toolbar/templates/debug_toolbar/redirect.html create mode 100644 debug_toolbar/toolbar/__init__.py create mode 100644 debug_toolbar/toolbar/loader.py create mode 100644 debug_toolbar/urls.py create mode 100644 debug_toolbar/utils/__init__.py create mode 100644 debug_toolbar/utils/sqlparse/__init__.py create mode 100644 debug_toolbar/utils/sqlparse/engine/__init__.py create mode 100644 debug_toolbar/utils/sqlparse/engine/filter.py create mode 100644 debug_toolbar/utils/sqlparse/engine/grouping.py create mode 100644 debug_toolbar/utils/sqlparse/filters.py create mode 100644 debug_toolbar/utils/sqlparse/formatter.py create mode 100644 debug_toolbar/utils/sqlparse/keywords.py create mode 100644 debug_toolbar/utils/sqlparse/lexer.py create mode 100644 debug_toolbar/utils/sqlparse/sql.py create mode 100644 debug_toolbar/utils/sqlparse/tokens.py create mode 100644 debug_toolbar/views.py create mode 100644 engine/__init__.py create mode 100644 engine/admin.py create mode 100644 engine/forms.py create mode 100644 engine/models.py create mode 100644 engine/templatetags/extra_tags.py create mode 100644 engine/tests.py create mode 100644 engine/views.py create mode 100644 facebook/__init__.py create mode 100644 facebook/__init__.pyc create mode 100644 facebook/djangofb/__init__.py create mode 100644 facebook/djangofb/__init__.pyc create mode 100644 facebook/djangofb/context_processors.py create mode 100644 facebook/djangofb/default_app/__init__.py create mode 100644 facebook/djangofb/default_app/models.py create mode 100644 facebook/djangofb/default_app/templates/canvas.fbml create mode 100644 facebook/djangofb/default_app/urls.py create mode 100644 facebook/djangofb/default_app/views.py create mode 100644 facebook/djangofb/models.py create mode 100644 facebook/webappfb.py create mode 100644 facebook/wsgi.py create mode 100644 get_map.py create mode 100644 libs/__init__.py create mode 100644 libs/__init__.pyc create mode 100644 libs/formutils.py create mode 100644 libs/formutils.pyc create mode 100644 manage.py create mode 100644 media/css/all.css create mode 100644 media/css/lt8.css create mode 100644 media/css/massivecoupon.css create mode 100644 media/css/yui2.8-reset-fonts-grids.css create mode 100644 media/css/yui3-base-reset-fonts-grids.css create mode 100644 media/deal_images/blah.jpg create mode 100644 media/deal_images/breville_banner0909.gif create mode 100644 media/deal_images/hammam.jpg create mode 100644 media/deal_images/hammam_.jpg create mode 100755 media/deal_images/hammam__.jpg create mode 100644 media/deals/photos/1n84DNkitkat2_small.JPG create mode 100644 media/deals/photos/1n9bT1kitkat2_small.JPG create mode 100644 media/deals/photos/1n9bTakitkat2_small.JPG create mode 100644 media/deals/photos/1n9bTdkitkat2_small.JPG create mode 100644 media/deals/photos/1ne8LOjobdeals_logo.jpg create mode 100644 media/deals/photos/1ne8Lxashlierobweddingbands.jpg create mode 100644 media/deals/photos/1ne9UDashlierobweddingbands.jpg create mode 100644 media/deals/photos/1ne9Z1ashlierobweddingbands.jpg create mode 100644 media/deals/photos/1nea28ashlierobweddingbands.jpg create mode 100644 media/deals/photos/1nefuLashlierobweddingbands.jpg create mode 100644 media/deals/photos/cache/1n7E88halloween2009001_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7E88halloween2009001_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Ee8kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Ee8kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7EeFkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7EeFkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7EePkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7EePkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Ef8kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Ef8kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7EfGkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7EfGkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7EgIkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7EgIkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GKXkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GKXkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GLvkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GLvkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GLzkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GLzkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GO9kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GO9kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GRukitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GRukitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GS4kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GS4kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GSbkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GSbkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GSekitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GSekitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7GgHziggy_admin_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7GgHziggy_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7Gglziggy_admin_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7Gglziggy_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7Ghgziggy_admin_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7Ghgziggy_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7Hu3kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Hu3kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Hu7kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Hu7kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Hutkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Hutkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Hv4kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Hv4kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Hv7kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7Hv7kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7J3EPhoto_091308_001_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7J3nkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7J3skitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7J3xkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7J6Ghalloween2009025_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n7J6cP1010093_admin_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7J6cP1010093_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7JaiLamborghini-Gallardo_Nera_2007_1600x1200_wallpaper_01_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7JgQPhoto_091308_001_thumbnail.jpg create mode 100644 media/deals/photos/cache/1n7JnGkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n836Kkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n836Kkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n838Bkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n838Bkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n838Dkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n838Dkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n838vkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n838vkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n838xkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n838xkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n838ykitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n838ykitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n8396kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n8396kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n839Bkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n839Bkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83aKkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83aKkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83aekitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83aekitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83aikitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83aikitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83amkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83amkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83aqkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83aqkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83azkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83azkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83fBkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83fBkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83fNkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83fNkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83fRkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83fRkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83fUkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83fUkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83fXkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83fXkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83g1kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83g1kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iEkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iEkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iGkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iGkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iJkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iJkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iLkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iLkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iNkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iNkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iQkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n83iQkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n84DNkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n84DNkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9Plbkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9Plbkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9Pldkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9Pldkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9Qnxkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9Qnxkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9QoDkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9QoDkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9QoLhalloween2009010_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9QoLhalloween2009010_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9bT1kitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9bT1kitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9bTakitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9bTakitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9bTdkitkat2_small_admin_thumbnail.JPG create mode 100644 media/deals/photos/cache/1n9bTdkitkat2_small_thumbnail.JPG create mode 100644 media/deals/photos/cache/1ne8LOjobdeals_logo_admin_thumbnail.jpg create mode 100644 media/deals/photos/cache/1ne8LOjobdeals_logo_thumbnail.jpg create mode 100644 media/deals/photos/cache/1ne8Lxashlierobweddingbands_admin_thumbnail.jpg create mode 100644 media/deals/photos/cache/1ne8Lxashlierobweddingbands_thumbnail.jpg create mode 100644 media/deals/photos/cache/1ne9UDashlierobweddingbands_admin_thumbnail.jpg create mode 100644 media/deals/photos/cache/1ne9UDashlierobweddingbands_thumbnail.jpg create mode 100644 media/deals/photos/cache/1ne9Z1ashlierobweddingbands_admin_thumbnail.jpg create mode 100644 media/deals/photos/cache/1ne9Z1ashlierobweddingbands_thumbnail.jpg create mode 100644 media/deals/photos/cache/1nea28ashlierobweddingbands_admin_thumbnail.jpg create mode 100644 media/deals/photos/cache/1nefuLashlierobweddingbands_admin_thumbnail.jpg create mode 100644 media/deals/photos/cache/1nefuLashlierobweddingbands_thumbnail.jpg create mode 100644 media/images/arrow-add-nav.gif create mode 100644 media/images/bg-add-nav-c.gif create mode 100644 media/images/bg-add-nav-l.gif create mode 100644 media/images/bg-add-nav-r.gif create mode 100644 media/images/bg-blockquote.gif create mode 100644 media/images/bg-buy-b.gif create mode 100644 media/images/bg-buy-block.gif create mode 100644 media/images/bg-buy-t.gif create mode 100644 media/images/bg-content-box-b.png create mode 100644 media/images/bg-content-box-t.png create mode 100644 media/images/bg-content-box2-b.png create mode 100644 media/images/bg-content-box2-c.gif create mode 100644 media/images/bg-content-box2-t.png create mode 100644 media/images/bg-discuss-b.png create mode 100644 media/images/bg-discuss-t.png create mode 100644 media/images/bg-discuss-txt.png create mode 100644 media/images/bg-give-box-b.gif create mode 100644 media/images/bg-give-box-t.gif create mode 100644 media/images/bg-header-main-b.png create mode 100644 media/images/bg-header-main-t.gif create mode 100644 media/images/bg-main.jpg create mode 100644 media/images/bg-main.jpg.old create mode 100644 media/images/bg-navbar-c.gif create mode 100644 media/images/bg-navbar-l.png create mode 100644 media/images/bg-navbar-r.png create mode 100644 media/images/bg-price-b.gif create mode 100644 media/images/bg-price-t.gif create mode 100644 media/images/bg-sb-box-b.png create mode 100644 media/images/bg-sb-box-t.png create mode 100644 media/images/bg-world-txt-b.gif create mode 100644 media/images/bg-world-txt-t.gif create mode 100644 media/images/blue-pixel.png create mode 100644 media/images/btn-buy-for-friend-b.gif create mode 100644 media/images/btn-buy-for-friend-c.gif create mode 100644 media/images/btn-buy-for-friend-t.gif create mode 100644 media/images/btn-buy-gift-card.gif create mode 100644 media/images/btn-connect-facebook.gif create mode 100644 media/images/btn_xpressCheckout.gif create mode 100644 media/images/bullet-fine-box-list.gif create mode 100644 media/images/divider-add-nav.gif create mode 100644 media/images/divider-buy-details.gif create mode 100644 media/images/divider-fine-box.gif create mode 100644 media/images/divider-main-nav.gif create mode 100644 media/images/favicon.ico create mode 100644 media/images/ico-business.gif create mode 100644 media/images/ico-clock.gif create mode 100644 media/images/ico-coupon.png create mode 100644 media/images/ico-deal-on.gif create mode 100644 media/images/ico-email.gif create mode 100644 media/images/ico-facebook.gif create mode 100644 media/images/ico-twitter.gif create mode 100644 media/images/img1.jpg create mode 100644 media/images/img2.png create mode 100644 media/images/img3.png create mode 100644 media/images/lock-icon.png create mode 100644 media/images/logo.gif create mode 100644 media/images/logo2.gif create mode 100644 media/images/logo3.gif create mode 100644 media/images/logo4.gif create mode 100644 media/images/map.png create mode 100644 media/images/none.gif create mode 100644 media/images/progressbar.gif create mode 100644 media/images/progressbg_black.gif create mode 100644 media/images/progressbg_green.gif create mode 100644 media/images/progressbg_orange.gif create mode 100644 media/images/progressbg_red.gif create mode 100644 media/images/progressbg_yellow.gif create mode 100644 media/images/securepaypal.jpg create mode 100644 media/images/signin-button.gif create mode 100644 media/images/text-daily-deals.gif create mode 100644 media/images/text-slogan.gif create mode 100644 media/images/text-the-world.gif create mode 100644 media/index.html create mode 100644 media/js/FeatureLoader.js create mode 100644 media/js/cd-led.png create mode 100644 media/js/countdownBasics.html create mode 100644 media/js/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png create mode 100644 media/js/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png create mode 100644 media/js/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png create mode 100644 media/js/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png create mode 100644 media/js/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png create mode 100644 media/js/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png create mode 100644 media/js/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png create mode 100644 media/js/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png create mode 100644 media/js/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png create mode 100644 media/js/css/ui-lightness/images/ui-icons_222222_256x240.png create mode 100644 media/js/css/ui-lightness/images/ui-icons_228ef1_256x240.png create mode 100644 media/js/css/ui-lightness/images/ui-icons_ef8c08_256x240.png create mode 100644 media/js/css/ui-lightness/images/ui-icons_ffd27a_256x240.png create mode 100644 media/js/css/ui-lightness/images/ui-icons_ffffff_256x240.png create mode 100644 media/js/css/ui-lightness/jquery-ui-1.7.2.custom.css create mode 100644 media/js/development-bundle/AUTHORS.txt create mode 100644 media/js/development-bundle/GPL-LICENSE.txt create mode 100644 media/js/development-bundle/MIT-LICENSE.txt create mode 100644 media/js/development-bundle/demos/accordion/collapsible.html create mode 100644 media/js/development-bundle/demos/accordion/custom-icons.html create mode 100644 media/js/development-bundle/demos/accordion/default.html create mode 100644 media/js/development-bundle/demos/accordion/fillspace.html create mode 100644 media/js/development-bundle/demos/accordion/index.html create mode 100644 media/js/development-bundle/demos/accordion/mouseover.html create mode 100644 media/js/development-bundle/demos/accordion/no-auto-height.html create mode 100644 media/js/development-bundle/demos/addClass/default.html create mode 100644 media/js/development-bundle/demos/addClass/index.html create mode 100644 media/js/development-bundle/demos/animate/default.html create mode 100644 media/js/development-bundle/demos/animate/index.html create mode 100644 media/js/development-bundle/demos/datepicker/alt-field.html create mode 100644 media/js/development-bundle/demos/datepicker/buttonbar.html create mode 100644 media/js/development-bundle/demos/datepicker/date-formats.html create mode 100644 media/js/development-bundle/demos/datepicker/default.html create mode 100644 media/js/development-bundle/demos/datepicker/dropdown-month-year.html create mode 100644 media/js/development-bundle/demos/datepicker/icon-trigger.html create mode 100644 media/js/development-bundle/demos/datepicker/images/calendar.gif create mode 100644 media/js/development-bundle/demos/datepicker/index.html create mode 100644 media/js/development-bundle/demos/datepicker/inline.html create mode 100644 media/js/development-bundle/demos/datepicker/localization.html create mode 100644 media/js/development-bundle/demos/datepicker/min-max.html create mode 100644 media/js/development-bundle/demos/datepicker/multiple-calendars.html create mode 100644 media/js/development-bundle/demos/demos.css create mode 100644 media/js/development-bundle/demos/dialog/default.html create mode 100644 media/js/development-bundle/demos/dialog/index.html create mode 100644 media/js/development-bundle/demos/dialog/modal-confirmation.html create mode 100644 media/js/development-bundle/demos/dialog/modal-form.html create mode 100644 media/js/development-bundle/demos/dialog/modal-message.html create mode 100644 media/js/development-bundle/demos/dialog/modal.html create mode 100644 media/js/development-bundle/demos/draggable/constrain-movement.html create mode 100644 media/js/development-bundle/demos/draggable/cursor-style.html create mode 100644 media/js/development-bundle/demos/draggable/default.html create mode 100644 media/js/development-bundle/demos/draggable/delay-start.html create mode 100644 media/js/development-bundle/demos/draggable/events.html create mode 100644 media/js/development-bundle/demos/draggable/handle.html create mode 100644 media/js/development-bundle/demos/draggable/index.html create mode 100644 media/js/development-bundle/demos/draggable/revert.html create mode 100644 media/js/development-bundle/demos/draggable/scroll.html create mode 100644 media/js/development-bundle/demos/draggable/snap-to.html create mode 100644 media/js/development-bundle/demos/draggable/sortable.html create mode 100644 media/js/development-bundle/demos/draggable/visual-feedback.html create mode 100644 media/js/development-bundle/demos/droppable/accepted-elements.html create mode 100644 media/js/development-bundle/demos/droppable/default.html create mode 100644 media/js/development-bundle/demos/droppable/images/high_tatras.jpg create mode 100644 media/js/development-bundle/demos/droppable/images/high_tatras2.jpg create mode 100644 media/js/development-bundle/demos/droppable/images/high_tatras2_min.jpg create mode 100644 media/js/development-bundle/demos/droppable/images/high_tatras3.jpg create mode 100644 media/js/development-bundle/demos/droppable/images/high_tatras3_min.jpg create mode 100644 media/js/development-bundle/demos/droppable/images/high_tatras4.jpg create mode 100644 media/js/development-bundle/demos/droppable/images/high_tatras4_min.jpg create mode 100644 media/js/development-bundle/demos/droppable/images/high_tatras_min.jpg create mode 100644 media/js/development-bundle/demos/droppable/index.html create mode 100644 media/js/development-bundle/demos/droppable/photo-manager.html create mode 100644 media/js/development-bundle/demos/droppable/propagation.html create mode 100644 media/js/development-bundle/demos/droppable/revert.html create mode 100644 media/js/development-bundle/demos/droppable/visual-feedback.html create mode 100644 media/js/development-bundle/demos/effect/default.html create mode 100644 media/js/development-bundle/demos/effect/index.html create mode 100644 media/js/development-bundle/demos/hide/default.html create mode 100644 media/js/development-bundle/demos/hide/index.html create mode 100644 media/js/development-bundle/demos/images/calendar.gif create mode 100644 media/js/development-bundle/demos/images/demo-config-on-tile.gif create mode 100644 media/js/development-bundle/demos/images/demo-config-on.gif create mode 100644 media/js/development-bundle/demos/images/demo-spindown-closed.gif create mode 100644 media/js/development-bundle/demos/images/demo-spindown-open.gif create mode 100644 media/js/development-bundle/demos/images/icon-docs-info.gif create mode 100644 media/js/development-bundle/demos/images/pbar-ani.gif create mode 100644 media/js/development-bundle/demos/index.html create mode 100644 media/js/development-bundle/demos/progressbar/animated.html create mode 100644 media/js/development-bundle/demos/progressbar/default.html create mode 100644 media/js/development-bundle/demos/progressbar/images/pbar-ani.gif create mode 100644 media/js/development-bundle/demos/progressbar/index.html create mode 100644 media/js/development-bundle/demos/progressbar/resize.html create mode 100644 media/js/development-bundle/demos/removeClass/default.html create mode 100644 media/js/development-bundle/demos/removeClass/index.html create mode 100644 media/js/development-bundle/demos/resizable/animate.html create mode 100644 media/js/development-bundle/demos/resizable/aspect-ratio.html create mode 100644 media/js/development-bundle/demos/resizable/constrain-area.html create mode 100644 media/js/development-bundle/demos/resizable/default.html create mode 100644 media/js/development-bundle/demos/resizable/delay-start.html create mode 100644 media/js/development-bundle/demos/resizable/index.html create mode 100644 media/js/development-bundle/demos/resizable/max-min.html create mode 100644 media/js/development-bundle/demos/resizable/snap-to-grid.html create mode 100644 media/js/development-bundle/demos/resizable/synchronous-resize.html create mode 100644 media/js/development-bundle/demos/resizable/visual-feedback.html create mode 100644 media/js/development-bundle/demos/selectable/default.html create mode 100644 media/js/development-bundle/demos/selectable/display-grid.html create mode 100644 media/js/development-bundle/demos/selectable/index.html create mode 100644 media/js/development-bundle/demos/selectable/serialize.html create mode 100644 media/js/development-bundle/demos/show/default.html create mode 100644 media/js/development-bundle/demos/show/index.html create mode 100644 media/js/development-bundle/demos/slider/colorpicker.html create mode 100644 media/js/development-bundle/demos/slider/default.html create mode 100644 media/js/development-bundle/demos/slider/index.html create mode 100644 media/js/development-bundle/demos/slider/multiple-vertical.html create mode 100644 media/js/development-bundle/demos/slider/range-vertical.html create mode 100644 media/js/development-bundle/demos/slider/range.html create mode 100644 media/js/development-bundle/demos/slider/rangemax.html create mode 100644 media/js/development-bundle/demos/slider/rangemin.html create mode 100644 media/js/development-bundle/demos/slider/slider-vertical.html create mode 100644 media/js/development-bundle/demos/slider/steps.html create mode 100644 media/js/development-bundle/demos/sortable/connect-lists-through-tabs.html create mode 100644 media/js/development-bundle/demos/sortable/connect-lists.html create mode 100644 media/js/development-bundle/demos/sortable/default.html create mode 100644 media/js/development-bundle/demos/sortable/delay-start.html create mode 100644 media/js/development-bundle/demos/sortable/display-grid.html create mode 100644 media/js/development-bundle/demos/sortable/empty-lists.html create mode 100644 media/js/development-bundle/demos/sortable/index.html create mode 100644 media/js/development-bundle/demos/sortable/items.html create mode 100644 media/js/development-bundle/demos/sortable/placeholder.html create mode 100644 media/js/development-bundle/demos/sortable/portlets.html create mode 100644 media/js/development-bundle/demos/switchClass/default.html create mode 100644 media/js/development-bundle/demos/switchClass/index.html create mode 100644 media/js/development-bundle/demos/tabs/ajax.html create mode 100644 media/js/development-bundle/demos/tabs/ajax/content1.html create mode 100644 media/js/development-bundle/demos/tabs/ajax/content2.html create mode 100644 media/js/development-bundle/demos/tabs/collapsible.html create mode 100644 media/js/development-bundle/demos/tabs/default.html create mode 100644 media/js/development-bundle/demos/tabs/index.html create mode 100644 media/js/development-bundle/demos/tabs/mouseover.html create mode 100644 media/js/development-bundle/demos/tabs/sortable.html create mode 100644 media/js/development-bundle/demos/tabs/vertical.html create mode 100644 media/js/development-bundle/demos/toggle/default.html create mode 100644 media/js/development-bundle/demos/toggle/index.html create mode 100644 media/js/development-bundle/demos/toggleClass/default.html create mode 100644 media/js/development-bundle/demos/toggleClass/index.html create mode 100644 media/js/development-bundle/docs/accordion.html create mode 100644 media/js/development-bundle/docs/addClass.html create mode 100644 media/js/development-bundle/docs/animate.html create mode 100644 media/js/development-bundle/docs/datepicker.html create mode 100644 media/js/development-bundle/docs/dialog.html create mode 100644 media/js/development-bundle/docs/draggable.html create mode 100644 media/js/development-bundle/docs/droppable.html create mode 100644 media/js/development-bundle/docs/effect.html create mode 100644 media/js/development-bundle/docs/hide.html create mode 100644 media/js/development-bundle/docs/progressbar.html create mode 100644 media/js/development-bundle/docs/removeClass.html create mode 100644 media/js/development-bundle/docs/resizable.html create mode 100644 media/js/development-bundle/docs/selectable.html create mode 100644 media/js/development-bundle/docs/show.html create mode 100644 media/js/development-bundle/docs/slider.html create mode 100644 media/js/development-bundle/docs/sortable.html create mode 100644 media/js/development-bundle/docs/switchClass.html create mode 100644 media/js/development-bundle/docs/tabs.html create mode 100644 media/js/development-bundle/docs/toggle.html create mode 100644 media/js/development-bundle/docs/toggleClass.html create mode 100644 media/js/development-bundle/external/bgiframe/ChangeLog.txt create mode 100644 media/js/development-bundle/external/bgiframe/META.json create mode 100644 media/js/development-bundle/external/bgiframe/docs/index.html create mode 100644 media/js/development-bundle/external/bgiframe/jquery.bgiframe.js create mode 100644 media/js/development-bundle/external/bgiframe/jquery.bgiframe.min.js create mode 100644 media/js/development-bundle/external/bgiframe/jquery.bgiframe.pack.js create mode 100644 media/js/development-bundle/external/bgiframe/test/index.html create mode 100644 media/js/development-bundle/external/cookie/jquery.cookie.js create mode 100644 media/js/development-bundle/external/cookie/jquery.cookie.min.js create mode 100644 media/js/development-bundle/external/cookie/jquery.cookie.pack.js create mode 100644 media/js/development-bundle/external/cookie/jquery.cookie.zip create mode 100644 media/js/development-bundle/external/jsdiff/jsdiff.js create mode 100644 media/js/development-bundle/external/qunit/testrunner.js create mode 100644 media/js/development-bundle/external/qunit/testsuite.css create mode 100644 media/js/development-bundle/external/simulate/jquery.simulate.js create mode 100644 media/js/development-bundle/jquery-1.3.2.js create mode 100644 media/js/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png create mode 100644 media/js/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png create mode 100644 media/js/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png create mode 100644 media/js/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png create mode 100644 media/js/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png create mode 100644 media/js/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png create mode 100644 media/js/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png create mode 100644 media/js/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png create mode 100644 media/js/development-bundle/themes/base/images/ui-icons_222222_256x240.png create mode 100644 media/js/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png create mode 100644 media/js/development-bundle/themes/base/images/ui-icons_454545_256x240.png create mode 100644 media/js/development-bundle/themes/base/images/ui-icons_888888_256x240.png create mode 100644 media/js/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png create mode 100644 media/js/development-bundle/themes/base/ui.accordion.css create mode 100644 media/js/development-bundle/themes/base/ui.all.css create mode 100644 media/js/development-bundle/themes/base/ui.base.css create mode 100644 media/js/development-bundle/themes/base/ui.core.css create mode 100644 media/js/development-bundle/themes/base/ui.datepicker.css create mode 100644 media/js/development-bundle/themes/base/ui.dialog.css create mode 100644 media/js/development-bundle/themes/base/ui.progressbar.css create mode 100644 media/js/development-bundle/themes/base/ui.resizable.css create mode 100644 media/js/development-bundle/themes/base/ui.slider.css create mode 100644 media/js/development-bundle/themes/base/ui.tabs.css create mode 100644 media/js/development-bundle/themes/base/ui.theme.css create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png create mode 100644 media/js/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png create mode 100644 media/js/development-bundle/themes/ui-lightness/jquery-ui-1.7.2.custom.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.accordion.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.all.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.base.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.core.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.datepicker.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.dialog.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.progressbar.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.resizable.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.slider.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.tabs.css create mode 100644 media/js/development-bundle/themes/ui-lightness/ui.theme.css create mode 100644 media/js/development-bundle/ui/effects.blind.js create mode 100644 media/js/development-bundle/ui/effects.bounce.js create mode 100644 media/js/development-bundle/ui/effects.clip.js create mode 100644 media/js/development-bundle/ui/effects.core.js create mode 100644 media/js/development-bundle/ui/effects.drop.js create mode 100644 media/js/development-bundle/ui/effects.explode.js create mode 100644 media/js/development-bundle/ui/effects.fold.js create mode 100644 media/js/development-bundle/ui/effects.highlight.js create mode 100644 media/js/development-bundle/ui/effects.pulsate.js create mode 100644 media/js/development-bundle/ui/effects.scale.js create mode 100644 media/js/development-bundle/ui/effects.shake.js create mode 100644 media/js/development-bundle/ui/effects.slide.js create mode 100644 media/js/development-bundle/ui/effects.transfer.js create mode 100644 media/js/development-bundle/ui/i18n/jquery-ui-i18n.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-ar.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-bg.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-ca.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-cs.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-da.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-de.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-el.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-eo.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-es.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-fa.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-fi.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-fr.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-he.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-hr.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-hu.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-hy.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-id.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-is.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-it.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-ja.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-ko.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-lt.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-lv.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-ms.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-nl.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-no.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-pl.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-pt-BR.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-ro.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-ru.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-sk.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-sl.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-sq.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-sr-SR.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-sr.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-sv.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-th.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-tr.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-uk.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-zh-CN.js create mode 100644 media/js/development-bundle/ui/i18n/ui.datepicker-zh-TW.js create mode 100644 media/js/development-bundle/ui/jquery-ui-1.7.2.custom.js create mode 100644 media/js/development-bundle/ui/ui.accordion.js create mode 100644 media/js/development-bundle/ui/ui.core.js create mode 100644 media/js/development-bundle/ui/ui.datepicker.js create mode 100644 media/js/development-bundle/ui/ui.dialog.js create mode 100644 media/js/development-bundle/ui/ui.draggable.js create mode 100644 media/js/development-bundle/ui/ui.droppable.js create mode 100644 media/js/development-bundle/ui/ui.progressbar.js create mode 100644 media/js/development-bundle/ui/ui.resizable.js create mode 100644 media/js/development-bundle/ui/ui.selectable.js create mode 100644 media/js/development-bundle/ui/ui.slider.js create mode 100644 media/js/development-bundle/ui/ui.sortable.js create mode 100644 media/js/development-bundle/ui/ui.tabs.js create mode 100644 media/js/development-bundle/version.txt create mode 100644 media/js/gmaps.CircleOverlay.js create mode 100644 media/js/index.html create mode 100644 media/js/index_progbar.html create mode 100644 media/js/jqbrowser-compressed.js create mode 100644 media/js/jquery-1.3.2.min.js create mode 100644 media/js/jquery-ui-1.7.2.custom.min.js create mode 100644 media/js/jquery.autocomplete.js create mode 100644 media/js/jquery.autocomplete.min.js create mode 100644 media/js/jquery.autocomplete.pack.js create mode 100644 media/js/jquery.ba-dotimeout.js create mode 100644 media/js/jquery.ba-dotimeout.min.js create mode 100644 media/js/jquery.countdown.css create mode 100644 media/js/jquery.countdown.js create mode 100644 media/js/jquery.countdown.min.js create mode 100644 media/js/jquery.countdown.pack.js create mode 100644 media/js/jquery.progressbar/demo.php create mode 100644 media/js/jquery.progressbar/demo.txt create mode 100644 media/js/jquery.progressbar/js/jquery.js create mode 100644 media/js/jquery.progressbar/js/jquery.progressbar.js create mode 100644 media/js/jquery.progressbar/js/jquery.progressbar.min.js create mode 100644 media/js/jquery.qtip-1.0.0-rc3.min.js create mode 100644 media/js/jquery.tagbox.js create mode 100644 media/js/jquery.watermarkinput.js create mode 100644 media/js/massivecoupon.js create mode 100644 media/js/multiup/documentation.css create mode 100644 media/js/multiup/documentation.js create mode 100644 media/js/multiup/index.html create mode 100644 media/js/multiup/jquery.MetaData.js create mode 100644 media/js/multiup/jquery.MultiFile.js create mode 100644 media/js/multiup/jquery.MultiFile.pack.js create mode 100644 media/js/multiup/jquery.blockUI.js create mode 100644 media/js/multiup/jquery.form.js create mode 100644 media/js/multiup/jquery.js create mode 100644 media/js/uploadify/Uploadify v2.1.0 Manual.pdf create mode 100644 media/js/uploadify/cancel.png create mode 100644 media/js/uploadify/check.php create mode 100644 media/js/uploadify/com/adobe/air/logging/FileTarget.as create mode 100644 media/js/uploadify/com/adobe/crypto/HMAC.as create mode 100644 media/js/uploadify/com/adobe/crypto/MD5.as create mode 100644 media/js/uploadify/com/adobe/crypto/MD5Stream.as create mode 100644 media/js/uploadify/com/adobe/crypto/SHA1.as create mode 100644 media/js/uploadify/com/adobe/crypto/SHA224.as create mode 100644 media/js/uploadify/com/adobe/crypto/SHA256.as create mode 100644 media/js/uploadify/com/adobe/crypto/WSSEUsernameToken.as create mode 100644 media/js/uploadify/com/adobe/errors/IllegalStateError.as create mode 100644 media/js/uploadify/com/adobe/fileformats/vcard/Address.as create mode 100644 media/js/uploadify/com/adobe/fileformats/vcard/Email.as create mode 100644 media/js/uploadify/com/adobe/fileformats/vcard/Phone.as create mode 100644 media/js/uploadify/com/adobe/fileformats/vcard/VCard.as create mode 100644 media/js/uploadify/com/adobe/fileformats/vcard/VCardParser.as create mode 100644 media/js/uploadify/com/adobe/images/BitString.as create mode 100644 media/js/uploadify/com/adobe/images/JPGEncoder.as create mode 100644 media/js/uploadify/com/adobe/images/PNGEncoder.as create mode 100644 media/js/uploadify/com/adobe/net/DynamicURLLoader.as create mode 100644 media/js/uploadify/com/adobe/net/IURIResolver.as create mode 100644 media/js/uploadify/com/adobe/net/MimeTypeMap.as create mode 100644 media/js/uploadify/com/adobe/net/URI.as create mode 100644 media/js/uploadify/com/adobe/net/URIEncodingBitmap.as create mode 100644 media/js/uploadify/com/adobe/net/proxies/RFC2817Socket.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/Database.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/Definition.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/Dict.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/DictionaryServer.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/MatchStrategy.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/Response.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/events/ConnectedEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/events/DatabaseEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/events/DefinitionEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/events/DefinitionHeaderEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/events/DisconnectedEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/events/ErrorEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/events/MatchEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/events/MatchStrategiesEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/events/NoMatchEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/util/CompleteResponseEvent.as create mode 100644 media/js/uploadify/com/adobe/protocols/dict/util/SocketHelper.as create mode 100644 media/js/uploadify/com/adobe/serialization/json/JSON.as create mode 100644 media/js/uploadify/com/adobe/serialization/json/JSONDecoder.as create mode 100644 media/js/uploadify/com/adobe/serialization/json/JSONEncoder.as create mode 100644 media/js/uploadify/com/adobe/serialization/json/JSONParseError.as create mode 100644 media/js/uploadify/com/adobe/serialization/json/JSONToken.as create mode 100644 media/js/uploadify/com/adobe/serialization/json/JSONTokenType.as create mode 100644 media/js/uploadify/com/adobe/serialization/json/JSONTokenizer.as create mode 100644 media/js/uploadify/com/adobe/utils/ArrayUtil.as create mode 100644 media/js/uploadify/com/adobe/utils/DateUtil.as create mode 100644 media/js/uploadify/com/adobe/utils/DictionaryUtil.as create mode 100644 media/js/uploadify/com/adobe/utils/IntUtil.as create mode 100644 media/js/uploadify/com/adobe/utils/NumberFormatter.as create mode 100644 media/js/uploadify/com/adobe/utils/StringUtil.as create mode 100644 media/js/uploadify/com/adobe/utils/XMLUtil.as create mode 100644 media/js/uploadify/com/adobe/webapis/ServiceBase.as create mode 100644 media/js/uploadify/com/adobe/webapis/URLLoaderBase.as create mode 100644 media/js/uploadify/com/adobe/webapis/events/ServiceEvent.as create mode 100644 media/js/uploadify/example/_notes/dwsync.xml create mode 100644 media/js/uploadify/example/cancel.png create mode 100644 media/js/uploadify/example/css/_notes/dwsync.xml create mode 100644 media/js/uploadify/example/css/default.css create mode 100644 media/js/uploadify/example/css/uploadify.css create mode 100644 media/js/uploadify/example/index.php create mode 100644 media/js/uploadify/example/scripts/_notes/dwsync.xml create mode 100644 media/js/uploadify/example/scripts/check.php create mode 100644 media/js/uploadify/example/scripts/expressInstall.swf create mode 100644 media/js/uploadify/example/scripts/jquery-1.3.2.min.js create mode 100644 media/js/uploadify/example/scripts/jquery.uploadify.v2.1.0.min.js create mode 100644 media/js/uploadify/example/scripts/swfobject.js create mode 100644 media/js/uploadify/example/scripts/uploadify.php create mode 100644 media/js/uploadify/example/scripts/uploadify.swf create mode 100644 media/js/uploadify/expressInstall.swf create mode 100644 media/js/uploadify/jquery-1.3.2.min.js create mode 100644 media/js/uploadify/jquery.uploadify-v2.1.0.zip create mode 100644 media/js/uploadify/jquery.uploadify.js create mode 100644 media/js/uploadify/jquery.uploadify.min.js create mode 100644 media/js/uploadify/jquery.uploadify.v2.1.0.js create mode 100644 media/js/uploadify/swfobject.js create mode 100644 media/js/uploadify/uploadify.allglyphs.swf create mode 100644 media/js/uploadify/uploadify.css create mode 100644 media/js/uploadify/uploadify.fla create mode 100644 media/js/uploadify/uploadify.php create mode 100644 media/js/uploadify/uploadify.swf create mode 100644 paypalxpress/.svn/all-wcprops create mode 100644 paypalxpress/.svn/entries create mode 100644 paypalxpress/.svn/format create mode 100644 paypalxpress/.svn/prop-base/__init__.py.svn-base create mode 100644 paypalxpress/.svn/prop-base/admin.py.svn-base create mode 100644 paypalxpress/.svn/prop-base/driver.py.svn-base create mode 100644 paypalxpress/.svn/prop-base/models.py.svn-base create mode 100644 paypalxpress/.svn/prop-base/utils.py.svn-base create mode 100644 paypalxpress/.svn/prop-base/views.py.svn-base create mode 100644 paypalxpress/.svn/text-base/__init__.py.svn-base create mode 100644 paypalxpress/.svn/text-base/admin.py.svn-base create mode 100644 paypalxpress/.svn/text-base/driver.py.svn-base create mode 100644 paypalxpress/.svn/text-base/models.py.svn-base create mode 100644 paypalxpress/.svn/text-base/utils.py.svn-base create mode 100644 paypalxpress/.svn/text-base/views.py.svn-base create mode 100755 paypalxpress/__init__.py create mode 100755 paypalxpress/__init__.pyc create mode 100755 paypalxpress/admin.py create mode 100755 paypalxpress/admin.pyc create mode 100755 paypalxpress/driver.py create mode 100755 paypalxpress/driver.pyc create mode 100755 paypalxpress/models.py create mode 100755 paypalxpress/models.pyc create mode 100755 paypalxpress/utils.py create mode 100755 paypalxpress/views.py create mode 100644 photologue/__init__.py create mode 100644 photologue/__init__.pyc create mode 100644 photologue/admin.py create mode 100644 photologue/admin.pyc create mode 100644 photologue/locale/pl/LC_MESSAGES/django.mo create mode 100644 photologue/locale/pl/LC_MESSAGES/django.po create mode 100644 photologue/management/__init__.py create mode 100644 photologue/management/__init__.pyc create mode 100644 photologue/management/commands/__init__.py create mode 100644 photologue/management/commands/plcache.py create mode 100644 photologue/management/commands/plcreatesize.py create mode 100644 photologue/management/commands/plflush.py create mode 100644 photologue/management/commands/plinit.py create mode 100644 photologue/models.py create mode 100644 photologue/models.pyc create mode 100644 photologue/res/sample.jpg create mode 100644 photologue/res/test_landscape.jpg create mode 100644 photologue/res/test_portrait.jpg create mode 100644 photologue/res/test_square.jpg create mode 100644 photologue/templates/photologue/gallery_archive.html create mode 100644 photologue/templates/photologue/gallery_archive_day.html create mode 100644 photologue/templates/photologue/gallery_archive_month.html create mode 100644 photologue/templates/photologue/gallery_archive_year.html create mode 100644 photologue/templates/photologue/gallery_detail.html create mode 100644 photologue/templates/photologue/gallery_list.html create mode 100644 photologue/templates/photologue/photo_archive.html create mode 100644 photologue/templates/photologue/photo_archive_day.html create mode 100644 photologue/templates/photologue/photo_archive_month.html create mode 100644 photologue/templates/photologue/photo_archive_year.html create mode 100644 photologue/templates/photologue/photo_detail.html create mode 100644 photologue/templates/photologue/photo_list.html create mode 100644 photologue/templates/photologue/root.html create mode 100644 photologue/templates/photologue/tags/next_in_gallery.html create mode 100644 photologue/templates/photologue/tags/prev_in_gallery.html create mode 100644 photologue/templatetags/__init__.py create mode 100644 photologue/templatetags/__init__.pyc create mode 100644 photologue/templatetags/photologue_tags.py create mode 100644 photologue/tests.py create mode 100644 photologue/urls.py create mode 100644 photologue/utils/EXIF.py create mode 100644 photologue/utils/EXIF.pyc create mode 100644 photologue/utils/__init__.py create mode 100644 photologue/utils/__init__.pyc create mode 100644 photologue/utils/reflection.py create mode 100644 photologue/utils/reflection.pyc create mode 100644 photologue/utils/watermark.py create mode 100644 photologue/utils/watermark.pyc create mode 100644 run-debug.sh create mode 100644 settings.py create mode 100644 socialregistration/__init__.py create mode 100644 socialregistration/__init__.pyc create mode 100644 socialregistration/admin.py create mode 100644 socialregistration/admin.pyc create mode 100644 socialregistration/auth.py create mode 100644 socialregistration/auth.pyc create mode 100644 socialregistration/forms.py create mode 100644 socialregistration/forms.pyc create mode 100644 socialregistration/middleware.py create mode 100644 socialregistration/middleware.pyc create mode 100644 socialregistration/models.py create mode 100644 socialregistration/models.pyc create mode 100644 socialregistration/templates/socialregistration/facebook.html create mode 100644 socialregistration/templates/socialregistration/facebook_button.html create mode 100644 socialregistration/templates/socialregistration/facebook_js.html create mode 100644 socialregistration/templates/socialregistration/friendfeed_button.html create mode 100644 socialregistration/templates/socialregistration/openid.html create mode 100644 socialregistration/templates/socialregistration/openid_form.html create mode 100644 socialregistration/templates/socialregistration/setup.html create mode 100644 socialregistration/templates/socialregistration/twitter_button.html create mode 100644 socialregistration/templates/socialregistration/xd_receiver.html create mode 100644 socialregistration/templates/socialregistration/xd_receiver.html.fb create mode 100644 socialregistration/templatetags/__init__.py create mode 100644 socialregistration/templatetags/__init__.pyc create mode 100644 socialregistration/templatetags/facebook_tags.py create mode 100644 socialregistration/templatetags/facebook_tags.pyc create mode 100644 socialregistration/templatetags/friendfeed_tags.py create mode 100644 socialregistration/templatetags/openid_tags.py create mode 100644 socialregistration/templatetags/twitter_tags.py create mode 100644 socialregistration/tests.py create mode 100644 socialregistration/urls.py create mode 100644 socialregistration/utils.py create mode 100644 socialregistration/utils.pyc create mode 100644 socialregistration/views.py create mode 100644 socialregistration/views.pyc create mode 100644 tagging/__init__.py create mode 100644 tagging/__init__.pyc create mode 100644 tagging/admin.py create mode 100644 tagging/admin.pyc create mode 100644 tagging/fields.py create mode 100644 tagging/fields.pyc create mode 100644 tagging/forms.py create mode 100644 tagging/forms.pyc create mode 100644 tagging/generic.py create mode 100644 tagging/managers.py create mode 100644 tagging/managers.pyc create mode 100644 tagging/models.py create mode 100644 tagging/models.pyc create mode 100644 tagging/settings.py create mode 100644 tagging/settings.pyc create mode 100644 tagging/templatetags/__init__.py create mode 100644 tagging/templatetags/__init__.pyc create mode 100644 tagging/templatetags/tagging_tags.py create mode 100644 tagging/tests/__init__.py create mode 100644 tagging/tests/models.py create mode 100644 tagging/tests/settings.py create mode 100644 tagging/tests/tags.txt create mode 100644 tagging/tests/tests.py create mode 100644 tagging/utils.py create mode 100644 tagging/utils.pyc create mode 100644 tagging/views.py create mode 100644 templates/404.html create mode 100644 templates/500.html create mode 100644 templates/aboutus.html create mode 100644 templates/base.html create mode 100644 templates/bid.html create mode 100644 templates/contactus.html create mode 100644 templates/deal_checkout.html create mode 100644 templates/deal_checkout.html.old create mode 100644 templates/deal_detail.html create mode 100644 templates/deal_detail.html.good create mode 100644 templates/deal_detail.html.old create mode 100644 templates/email_subscribe.html create mode 100644 templates/faq.html create mode 100644 templates/footer.html create mode 100644 templates/footer.html.bak create mode 100644 templates/header.html create mode 100644 templates/howitworks.html create mode 100644 templates/terms.html create mode 100644 templates/user_login.html create mode 100644 templates/user_logout.html create mode 100644 templates/user_signup.html create mode 100644 urls.py diff --git a/README b/README new file mode 100644 index 0000000..e69de29 diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backends.py b/backends.py new file mode 100644 index 0000000..4afcedd --- /dev/null +++ b/backends.py @@ -0,0 +1,22 @@ +from django.conf import settings +from django.contrib.auth.models import User + +class EmailOrUsernameModelBackend(object): + def authenticate(self, username=None, password=None): + if '@' in username: + kwargs = {'email': username} + else: + kwargs = {'username': username} + try: + user = User.objects.get(**kwargs) + if user.check_password(password): + return user + except User.DoesNotExist: + return None + + def get_user(self, user_id): + try: + return User.objects.get(pk=user_id) + except User.DoesNotExist: + return None + diff --git a/countries/.svn/all-wcprops b/countries/.svn/all-wcprops new file mode 100644 index 0000000..e360f9e --- /dev/null +++ b/countries/.svn/all-wcprops @@ -0,0 +1,17 @@ +K 25 +svn:wc:ra_dav:version-url +V 31 +/svn/!svn/ver/2/trunk/countries +END +__init__.py +K 25 +svn:wc:ra_dav:version-url +V 43 +/svn/!svn/ver/2/trunk/countries/__init__.py +END +models.py +K 25 +svn:wc:ra_dav:version-url +V 41 +/svn/!svn/ver/2/trunk/countries/models.py +END diff --git a/countries/.svn/entries b/countries/.svn/entries new file mode 100644 index 0000000..76a6843 --- /dev/null +++ b/countries/.svn/entries @@ -0,0 +1,105 @@ +9 + +dir +4 +http://django-countries.googlecode.com/svn/trunk/countries +http://django-countries.googlecode.com/svn + + + +2007-08-22T15:13:42.143324Z +2 +zodizz + + +svn:special svn:externals svn:needs-lock + + + + + + + + + + + +9723214f-3838-0410-87e3-5b3a9cbdf46e + +utils +dir + +__init__.py +file + + + + +2009-10-17T18:14:44.000000Z +d41d8cd98f00b204e9800998ecf8427e +2007-08-22T15:13:42.143324Z +2 +zodizz + + + + + + + + + + + + + + + + + + + + + +0 + +fixtures +dir + +templatetags +dir + +models.py +file + + + + +2009-10-17T18:14:44.000000Z +18eb974f9ce8770afafe42cfabfeb01d +2007-08-22T15:13:42.143324Z +2 +zodizz + + + + + + + + + + + + + + + + + + + + + +2098 + diff --git a/countries/.svn/format b/countries/.svn/format new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/countries/.svn/format @@ -0,0 +1 @@ +9 diff --git a/countries/.svn/text-base/__init__.py.svn-base b/countries/.svn/text-base/__init__.py.svn-base new file mode 100644 index 0000000..e69de29 diff --git a/countries/.svn/text-base/models.py.svn-base b/countries/.svn/text-base/models.py.svn-base new file mode 100644 index 0000000..2eea937 --- /dev/null +++ b/countries/.svn/text-base/models.py.svn-base @@ -0,0 +1,65 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +from django.db import models +from django.utils.translation import ugettext_lazy as _ + +class Country(models.Model): + """ + International Organization for Standardization (ISO) 3166-1 Country list + + * ``iso`` = ISO 3166-1 alpha-2 + * ``name`` = Official country names used by the ISO 3166/MA in capital letters + * ``printable_name`` = Printable country names for in-text use + * ``iso3`` = ISO 3166-1 alpha-3 + * ``numcode`` = ISO 3166-1 numeric + + Note:: + This model is fixed to the database table 'country' to be more general. + Change ``db_table`` if this cause conflicts with your database layout. + Or comment out the line for default django behaviour. + + """ + iso = models.CharField(_('ISO alpha-2'), max_length=2, primary_key=True) + name = models.CharField(_('Official name (CAPS)'), max_length=128) + printable_name = models.CharField(_('Country name'), max_length=128) + iso3 = models.CharField(_('ISO alpha-3'), max_length=3, null=True) + numcode = models.PositiveSmallIntegerField(_('ISO numeric'), null=True) + + class Meta: + db_table = 'country' + verbose_name = _('Country') + verbose_name_plural = _('Countries') + ordering = ('name',) + + class Admin: + list_display = ('printable_name', 'iso',) + + def __unicode__(self): + return self.printable_name + + +class UsState(models.Model): + """ + United States Postal Service (USPS) State Abbreviations + + Note:: + This model is fixed to the database table 'usstate' to be more general. + Change ``db_table`` if this cause conflicts with your database layout. + Or comment out the line for default django behaviour. + + """ + id = models.AutoField(primary_key=True) + name = models.CharField(_('State name'), max_length=50, null=False) + abbrev = models.CharField(_('Abbreviation'), max_length=2, null=False) + + class Meta: + db_table = 'usstate' + verbose_name = _('US State') + verbose_name_plural = _('US States') + ordering = ('name',) + + class Admin: + list_display = ('name', 'abbrev',) + + def __unicode__(self): + return self.name diff --git a/countries/__init__.py b/countries/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/countries/__init__.pyc b/countries/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7a001b9ff46140df75569958b4c397b3b68894a8 GIT binary patch literal 148 zcmcckiI?jQZ;N*_0~9a9^vlc3^>Y)8 zi!;kolk-ap^7Hid^w0!=;&~-SnW@G4@$s2?nI-Y@dIgmw96%Fna`RJ4b5iX<_7np# F0|2qnBDw$o literal 0 HcmV?d00001 diff --git a/countries/admin.py b/countries/admin.py new file mode 100644 index 0000000..ed71b32 --- /dev/null +++ b/countries/admin.py @@ -0,0 +1,7 @@ +from django.contrib import admin +from models import * + +class CountryAdmin(admin.ModelAdmin): + """admin class""" +admin.site.register(Country, CountryAdmin) + diff --git a/countries/admin.pyc b/countries/admin.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ffdcf10d2210fc823cdbdc2368438771e62d4f3a GIT binary patch literal 554 zcmbu5y-ve05XaAM+M+@cD;s0Pkn9K{J~j{xDGOb!5Sz+0iL2OY)VX~@-h+u3fV*o& zC04B5<^E^g-Ou;&H6DGAHxC8uP9Oi*X#O6Z#!tW;pcF6_AV^D?OL*2jFam53-UR3f zHUMjYmubY=KG*@6A(#l(607OE2C5xv8bGGOOivD+7(L07{cE9 z3zX?HZ_=*o(h9rTr72vyaCMp_e-fBST5EjD)04$2lUN?1c?t&NDJG0S;QBqUXD%rm zmAqz{fk10PC{ubSe58=y&V2$mvcd3M8Z)y#n1 GQ~3iUpnTf^ literal 0 HcmV?d00001 diff --git a/countries/fixtures/.svn/all-wcprops b/countries/fixtures/.svn/all-wcprops new file mode 100644 index 0000000..8844477 --- /dev/null +++ b/countries/fixtures/.svn/all-wcprops @@ -0,0 +1,17 @@ +K 25 +svn:wc:ra_dav:version-url +V 40 +/svn/!svn/ver/2/trunk/countries/fixtures +END +initial_data.xml +K 25 +svn:wc:ra_dav:version-url +V 57 +/svn/!svn/ver/2/trunk/countries/fixtures/initial_data.xml +END +UPDATED.txt +K 25 +svn:wc:ra_dav:version-url +V 52 +/svn/!svn/ver/2/trunk/countries/fixtures/UPDATED.txt +END diff --git a/countries/fixtures/.svn/entries b/countries/fixtures/.svn/entries new file mode 100644 index 0000000..0270ed7 --- /dev/null +++ b/countries/fixtures/.svn/entries @@ -0,0 +1,96 @@ +9 + +dir +4 +http://django-countries.googlecode.com/svn/trunk/countries/fixtures +http://django-countries.googlecode.com/svn + + + +2007-08-22T15:13:42.143324Z +2 +zodizz + + +svn:special svn:externals svn:needs-lock + + + + + + + + + + + +9723214f-3838-0410-87e3-5b3a9cbdf46e + +initial_data.xml +file + + + + +2009-10-17T18:14:44.000000Z +3cee44bb24b081b1052ae36f5d6a78c8 +2007-08-22T15:13:42.143324Z +2 +zodizz + + + + + + + + + + + + + + + + + + + + + +94250 + +UPDATED.txt +file + + + + +2009-10-17T18:14:44.000000Z +c34787ec277a044bf1c28ebf2c4156a2 +2007-08-22T15:13:42.143324Z +2 +zodizz + + + + + + + + + + + + + + + + + + + + + +502 + diff --git a/countries/fixtures/.svn/format b/countries/fixtures/.svn/format new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/countries/fixtures/.svn/format @@ -0,0 +1 @@ +9 diff --git a/countries/fixtures/.svn/text-base/UPDATED.txt.svn-base b/countries/fixtures/.svn/text-base/UPDATED.txt.svn-base new file mode 100644 index 0000000..9c80473 --- /dev/null +++ b/countries/fixtures/.svn/text-base/UPDATED.txt.svn-base @@ -0,0 +1,21 @@ +========================================= +Django Countries initial_data.xml Fixture +========================================= + +Country list +------------ + +Last updated: 2007-08-20 - 244 countries. + +From these two resources: + - http://www.iso.ch/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/index.html + - http://unstats.un.org/unsd/methods/m49/m49alpha.htm + + +US States +--------- + +List last updated: 2007-08-20 - 59+6=65 states + +From: + - http://www.usps.com/ncsc/lookups/usps_abbreviations.html diff --git a/countries/fixtures/.svn/text-base/initial_data.xml.svn-base b/countries/fixtures/.svn/text-base/initial_data.xml.svn-base new file mode 100644 index 0000000..029c556 --- /dev/null +++ b/countries/fixtures/.svn/text-base/initial_data.xml.svn-base @@ -0,0 +1,1728 @@ + + + + AFGHANISTAN + Afghanistan + AFG + 4 + + + ALAND ISLANDS + Åland Islands + ALA + 248 + + + ALBANIA + Albania + ALB + 8 + + + ALGERIA + Algeria + DZA + 12 + + + AMERICAN SAMOA + American Samoa + ASM + 16 + + + ANDORRA + Andorra + AND + 20 + + + ANGOLA + Angola + AGO + 24 + + + ANGUILLA + Anguilla + AIA + 660 + + + ANTARCTICA + Antarctica + ATA + 10 + + + ANTIGUA AND BARBUDA + Antigua and Barbuda + ATG + 28 + + + ARGENTINA + Argentina + ARG + 32 + + + ARMENIA + Armenia + ARM + 51 + + + ARUBA + Aruba + ABW + 533 + + + AUSTRALIA + Australia + AUS + 36 + + + AUSTRIA + Austria + AUT + 40 + + + AZERBAIJAN + Azerbaijan + AZE + 31 + + + BAHAMAS + Bahamas + BHS + 44 + + + BAHRAIN + Bahrain + BHR + 48 + + + BANGLADESH + Bangladesh + BGD + 50 + + + BARBADOS + Barbados + BRB + 52 + + + BELARUS + Belarus + BLR + 112 + + + BELGIUM + Belgium + BEL + 56 + + + BELIZE + Belize + BLZ + 84 + + + BENIN + Benin + BEN + 204 + + + BERMUDA + Bermuda + BMU + 60 + + + BHUTAN + Bhutan + BTN + 64 + + + BOLIVIA + Bolivia + BOL + 68 + + + BOSNIA AND HERZEGOVINA + Bosnia and Herzegovina + BIH + 70 + + + BOTSWANA + Botswana + BWA + 72 + + + BOUVET ISLAND + Bouvet Island + BVT + 74 + + + BRAZIL + Brazil + BRA + 76 + + + BRITISH INDIAN OCEAN TERRITORY + British Indian Ocean Territory + IOT + 86 + + + BRUNEI DARUSSALAM + Brunei Darussalam + BRN + 96 + + + BULGARIA + Bulgaria + BGR + 100 + + + BURKINA FASO + Burkina Faso + BFA + 854 + + + BURUNDI + Burundi + BDI + 108 + + + CAMBODIA + Cambodia + KHM + 116 + + + CAMEROON + Cameroon + CMR + 120 + + + CANADA + Canada + CAN + 124 + + + CAPE VERDE + Cape Verde + CPV + 132 + + + CAYMAN ISLANDS + Cayman Islands + CYM + 136 + + + CENTRAL AFRICAN REPUBLIC + Central African Republic + CAF + 140 + + + CHAD + Chad + TCD + 148 + + + CHILE + Chile + CHL + 152 + + + CHINA + China + CHN + 156 + + + CHRISTMAS ISLAND + Christmas Island + CXR + 162 + + + COCOS (KEELING) ISLANDS + Cocos (Keeling) Islands + CCK + 166 + + + COLOMBIA + Colombia + COL + 170 + + + COMOROS + Comoros + COM + 174 + + + CONGO + Congo + COG + 178 + + + CONGO, THE DEMOCRATIC REPUBLIC OF THE + Democratic Republic of the Congo + COD + 180 + + + COOK ISLANDS + Cook Islands + COK + 184 + + + COSTA RICA + Costa Rica + CRI + 188 + + + COTE D'IVOIRE + Côte d'Ivoire + CIV + 384 + + + CROATIA + Croatia + HRV + 191 + + + CUBA + Cuba + CUB + 192 + + + CYPRUS + Cyprus + CYP + 196 + + + CZECH REPUBLIC + Czech Republic + CZE + 203 + + + DENMARK + Denmark + DNK + 208 + + + DJIBOUTI + Djibouti + DJI + 262 + + + DOMINICA + Dominica + DMA + 212 + + + DOMINICAN REPUBLIC + Dominican Republic + DOM + 214 + + + ECUADOR + Ecuador + ECU + 218 + + + EGYPT + Egypt + EGY + 818 + + + EL SALVADOR + El Salvador + SLV + 222 + + + EQUATORIAL GUINEA + Equatorial Guinea + GNQ + 226 + + + ERITREA + Eritrea + ERI + 232 + + + ESTONIA + Estonia + EST + 233 + + + ETHIOPIA + Ethiopia + ETH + 231 + + + FALKLAND ISLANDS (MALVINAS) + Falkland Islands (Malvinas) + FLK + 238 + + + FAROE ISLANDS + Faeroe Islands + FRO + 234 + + + FIJI + Fiji + FJI + 242 + + + FINLAND + Finland + FIN + 246 + + + FRANCE + France + FRA + 250 + + + FRENCH GUIANA + French Guiana + GUF + 254 + + + FRENCH POLYNESIA + French Polynesia + PYF + 258 + + + FRENCH SOUTHERN TERRITORIES + French Southern Territories + ATF + 260 + + + GABON + Gabon + GAB + 266 + + + GAMBIA + Gambia + GMB + 270 + + + GEORGIA + Georgia + GEO + 268 + + + GERMANY + Germany + DEU + 276 + + + GHANA + Ghana + GHA + 288 + + + GIBRALTAR + Gibraltar + GIB + 292 + + + GREECE + Greece + GRC + 300 + + + GREENLAND + Greenland + GRL + 304 + + + GRENADA + Grenada + GRD + 308 + + + GUADELOUPE + Guadeloupe + GLP + 312 + + + GUAM + Guam + GUM + 316 + + + GUATEMALA + Guatemala + GTM + 320 + + + GUERNSEY + Guernsey + GGY + 831 + + + GUINEA + Guinea + GIN + 324 + + + GUINEA-BISSAU + Guinea-Bissau + GNB + 624 + + + GUYANA + Guyana + GUY + 328 + + + HAITI + Haiti + HTI + 332 + + + HEARD ISLAND AND MCDONALD ISLANDS + Heard Island and Mcdonald Islands + HMD + 334 + + + HOLY SEE (VATICAN CITY STATE) + Holy See + VAT + 336 + + + HONDURAS + Honduras + HND + 340 + + + HONG KONG + Hong Kong Special Administrative Region of China + HKG + 344 + + + HUNGARY + Hungary + HUN + 348 + + + ICELAND + Iceland + ISL + 352 + + + INDIA + India + IND + 356 + + + INDONESIA + Indonesia + IDN + 360 + + + IRAN, ISLAMIC REPUBLIC OF + Iran, Islamic Republic of + IRN + 364 + + + IRAQ + Iraq + IRQ + 368 + + + IRELAND + Ireland + IRL + 372 + + + ISLE OF MAN + Isle of Man + IMN + 833 + + + ISRAEL + Israel + ISR + 376 + + + ITALY + Italy + ITA + 380 + + + JAMAICA + Jamaica + JAM + 388 + + + JAPAN + Japan + JPN + 392 + + + JERSEY + Jersey + JEY + 832 + + + JORDAN + Jordan + JOR + 400 + + + KAZAKHSTAN + Kazakhstan + KAZ + 398 + + + KENYA + Kenya + KEN + 404 + + + KIRIBATI + Kiribati + KIR + 296 + + + KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF + Democratic People's Republic of Korea + PRK + 408 + + + KOREA, REPUBLIC OF + Republic of Korea + KOR + 410 + + + KUWAIT + Kuwait + KWT + 414 + + + KYRGYZSTAN + Kyrgyzstan + KGZ + 417 + + + LAO PEOPLE'S DEMOCRATIC REPUBLIC + Lao People's Democratic Republic + LAO + 418 + + + LATVIA + Latvia + LVA + 428 + + + LEBANON + Lebanon + LBN + 422 + + + LESOTHO + Lesotho + LSO + 426 + + + LIBERIA + Liberia + LBR + 430 + + + LIBYAN ARAB JAMAHIRIYA + Libyan Arab Jamahiriya + LBY + 434 + + + LIECHTENSTEIN + Liechtenstein + LIE + 438 + + + LITHUANIA + Lithuania + LTU + 440 + + + LUXEMBOURG + Luxembourg + LUX + 442 + + + MACAO + Macao Special Administrative Region of China + MAC + 446 + + + MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF + The former Yugoslav Republic of Macedonia + MKD + 807 + + + MADAGASCAR + Madagascar + MDG + 450 + + + MALAWI + Malawi + MWI + 454 + + + MALAYSIA + Malaysia + MYS + 458 + + + MALDIVES + Maldives + MDV + 462 + + + MALI + Mali + MLI + 466 + + + MALTA + Malta + MLT + 470 + + + MARSHALL ISLANDS + Marshall Islands + MHL + 584 + + + MARTINIQUE + Martinique + MTQ + 474 + + + MAURITANIA + Mauritania + MRT + 478 + + + MAURITIUS + Mauritius + MUS + 480 + + + MAYOTTE + Mayotte + MYT + 175 + + + MEXICO + Mexico + MEX + 484 + + + MICRONESIA, FEDERATED STATES OF + Micronesia, Federated States of + FSM + 583 + + + MOLDOVA, REPUBLIC OF + Republic of Moldova + MDA + 498 + + + MONACO + Monaco + MCO + 492 + + + MONGOLIA + Mongolia + MNG + 496 + + + MONTENEGRO + Montenegro + MNE + 499 + + + MONTSERRAT + Montserrat + MSR + 500 + + + MOROCCO + Morocco + MAR + 504 + + + MOZAMBIQUE + Mozambique + MOZ + 508 + + + MYANMAR + Myanmar + MMR + 104 + + + NAMIBIA + Namibia + NAM + 516 + + + NAURU + Nauru + NRU + 520 + + + NEPAL + Nepal + NPL + 524 + + + NETHERLANDS + Netherlands + NLD + 528 + + + NETHERLANDS ANTILLES + Netherlands Antilles + ANT + 530 + + + NEW CALEDONIA + New Caledonia + NCL + 540 + + + NEW ZEALAND + New Zealand + NZL + 554 + + + NICARAGUA + Nicaragua + NIC + 558 + + + NIGER + Niger + NER + 562 + + + NIGERIA + Nigeria + NGA + 566 + + + NIUE + Niue + NIU + 570 + + + NORFOLK ISLAND + Norfolk Island + NFK + 574 + + + NORTHERN MARIANA ISLANDS + Northern Mariana Islands + MNP + 580 + + + NORWAY + Norway + NOR + 578 + + + OMAN + Oman + OMN + 512 + + + PAKISTAN + Pakistan + PAK + 586 + + + PALAU + Palau + PLW + 585 + + + PALESTINIAN TERRITORY, OCCUPIED + Occupied Palestinian Territory + PSE + 275 + + + PANAMA + Panama + PAN + 591 + + + PAPUA NEW GUINEA + Papua New Guinea + PNG + 598 + + + PARAGUAY + Paraguay + PRY + 600 + + + PERU + Peru + PER + 604 + + + PHILIPPINES + Philippines + PHL + 608 + + + PITCAIRN + Pitcairn + PCN + 612 + + + POLAND + Poland + POL + 616 + + + PORTUGAL + Portugal + PRT + 620 + + + PUERTO RICO + Puerto Rico + PRI + 630 + + + QATAR + Qatar + QAT + 634 + + + REUNION + Réunion + REU + 638 + + + ROMANIA + Romania + ROU + 642 + + + RUSSIAN FEDERATION + Russian Federation + RUS + 643 + + + RWANDA + Rwanda + RWA + 646 + + + SAINT HELENA + Saint Helena + SHN + 654 + + + SAINT KITTS AND NEVIS + Saint Kitts and Nevis + KNA + 659 + + + SAINT LUCIA + Saint Lucia + LCA + 662 + + + SAINT PIERRE AND MIQUELON + Saint Pierre and Miquelon + SPM + 666 + + + SAINT VINCENT AND THE GRENADINES + Saint Vincent and the Grenadines + VCT + 670 + + + SAMOA + Samoa + WSM + 882 + + + SAN MARINO + San Marino + SMR + 674 + + + SAO TOME AND PRINCIPE + Sao Tome and Principe + STP + 678 + + + SAUDI ARABIA + Saudi Arabia + SAU + 682 + + + SENEGAL + Senegal + SEN + 686 + + + SERBIA + Serbia + SRB + 688 + + + SEYCHELLES + Seychelles + SYC + 690 + + + SIERRA LEONE + Sierra Leone + SLE + 694 + + + SINGAPORE + Singapore + SGP + 702 + + + SLOVAKIA + Slovakia + SVK + 703 + + + SLOVENIA + Slovenia + SVN + 705 + + + SOLOMON ISLANDS + Solomon Islands + SLB + 90 + + + SOMALIA + Somalia + SOM + 706 + + + SOUTH AFRICA + South Africa + ZAF + 710 + + + SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS + South Georgia and the South Sandwich Islands + SGS + 239 + + + SPAIN + Spain + ESP + 724 + + + SRI LANKA + Sri Lanka + LKA + 144 + + + SUDAN + Sudan + SDN + 736 + + + SURINAME + Suriname + SUR + 740 + + + SVALBARD AND JAN MAYEN + Svalbard and Jan Mayen Islands + SJM + 744 + + + SWAZILAND + Swaziland + SWZ + 748 + + + SWEDEN + Sweden + SWE + 752 + + + SWITZERLAND + Switzerland + CHE + 756 + + + SYRIAN ARAB REPUBLIC + Syrian Arab Republic + SYR + 760 + + + TAIWAN, PROVINCE OF CHINA + Taiwan, Province of China + TWN + 158 + + + TAJIKISTAN + Tajikistan + TJK + 762 + + + TANZANIA, UNITED REPUBLIC OF + United Republic of Tanzania + TZA + 834 + + + THAILAND + Thailand + THA + 764 + + + TIMOR-LESTE + Timor-Leste + TLS + 626 + + + TOGO + Togo + TGO + 768 + + + TOKELAU + Tokelau + TKL + 772 + + + TONGA + Tonga + TON + 776 + + + TRINIDAD AND TOBAGO + Trinidad and Tobago + TTO + 780 + + + TUNISIA + Tunisia + TUN + 788 + + + TURKEY + Turkey + TUR + 792 + + + TURKMENISTAN + Turkmenistan + TKM + 795 + + + TURKS AND CAICOS ISLANDS + Turks and Caicos Islands + TCA + 796 + + + TUVALU + Tuvalu + TUV + 798 + + + UGANDA + Uganda + UGA + 800 + + + UKRAINE + Ukraine + UKR + 804 + + + UNITED ARAB EMIRATES + United Arab Emirates + ARE + 784 + + + UNITED KINGDOM + United Kingdom of Great Britain and Northern Ireland + GBR + 826 + + + UNITED STATES + United States of America + USA + 840 + + + UNITED STATES MINOR OUTLYING ISLANDS + United States Minor Outlying Islands + UMI + 581 + + + URUGUAY + Uruguay + URY + 858 + + + UZBEKISTAN + Uzbekistan + UZB + 860 + + + VANUATU + Vanuatu + VUT + 548 + + + VENEZUELA + Venezuela (Bolivarian Republic of) + VEN + 862 + + + VIET NAM + Viet Nam + VNM + 704 + + + VIRGIN ISLANDS, BRITISH + British Virgin Islands + VGB + 92 + + + VIRGIN ISLANDS, U.S. + United States Virgin Islands + VIR + 850 + + + WALLIS AND FUTUNA + Wallis and Futuna Islands + WLF + 876 + + + WESTERN SAHARA + Western Sahara + ESH + 732 + + + YEMEN + Yemen + YEM + 887 + + + ZAMBIA + Zambia + ZMB + 894 + + + ZIMBABWE + Zimbabwe + ZWE + 716 + + + + Alabama + AL + + + Alaska + AK + + + American Samoa + AS + + + Arizona + AZ + + + Arkansas + AR + + + California + CA + + + Colorado + CO + + + Connecticut + CT + + + Delaware + DE + + + District of Columbia + DC + + + Federated States of Micronesia + FM + + + Florida + FL + + + Georgia + GA + + + Guam + GU + + + Hawaii + HI + + + Idaho + ID + + + Illinois + IL + + + Indiana + IN + + + Iowa + IA + + + Kansas + KS + + + Kentucky + KY + + + Louisiana + LA + + + Maine + ME + + + Marshall Islands + MH + + + Maryland + MD + + + Massachusetts + MA + + + Michigan + MI + + + Minnesota + MN + + + Mississippi + MS + + + Missouri + MO + + + Montana + MT + + + Nebraska + NE + + + Nevada + NV + + + New Hampshire + NH + + + New Jersey + NJ + + + New Mexico + NM + + + New York + NY + + + North Carolina + NC + + + North Dakota + ND + + + Northern Mariana Islands + MP + + + Ohio + OH + + + Oklahoma + OK + + + Oregon + OR + + + Palau + PW + + + Pennsylvania + PA + + + Puerto Rico + PR + + + Rhode Island + RI + + + South Carolina + SC + + + South Dakota + SD + + + Tennessee + TN + + + Texas + TX + + + Utah + UT + + + Vermont + VT + + + Virgin Islands + VI + + + Virginia + VA + + + Washington + WA + + + West Virginia + WV + + + Wisconsin + WI + + + Wyoming + WY + + + Armed Forces Africa + AE + + + Armed Forces Americas (except Canada) + AA + + + Armed Forces Canada + AE + + + Armed Forces Europe + AE + + + Armed Forces Middle East + AE + + + Armed Forces Pacific + AP + + diff --git a/countries/fixtures/UPDATED.txt b/countries/fixtures/UPDATED.txt new file mode 100644 index 0000000..9c80473 --- /dev/null +++ b/countries/fixtures/UPDATED.txt @@ -0,0 +1,21 @@ +========================================= +Django Countries initial_data.xml Fixture +========================================= + +Country list +------------ + +Last updated: 2007-08-20 - 244 countries. + +From these two resources: + - http://www.iso.ch/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/index.html + - http://unstats.un.org/unsd/methods/m49/m49alpha.htm + + +US States +--------- + +List last updated: 2007-08-20 - 59+6=65 states + +From: + - http://www.usps.com/ncsc/lookups/usps_abbreviations.html diff --git a/countries/fixtures/initial_data.xml b/countries/fixtures/initial_data.xml new file mode 100644 index 0000000..029c556 --- /dev/null +++ b/countries/fixtures/initial_data.xml @@ -0,0 +1,1728 @@ + + + + AFGHANISTAN + Afghanistan + AFG + 4 + + + ALAND ISLANDS + Åland Islands + ALA + 248 + + + ALBANIA + Albania + ALB + 8 + + + ALGERIA + Algeria + DZA + 12 + + + AMERICAN SAMOA + American Samoa + ASM + 16 + + + ANDORRA + Andorra + AND + 20 + + + ANGOLA + Angola + AGO + 24 + + + ANGUILLA + Anguilla + AIA + 660 + + + ANTARCTICA + Antarctica + ATA + 10 + + + ANTIGUA AND BARBUDA + Antigua and Barbuda + ATG + 28 + + + ARGENTINA + Argentina + ARG + 32 + + + ARMENIA + Armenia + ARM + 51 + + + ARUBA + Aruba + ABW + 533 + + + AUSTRALIA + Australia + AUS + 36 + + + AUSTRIA + Austria + AUT + 40 + + + AZERBAIJAN + Azerbaijan + AZE + 31 + + + BAHAMAS + Bahamas + BHS + 44 + + + BAHRAIN + Bahrain + BHR + 48 + + + BANGLADESH + Bangladesh + BGD + 50 + + + BARBADOS + Barbados + BRB + 52 + + + BELARUS + Belarus + BLR + 112 + + + BELGIUM + Belgium + BEL + 56 + + + BELIZE + Belize + BLZ + 84 + + + BENIN + Benin + BEN + 204 + + + BERMUDA + Bermuda + BMU + 60 + + + BHUTAN + Bhutan + BTN + 64 + + + BOLIVIA + Bolivia + BOL + 68 + + + BOSNIA AND HERZEGOVINA + Bosnia and Herzegovina + BIH + 70 + + + BOTSWANA + Botswana + BWA + 72 + + + BOUVET ISLAND + Bouvet Island + BVT + 74 + + + BRAZIL + Brazil + BRA + 76 + + + BRITISH INDIAN OCEAN TERRITORY + British Indian Ocean Territory + IOT + 86 + + + BRUNEI DARUSSALAM + Brunei Darussalam + BRN + 96 + + + BULGARIA + Bulgaria + BGR + 100 + + + BURKINA FASO + Burkina Faso + BFA + 854 + + + BURUNDI + Burundi + BDI + 108 + + + CAMBODIA + Cambodia + KHM + 116 + + + CAMEROON + Cameroon + CMR + 120 + + + CANADA + Canada + CAN + 124 + + + CAPE VERDE + Cape Verde + CPV + 132 + + + CAYMAN ISLANDS + Cayman Islands + CYM + 136 + + + CENTRAL AFRICAN REPUBLIC + Central African Republic + CAF + 140 + + + CHAD + Chad + TCD + 148 + + + CHILE + Chile + CHL + 152 + + + CHINA + China + CHN + 156 + + + CHRISTMAS ISLAND + Christmas Island + CXR + 162 + + + COCOS (KEELING) ISLANDS + Cocos (Keeling) Islands + CCK + 166 + + + COLOMBIA + Colombia + COL + 170 + + + COMOROS + Comoros + COM + 174 + + + CONGO + Congo + COG + 178 + + + CONGO, THE DEMOCRATIC REPUBLIC OF THE + Democratic Republic of the Congo + COD + 180 + + + COOK ISLANDS + Cook Islands + COK + 184 + + + COSTA RICA + Costa Rica + CRI + 188 + + + COTE D'IVOIRE + Côte d'Ivoire + CIV + 384 + + + CROATIA + Croatia + HRV + 191 + + + CUBA + Cuba + CUB + 192 + + + CYPRUS + Cyprus + CYP + 196 + + + CZECH REPUBLIC + Czech Republic + CZE + 203 + + + DENMARK + Denmark + DNK + 208 + + + DJIBOUTI + Djibouti + DJI + 262 + + + DOMINICA + Dominica + DMA + 212 + + + DOMINICAN REPUBLIC + Dominican Republic + DOM + 214 + + + ECUADOR + Ecuador + ECU + 218 + + + EGYPT + Egypt + EGY + 818 + + + EL SALVADOR + El Salvador + SLV + 222 + + + EQUATORIAL GUINEA + Equatorial Guinea + GNQ + 226 + + + ERITREA + Eritrea + ERI + 232 + + + ESTONIA + Estonia + EST + 233 + + + ETHIOPIA + Ethiopia + ETH + 231 + + + FALKLAND ISLANDS (MALVINAS) + Falkland Islands (Malvinas) + FLK + 238 + + + FAROE ISLANDS + Faeroe Islands + FRO + 234 + + + FIJI + Fiji + FJI + 242 + + + FINLAND + Finland + FIN + 246 + + + FRANCE + France + FRA + 250 + + + FRENCH GUIANA + French Guiana + GUF + 254 + + + FRENCH POLYNESIA + French Polynesia + PYF + 258 + + + FRENCH SOUTHERN TERRITORIES + French Southern Territories + ATF + 260 + + + GABON + Gabon + GAB + 266 + + + GAMBIA + Gambia + GMB + 270 + + + GEORGIA + Georgia + GEO + 268 + + + GERMANY + Germany + DEU + 276 + + + GHANA + Ghana + GHA + 288 + + + GIBRALTAR + Gibraltar + GIB + 292 + + + GREECE + Greece + GRC + 300 + + + GREENLAND + Greenland + GRL + 304 + + + GRENADA + Grenada + GRD + 308 + + + GUADELOUPE + Guadeloupe + GLP + 312 + + + GUAM + Guam + GUM + 316 + + + GUATEMALA + Guatemala + GTM + 320 + + + GUERNSEY + Guernsey + GGY + 831 + + + GUINEA + Guinea + GIN + 324 + + + GUINEA-BISSAU + Guinea-Bissau + GNB + 624 + + + GUYANA + Guyana + GUY + 328 + + + HAITI + Haiti + HTI + 332 + + + HEARD ISLAND AND MCDONALD ISLANDS + Heard Island and Mcdonald Islands + HMD + 334 + + + HOLY SEE (VATICAN CITY STATE) + Holy See + VAT + 336 + + + HONDURAS + Honduras + HND + 340 + + + HONG KONG + Hong Kong Special Administrative Region of China + HKG + 344 + + + HUNGARY + Hungary + HUN + 348 + + + ICELAND + Iceland + ISL + 352 + + + INDIA + India + IND + 356 + + + INDONESIA + Indonesia + IDN + 360 + + + IRAN, ISLAMIC REPUBLIC OF + Iran, Islamic Republic of + IRN + 364 + + + IRAQ + Iraq + IRQ + 368 + + + IRELAND + Ireland + IRL + 372 + + + ISLE OF MAN + Isle of Man + IMN + 833 + + + ISRAEL + Israel + ISR + 376 + + + ITALY + Italy + ITA + 380 + + + JAMAICA + Jamaica + JAM + 388 + + + JAPAN + Japan + JPN + 392 + + + JERSEY + Jersey + JEY + 832 + + + JORDAN + Jordan + JOR + 400 + + + KAZAKHSTAN + Kazakhstan + KAZ + 398 + + + KENYA + Kenya + KEN + 404 + + + KIRIBATI + Kiribati + KIR + 296 + + + KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF + Democratic People's Republic of Korea + PRK + 408 + + + KOREA, REPUBLIC OF + Republic of Korea + KOR + 410 + + + KUWAIT + Kuwait + KWT + 414 + + + KYRGYZSTAN + Kyrgyzstan + KGZ + 417 + + + LAO PEOPLE'S DEMOCRATIC REPUBLIC + Lao People's Democratic Republic + LAO + 418 + + + LATVIA + Latvia + LVA + 428 + + + LEBANON + Lebanon + LBN + 422 + + + LESOTHO + Lesotho + LSO + 426 + + + LIBERIA + Liberia + LBR + 430 + + + LIBYAN ARAB JAMAHIRIYA + Libyan Arab Jamahiriya + LBY + 434 + + + LIECHTENSTEIN + Liechtenstein + LIE + 438 + + + LITHUANIA + Lithuania + LTU + 440 + + + LUXEMBOURG + Luxembourg + LUX + 442 + + + MACAO + Macao Special Administrative Region of China + MAC + 446 + + + MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF + The former Yugoslav Republic of Macedonia + MKD + 807 + + + MADAGASCAR + Madagascar + MDG + 450 + + + MALAWI + Malawi + MWI + 454 + + + MALAYSIA + Malaysia + MYS + 458 + + + MALDIVES + Maldives + MDV + 462 + + + MALI + Mali + MLI + 466 + + + MALTA + Malta + MLT + 470 + + + MARSHALL ISLANDS + Marshall Islands + MHL + 584 + + + MARTINIQUE + Martinique + MTQ + 474 + + + MAURITANIA + Mauritania + MRT + 478 + + + MAURITIUS + Mauritius + MUS + 480 + + + MAYOTTE + Mayotte + MYT + 175 + + + MEXICO + Mexico + MEX + 484 + + + MICRONESIA, FEDERATED STATES OF + Micronesia, Federated States of + FSM + 583 + + + MOLDOVA, REPUBLIC OF + Republic of Moldova + MDA + 498 + + + MONACO + Monaco + MCO + 492 + + + MONGOLIA + Mongolia + MNG + 496 + + + MONTENEGRO + Montenegro + MNE + 499 + + + MONTSERRAT + Montserrat + MSR + 500 + + + MOROCCO + Morocco + MAR + 504 + + + MOZAMBIQUE + Mozambique + MOZ + 508 + + + MYANMAR + Myanmar + MMR + 104 + + + NAMIBIA + Namibia + NAM + 516 + + + NAURU + Nauru + NRU + 520 + + + NEPAL + Nepal + NPL + 524 + + + NETHERLANDS + Netherlands + NLD + 528 + + + NETHERLANDS ANTILLES + Netherlands Antilles + ANT + 530 + + + NEW CALEDONIA + New Caledonia + NCL + 540 + + + NEW ZEALAND + New Zealand + NZL + 554 + + + NICARAGUA + Nicaragua + NIC + 558 + + + NIGER + Niger + NER + 562 + + + NIGERIA + Nigeria + NGA + 566 + + + NIUE + Niue + NIU + 570 + + + NORFOLK ISLAND + Norfolk Island + NFK + 574 + + + NORTHERN MARIANA ISLANDS + Northern Mariana Islands + MNP + 580 + + + NORWAY + Norway + NOR + 578 + + + OMAN + Oman + OMN + 512 + + + PAKISTAN + Pakistan + PAK + 586 + + + PALAU + Palau + PLW + 585 + + + PALESTINIAN TERRITORY, OCCUPIED + Occupied Palestinian Territory + PSE + 275 + + + PANAMA + Panama + PAN + 591 + + + PAPUA NEW GUINEA + Papua New Guinea + PNG + 598 + + + PARAGUAY + Paraguay + PRY + 600 + + + PERU + Peru + PER + 604 + + + PHILIPPINES + Philippines + PHL + 608 + + + PITCAIRN + Pitcairn + PCN + 612 + + + POLAND + Poland + POL + 616 + + + PORTUGAL + Portugal + PRT + 620 + + + PUERTO RICO + Puerto Rico + PRI + 630 + + + QATAR + Qatar + QAT + 634 + + + REUNION + Réunion + REU + 638 + + + ROMANIA + Romania + ROU + 642 + + + RUSSIAN FEDERATION + Russian Federation + RUS + 643 + + + RWANDA + Rwanda + RWA + 646 + + + SAINT HELENA + Saint Helena + SHN + 654 + + + SAINT KITTS AND NEVIS + Saint Kitts and Nevis + KNA + 659 + + + SAINT LUCIA + Saint Lucia + LCA + 662 + + + SAINT PIERRE AND MIQUELON + Saint Pierre and Miquelon + SPM + 666 + + + SAINT VINCENT AND THE GRENADINES + Saint Vincent and the Grenadines + VCT + 670 + + + SAMOA + Samoa + WSM + 882 + + + SAN MARINO + San Marino + SMR + 674 + + + SAO TOME AND PRINCIPE + Sao Tome and Principe + STP + 678 + + + SAUDI ARABIA + Saudi Arabia + SAU + 682 + + + SENEGAL + Senegal + SEN + 686 + + + SERBIA + Serbia + SRB + 688 + + + SEYCHELLES + Seychelles + SYC + 690 + + + SIERRA LEONE + Sierra Leone + SLE + 694 + + + SINGAPORE + Singapore + SGP + 702 + + + SLOVAKIA + Slovakia + SVK + 703 + + + SLOVENIA + Slovenia + SVN + 705 + + + SOLOMON ISLANDS + Solomon Islands + SLB + 90 + + + SOMALIA + Somalia + SOM + 706 + + + SOUTH AFRICA + South Africa + ZAF + 710 + + + SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS + South Georgia and the South Sandwich Islands + SGS + 239 + + + SPAIN + Spain + ESP + 724 + + + SRI LANKA + Sri Lanka + LKA + 144 + + + SUDAN + Sudan + SDN + 736 + + + SURINAME + Suriname + SUR + 740 + + + SVALBARD AND JAN MAYEN + Svalbard and Jan Mayen Islands + SJM + 744 + + + SWAZILAND + Swaziland + SWZ + 748 + + + SWEDEN + Sweden + SWE + 752 + + + SWITZERLAND + Switzerland + CHE + 756 + + + SYRIAN ARAB REPUBLIC + Syrian Arab Republic + SYR + 760 + + + TAIWAN, PROVINCE OF CHINA + Taiwan, Province of China + TWN + 158 + + + TAJIKISTAN + Tajikistan + TJK + 762 + + + TANZANIA, UNITED REPUBLIC OF + United Republic of Tanzania + TZA + 834 + + + THAILAND + Thailand + THA + 764 + + + TIMOR-LESTE + Timor-Leste + TLS + 626 + + + TOGO + Togo + TGO + 768 + + + TOKELAU + Tokelau + TKL + 772 + + + TONGA + Tonga + TON + 776 + + + TRINIDAD AND TOBAGO + Trinidad and Tobago + TTO + 780 + + + TUNISIA + Tunisia + TUN + 788 + + + TURKEY + Turkey + TUR + 792 + + + TURKMENISTAN + Turkmenistan + TKM + 795 + + + TURKS AND CAICOS ISLANDS + Turks and Caicos Islands + TCA + 796 + + + TUVALU + Tuvalu + TUV + 798 + + + UGANDA + Uganda + UGA + 800 + + + UKRAINE + Ukraine + UKR + 804 + + + UNITED ARAB EMIRATES + United Arab Emirates + ARE + 784 + + + UNITED KINGDOM + United Kingdom of Great Britain and Northern Ireland + GBR + 826 + + + UNITED STATES + United States of America + USA + 840 + + + UNITED STATES MINOR OUTLYING ISLANDS + United States Minor Outlying Islands + UMI + 581 + + + URUGUAY + Uruguay + URY + 858 + + + UZBEKISTAN + Uzbekistan + UZB + 860 + + + VANUATU + Vanuatu + VUT + 548 + + + VENEZUELA + Venezuela (Bolivarian Republic of) + VEN + 862 + + + VIET NAM + Viet Nam + VNM + 704 + + + VIRGIN ISLANDS, BRITISH + British Virgin Islands + VGB + 92 + + + VIRGIN ISLANDS, U.S. + United States Virgin Islands + VIR + 850 + + + WALLIS AND FUTUNA + Wallis and Futuna Islands + WLF + 876 + + + WESTERN SAHARA + Western Sahara + ESH + 732 + + + YEMEN + Yemen + YEM + 887 + + + ZAMBIA + Zambia + ZMB + 894 + + + ZIMBABWE + Zimbabwe + ZWE + 716 + + + + Alabama + AL + + + Alaska + AK + + + American Samoa + AS + + + Arizona + AZ + + + Arkansas + AR + + + California + CA + + + Colorado + CO + + + Connecticut + CT + + + Delaware + DE + + + District of Columbia + DC + + + Federated States of Micronesia + FM + + + Florida + FL + + + Georgia + GA + + + Guam + GU + + + Hawaii + HI + + + Idaho + ID + + + Illinois + IL + + + Indiana + IN + + + Iowa + IA + + + Kansas + KS + + + Kentucky + KY + + + Louisiana + LA + + + Maine + ME + + + Marshall Islands + MH + + + Maryland + MD + + + Massachusetts + MA + + + Michigan + MI + + + Minnesota + MN + + + Mississippi + MS + + + Missouri + MO + + + Montana + MT + + + Nebraska + NE + + + Nevada + NV + + + New Hampshire + NH + + + New Jersey + NJ + + + New Mexico + NM + + + New York + NY + + + North Carolina + NC + + + North Dakota + ND + + + Northern Mariana Islands + MP + + + Ohio + OH + + + Oklahoma + OK + + + Oregon + OR + + + Palau + PW + + + Pennsylvania + PA + + + Puerto Rico + PR + + + Rhode Island + RI + + + South Carolina + SC + + + South Dakota + SD + + + Tennessee + TN + + + Texas + TX + + + Utah + UT + + + Vermont + VT + + + Virgin Islands + VI + + + Virginia + VA + + + Washington + WA + + + West Virginia + WV + + + Wisconsin + WI + + + Wyoming + WY + + + Armed Forces Africa + AE + + + Armed Forces Americas (except Canada) + AA + + + Armed Forces Canada + AE + + + Armed Forces Europe + AE + + + Armed Forces Middle East + AE + + + Armed Forces Pacific + AP + + diff --git a/countries/models.py b/countries/models.py new file mode 100644 index 0000000..2eea937 --- /dev/null +++ b/countries/models.py @@ -0,0 +1,65 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +from django.db import models +from django.utils.translation import ugettext_lazy as _ + +class Country(models.Model): + """ + International Organization for Standardization (ISO) 3166-1 Country list + + * ``iso`` = ISO 3166-1 alpha-2 + * ``name`` = Official country names used by the ISO 3166/MA in capital letters + * ``printable_name`` = Printable country names for in-text use + * ``iso3`` = ISO 3166-1 alpha-3 + * ``numcode`` = ISO 3166-1 numeric + + Note:: + This model is fixed to the database table 'country' to be more general. + Change ``db_table`` if this cause conflicts with your database layout. + Or comment out the line for default django behaviour. + + """ + iso = models.CharField(_('ISO alpha-2'), max_length=2, primary_key=True) + name = models.CharField(_('Official name (CAPS)'), max_length=128) + printable_name = models.CharField(_('Country name'), max_length=128) + iso3 = models.CharField(_('ISO alpha-3'), max_length=3, null=True) + numcode = models.PositiveSmallIntegerField(_('ISO numeric'), null=True) + + class Meta: + db_table = 'country' + verbose_name = _('Country') + verbose_name_plural = _('Countries') + ordering = ('name',) + + class Admin: + list_display = ('printable_name', 'iso',) + + def __unicode__(self): + return self.printable_name + + +class UsState(models.Model): + """ + United States Postal Service (USPS) State Abbreviations + + Note:: + This model is fixed to the database table 'usstate' to be more general. + Change ``db_table`` if this cause conflicts with your database layout. + Or comment out the line for default django behaviour. + + """ + id = models.AutoField(primary_key=True) + name = models.CharField(_('State name'), max_length=50, null=False) + abbrev = models.CharField(_('Abbreviation'), max_length=2, null=False) + + class Meta: + db_table = 'usstate' + verbose_name = _('US State') + verbose_name_plural = _('US States') + ordering = ('name',) + + class Admin: + list_display = ('name', 'abbrev',) + + def __unicode__(self): + return self.name diff --git a/countries/models.pyc b/countries/models.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d5256262a40a1ff48801a618d4922f1e6756cd04 GIT binary patch literal 3498 zcmd5<-EI>{6rObwCw3ANLjO=(b!b&#P)P)lsDw&Ih=hbH2wIa$_04AN8QW9VyVlNZ zf>AFjg%{|XweQiZzCin(v+K1(=tZCxbuyDZbI#6ubAG<#{PEX%^Uw9yKlDWTS;F53 z816?*8oz;fAw(RAP9Or3YvM&s#0#Rc2zf!6K-eYG4}@M6uZ1`j;-^ks=%qPDy;3X- zy)4?T6>M$)#-|nF$=5NBQf*>a$m@{vf$`qF^iix{P5d%e_R~D^*`xwWZ#~3tzhg3j z@Bv<@Cd`7ci^41s^iwR>1YiQ4sY9%FmgfwXrUs-6IxBOk<+G~BoN8sNY6#t&Zi@$; zyUORTvO%c|I%`7X_p;FIl_S=Lz9jUP&>Phfu1xYH}fNiOE#Fjh*&~Dj68K zRCgnO1IODwcEY|r1^BpJ(vNM=J9%RLP)^c3lhq-yg6wIdgAA6Vkx9J73PXu)VmQFs z^i>{vsei^{1Y@XK@Ek$M@$CK&(+GDvu`K?p`Fn?x_n#C-s{ z3N1xMw)Xd)wQty8p>S)Mrg_8hK6}KjU4VgK#FXT5TmdLO&59?+tEx~50vGBxczB~w zixLHupm^Rz|`Rw6-mSxo_HqWl#3#E zOcWvPInpp<-85>RXejb@@ne&9Q&;4vry`tRh{kb_$n(2trjc05pamN-o7_!^JI5;9 zIXOAm87b%Nu>t&Xn(P#}0O*~9?Y760kXY<93`bb&K|NT*kEe_8>5)y&JMj`!r4wt! zc5oBNgVxWMnWuHsdW*c~&go=2Yal;>~@k3~PApgI%xXFx89feRpt^28EFMA6r@A;A&BY|qvv zg9S-k@V;Cplv$3PSl_4z*Md*+gSmF4er16VK6L0D z-t=gH`c(b&Hwa~h&Gl1MDq8BP2vC~T>Ci@3%91VGE4BOvD!A4uT47;8jg|W^T7PA* zDm30j4{TK34-K-(J#n>Kf_{yJ&Lv9n4WM#c$d6{@FtHw#&G4Osd#T~HO?GU1V6wwD zn52%%$CjHVdeOV}fZX8#Z~nhMAmjp}0%n(RlMcDK?_ez?GU1}0_XalxPP!@q zs30CgMzJ!^vU`&*1NOv@E_ z-UI(avJ9TTt}0Hff?20M$I%I;g1kR>C2F|u37@FpKE_39l)PUM>W61QT$ECXl^$T6 z=S>b!)jqK(^?p(2 WZx-Jb-%-A&9O9hX3^r?5zxoH@1P>Dc literal 0 HcmV?d00001 diff --git a/countries/templatetags/.svn/all-wcprops b/countries/templatetags/.svn/all-wcprops new file mode 100644 index 0000000..d9c7eb5 --- /dev/null +++ b/countries/templatetags/.svn/all-wcprops @@ -0,0 +1,17 @@ +K 25 +svn:wc:ra_dav:version-url +V 44 +/svn/!svn/ver/2/trunk/countries/templatetags +END +countries_tags.py +K 25 +svn:wc:ra_dav:version-url +V 62 +/svn/!svn/ver/2/trunk/countries/templatetags/countries_tags.py +END +__init__.py +K 25 +svn:wc:ra_dav:version-url +V 56 +/svn/!svn/ver/2/trunk/countries/templatetags/__init__.py +END diff --git a/countries/templatetags/.svn/entries b/countries/templatetags/.svn/entries new file mode 100644 index 0000000..b1d8189 --- /dev/null +++ b/countries/templatetags/.svn/entries @@ -0,0 +1,96 @@ +9 + +dir +4 +http://django-countries.googlecode.com/svn/trunk/countries/templatetags +http://django-countries.googlecode.com/svn + + + +2007-08-22T15:13:42.143324Z +2 +zodizz + + +svn:special svn:externals svn:needs-lock + + + + + + + + + + + +9723214f-3838-0410-87e3-5b3a9cbdf46e + +countries_tags.py +file + + + + +2009-10-17T18:14:44.000000Z +f045e701ac40ee2e786d9a1babdcda5c +2007-08-22T15:13:42.143324Z +2 +zodizz + + + + + + + + + + + + + + + + + + + + + +617 + +__init__.py +file + + + + +2009-10-17T18:14:44.000000Z +d41d8cd98f00b204e9800998ecf8427e +2007-08-22T15:13:42.143324Z +2 +zodizz + + + + + + + + + + + + + + + + + + + + + +0 + diff --git a/countries/templatetags/.svn/format b/countries/templatetags/.svn/format new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/countries/templatetags/.svn/format @@ -0,0 +1 @@ +9 diff --git a/countries/templatetags/.svn/text-base/__init__.py.svn-base b/countries/templatetags/.svn/text-base/__init__.py.svn-base new file mode 100644 index 0000000..e69de29 diff --git a/countries/templatetags/.svn/text-base/countries_tags.py.svn-base b/countries/templatetags/.svn/text-base/countries_tags.py.svn-base new file mode 100644 index 0000000..d05a205 --- /dev/null +++ b/countries/templatetags/.svn/text-base/countries_tags.py.svn-base @@ -0,0 +1,24 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +from django import template +from django.template.defaultfilters import stringfilter + +register = template.Library() + +def iso_flag(iso, flag_path=u''): + """ + Returns a full path to the ISO 3166-1 alpha-2 country code flag image. + + Example usage:: + + {{ user_profile.country.iso|iso_flag }} + + {{ user_profile.country.iso|iso_flag:"appmedia/flags/%s.png" }} + + """ + from countries.utils.isoflag import iso_flag + return iso_flag(iso, flag_path) +iso_flag = stringfilter(iso_flag) + +# Syntax: register.filter(name of filter, callback) +register.filter('iso_flag', iso_flag) diff --git a/countries/templatetags/__init__.py b/countries/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/countries/templatetags/__init__.pyc b/countries/templatetags/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0ff49220a5bee70898b824b31cc6412937c59d1 GIT binary patch literal 161 zcmcckiI?jGZ;N*_0~9a1^ve>9^vlc3^>Y)8 zi!;kolk-ap^7Hid^w0!=;&~-SnW@G4C8@auIf*5yC5h?9`tk9Zd6^~g@p=W7B^*HG SY;yBcN^?@}K$aE*F#`bPw/%s.gif'`` + and is appended to ``settings.MEDIA_URL`` + + if a valid flag_path is not given trys to use + ``settings.COUNTRIES_FLAG_PATH`` + defaults to ``'flags/%s.gif'`` + + """ + if not settings.MEDIA_URL: + return u'' + deafult = u'-' + if not iso: + iso = deafult + else: + iso = iso.lower().strip() + try: + flag_name = flag_path % iso + except (ValueError, TypeError): + flag_path = getattr(settings, 'COUNTRIES_FLAG_PATH', u'flags/%s.gif') + try: + flag_name = flag_path % iso + except (ValueError, TypeError): + return u'' + return u''.join((settings.MEDIA_URL, flag_name)) \ No newline at end of file diff --git a/countries/utils/__init__.py b/countries/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/countries/utils/isoflag.py b/countries/utils/isoflag.py new file mode 100644 index 0000000..c2a58e5 --- /dev/null +++ b/countries/utils/isoflag.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from django.conf import settings + + +def iso_flag(iso, flag_path=u''): + """ + Returns a full path to the ISO 3166-1 alpha-2 country code flag image. + + ``flag_path`` is given in the form + ``'/%s.gif'`` + and is appended to ``settings.MEDIA_URL`` + + if a valid flag_path is not given trys to use + ``settings.COUNTRIES_FLAG_PATH`` + defaults to ``'flags/%s.gif'`` + + """ + if not settings.MEDIA_URL: + return u'' + deafult = u'-' + if not iso: + iso = deafult + else: + iso = iso.lower().strip() + try: + flag_name = flag_path % iso + except (ValueError, TypeError): + flag_path = getattr(settings, 'COUNTRIES_FLAG_PATH', u'flags/%s.gif') + try: + flag_name = flag_path % iso + except (ValueError, TypeError): + return u'' + return u''.join((settings.MEDIA_URL, flag_name)) \ No newline at end of file diff --git a/debug_toolbar/__init__.py b/debug_toolbar/__init__.py new file mode 100644 index 0000000..f73a4bd --- /dev/null +++ b/debug_toolbar/__init__.py @@ -0,0 +1,2 @@ +VERSION = (0, 8, 1) +__version__ = '.'.join(map(str, VERSION)) diff --git a/debug_toolbar/locale/de/LC_MESSAGES/django.mo b/debug_toolbar/locale/de/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..87a276ceb198897899cbe38f47845cc4533f2b53 GIT binary patch literal 1862 zcmaiyJ!~9B6vrnaKsY{Q0wIKtA%O@fT5|@Bj*AnrIq%sg?|u00Y=|Y0#(U3uOZIlH znOQ4Fk)WX@4ML(oLeS7sQaBQlBT*pHAVsNCAQ~zV9ToiFd2GiOqj~e&nVorW-kbm3 zi6dVKw6n11VBsMlroronF`#ws6XF4I5j+CE2i_094?YA&ZaxAZ!Q6nn?-TGS_^F%U zaQqxZ7hhsvKVP}^Z$aMw9rz&lz2grc$Nv$04Ezav7`zQ~yx+jb!9T$X@L!PQPhcp4 zCqVXl8f3rc-24rY{m!`cnpz;8fwaT5cdzvcJ~$a&uZ9|eC0(Z$~wINm=X-}ewE ze69o{b#WZzcRC63`By={=bP?-1>|!VK$L6jllPs4@qJ!`@&1!AzW2S2?{OT)d2r)A zSf+tI zcLMe-PtZ>D;72yeGjUl(S4Az&4T)g1Za1YND*~-^ErM$l6_y6Fw-}0gl9H$w+0Lo? zWI$p*u|_P=rU+?+QV}K@i7=1U*l(D}agxQNNyey{Ks(F_qLs^9yS>l|sDwQ>rrdSw%?<{YwlUP=1!J|&pDhkoj`G*u)uQBkJ5gUc9%8p-K z@aF=#9CZ2Kr7o@K+ImeBCj;+t5gV_cS7oWw?t3*&<0^TxxJFgJUM|1wO-*@I6;S7m)E3}wr2 z26857`i=0CKReq+F)w0k78iI8uTN@Jm7(97TjDFvgyE$$nap*3vD9odgZ-qYCd;K- zo>|He1BIwcOV{jcs9%zum(fsZ=;gvvzwTA`_wilUNP9sR#(Dv7qK|!R+NW7S+(=a71{KCYvw!JmfmVZEjT&sj7xZ?$NUnL#muwSg{ zVh!&Of7@HeK#Q$pgH$0_h*jIx7P{P#V@pLtokT\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: panels/cache.py:92 +#, python-format +msgid "Cache: %.2fms" +msgstr "" + +#: panels/cache.py:95 +msgid "Cache Usage" +msgstr "" + +#: panels/headers.py:36 panels/headers.py:39 +msgid "HTTP Headers" +msgstr "" + +#: panels/logger.py:56 +msgid "Logging" +msgstr "Logging" + +#: panels/logger.py:63 +#, fuzzy +msgid "Log Messages" +msgstr "Nachricht" + +#: panels/request_vars.py:13 panels/request_vars.py:16 +msgid "Request Vars" +msgstr "" + +#: panels/settings_vars.py:16 +msgid "Settings" +msgstr "Einstellungen" + +#: panels/settings_vars.py:19 +#, python-format +msgid "Settings from %s" +msgstr "" + +#: panels/signals.py:39 panels/signals.py:42 +msgid "Signals" +msgstr "Signals" + +#: panels/sql.py:146 +msgid "SQL" +msgstr "" + +#: panels/sql.py:160 +msgid "SQL Queries" +msgstr "" + +#: panels/template.py:47 +msgid "Templates" +msgstr "Templates" + +#: panels/template.py:52 +#, python-format +msgid "Templates (%(num_templates)s rendered)" +msgstr "" + +#: panels/timer.py:35 templates/debug_toolbar/panels/cache.html:39 +#: templates/debug_toolbar/panels/logger.html:7 +#: templates/debug_toolbar/panels/sql.html:5 +#: templates/debug_toolbar/panels/sql_explain.html:11 +#: templates/debug_toolbar/panels/sql_profile.html:12 +#: templates/debug_toolbar/panels/sql_select.html:11 +msgid "Time" +msgstr "Zeit" + +#: panels/timer.py:47 +#, fuzzy +msgid "Resource Usage" +msgstr "Ressource" + +#: panels/timer.py:78 +msgid "User CPU time" +msgstr "" + +#: panels/timer.py:79 +msgid "System CPU time" +msgstr "" + +#: panels/timer.py:80 +#, fuzzy +msgid "Total CPU time" +msgstr "Zeit gesamt" + +#: panels/timer.py:81 +msgid "Elapsed time" +msgstr "" + +#: panels/timer.py:82 +msgid "Context switches" +msgstr "" + +#: panels/version.py:20 panels/version.py:29 +#, fuzzy +msgid "Versions" +msgstr "Django-Version" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide Toolbar" +msgstr "" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide" +msgstr "Verbergen" + +#: templates/debug_toolbar/base.html:48 +msgid "Show Toolbar" +msgstr "" + +#: templates/debug_toolbar/base.html:54 +msgid "Close" +msgstr "Schließen" + +#: templates/debug_toolbar/redirect.html:7 +#: templates/debug_toolbar/panels/logger.html:9 +msgid "Location" +msgstr "Ort" + +#: templates/debug_toolbar/redirect.html:9 +msgid "" +"The Django Debug Toolbar has intercepted a redirect to the above URL for " +"debug viewing purposes. You can click the above link to continue with the " +"redirect as normal. If you'd like to disable this feature, set the " +"DEBUG_TOOLBAR_CONFIG dictionary's key " +"INTERCEPT_REDIRECTS to False." +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:14 +msgid "Total Calls" +msgstr "Aufrufe gesamt" + +#: templates/debug_toolbar/panels/cache.html:16 +msgid "Total Time" +msgstr "Zeit gesamt" + +#: templates/debug_toolbar/panels/cache.html:18 +msgid "Hits" +msgstr "Aufrufe" + +#: templates/debug_toolbar/panels/cache.html:20 +msgid "Misses" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:35 +msgid "Breakdown" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:40 +msgid "Type" +msgstr "Typ" + +#: templates/debug_toolbar/panels/cache.html:41 +msgid "Parameters" +msgstr "Parameter" + +#: templates/debug_toolbar/panels/cache.html:42 +msgid "Function" +msgstr "Funktion" + +#: templates/debug_toolbar/panels/headers.html:5 +msgid "Key" +msgstr "Schlüssel" + +#: templates/debug_toolbar/panels/headers.html:6 +#: templates/debug_toolbar/panels/request_vars.html:37 +#: templates/debug_toolbar/panels/request_vars.html:63 +#: templates/debug_toolbar/panels/request_vars.html:85 +#: templates/debug_toolbar/panels/request_vars.html:107 +#: templates/debug_toolbar/panels/settings_vars.html:6 +#: templates/debug_toolbar/panels/timer.html:10 +msgid "Value" +msgstr "Wert" + +#: templates/debug_toolbar/panels/logger.html:6 +msgid "Level" +msgstr "Niveau" + +#: templates/debug_toolbar/panels/logger.html:8 +msgid "Message" +msgstr "Nachricht" + +#: templates/debug_toolbar/panels/logger.html:24 +msgid "No messages logged" +msgstr "Keine Nachricht gespeichert" + +#: templates/debug_toolbar/panels/request_vars.html:3 +msgid "View information" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:7 +#, fuzzy +msgid "View Function" +msgstr "Funktion" + +#: templates/debug_toolbar/panels/request_vars.html:8 +msgid "args" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:9 +msgid "kwargs" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:27 +#, fuzzy +msgid "COOKIES Variables" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:36 +#: templates/debug_toolbar/panels/request_vars.html:62 +#: templates/debug_toolbar/panels/request_vars.html:84 +#: templates/debug_toolbar/panels/request_vars.html:106 +msgid "Variable" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:50 +msgid "No COOKIE data" +msgstr "Keine COOKIE-Daten" + +#: templates/debug_toolbar/panels/request_vars.html:53 +#, fuzzy +msgid "SESSION Variables" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:76 +msgid "No SESSION data" +msgstr "Keine SESSION-Daten" + +#: templates/debug_toolbar/panels/request_vars.html:79 +#, fuzzy +msgid "GET Variables" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:98 +msgid "No GET data" +msgstr "Keine GET-Daten" + +#: templates/debug_toolbar/panels/request_vars.html:101 +#, fuzzy +msgid "POST Variables" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:120 +msgid "No POST data" +msgstr "Keine POST-Daten" + +#: templates/debug_toolbar/panels/settings_vars.html:5 +msgid "Setting" +msgstr "Einstellung" + +#: templates/debug_toolbar/panels/signals.html:5 +msgid "Signal" +msgstr "Signal" + +#: templates/debug_toolbar/panels/signals.html:6 +msgid "Providing Args" +msgstr "" + +#: templates/debug_toolbar/panels/signals.html:7 +msgid "Receivers" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:6 +msgid "Action" +msgstr "Aktion" + +#: templates/debug_toolbar/panels/sql.html:7 +msgid "Stacktrace" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:8 +msgid "Query" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:38 +msgid "Line" +msgstr "Zeile" + +#: templates/debug_toolbar/panels/sql.html:39 +msgid "Method" +msgstr "Methode" + +#: templates/debug_toolbar/panels/sql.html:40 +msgid "File" +msgstr "Datei" + +#: templates/debug_toolbar/panels/sql_explain.html:3 +#: templates/debug_toolbar/panels/sql_profile.html:3 +#: templates/debug_toolbar/panels/sql_select.html:3 +#: templates/debug_toolbar/panels/template_source.html:3 +msgid "Back" +msgstr "Zurück" + +#: templates/debug_toolbar/panels/sql_explain.html:4 +msgid "SQL Explained" +msgstr "" + +#: templates/debug_toolbar/panels/sql_explain.html:9 +#: templates/debug_toolbar/panels/sql_profile.html:10 +#: templates/debug_toolbar/panels/sql_select.html:9 +msgid "Executed SQL" +msgstr "Ausgeführtes SQL" + +#: templates/debug_toolbar/panels/sql_profile.html:4 +msgid "SQL Profiled" +msgstr "" + +#: templates/debug_toolbar/panels/sql_profile.html:35 +msgid "Error" +msgstr "Fehler" + +#: templates/debug_toolbar/panels/sql_select.html:4 +msgid "SQL Selected" +msgstr "" + +#: templates/debug_toolbar/panels/sql_select.html:34 +msgid "Empty set" +msgstr "Leeres Set" + +#: templates/debug_toolbar/panels/template_source.html:4 +#, fuzzy +msgid "Template Source" +msgstr "Template" + +#: templates/debug_toolbar/panels/templates.html:2 +#, fuzzy +msgid "Template path" +msgstr "Template" + +#: templates/debug_toolbar/panels/templates.html:13 +msgid "Template" +msgstr "Template" + +#: templates/debug_toolbar/panels/templates.html:21 +#: templates/debug_toolbar/panels/templates.html:37 +msgid "Toggle Context" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:28 +#: templates/debug_toolbar/panels/templates.html:43 +msgid "None" +msgstr "Nichts" + +#: templates/debug_toolbar/panels/templates.html:31 +msgid "Context processor" +msgstr "" + +#: templates/debug_toolbar/panels/timer.html:9 +msgid "Resource" +msgstr "Ressource" + +#: templates/debug_toolbar/panels/versions.html:6 +msgid "Package" +msgstr "" + +#: templates/debug_toolbar/panels/versions.html:7 +#, fuzzy +msgid "Version" +msgstr "Django-Version" diff --git a/debug_toolbar/locale/en/LC_MESSAGES/django.mo b/debug_toolbar/locale/en/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..5ffd385e6c55a6c5c66ae5cab46a17b9c5b7fa31 GIT binary patch literal 367 zcmYL^K~KXV7=~x`)T3t)9K7i_sfnh;xeQk}8=+mgZi(J-!-|>EP-gUp`1kxR(!{to zdBTC`gZKM6KKky390X1Rr-8%3d7w)YxC)npaCXjr=FYyUwTEm2E9F{k4MB4{d7v|f zR;*lPMIM!^vCe~NYrTQHUEM-u35w=L1rw*F4?~bjuL!!tcmQz>ae{C{@HOBB;~+w* zK6Ll^pZCaU38H|MqWgk~?Chz?S;S@Qp>oo+Tj{MMXu9MaotyWi^Fl?{!^XlmlkgcB4&AQ1YyO)cXYsk7B+6 literal 0 HcmV?d00001 diff --git a/debug_toolbar/locale/en/LC_MESSAGES/django.po b/debug_toolbar/locale/en/LC_MESSAGES/django.po new file mode 100644 index 0000000..eaefdc6 --- /dev/null +++ b/debug_toolbar/locale/en/LC_MESSAGES/django.po @@ -0,0 +1,362 @@ +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Percy Pérez-Pinedo, 2009. +# +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-18 08:06-0800\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: panels/cache.py:92 +#, python-format +msgid "Cache: %.2fms" +msgstr "" + +#: panels/cache.py:95 +msgid "Cache Usage" +msgstr "" + +#: panels/headers.py:36 panels/headers.py:39 +msgid "HTTP Headers" +msgstr "" + +#: panels/logger.py:56 +msgid "Logging" +msgstr "" + +#: panels/logger.py:63 +msgid "Log Messages" +msgstr "" + +#: panels/request_vars.py:13 panels/request_vars.py:16 +msgid "Request Vars" +msgstr "" + +#: panels/settings_vars.py:16 +msgid "Settings" +msgstr "" + +#: panels/settings_vars.py:19 +#, python-format +msgid "Settings from %s" +msgstr "" + +#: panels/signals.py:39 panels/signals.py:42 +msgid "Signals" +msgstr "" + +#: panels/sql.py:146 +msgid "SQL" +msgstr "" + +#: panels/sql.py:160 +msgid "SQL Queries" +msgstr "" + +#: panels/template.py:47 +msgid "Templates" +msgstr "" + +#: panels/template.py:52 +#, python-format +msgid "Templates (%(num_templates)s rendered)" +msgstr "" + +#: panels/timer.py:35 templates/debug_toolbar/panels/cache.html:39 +#: templates/debug_toolbar/panels/logger.html:7 +#: templates/debug_toolbar/panels/sql.html:5 +#: templates/debug_toolbar/panels/sql_explain.html:11 +#: templates/debug_toolbar/panels/sql_profile.html:12 +#: templates/debug_toolbar/panels/sql_select.html:11 +msgid "Time" +msgstr "" + +#: panels/timer.py:47 +msgid "Resource Usage" +msgstr "" + +#: panels/timer.py:78 +msgid "User CPU time" +msgstr "" + +#: panels/timer.py:79 +msgid "System CPU time" +msgstr "" + +#: panels/timer.py:80 +msgid "Total CPU time" +msgstr "" + +#: panels/timer.py:81 +msgid "Elapsed time" +msgstr "" + +#: panels/timer.py:82 +msgid "Context switches" +msgstr "" + +#: panels/version.py:20 panels/version.py:29 +msgid "Versions" +msgstr "" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide Toolbar" +msgstr "" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide" +msgstr "" + +#: templates/debug_toolbar/base.html:48 +msgid "Show Toolbar" +msgstr "" + +#: templates/debug_toolbar/base.html:54 +msgid "Close" +msgstr "" + +#: templates/debug_toolbar/redirect.html:7 +#: templates/debug_toolbar/panels/logger.html:9 +msgid "Location" +msgstr "" + +#: templates/debug_toolbar/redirect.html:9 +msgid "" +"The Django Debug Toolbar has intercepted a redirect to the above URL for " +"debug viewing purposes. You can click the above link to continue with the " +"redirect as normal. If you'd like to disable this feature, set the " +"DEBUG_TOOLBAR_CONFIG dictionary's key " +"INTERCEPT_REDIRECTS to False." +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:14 +msgid "Total Calls" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:16 +msgid "Total Time" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:18 +msgid "Hits" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:20 +msgid "Misses" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:35 +msgid "Breakdown" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:40 +msgid "Type" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:41 +msgid "Parameters" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:42 +msgid "Function" +msgstr "" + +#: templates/debug_toolbar/panels/headers.html:5 +msgid "Key" +msgstr "" + +#: templates/debug_toolbar/panels/headers.html:6 +#: templates/debug_toolbar/panels/request_vars.html:37 +#: templates/debug_toolbar/panels/request_vars.html:63 +#: templates/debug_toolbar/panels/request_vars.html:85 +#: templates/debug_toolbar/panels/request_vars.html:107 +#: templates/debug_toolbar/panels/settings_vars.html:6 +#: templates/debug_toolbar/panels/timer.html:10 +msgid "Value" +msgstr "" + +#: templates/debug_toolbar/panels/logger.html:6 +msgid "Level" +msgstr "" + +#: templates/debug_toolbar/panels/logger.html:8 +msgid "Message" +msgstr "" + +#: templates/debug_toolbar/panels/logger.html:24 +msgid "No messages logged" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:3 +msgid "View information" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:7 +msgid "View Function" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:8 +msgid "args" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:9 +msgid "kwargs" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:27 +msgid "COOKIES Variables" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:36 +#: templates/debug_toolbar/panels/request_vars.html:62 +#: templates/debug_toolbar/panels/request_vars.html:84 +#: templates/debug_toolbar/panels/request_vars.html:106 +msgid "Variable" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:50 +msgid "No COOKIE data" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:53 +msgid "SESSION Variables" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:76 +msgid "No SESSION data" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:79 +msgid "GET Variables" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:98 +msgid "No GET data" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:101 +msgid "POST Variables" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:120 +msgid "No POST data" +msgstr "" + +#: templates/debug_toolbar/panels/settings_vars.html:5 +msgid "Setting" +msgstr "" + +#: templates/debug_toolbar/panels/signals.html:5 +msgid "Signal" +msgstr "" + +#: templates/debug_toolbar/panels/signals.html:6 +msgid "Providing Args" +msgstr "" + +#: templates/debug_toolbar/panels/signals.html:7 +msgid "Receivers" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:6 +msgid "Action" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:7 +msgid "Stacktrace" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:8 +msgid "Query" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:38 +msgid "Line" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:39 +msgid "Method" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:40 +msgid "File" +msgstr "" + +#: templates/debug_toolbar/panels/sql_explain.html:3 +#: templates/debug_toolbar/panels/sql_profile.html:3 +#: templates/debug_toolbar/panels/sql_select.html:3 +#: templates/debug_toolbar/panels/template_source.html:3 +msgid "Back" +msgstr "" + +#: templates/debug_toolbar/panels/sql_explain.html:4 +msgid "SQL Explained" +msgstr "" + +#: templates/debug_toolbar/panels/sql_explain.html:9 +#: templates/debug_toolbar/panels/sql_profile.html:10 +#: templates/debug_toolbar/panels/sql_select.html:9 +msgid "Executed SQL" +msgstr "" + +#: templates/debug_toolbar/panels/sql_profile.html:4 +msgid "SQL Profiled" +msgstr "" + +#: templates/debug_toolbar/panels/sql_profile.html:35 +msgid "Error" +msgstr "" + +#: templates/debug_toolbar/panels/sql_select.html:4 +msgid "SQL Selected" +msgstr "" + +#: templates/debug_toolbar/panels/sql_select.html:34 +msgid "Empty set" +msgstr "" + +#: templates/debug_toolbar/panels/template_source.html:4 +msgid "Template Source" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:2 +msgid "Template path" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:13 +msgid "Template" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:21 +#: templates/debug_toolbar/panels/templates.html:37 +msgid "Toggle Context" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:28 +#: templates/debug_toolbar/panels/templates.html:43 +msgid "None" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:31 +msgid "Context processor" +msgstr "" + +#: templates/debug_toolbar/panels/timer.html:9 +msgid "Resource" +msgstr "" + +#: templates/debug_toolbar/panels/versions.html:6 +msgid "Package" +msgstr "" + +#: templates/debug_toolbar/panels/versions.html:7 +msgid "Version" +msgstr "" diff --git a/debug_toolbar/locale/es/LC_MESSAGES/django.mo b/debug_toolbar/locale/es/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..1770362d9870bf7e146d81c486cbee5eacd65970 GIT binary patch literal 1690 zcmYk4J&YSw5XT3&0C56=knsKSNCOgV;zJ6UzDP0^}f@4 zZ>_kYpg~k=Kr~Q9R3K6ypo7YYj)H~ClGy_tFQ=Jv_8F9~u6 z`aJaY`-skg8~5V{xeGoB-UHXz@c_{g;0SmWJO&;IPlNpb4EQkkN@dq8o(J)ej~DOX zto$wTA=vGTmqE^V1w00R2y*-kJOR$Zli=qd=ldG0fj2?U`vb`FeyQx=K#uoE<^Qwt z{|$2ew?U5cFUa}sfE@2$D2YOx&-#aKGY-@CoR${2)$LA%#I z_&F`NT9F}^;=PEwD~+5gr;Me(vbr#_qJeUbb5*o7NRwP<6)X+abU%|$9elu*PGM>% zGtrb;2FLQdbkFw{jbv6Jo6*-)?7a5a8zCh+S`3kak}^^#|0%uS!t-Li~(>zVkG0mElrpt z5u&w)lVeSRi6`kyFUM-Rvlkbc!;TT!;-sZ0lQTu#bU9v&Te*@PJhjefi_yxhyoM25 zeCITxt!4~A4-Hvq9h$PzF_CjIEkjsg%BUy`TXCc!*F18Io0vJy)kn$3YC^BBrb%IB zdD25Bh7<#+7C-U;E&+QtletT?Os>9o1~Heqnmn9vD#ti#=@rX)gnw literal 0 HcmV?d00001 diff --git a/debug_toolbar/locale/es/LC_MESSAGES/django.po b/debug_toolbar/locale/es/LC_MESSAGES/django.po new file mode 100644 index 0000000..844e82d --- /dev/null +++ b/debug_toolbar/locale/es/LC_MESSAGES/django.po @@ -0,0 +1,378 @@ +# Django Debug Toolbar en Español. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Percy Pérez-Pinedo , 2009. +# +# Caracteres especiales: á, é, í, ó, ú, ñ, +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-18 08:06-0800\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: panels/cache.py:92 +#, python-format +msgid "Cache: %.2fms" +msgstr "" + +#: panels/cache.py:95 +msgid "Cache Usage" +msgstr "" + +#: panels/headers.py:36 panels/headers.py:39 +msgid "HTTP Headers" +msgstr "" + +#: panels/logger.py:56 +msgid "Logging" +msgstr "Registros" + +#: panels/logger.py:63 +#, fuzzy +msgid "Log Messages" +msgstr "Mensaje" + +#: panels/request_vars.py:13 panels/request_vars.py:16 +msgid "Request Vars" +msgstr "" + +#: panels/settings_vars.py:16 +msgid "Settings" +msgstr "Configuraciones" + +#: panels/settings_vars.py:19 +#, python-format +msgid "Settings from %s" +msgstr "" + +#: panels/signals.py:39 panels/signals.py:42 +msgid "Signals" +msgstr "Señales" + +#: panels/sql.py:146 +msgid "SQL" +msgstr "" + +#: panels/sql.py:160 +msgid "SQL Queries" +msgstr "" + +#: panels/template.py:47 +msgid "Templates" +msgstr "Plantillas" + +#: panels/template.py:52 +#, python-format +msgid "Templates (%(num_templates)s rendered)" +msgstr "" + +#: panels/timer.py:35 templates/debug_toolbar/panels/cache.html:39 +#: templates/debug_toolbar/panels/logger.html:7 +#: templates/debug_toolbar/panels/sql.html:5 +#: templates/debug_toolbar/panels/sql_explain.html:11 +#: templates/debug_toolbar/panels/sql_profile.html:12 +#: templates/debug_toolbar/panels/sql_select.html:11 +msgid "Time" +msgstr "Tiempo" + +#: panels/timer.py:47 +#, fuzzy +msgid "Resource Usage" +msgstr "Recurso" + +#: panels/timer.py:78 +msgid "User CPU time" +msgstr "" + +#: panels/timer.py:79 +msgid "System CPU time" +msgstr "" + +#: panels/timer.py:80 +#, fuzzy +msgid "Total CPU time" +msgstr "Tiempo Total" + +#: panels/timer.py:81 +msgid "Elapsed time" +msgstr "" + +#: panels/timer.py:82 +msgid "Context switches" +msgstr "" + +#: panels/version.py:20 panels/version.py:29 +#, fuzzy +msgid "Versions" +msgstr "Versión Django" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide Toolbar" +msgstr "" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide" +msgstr "Ocultar" + +#: templates/debug_toolbar/base.html:48 +msgid "Show Toolbar" +msgstr "" + +#: templates/debug_toolbar/base.html:54 +msgid "Close" +msgstr "Cerrar" + +#: templates/debug_toolbar/redirect.html:7 +#: templates/debug_toolbar/panels/logger.html:9 +msgid "Location" +msgstr "" + +#: templates/debug_toolbar/redirect.html:9 +msgid "" +"The Django Debug Toolbar has intercepted a redirect to the above URL for " +"debug viewing purposes. You can click the above link to continue with the " +"redirect as normal. If you'd like to disable this feature, set the " +"DEBUG_TOOLBAR_CONFIG dictionary's key " +"INTERCEPT_REDIRECTS to False." +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:14 +msgid "Total Calls" +msgstr "Total Llamadas" + +#: templates/debug_toolbar/panels/cache.html:16 +msgid "Total Time" +msgstr "Tiempo Total" + +#: templates/debug_toolbar/panels/cache.html:18 +msgid "Hits" +msgstr "Visitas" + +#: templates/debug_toolbar/panels/cache.html:20 +msgid "Misses" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:35 +msgid "Breakdown" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:40 +msgid "Type" +msgstr "Tipo" + +#: templates/debug_toolbar/panels/cache.html:41 +msgid "Parameters" +msgstr "Parámetros" + +#: templates/debug_toolbar/panels/cache.html:42 +msgid "Function" +msgstr "Función" + +#: templates/debug_toolbar/panels/headers.html:5 +msgid "Key" +msgstr "Llave" + +#: templates/debug_toolbar/panels/headers.html:6 +#: templates/debug_toolbar/panels/request_vars.html:37 +#: templates/debug_toolbar/panels/request_vars.html:63 +#: templates/debug_toolbar/panels/request_vars.html:85 +#: templates/debug_toolbar/panels/request_vars.html:107 +#: templates/debug_toolbar/panels/settings_vars.html:6 +#: templates/debug_toolbar/panels/timer.html:10 +msgid "Value" +msgstr "Valor" + +#: templates/debug_toolbar/panels/logger.html:6 +msgid "Level" +msgstr "Nivel" + +#: templates/debug_toolbar/panels/logger.html:8 +msgid "Message" +msgstr "Mensaje" + +#: templates/debug_toolbar/panels/logger.html:24 +msgid "No messages logged" +msgstr "No hay mensajes registrados" + +#: templates/debug_toolbar/panels/request_vars.html:3 +msgid "View information" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:7 +#, fuzzy +msgid "View Function" +msgstr "Función" + +#: templates/debug_toolbar/panels/request_vars.html:8 +msgid "args" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:9 +msgid "kwargs" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:27 +#, fuzzy +msgid "COOKIES Variables" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:36 +#: templates/debug_toolbar/panels/request_vars.html:62 +#: templates/debug_toolbar/panels/request_vars.html:84 +#: templates/debug_toolbar/panels/request_vars.html:106 +#, fuzzy +msgid "Variable" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:50 +#, fuzzy +msgid "No COOKIE data" +msgstr "No GET datos" + +#: templates/debug_toolbar/panels/request_vars.html:53 +#, fuzzy +msgid "SESSION Variables" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:76 +msgid "No SESSION data" +msgstr "No SESSION datos" + +#: templates/debug_toolbar/panels/request_vars.html:79 +#, fuzzy +msgid "GET Variables" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:98 +msgid "No GET data" +msgstr "No GET datos" + +#: templates/debug_toolbar/panels/request_vars.html:101 +#, fuzzy +msgid "POST Variables" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:120 +msgid "No POST data" +msgstr "No POST datos" + +#: templates/debug_toolbar/panels/settings_vars.html:5 +msgid "Setting" +msgstr "Configuración" + +#: templates/debug_toolbar/panels/signals.html:5 +msgid "Signal" +msgstr "Señal" + +#: templates/debug_toolbar/panels/signals.html:6 +msgid "Providing Args" +msgstr "" + +#: templates/debug_toolbar/panels/signals.html:7 +msgid "Receivers" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:6 +msgid "Action" +msgstr "Acción" + +#: templates/debug_toolbar/panels/sql.html:7 +msgid "Stacktrace" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:8 +msgid "Query" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:38 +msgid "Line" +msgstr "Línea" + +#: templates/debug_toolbar/panels/sql.html:39 +msgid "Method" +msgstr "Método" + +#: templates/debug_toolbar/panels/sql.html:40 +msgid "File" +msgstr "Archivo" + +#: templates/debug_toolbar/panels/sql_explain.html:3 +#: templates/debug_toolbar/panels/sql_profile.html:3 +#: templates/debug_toolbar/panels/sql_select.html:3 +#: templates/debug_toolbar/panels/template_source.html:3 +msgid "Back" +msgstr "Regresar" + +#: templates/debug_toolbar/panels/sql_explain.html:4 +msgid "SQL Explained" +msgstr "" + +#: templates/debug_toolbar/panels/sql_explain.html:9 +#: templates/debug_toolbar/panels/sql_profile.html:10 +#: templates/debug_toolbar/panels/sql_select.html:9 +msgid "Executed SQL" +msgstr "SQL Ejecutado" + +#: templates/debug_toolbar/panels/sql_profile.html:4 +msgid "SQL Profiled" +msgstr "" + +#: templates/debug_toolbar/panels/sql_profile.html:35 +msgid "Error" +msgstr "" + +#: templates/debug_toolbar/panels/sql_select.html:4 +msgid "SQL Selected" +msgstr "" + +#: templates/debug_toolbar/panels/sql_select.html:34 +msgid "Empty set" +msgstr "Set Vacío" + +#: templates/debug_toolbar/panels/template_source.html:4 +#, fuzzy +msgid "Template Source" +msgstr "Plantilla" + +#: templates/debug_toolbar/panels/templates.html:2 +#, fuzzy +msgid "Template path" +msgstr "Plantilla" + +#: templates/debug_toolbar/panels/templates.html:13 +msgid "Template" +msgstr "Plantilla" + +#: templates/debug_toolbar/panels/templates.html:21 +#: templates/debug_toolbar/panels/templates.html:37 +msgid "Toggle Context" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:28 +#: templates/debug_toolbar/panels/templates.html:43 +msgid "None" +msgstr "Ninguno" + +#: templates/debug_toolbar/panels/templates.html:31 +msgid "Context processor" +msgstr "" + +#: templates/debug_toolbar/panels/timer.html:9 +msgid "Resource" +msgstr "Recurso" + +#: templates/debug_toolbar/panels/versions.html:6 +msgid "Package" +msgstr "" + +#: templates/debug_toolbar/panels/versions.html:7 +#, fuzzy +msgid "Version" +msgstr "Versión Django" diff --git a/debug_toolbar/locale/fr/LC_MESSAGES/django.mo b/debug_toolbar/locale/fr/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..dd507c37fd1cd7e6ccf8f381c008f86b1f68af82 GIT binary patch literal 4195 zcmai$O^h5z6@V+?1iU~1L%@&(%E69p;#to+PS{K~j(2Bgy&KQ|WM{kxC6ZO!T|3)$ zPxsK(z4nqzgoF?hCnP{97yg92Ccehgaz~4h@x(N@$zry#zf5CUa zgAC$R-3O)pe)vvUgEGG1`)7UoGf?Dx622Wi58nl??{~icMPL7%uYU=?m2qE%vffL+ z{Too^dC_6c@w@H{u3U8cOyjfI}By~gHYt2;xz`( zLRtT5DEn(ck+TfT{XnsUg`)2@DEoT>%D69heg*PV-{K|nUWO0C??V~)D~L+!w~(Lu zBQIJ1Z&38T1!dkrUQ#~tW3*SQ7*SG1EeeFQ8!;hiJeHBXoFQLf! zHI#k+0WwwHgrdir@B;E~LD6p-A;NjjWq2R;H7M)EzWoLG0qURi?O%hk&JExHLtlRd z$~r%TvhHiX{S7Gc{^a{_!S_(V3uB>*Is`@k2cYP41d9GAAVbwS6nPCO@|(VX5z6>3 zJPeXg$Id35=%{3E_D zpXnfv(nQUe;HsL*thpMd*AmrSUcR`{>gY9-MP@y=PBl%iY4s&%dR8^#)bUP}++NT1 zAWH-5T$-s?YzEGTI*@DdSk+DgQ*NW3_Igp$Q;R4hnl9RW zGY!>ZxY-|JUsX8{#WzU{&??Z27X; z_8P{}gCZLcq;6d6Po;$pOrnE03a*Y!jH85VssrLUN(!s5Mfqmgzqb%7Bx%++F=7@r z^mbYt4|N<}wK6Y^oE!~iL{4v5lNXsiB>`W`sLVdwnz?l0a(8*TJu|&}xw*VFw{XEb zg860in{4~I(^u`b_te5tx3$`At#mK1wq_SrTg`4~ID#EH;E@V;Xc6auy z?TA|Eb5aMtprj5ZTFJF)&Srg^i6bPv+CoCS3|5q>j-k`LJ8U~fVk>dBFVToK$h}#{ zc%MNSQ{)Vpi-OGvfpe)(yF;HlNrOnJ<-6a_(MJ-nS~QMSl?|z5qshLREmK%Ij%xs^ zOC&Z^kcN9CL~?#i^61+nSI@BD#1z-}bMfwuBx58P)NyLM2#SRLrb)890}0;p*15ey zl)G)LB;MQGnD6sw)uVmNCWR-YZL6=83dL3Lhzm+#D~8?XRqEcok!Rc%lB;E-d<0xI z1sQwaVyu?!_jCJ6BEN0GP@U0a9wBpQB$@k4XLm=kInj?TMzk3Dbfe#5t=kj(^u`7r z=4kJ^YBam!h!yS*9UeD>0r#e)Z9gYspI1%F8k7^tkjP119 z5QVHB$SKKjm~5L=?us}s(+!<&7z1+7_;J0E$k$~0AT74+XXH+hDA$hDg>mA@a!*u? zRD-g;>ml=3K^fiJY}r6o98nh0ok(wqbY3yiL$+@4D!b4DN?Ig;jpMjV1udLaK5 zI2akj5w~Sxf6!$&oUi|XDc~l5lO%@g(NFka7tik3?|h9&M5tjDo%RVp%px~rnRJ%Y q{yIzK<%QxSsk-T%E^iqn`En$-iad(BCUeO~Tr?G`zm$77&3^z<$_lgq literal 0 HcmV?d00001 diff --git a/debug_toolbar/locale/fr/LC_MESSAGES/django.po b/debug_toolbar/locale/fr/LC_MESSAGES/django.po new file mode 100644 index 0000000..a571bb1 --- /dev/null +++ b/debug_toolbar/locale/fr/LC_MESSAGES/django.po @@ -0,0 +1,376 @@ +# Django Debug Toolbar in French. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# David Paccoud, 2009. +# +# +msgid "" +msgstr "" +"Project-Id-Version: Django Debug Toolbar 0.8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-18 08:06-0800\n" +"PO-Revision-Date: 2009-10-14 22:53+0200\n" +"Last-Translator: David Paccoud \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: panels/cache.py:92 +#, python-format +msgid "Cache: %.2fms" +msgstr "" + +#: panels/cache.py:95 +msgid "Cache Usage" +msgstr "Usage du cache" + +#: panels/headers.py:36 panels/headers.py:39 +msgid "HTTP Headers" +msgstr "En-têtes HTTP" + +#: panels/logger.py:56 +msgid "Logging" +msgstr "Journaux" + +#: panels/logger.py:63 +#, fuzzy +msgid "Log Messages" +msgstr "Message" + +#: panels/request_vars.py:13 panels/request_vars.py:16 +msgid "Request Vars" +msgstr "Variables de requête" + +#: panels/settings_vars.py:16 +msgid "Settings" +msgstr "Paramètres" + +#: panels/settings_vars.py:19 +#, python-format +msgid "Settings from %s" +msgstr "Paramètres de %s" + +#: panels/signals.py:39 panels/signals.py:42 +msgid "Signals" +msgstr "Signaux" + +#: panels/sql.py:146 +msgid "SQL" +msgstr "SQL" + +#: panels/sql.py:160 +#, fuzzy +msgid "SQL Queries" +msgstr "Requêtes SQL" + +#: panels/template.py:47 +msgid "Templates" +msgstr "Gabarits" + +#: panels/template.py:52 +#, python-format +msgid "Templates (%(num_templates)s rendered)" +msgstr "Gabarits (%(num_templates)s affichés)" + +#: panels/timer.py:35 templates/debug_toolbar/panels/cache.html:39 +#: templates/debug_toolbar/panels/logger.html:7 +#: templates/debug_toolbar/panels/sql.html:5 +#: templates/debug_toolbar/panels/sql_explain.html:11 +#: templates/debug_toolbar/panels/sql_profile.html:12 +#: templates/debug_toolbar/panels/sql_select.html:11 +msgid "Time" +msgstr "Temps" + +#: panels/timer.py:47 +#, fuzzy +msgid "Resource Usage" +msgstr "Usage des ressources" + +#: panels/timer.py:78 +msgid "User CPU time" +msgstr "Temps CPU utilisateur" + +#: panels/timer.py:79 +msgid "System CPU time" +msgstr "Temps CPU système" + +#: panels/timer.py:80 +#, fuzzy +msgid "Total CPU time" +msgstr "Temps CPU Total" + +#: panels/timer.py:81 +msgid "Elapsed time" +msgstr "Temps écoulé" + +#: panels/timer.py:82 +#, fuzzy +msgid "Context switches" +msgstr "Changements de contexte" + +#: panels/version.py:20 panels/version.py:29 +#, fuzzy +msgid "Versions" +msgstr "Versions" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide Toolbar" +msgstr "Masquer la barre" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide" +msgstr "Masquer" + +#: templates/debug_toolbar/base.html:48 +msgid "Show Toolbar" +msgstr "Afficher la barre" + +#: templates/debug_toolbar/base.html:54 +msgid "Close" +msgstr "Fermer" + +#: templates/debug_toolbar/redirect.html:7 +#: templates/debug_toolbar/panels/logger.html:9 +msgid "Location" +msgstr "Emplacement" + +#: templates/debug_toolbar/redirect.html:9 +msgid "" +"The Django Debug Toolbar has intercepted a redirect to the above URL for " +"debug viewing purposes. You can click the above link to continue with the " +"redirect as normal. If you'd like to disable this feature, set the " +"DEBUG_TOOLBAR_CONFIG dictionary's key " +"INTERCEPT_REDIRECTS to False." +msgstr "" +"La barre de Debug Django a intercepté une redirection vers l'adresse ci-" +"dessous afin de permettre la consultation des messages de debug. Vous " +"pouvez cliquer sur le lien ci-dessus pour continuer normalement avec la " +"redirection. Si vous voulez désactiver cette fonctionnalité, paramétrez la " +"valeur de la clé INTERCEPT_REDIRECTS du dictionnaire " +"DEBUG_TOOLBAR_CONFIG à False." + +#: templates/debug_toolbar/panels/cache.html:14 +msgid "Total Calls" +msgstr "Nombre total d'appels" + +#: templates/debug_toolbar/panels/cache.html:16 +msgid "Total Time" +msgstr "Temps Total" + +#: templates/debug_toolbar/panels/cache.html:18 +msgid "Hits" +msgstr "Requêtes" + +#: templates/debug_toolbar/panels/cache.html:20 +msgid "Misses" +msgstr "Ratés" + +#: templates/debug_toolbar/panels/cache.html:35 +msgid "Breakdown" +msgstr "Cassé" + +#: templates/debug_toolbar/panels/cache.html:40 +msgid "Type" +msgstr "Type" + +#: templates/debug_toolbar/panels/cache.html:41 +msgid "Parameters" +msgstr "Paramètres" + +#: templates/debug_toolbar/panels/cache.html:42 +msgid "Function" +msgstr "Fonction" + +#: templates/debug_toolbar/panels/headers.html:5 +msgid "Key" +msgstr "Clé" + +#: templates/debug_toolbar/panels/headers.html:6 +#: templates/debug_toolbar/panels/request_vars.html:37 +#: templates/debug_toolbar/panels/request_vars.html:63 +#: templates/debug_toolbar/panels/request_vars.html:85 +#: templates/debug_toolbar/panels/request_vars.html:107 +#: templates/debug_toolbar/panels/settings_vars.html:6 +#: templates/debug_toolbar/panels/timer.html:10 +msgid "Value" +msgstr "Valeur" + +#: templates/debug_toolbar/panels/logger.html:6 +msgid "Level" +msgstr "Niveau" + +#: templates/debug_toolbar/panels/logger.html:8 +msgid "Message" +msgstr "Message" + +#: templates/debug_toolbar/panels/logger.html:24 +msgid "No messages logged" +msgstr "Aucun message dans le journal" + +#: templates/debug_toolbar/panels/request_vars.html:3 +msgid "View information" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:7 +#, fuzzy +msgid "View Function" +msgstr "Fonction" + +#: templates/debug_toolbar/panels/request_vars.html:8 +msgid "args" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:9 +msgid "kwargs" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:27 +msgid "COOKIES Variables" +msgstr "Variables des COOKIES" + +#: templates/debug_toolbar/panels/request_vars.html:36 +#: templates/debug_toolbar/panels/request_vars.html:62 +#: templates/debug_toolbar/panels/request_vars.html:84 +#: templates/debug_toolbar/panels/request_vars.html:106 +msgid "Variable" +msgstr "Variable" + +#: templates/debug_toolbar/panels/request_vars.html:50 +msgid "No COOKIE data" +msgstr "Aucune donnée de COOKIE" + +#: templates/debug_toolbar/panels/request_vars.html:53 +msgid "SESSION Variables" +msgstr "Variables de SESSION" + +#: templates/debug_toolbar/panels/request_vars.html:76 +msgid "No SESSION data" +msgstr "Aucune donnée de SESSION" + +#: templates/debug_toolbar/panels/request_vars.html:79 +msgid "GET Variables" +msgstr "Variables GET" + +#: templates/debug_toolbar/panels/request_vars.html:98 +msgid "No GET data" +msgstr "Aucune donnée GET" + +#: templates/debug_toolbar/panels/request_vars.html:101 +msgid "POST Variables" +msgstr "Variables POST" + +#: templates/debug_toolbar/panels/request_vars.html:120 +msgid "No POST data" +msgstr "Aucune donnée POST" + +#: templates/debug_toolbar/panels/settings_vars.html:5 +msgid "Setting" +msgstr "Paramètre" + +#: templates/debug_toolbar/panels/signals.html:5 +msgid "Signal" +msgstr "Signal" + +#: templates/debug_toolbar/panels/signals.html:6 +msgid "Providing Args" +msgstr "" + +#: templates/debug_toolbar/panels/signals.html:7 +msgid "Receivers" +msgstr "Receveurs" + +#: templates/debug_toolbar/panels/sql.html:6 +msgid "Action" +msgstr "Action" + +#: templates/debug_toolbar/panels/sql.html:7 +msgid "Stacktrace" +msgstr "Pile d'appel" + +#: templates/debug_toolbar/panels/sql.html:8 +msgid "Query" +msgstr "Requête" + +#: templates/debug_toolbar/panels/sql.html:38 +msgid "Line" +msgstr "Ligne" + +#: templates/debug_toolbar/panels/sql.html:39 +msgid "Method" +msgstr "Méthode" + +#: templates/debug_toolbar/panels/sql.html:40 +msgid "File" +msgstr "Fichier" + +#: templates/debug_toolbar/panels/sql_explain.html:3 +#: templates/debug_toolbar/panels/sql_profile.html:3 +#: templates/debug_toolbar/panels/sql_select.html:3 +#: templates/debug_toolbar/panels/template_source.html:3 +msgid "Back" +msgstr "Retour" + +#: templates/debug_toolbar/panels/sql_explain.html:4 +msgid "SQL Explained" +msgstr "SQL Expliqué" + +#: templates/debug_toolbar/panels/sql_explain.html:9 +#: templates/debug_toolbar/panels/sql_profile.html:10 +#: templates/debug_toolbar/panels/sql_select.html:9 +msgid "Executed SQL" +msgstr "SQL Exécuté" + +#: templates/debug_toolbar/panels/sql_profile.html:4 +msgid "SQL Profiled" +msgstr "SQL Profilé" + +#: templates/debug_toolbar/panels/sql_profile.html:35 +msgid "Error" +msgstr "Erreur" + +#: templates/debug_toolbar/panels/sql_select.html:4 +msgid "SQL Selected" +msgstr "SQL Sélectionné" + +#: templates/debug_toolbar/panels/sql_select.html:34 +msgid "Empty set" +msgstr "Ensemble vide" + +#: templates/debug_toolbar/panels/template_source.html:4 +msgid "Template Source" +msgstr "Source du gabarit" + +#: templates/debug_toolbar/panels/templates.html:2 +msgid "Template path" +msgstr "Chemin du gabarit" + +#: templates/debug_toolbar/panels/templates.html:13 +msgid "Template" +msgstr "Gabarit" + +#: templates/debug_toolbar/panels/templates.html:21 +#: templates/debug_toolbar/panels/templates.html:37 +msgid "Toggle Context" +msgstr "Afficher/Masquer le contexte" + +#: templates/debug_toolbar/panels/templates.html:28 +#: templates/debug_toolbar/panels/templates.html:43 +msgid "None" +msgstr "Aucun" + +#: templates/debug_toolbar/panels/templates.html:31 +msgid "Context processor" +msgstr "Processeur de contexte" + +#: templates/debug_toolbar/panels/timer.html:9 +msgid "Resource" +msgstr "Ressources" + +#: templates/debug_toolbar/panels/versions.html:6 +msgid "Package" +msgstr "Paquet" + +#: templates/debug_toolbar/panels/versions.html:7 +msgid "Version" +msgstr "Version" diff --git a/debug_toolbar/locale/he/LC_MESSAGES/django.mo b/debug_toolbar/locale/he/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..4236dd535e0226316840e0bc53f37fdbe520a716 GIT binary patch literal 1647 zcmZ{iPiz!b9LFD01Q!(fuYl%7(*uWDrp1tD_#?|Yt+mr`=`IbP$Yb|049w0nGgHz{ zJdzksQrQ;P(9#l>rN)zIPbQr4U|!+@6FCqsh8q_W`2OC$wi3e2zWu!4@BRM2dAPl2 zmSKH}y&rqaI>ruw&p=v>Z!q>IxCHiq9dHBq3-}iJtC4>Lw?O_KB)bQOe;WP;u800_ zko+GR{lDNQ$p3*G!Ka4L!FM2UgwtklH%Re60=I$(!R_FuAk{YxlK+<=#SGL4@A2Ip? zkm@TNdBX4=!Qsnh?ug@DuEw~&>&@1*_aGPCRYzo z1r3OCCPLmlHYX*U5aAU4CxJMR7RHkJlB{LcP~Do4Ns19Te5_a+E)KeU!X2jya^rF` zPBLpG^@F-~YRXToYV7dbSh;GI5~&-tK0|7U_uKXntFO=MD{#Bu*oQ5zAk5d|#tB$Q z{uE|vRi$V++$)X_o}sFbdEUt|$j6C)A~!NL;;!}8m$!4JILc&%G?<0MGdZ0d#Mpx9 zD6d@<2_F0Snd*R5ShJ&YF37}kqgq_YQ#!nGKFD%R{h;oswz{Qe)iP5z)ST+57E?>= zJ7_vgEdxKPYjn+V)mC?zx`)d)bg*l|az=GHg3OSE{;1Sl9B0&z-Rou8B2WuqZXtor zvw*bA>IOr^1qySIeCe>Dedp<-t+n$Uhgs-vQ;1o09hqQv4cgmWE$aFfATJ_^SB~0x Wu4`+sM3pl%&{5yh80OGzi@gBwvf<(Y literal 0 HcmV?d00001 diff --git a/debug_toolbar/locale/he/LC_MESSAGES/django.po b/debug_toolbar/locale/he/LC_MESSAGES/django.po new file mode 100644 index 0000000..11fbb26 --- /dev/null +++ b/debug_toolbar/locale/he/LC_MESSAGES/django.po @@ -0,0 +1,372 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-18 08:06-0800\n" +"PO-Revision-Date: 2009-08-24 23:08-0600\n" +"Last-Translator: Alex \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: panels/cache.py:92 +#, python-format +msgid "Cache: %.2fms" +msgstr "" + +#: panels/cache.py:95 +msgid "Cache Usage" +msgstr "" + +#: panels/headers.py:36 panels/headers.py:39 +msgid "HTTP Headers" +msgstr "" + +#: panels/logger.py:56 +msgid "Logging" +msgstr "רישום יומן" + +#: panels/logger.py:63 +#, fuzzy +msgid "Log Messages" +msgstr "הודעה" + +#: panels/request_vars.py:13 panels/request_vars.py:16 +msgid "Request Vars" +msgstr "" + +#: panels/settings_vars.py:16 +msgid "Settings" +msgstr "" + +#: panels/settings_vars.py:19 +#, python-format +msgid "Settings from %s" +msgstr "" + +#: panels/signals.py:39 panels/signals.py:42 +msgid "Signals" +msgstr "סימנים" + +#: panels/sql.py:146 +msgid "SQL" +msgstr "" + +#: panels/sql.py:160 +msgid "SQL Queries" +msgstr "" + +#: panels/template.py:47 +msgid "Templates" +msgstr "תבניות" + +#: panels/template.py:52 +#, python-format +msgid "Templates (%(num_templates)s rendered)" +msgstr "" + +#: panels/timer.py:35 templates/debug_toolbar/panels/cache.html:39 +#: templates/debug_toolbar/panels/logger.html:7 +#: templates/debug_toolbar/panels/sql.html:5 +#: templates/debug_toolbar/panels/sql_explain.html:11 +#: templates/debug_toolbar/panels/sql_profile.html:12 +#: templates/debug_toolbar/panels/sql_select.html:11 +msgid "Time" +msgstr "זמן" + +#: panels/timer.py:47 +msgid "Resource Usage" +msgstr "" + +#: panels/timer.py:78 +msgid "User CPU time" +msgstr "" + +#: panels/timer.py:79 +msgid "System CPU time" +msgstr "" + +#: panels/timer.py:80 +#, fuzzy +msgid "Total CPU time" +msgstr "זמן" + +#: panels/timer.py:81 +msgid "Elapsed time" +msgstr "" + +#: panels/timer.py:82 +msgid "Context switches" +msgstr "" + +#: panels/version.py:20 panels/version.py:29 +#, fuzzy +msgid "Versions" +msgstr "ג 'נגו גירסה" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide Toolbar" +msgstr "" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide" +msgstr "הסתיר" + +#: templates/debug_toolbar/base.html:48 +msgid "Show Toolbar" +msgstr "" + +#: templates/debug_toolbar/base.html:54 +msgid "Close" +msgstr "סגור" + +#: templates/debug_toolbar/redirect.html:7 +#: templates/debug_toolbar/panels/logger.html:9 +msgid "Location" +msgstr "מקום" + +#: templates/debug_toolbar/redirect.html:9 +msgid "" +"The Django Debug Toolbar has intercepted a redirect to the above URL for " +"debug viewing purposes. You can click the above link to continue with the " +"redirect as normal. If you'd like to disable this feature, set the " +"DEBUG_TOOLBAR_CONFIG dictionary's key " +"INTERCEPT_REDIRECTS to False." +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:14 +msgid "Total Calls" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:16 +msgid "Total Time" +msgstr "זמן" + +#: templates/debug_toolbar/panels/cache.html:18 +msgid "Hits" +msgstr "הצלחות" + +#: templates/debug_toolbar/panels/cache.html:20 +msgid "Misses" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:35 +msgid "Breakdown" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:40 +msgid "Type" +msgstr "סוג" + +#: templates/debug_toolbar/panels/cache.html:41 +msgid "Parameters" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:42 +msgid "Function" +msgstr "" + +#: templates/debug_toolbar/panels/headers.html:5 +msgid "Key" +msgstr "מפתח" + +#: templates/debug_toolbar/panels/headers.html:6 +#: templates/debug_toolbar/panels/request_vars.html:37 +#: templates/debug_toolbar/panels/request_vars.html:63 +#: templates/debug_toolbar/panels/request_vars.html:85 +#: templates/debug_toolbar/panels/request_vars.html:107 +#: templates/debug_toolbar/panels/settings_vars.html:6 +#: templates/debug_toolbar/panels/timer.html:10 +msgid "Value" +msgstr "ערך" + +#: templates/debug_toolbar/panels/logger.html:6 +msgid "Level" +msgstr "רמה" + +#: templates/debug_toolbar/panels/logger.html:8 +msgid "Message" +msgstr "הודעה" + +#: templates/debug_toolbar/panels/logger.html:24 +msgid "No messages logged" +msgstr "אין הודעות" + +#: templates/debug_toolbar/panels/request_vars.html:3 +msgid "View information" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:7 +msgid "View Function" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:8 +msgid "args" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:9 +msgid "kwargs" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:27 +#, fuzzy +msgid "COOKIES Variables" +msgstr "מזהה" + +#: templates/debug_toolbar/panels/request_vars.html:36 +#: templates/debug_toolbar/panels/request_vars.html:62 +#: templates/debug_toolbar/panels/request_vars.html:84 +#: templates/debug_toolbar/panels/request_vars.html:106 +msgid "Variable" +msgstr "מזהה" + +#: templates/debug_toolbar/panels/request_vars.html:50 +msgid "No COOKIE data" +msgstr "אין נתונים לעוגיות" + +#: templates/debug_toolbar/panels/request_vars.html:53 +#, fuzzy +msgid "SESSION Variables" +msgstr "מזהה" + +#: templates/debug_toolbar/panels/request_vars.html:76 +msgid "No SESSION data" +msgstr "אין נתונים להתחברות" + +#: templates/debug_toolbar/panels/request_vars.html:79 +#, fuzzy +msgid "GET Variables" +msgstr "מזהה" + +#: templates/debug_toolbar/panels/request_vars.html:98 +msgid "No GET data" +msgstr "שום דבר עבור GET" + +#: templates/debug_toolbar/panels/request_vars.html:101 +#, fuzzy +msgid "POST Variables" +msgstr "מזהה" + +#: templates/debug_toolbar/panels/request_vars.html:120 +msgid "No POST data" +msgstr "שום דבר עבור POST" + +#: templates/debug_toolbar/panels/settings_vars.html:5 +msgid "Setting" +msgstr "" + +#: templates/debug_toolbar/panels/signals.html:5 +msgid "Signal" +msgstr "סימן" + +#: templates/debug_toolbar/panels/signals.html:6 +msgid "Providing Args" +msgstr "" + +#: templates/debug_toolbar/panels/signals.html:7 +msgid "Receivers" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:6 +msgid "Action" +msgstr "פעילות" + +#: templates/debug_toolbar/panels/sql.html:7 +msgid "Stacktrace" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:8 +msgid "Query" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:38 +msgid "Line" +msgstr "שורה" + +#: templates/debug_toolbar/panels/sql.html:39 +msgid "Method" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:40 +msgid "File" +msgstr "קובץ" + +#: templates/debug_toolbar/panels/sql_explain.html:3 +#: templates/debug_toolbar/panels/sql_profile.html:3 +#: templates/debug_toolbar/panels/sql_select.html:3 +#: templates/debug_toolbar/panels/template_source.html:3 +msgid "Back" +msgstr "חזרה" + +#: templates/debug_toolbar/panels/sql_explain.html:4 +msgid "SQL Explained" +msgstr "" + +#: templates/debug_toolbar/panels/sql_explain.html:9 +#: templates/debug_toolbar/panels/sql_profile.html:10 +#: templates/debug_toolbar/panels/sql_select.html:9 +msgid "Executed SQL" +msgstr "הסבר עבור SQL" + +#: templates/debug_toolbar/panels/sql_profile.html:4 +msgid "SQL Profiled" +msgstr "" + +#: templates/debug_toolbar/panels/sql_profile.html:35 +msgid "Error" +msgstr "שגיאה" + +#: templates/debug_toolbar/panels/sql_select.html:4 +msgid "SQL Selected" +msgstr "" + +#: templates/debug_toolbar/panels/sql_select.html:34 +msgid "Empty set" +msgstr "תוצאות ריק" + +#: templates/debug_toolbar/panels/template_source.html:4 +#, fuzzy +msgid "Template Source" +msgstr "תבנית" + +#: templates/debug_toolbar/panels/templates.html:2 +#, fuzzy +msgid "Template path" +msgstr "תבנית" + +#: templates/debug_toolbar/panels/templates.html:13 +msgid "Template" +msgstr "תבנית" + +#: templates/debug_toolbar/panels/templates.html:21 +#: templates/debug_toolbar/panels/templates.html:37 +msgid "Toggle Context" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:28 +#: templates/debug_toolbar/panels/templates.html:43 +msgid "None" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:31 +msgid "Context processor" +msgstr "" + +#: templates/debug_toolbar/panels/timer.html:9 +msgid "Resource" +msgstr "" + +#: templates/debug_toolbar/panels/versions.html:6 +msgid "Package" +msgstr "" + +#: templates/debug_toolbar/panels/versions.html:7 +#, fuzzy +msgid "Version" +msgstr "ג 'נגו גירסה" diff --git a/debug_toolbar/locale/ru/LC_MESSAGES/django.mo b/debug_toolbar/locale/ru/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..e9b0f1bd92c2d93415a810b4556d008f4df4adc0 GIT binary patch literal 2514 zcmai!Piz!b9LJvuqE$q}e<JkbYV@Kf?&?7kzrQ!bACc(GzWvPmz2E=$W`0_~ z>Kw!1n44(c$Jk56`|*eI4fr7VEw~C);A-$Y@L}+WZ2c?vDAqSX()%M@|CO!V9$*YV zwhn(}zX2q@jo?GzW^fI-CF6FG;=T&52X}#FcL1a~Z-HdzfMi$8)-gzS?`HBTkn%hY zcA>TlAjSP2e~*AagKgjqko^A!lHWhUHPBxT;p14Zg;Ubo3_b>K1u2hw#$v`YNcKbE zGhj87kAqalX^`wMW%4gU^1B35|Gx%F@0U#eJGc?+`%xst+mvx@#vLH#R{+V*1j&CT z<5P(0*tECVf!VorIL_)P!SG05R0I}%Hl{Y z!iXQT;JGY983(ptgCdH^OU955x)tB@GK9<&wYq0T0#8-JyANA_Me=Sj99Ot0r8jH^ zylREq^&mE%Q3+ZmP>p@2HersW3D)gz`Py@b+jgI=lpFM zbKCN{?YZ{o9fqFkV=1{UedHPoe$-r{i29TjBfxS=)d z;j!w5d_-7L9Efdn3fjj`TRLJ_cd_f>o*}cpztpw6JXGl4-_yHi=XSjXdwq~r(AX04 zQPJS3N$-BMSS}O?%%O6zySH2{n1eSh5H!{4vAj@Z(spLLHNi|7SspJ~o`;_5XDvQt zd9h$P9G7xs1A#n@4jR3VaR^rd_o$P%l|@|!kO06*UNpceUGipIKQ^o7axLQdjnEDJ>^J+1b zLRT$f&O&jH)7!_?T}F!HSwm-X|}qh)gFTL}7RD&T}YX_pVAPw_9ah(vcC8YP_hLh}cw1WR;BT zu2Eh(jd`k-g3O^ZonJEjujS{kp3$vY#_l~|d^O9_(Mc%bH1Ko+{g_Usc=8^KT1?L1 zQC&v@)C0ouS$Zm@UHnakx97TRTH`x?_|uHm@QFZ9-=;O%*^4cL;^l zNdtYy#F-)Nxnu&8IgVCy7cv+dq8`ci&?Hc zlZ4K#m3=+_>!Wlt4DSD!xn9xVSfV`Z>vWD literal 0 HcmV?d00001 diff --git a/debug_toolbar/locale/ru/LC_MESSAGES/django.po b/debug_toolbar/locale/ru/LC_MESSAGES/django.po new file mode 100644 index 0000000..a0a1996 --- /dev/null +++ b/debug_toolbar/locale/ru/LC_MESSAGES/django.po @@ -0,0 +1,379 @@ +# Django Debug Toolbar in Russian. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Mikhail Korobov, 2009. +# +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-18 08:06-0800\n" +"PO-Revision-Date: \n" +"Last-Translator: Mikhail Korobov \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: panels/cache.py:92 +#, python-format +msgid "Cache: %.2fms" +msgstr "" + +#: panels/cache.py:95 +msgid "Cache Usage" +msgstr "" + +#: panels/headers.py:36 panels/headers.py:39 +msgid "HTTP Headers" +msgstr "Заголовки HTTP" + +#: panels/logger.py:56 +msgid "Logging" +msgstr "Журналирование" + +#: panels/logger.py:63 +#, fuzzy +msgid "Log Messages" +msgstr "Сообщение" + +#: panels/request_vars.py:13 panels/request_vars.py:16 +msgid "Request Vars" +msgstr "Запрос" + +#: panels/settings_vars.py:16 +msgid "Settings" +msgstr "Настройки" + +#: panels/settings_vars.py:19 +#, python-format +msgid "Settings from %s" +msgstr "" + +#: panels/signals.py:39 panels/signals.py:42 +msgid "Signals" +msgstr "Сигналы" + +#: panels/sql.py:146 +msgid "SQL" +msgstr "" + +#: panels/sql.py:160 +msgid "SQL Queries" +msgstr "" + +#: panels/template.py:47 +msgid "Templates" +msgstr "Шаблоны" + +#: panels/template.py:52 +#, python-format +msgid "Templates (%(num_templates)s rendered)" +msgstr "" + +#: panels/timer.py:35 templates/debug_toolbar/panels/cache.html:39 +#: templates/debug_toolbar/panels/logger.html:7 +#: templates/debug_toolbar/panels/sql.html:5 +#: templates/debug_toolbar/panels/sql_explain.html:11 +#: templates/debug_toolbar/panels/sql_profile.html:12 +#: templates/debug_toolbar/panels/sql_select.html:11 +msgid "Time" +msgstr "Время" + +#: panels/timer.py:47 +#, fuzzy +msgid "Resource Usage" +msgstr "Ресурс" + +#: panels/timer.py:78 +msgid "User CPU time" +msgstr "" + +#: panels/timer.py:79 +msgid "System CPU time" +msgstr "" + +#: panels/timer.py:80 +#, fuzzy +msgid "Total CPU time" +msgstr "Общее время" + +#: panels/timer.py:81 +msgid "Elapsed time" +msgstr "" + +#: panels/timer.py:82 +msgid "Context switches" +msgstr "" + +#: panels/version.py:20 panels/version.py:29 +#, fuzzy +msgid "Versions" +msgstr "Версия Django" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide Toolbar" +msgstr "" + +#: templates/debug_toolbar/base.html:23 +msgid "Hide" +msgstr "Скрыть" + +#: templates/debug_toolbar/base.html:48 +msgid "Show Toolbar" +msgstr "" + +#: templates/debug_toolbar/base.html:54 +msgid "Close" +msgstr "Закрыть" + +#: templates/debug_toolbar/redirect.html:7 +#: templates/debug_toolbar/panels/logger.html:9 +msgid "Location" +msgstr "Место" + +#: templates/debug_toolbar/redirect.html:9 +msgid "" +"The Django Debug Toolbar has intercepted a redirect to the above URL for " +"debug viewing purposes. You can click the above link to continue with the " +"redirect as normal. If you'd like to disable this feature, set the " +"DEBUG_TOOLBAR_CONFIG dictionary's key " +"INTERCEPT_REDIRECTS to False." +msgstr "" +"Django Debug Toolbar в отладочных целях перехватила редирект на адрес, " +"указанный выше. Вы можете нажать на ссылку, чтобы продолжить обычное " +"выполнение. Если хотите отключить это поведение, установите в словаре " +"DEBUG_TOOLBAR_CONFIG ключ INTERCEPT_REDIRECTS " +"равным False." + +#: templates/debug_toolbar/panels/cache.html:14 +msgid "Total Calls" +msgstr "Всего вызовов" + +#: templates/debug_toolbar/panels/cache.html:16 +msgid "Total Time" +msgstr "Общее время" + +#: templates/debug_toolbar/panels/cache.html:18 +msgid "Hits" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:20 +msgid "Misses" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:35 +msgid "Breakdown" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:40 +msgid "Type" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:41 +msgid "Parameters" +msgstr "" + +#: templates/debug_toolbar/panels/cache.html:42 +msgid "Function" +msgstr "" + +#: templates/debug_toolbar/panels/headers.html:5 +msgid "Key" +msgstr "Заголовок" + +#: templates/debug_toolbar/panels/headers.html:6 +#: templates/debug_toolbar/panels/request_vars.html:37 +#: templates/debug_toolbar/panels/request_vars.html:63 +#: templates/debug_toolbar/panels/request_vars.html:85 +#: templates/debug_toolbar/panels/request_vars.html:107 +#: templates/debug_toolbar/panels/settings_vars.html:6 +#: templates/debug_toolbar/panels/timer.html:10 +msgid "Value" +msgstr "Значение" + +#: templates/debug_toolbar/panels/logger.html:6 +msgid "Level" +msgstr "Уровень" + +#: templates/debug_toolbar/panels/logger.html:8 +msgid "Message" +msgstr "Сообщение" + +#: templates/debug_toolbar/panels/logger.html:24 +msgid "No messages logged" +msgstr "Сообщений нет" + +#: templates/debug_toolbar/panels/request_vars.html:3 +msgid "View information" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:7 +msgid "View Function" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:8 +msgid "args" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:9 +msgid "kwargs" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:27 +#, fuzzy +msgid "COOKIES Variables" +msgstr "Переменная" + +#: templates/debug_toolbar/panels/request_vars.html:36 +#: templates/debug_toolbar/panels/request_vars.html:62 +#: templates/debug_toolbar/panels/request_vars.html:84 +#: templates/debug_toolbar/panels/request_vars.html:106 +msgid "Variable" +msgstr "Переменная" + +#: templates/debug_toolbar/panels/request_vars.html:50 +msgid "No COOKIE data" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:53 +#, fuzzy +msgid "SESSION Variables" +msgstr "Переменная" + +#: templates/debug_toolbar/panels/request_vars.html:76 +msgid "No SESSION data" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:79 +#, fuzzy +msgid "GET Variables" +msgstr "Переменная" + +#: templates/debug_toolbar/panels/request_vars.html:98 +msgid "No GET data" +msgstr "" + +#: templates/debug_toolbar/panels/request_vars.html:101 +#, fuzzy +msgid "POST Variables" +msgstr "Переменная" + +#: templates/debug_toolbar/panels/request_vars.html:120 +msgid "No POST data" +msgstr "" + +#: templates/debug_toolbar/panels/settings_vars.html:5 +msgid "Setting" +msgstr "Параметр" + +#: templates/debug_toolbar/panels/signals.html:5 +msgid "Signal" +msgstr "Сигналы" + +#: templates/debug_toolbar/panels/signals.html:6 +msgid "Providing Args" +msgstr "" + +#: templates/debug_toolbar/panels/signals.html:7 +msgid "Receivers" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:6 +msgid "Action" +msgstr "Действие" + +#: templates/debug_toolbar/panels/sql.html:7 +msgid "Stacktrace" +msgstr "" + +#: templates/debug_toolbar/panels/sql.html:8 +msgid "Query" +msgstr "Запрос" + +#: templates/debug_toolbar/panels/sql.html:38 +msgid "Line" +msgstr "Строка" + +#: templates/debug_toolbar/panels/sql.html:39 +msgid "Method" +msgstr "Метод" + +#: templates/debug_toolbar/panels/sql.html:40 +msgid "File" +msgstr "Файл" + +#: templates/debug_toolbar/panels/sql_explain.html:3 +#: templates/debug_toolbar/panels/sql_profile.html:3 +#: templates/debug_toolbar/panels/sql_select.html:3 +#: templates/debug_toolbar/panels/template_source.html:3 +msgid "Back" +msgstr "Назад" + +#: templates/debug_toolbar/panels/sql_explain.html:4 +msgid "SQL Explained" +msgstr "" + +#: templates/debug_toolbar/panels/sql_explain.html:9 +#: templates/debug_toolbar/panels/sql_profile.html:10 +#: templates/debug_toolbar/panels/sql_select.html:9 +msgid "Executed SQL" +msgstr "Запрос" + +#: templates/debug_toolbar/panels/sql_profile.html:4 +msgid "SQL Profiled" +msgstr "" + +#: templates/debug_toolbar/panels/sql_profile.html:35 +msgid "Error" +msgstr "Ошибка" + +#: templates/debug_toolbar/panels/sql_select.html:4 +msgid "SQL Selected" +msgstr "" + +#: templates/debug_toolbar/panels/sql_select.html:34 +msgid "Empty set" +msgstr "Ничего" + +#: templates/debug_toolbar/panels/template_source.html:4 +#, fuzzy +msgid "Template Source" +msgstr "Шаблоны" + +#: templates/debug_toolbar/panels/templates.html:2 +#, fuzzy +msgid "Template path" +msgstr "Шаблоны" + +#: templates/debug_toolbar/panels/templates.html:13 +msgid "Template" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:21 +#: templates/debug_toolbar/panels/templates.html:37 +msgid "Toggle Context" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:28 +#: templates/debug_toolbar/panels/templates.html:43 +msgid "None" +msgstr "" + +#: templates/debug_toolbar/panels/templates.html:31 +msgid "Context processor" +msgstr "" + +#: templates/debug_toolbar/panels/timer.html:9 +msgid "Resource" +msgstr "Ресурс" + +#: templates/debug_toolbar/panels/versions.html:6 +msgid "Package" +msgstr "" + +#: templates/debug_toolbar/panels/versions.html:7 +#, fuzzy +msgid "Version" +msgstr "Версия Django" diff --git a/debug_toolbar/management/__init__.py b/debug_toolbar/management/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/debug_toolbar/management/commands/__init__.py b/debug_toolbar/management/commands/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/debug_toolbar/management/commands/debugsqlshell.py b/debug_toolbar/management/commands/debugsqlshell.py new file mode 100644 index 0000000..eaeafd4 --- /dev/null +++ b/debug_toolbar/management/commands/debugsqlshell.py @@ -0,0 +1,76 @@ +import os +from optparse import make_option + +from django.core.management.base import NoArgsCommand +from django.db.backends import util + +from debug_toolbar.utils import sqlparse + +class PrintQueryWrapper(util.CursorDebugWrapper): + def execute(self, sql, params=()): + try: + return self.cursor.execute(sql, params) + finally: + raw_sql = self.db.ops.last_executed_query(self.cursor, sql, params) + print sqlparse.format(raw_sql, reindent=True) + print + +util.CursorDebugWrapper = PrintQueryWrapper + +# The rest is copy/paste from django/core/management/commands/shell.py + +class Command(NoArgsCommand): + option_list = NoArgsCommand.option_list + ( + make_option('--plain', action='store_true', dest='plain', + help='Tells Django to use plain Python, not IPython.'), + ) + help = "Runs a Python interactive interpreter. Tries to use IPython, if it's available." + + requires_model_validation = False + + def handle_noargs(self, **options): + # XXX: (Temporary) workaround for ticket #1796: force early loading of all + # models from installed apps. + from django.db.models.loading import get_models + loaded_models = get_models() + + use_plain = options.get('plain', False) + + try: + if use_plain: + # Don't bother loading IPython, because the user wants plain Python. + raise ImportError + import IPython + # Explicitly pass an empty list as arguments, because otherwise IPython + # would use sys.argv from this script. + shell = IPython.Shell.IPShell(argv=[]) + shell.mainloop() + except ImportError: + import code + # Set up a dictionary to serve as the environment for the shell, so + # that tab completion works on objects that are imported at runtime. + # See ticket 5082. + imported_objects = {} + try: # Try activating rlcompleter, because it's handy. + import readline + except ImportError: + pass + else: + # We don't have to wrap the following import in a 'try', because + # we already know 'readline' was imported successfully. + import rlcompleter + readline.set_completer(rlcompleter.Completer(imported_objects).complete) + readline.parse_and_bind("tab:complete") + + # We want to honor both $PYTHONSTARTUP and .pythonrc.py, so follow system + # conventions and get $PYTHONSTARTUP first then import user. + if not use_plain: + pythonrc = os.environ.get("PYTHONSTARTUP") + if pythonrc and os.path.isfile(pythonrc): + try: + execfile(pythonrc) + except NameError: + pass + # This will import .pythonrc.py as a side-effect + import user + code.interact(local=imported_objects) diff --git a/debug_toolbar/media/debug_toolbar/Makefile b/debug_toolbar/media/debug_toolbar/Makefile new file mode 100644 index 0000000..a2d6abb --- /dev/null +++ b/debug_toolbar/media/debug_toolbar/Makefile @@ -0,0 +1,9 @@ +# Make file to compress and join all JS files +all: compress_js compress_css + +compress_js: + java -jar ~/bin/yuicompressor.jar toolbar.js > toolbar.min.js + java -jar ~/bin/yuicompressor.jar jquery.cookie.js >> toolbar.min.js + +compress_css: + java -jar ~/bin/yuicompressor.jar --type css toolbar.css > toolbar.min.css diff --git a/debug_toolbar/media/debug_toolbar/back.png b/debug_toolbar/media/debug_toolbar/back.png new file mode 100644 index 0000000000000000000000000000000000000000..6ac8a52fc80646ccaa6c814a8697029f63e059aa GIT binary patch literal 1039 zcmV+q1n~QbP){E z?Y6$R%*rx5Gu^fve914HotgKW-_E=@9~;=+-IZFjI3NtTPToHQihxWrB!h#4_OqkO z&hG$j5{z)#`~Z9;So2HlSI9lU6F|a8+Yy3?fFxi6@V1eY+@Ssz;1l4DPZ6{wi0>D| z)sm1|z$(Y0BasNR!$P4T<@0$HpmHdXI|W!g_hD4}VphCkd25QBITFfDcak(lPR!<Og`{f`Cr)QhoM5>~1acxbRlE%wU&c|l zK|2|SVKxd@Z$|ZVMF==I+zZ+|U7O40RM^6~>FYL(6DNInhFr+Ws9JXmSp^(=Vj`Q( zu@*GmLMO80<73vQcL>w6O7FhU7;}0llgU`^rY3U0h_E)j7p!BzG99#NCnqOLJ7Ulm zIXL&9CEh8XdCEqjWHOm&Ws>Nqh&~(&O6ED=^S8RClp1gsj6y!jA@!R%d%v0olpgXwM?H^MfaK+a^!!>W5W)s z)hfa%@^hq|V~J>V(?f^5fXxfo(>4j$VykywoX2s%1315FYLF3dxX|pKWbutQS!cpi*d6*Y8?A3zyOD{ll?<0KhOXG002ov JPDHLkV1idQ;@JQI literal 0 HcmV?d00001 diff --git a/debug_toolbar/media/debug_toolbar/back_hover.png b/debug_toolbar/media/debug_toolbar/back_hover.png new file mode 100644 index 0000000000000000000000000000000000000000..452b6732fbf543718ddad11281206e9f7ad81557 GIT binary patch literal 1030 zcmV+h1o``kP)L!yCsZhvlR88Nv$B)9CGhyuA$eV>}MVpP25&EEUEM1GFFBiq4+ zr2dN|HU}|RUm?b#v!Wr5fMMBLSs^n3H#;NZdr!h6LuomOrLK{fDlhZ8`~VLxYVPtx zY)*}*Edm?PjZ9DQy4-Zl1R)*l$lWgivi^2Be9Sck6M! zKM3q+3G?x&? zTx{=7SX36NwmSmOT3HC*q7G%x;oi<6FHE;XE7CK+xP)A4?}{xN4XwuPmCbF^Q?x6{ z&6pkV_gGPgJ>k&Y2vMiG-QOGY3t0>bMEm|$M0&@a5s49S+fj&xweCkE!tF&d zlRX{MqWJfqe<($wD6}6f<{xANZi}A$Ck^kKaDve!_I_pL;IEhc1MRNc_odyy-P&CK z%wLet9Y!IGtkqz)phM}jMELsqq^Il`tew{c+>3geW5$JuE;~numzL<@`n9}7CVDz! zi^+b1b~O>miQJ5N0q&cS>?5P>B$Lyv>8!kn5{XdZ997=Fc+9?JN36bjLAI9`<939% zkjNf4ro>JPZ`|T_-Gm((kauJNu*QxsS5?mWggA`nC z$T&1HCo!I}^SXLO8QLfIxc`TV5!OHDq5`XxmntGr_A!fem8X;{R@D&W=~B^D&03p0b9W@&w$AGDUL9>c|sw^k8 zYTp)`^7jhqU_nE^SwafU%a#$zRC+k!I?c8-ZGOttmrlt^Xf^Kv+yktnAz+2h^=N$= z(53i&VP)AhkAVjQ z)6ATIz)yi~uZF!6c?P@zVjkvB3%ms4z$);ynUdLL{2}lQ_~Ma-Dlwt^N7!nM$P(}! zxNmeWcZIE`R=4I8@XF1y&*v+frdjRn?e)?BtE;POrBd-#t5wTIZ5_A`EP5fb>P8|I z3KapnzrSDmz>A9uBbUn+0h=*FwiCcw!@`vCrKtF()9&l*%MT6?20_5nUJ#+Pv$K4m zPzW+p9sxgU;j8+{d!5F>z(9F?eB3h$5}F%}#e$^EOj+Zc^*J!3BN2^8t+ulsbQv-; z;+Z#ytf(^sfk3Vk5;7UGr5RdLi7e>yL^vD{8C?>_R_y5LXh9}2uZs?yPn64LBa_J( zr>Ca|LbZOMuHl?UI-NGIudlT}LpC*J=H>96(-6^yA3X@6>0BcsjIpsX=lb~g*ohR9 zQmItGuiC8XN-|d?LRECC!Glec-iDS4#_HEZB#}r^a;uY2=csRmY$Nf>wx_T?QPP-H z75sjGh1=^$Bw`?&Hjt4?*tTs94-d1x!q}c9A`#81{cLf+1Euk$V zo0_2=ImK^L(o|<4WoNrpYfut&MK6tQ*;1?TJI$WnN~KcePDzjryb)c|`=DzBHdLo2 zIX^$QIw3>4WP>^XtaDwww#z0%@pwGPMG_Ywq{EOPdF^(bpp)5K#@RxYtdhxO(Txy| z(Hxq~YzN7*dJ61ex~34<$y0YurJRlv2;B;z$XQIWSgfE|F~xDhc6nJFYQO4su2~c< z|3{ZpZ=nIQq$bEqOS!Bg(d?v03QvH&E=2F1u(j6i*_ZZl7I*<9+aQn>y0gu`40x^C zpMg=as!b7khRbJ(O)+;==yvV1g#3oKr4Kb>;EwqJmy&U-A8KmyUw{Ds@BV#;ny-BZ P00000NkvXXu0mjffXL_h literal 0 HcmV?d00001 diff --git a/debug_toolbar/media/debug_toolbar/close_hover.png b/debug_toolbar/media/debug_toolbar/close_hover.png new file mode 100644 index 0000000000000000000000000000000000000000..5b2c812a799258a963b41b0af50baa742bb16076 GIT binary patch literal 1155 zcmV-}1bq96P)vP0f}S zHMg{FniXk8e}beiio(7T`cu&7j}-D(Mnqo{6&MlqCnAVGAWHH_^|K&~!tV^-R4gmA zmFc#&xz>AbXL@(i0TxxUXfO;CnZc5DAzKF<0 zR4Ea1GL{J6$5!xkw1Ln0k=dV~mk)ZI1Jd&gc@%`3sIL<@swC-4vf>HLJ2=n_zh1wB zKdvrCbCG7Yf}wOZXmc0whHOMMM$%U*qzz%0dU%@Og8TW?go49Zwh{D8SF*a=5sruu zaj+g>i5P8qlduS4#MjgEj@4zS_ml~#m5vO2a>CCSjY+4B`&om)#jskbkR7abV))H# zm@4CNnOrW{4zZ98tn6R~rgnw_%v*QC{IYUTYqS$lpPCA}Yu7_w#U4n@%$E5PF2c#M z4dV1&Ba4mp7Uq*#wpT*-iqijqXe)x&YnLD#{tNbfM5*MykGOQJ-0zkG(Sd$;)uGMn2%gczl*V;&EeXw2t@mijsv z>Fbg8dA|-o)8(@e93A2Nv$>7xL^2>03@~p-+CqMRLRm$GxMdrVUe9$P*+Bx+XfKlW z87%owc&I8Wn-p@piI8q-Yl^`b<`FF{-!h&Zk(e0m?~4lHyo%jiAsp^*HLWqD77P;A zWYc1qZcgsR9yHJ|#6%#qJD6)>cl%}x0z|LII`WhdBCL;p^ zzlWjg?yd1yApvaNwO3fodKw-wg%D1Ly%g`hWSPAu9r69)9r)ARJta$g+CmFtZ>wZ= z?Zh{7Kaw@~5kF+XS5i7eU=cvp$5^18WJEjdfh>a^>{zjMC_jc0|1)q VPEO}$Dl-58002ovPDHLkV1j8a7`Olc literal 0 HcmV?d00001 diff --git a/debug_toolbar/media/debug_toolbar/djdt_vertical.png b/debug_toolbar/media/debug_toolbar/djdt_vertical.png new file mode 100644 index 0000000000000000000000000000000000000000..000c60fa1a0107b0a9d8b63dee462809e937c14e GIT binary patch literal 1349 zcmV-L1-kl)P)#8)qEHzp=>~W0s7=POI&t%Zy{NOrwkuW-RQ@ zglVN6jBdUdIuQ0^GP;#97=w+$R$mN!F@s?^iVUXPi#f1Rbf7e9*C@3cL}HCN;f#<- z^QY1LyW0!t#k0BGT^{2y$QKTtyL+DReeyiN`#sNdQ32pk#47u*0i;v{BvlEJR3$)C zl>kXq^nhxy8y1TNHk%DvtrmX2ACr@lh{a+j$;OMzb_@*-afj8=(2%uWp^u^;;-Uu> zjlrX`+wCx!Op45XJ|DbZuVSd9k`;sbXk=uhxMQ%kwwBnVpn!XOd&C~HV=xklfMr=l z=IiV0ih+(wHegFj3)a@wh##m_MW1H=zksP!iZ8P)t2q9SODg2CFD@%915MLVtJT=u z-9;jiC;(bUvJz%%Yb)n)I5>~T!?7$YNXQJsaO30STvu0DAr=g|E9mulZen6W_Uz$u zxwx8|nv(&fD2iKHSWrC0`FuXkU@#OOaBy%?G2CMf4-X#;py*3N(=@iWwxHAL1lOmh zr?I%W2(QdXw%o%SGXY_9UT=sY+ztO(yXVaN6^OUbQTWK<#GugW;7Zl%`_Sfmrkeo zHgj`x#DJnR2~E>{d3$>sp-@PyDz9WR35H?#bEDBH*+xpDs~L)-_;N)>1^WB@Wf^L< z+N@;~W$oIPm6g0x%wsJrEfsEvBasO4FAs;q#2%u6J3BkX=6=7Q*h4f1-EOzyZRSxe zFE10d2l8BQourC>MJ;>N1ONuQ5*q4M)_WWWJPbs^rjK{!t!Rjyb04F*twHpDVn2xu zj~`QGi}>lg8E_nV^eE~XwS<`7UIvn#5GaCUc z&1Sv_YIRhO+VZ5R2X9=zg}XDWU|9}#|5(jhhknMump8rS(`B9;cNGkDB~Gc!5Z;X; znaF&FIBPl$Yr7d$XNa!C#9T*!1oool2wL zT#Xm3&!Vl_v(~rROt}6_KdR0g z?Bu9&H7;~F;kO@LM1Z10+}!rO;C%S=Nl`f9;N=*)_N(ApKH+gxqJZ`0YQg#MKh8^< z-TK)Lmd!*=ePeZw+VUg{XrL?ka$q}zXh`}$k5n>^0P~PP*BdJc@p8nVhRWP3uh8I9 zzg?CgrPXBG9V+K5QNUOB={i=1g{=DS`k5Z^WeclP-OWOw@CN=G3M>;5v*sJcNRS&01`3!|sZ`Dbfj|LY zp5^Nc7y%!^JFY)51v1I2q7zh|PN!1~hr?&BR_h%FML+;v@hTEgi3t8`%x%Zzavc_n z#dIhXIskVEa01)FCdug%DImw(vi7DVNpd!uy-p+&ci{5C3(&{48tGUQq!QaLzm)&wi;?Itm7ZF5Ie3vt8Ym4FzZBa5$WPzkiP$ z1kUJvtIPu#y4~(G_M)0I$w*Wu2u(hPQ*#rK z$8S++$mqcds|R(0qA2p|bow-t$ut>_O)D$Y$}$CeyY+>%9~N!Gcwk@xw7jIU>;+jxuY#UXS>EzB2ZimCQpK1;(Tp@?XPt7R?qmtPOp2 tV#@@>LTCloG;>cOQBMCet!MTvzyQiZ3bdE8+e82W002ovPDHLkV1gf(2L%8C literal 0 HcmV?d00001 diff --git a/debug_toolbar/media/debug_toolbar/jquery.cookie.js b/debug_toolbar/media/debug_toolbar/jquery.cookie.js new file mode 100644 index 0000000..6df1fac --- /dev/null +++ b/debug_toolbar/media/debug_toolbar/jquery.cookie.js @@ -0,0 +1,96 @@ +/** + * Cookie plugin + * + * Copyright (c) 2006 Klaus Hartl (stilbuero.de) + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + */ + +/** + * Create a cookie with the given name and value and other optional parameters. + * + * @example $.cookie('the_cookie', 'the_value'); + * @desc Set the value of a cookie. + * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true }); + * @desc Create a cookie with all available options. + * @example $.cookie('the_cookie', 'the_value'); + * @desc Create a session cookie. + * @example $.cookie('the_cookie', null); + * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain + * used when the cookie was set. + * + * @param String name The name of the cookie. + * @param String value The value of the cookie. + * @param Object options An object literal containing key/value pairs to provide optional cookie attributes. + * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object. + * If a negative value is specified (e.g. a date in the past), the cookie will be deleted. + * If set to null or omitted, the cookie will be a session cookie and will not be retained + * when the the browser exits. + * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie). + * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie). + * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will + * require a secure protocol (like HTTPS). + * @type undefined + * + * @name $.cookie + * @cat Plugins/Cookie + * @author Klaus Hartl/klaus.hartl@stilbuero.de + */ + +/** + * Get the value of a cookie with the given name. + * + * @example $.cookie('the_cookie'); + * @desc Get the value of a cookie. + * + * @param String name The name of the cookie. + * @return The value of the cookie. + * @type String + * + * @name $.cookie + * @cat Plugins/Cookie + * @author Klaus Hartl/klaus.hartl@stilbuero.de + */ +jQuery.cookie = function(name, value, options) { + if (typeof value != 'undefined') { // name and value given, set cookie + options = options || {}; + if (value === null) { + value = ''; + options.expires = -1; + } + var expires = ''; + if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { + var date; + if (typeof options.expires == 'number') { + date = new Date(); + date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); + } else { + date = options.expires; + } + expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE + } + // CAUTION: Needed to parenthesize options.path and options.domain + // in the following expressions, otherwise they evaluate to undefined + // in the packed version for some reason... + var path = options.path ? '; path=' + (options.path) : ''; + var domain = options.domain ? '; domain=' + (options.domain) : ''; + var secure = options.secure ? '; secure' : ''; + document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); + } else { // only name given, get cookie + var cookieValue = null; + if (document.cookie && document.cookie != '') { + var cookies = document.cookie.split(';'); + for (var i = 0; i < cookies.length; i++) { + var cookie = jQuery.trim(cookies[i]); + // Does this cookie string begin with the name we want? + if (cookie.substring(0, name.length + 1) == (name + '=')) { + cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); + break; + } + } + } + return cookieValue; + } +}; \ No newline at end of file diff --git a/debug_toolbar/media/debug_toolbar/jquery.js b/debug_toolbar/media/debug_toolbar/jquery.js new file mode 100644 index 0000000..82b98e1 --- /dev/null +++ b/debug_toolbar/media/debug_toolbar/jquery.js @@ -0,0 +1,32 @@ +/* + * jQuery 1.2.6 - New Wave Javascript + * + * Copyright (c) 2008 John Resig (jquery.com) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * $Date: 2008-05-24 14:22:17 -0400 (Sat, 24 May 2008) $ + * $Rev: 5685 $ + */ +(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem){if(elem.id!=match[3])return jQuery().find(selector);return jQuery(elem);}selector=[];}}else +return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value===undefined)return this[0]&&jQuery[type||"attr"](this[0],name);else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else +return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else +selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=='string'?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else +this.value=value;});},html:function(value){return value==undefined?(this[0]?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){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);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script"))scripts=scripts.add(elem);else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.fn.init.prototype=jQuery.fn;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);}function now(){return+new Date;}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==i){target=this;--i;}for(;i-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else +jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;i]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("",""]||!tags.indexOf("",""]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"","
"]||!tags.indexOf("",""]||(!tags.indexOf("",""]||!tags.indexOf("",""]||jQuery.browser.msie&&[1,"div
","
"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf(""&&tags.indexOf("=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else +ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(name in elem&¬xml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem[name]=value;}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;return elem[name];}if(msie&¬xml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&¬xml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call)ret[0]=array;else +while(i)ret[--i]=array[i];}return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return im[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false,re=quickChild,m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){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;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else +for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event){data.unshift({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var props="altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;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.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(fn){var args=arguments,i=1;while(i=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("
").append(res.responseText.replace(//g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");var remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();if(s.username)xhr.open(type,s.url,s.async,s.username,s.password);else +xhr.open(type,s.url,s.async);try{if(s.data)xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xhr)&&"error"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else +jQuery.handleError(s,xhr,status);complete();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xhr,s]);}function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(filter)data=filter(data,type);if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else +for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else +s.push(encodeURIComponent(j)+"="+encodeURIComponent(jQuery.isFunction(a[j])?a[j]():a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall),p,hidden=jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return opt.complete.call(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else +e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.call(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(elem){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",jQuery.makeArray(array));}return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].call(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;ithis.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done)this.options.complete.call(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,def:400},step:{scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}}});jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),css=jQuery.curCSS,fixed=css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l,10)||0;top+=parseInt(t,10)||0;}return results;};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};});})(); \ No newline at end of file diff --git a/debug_toolbar/media/debug_toolbar/panel_bg.png b/debug_toolbar/media/debug_toolbar/panel_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..73add1794fec009c054e3e130dce219b5726046b GIT binary patch literal 110 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx1|;Q0k8}bl$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWw1G0-i38Ar-fh_I>^P-?)K+nSs-lc~|?tHh-WTgQu&X%Q~lo FCIEzF9;g5S literal 0 HcmV?d00001 diff --git a/debug_toolbar/media/debug_toolbar/toolbar.css b/debug_toolbar/media/debug_toolbar/toolbar.css new file mode 100644 index 0000000..00ba73c --- /dev/null +++ b/debug_toolbar/media/debug_toolbar/toolbar.css @@ -0,0 +1,391 @@ +/* Debug Toolbar CSS Reset, adapted from Eric Meyer's CSS Reset */ +#djDebug {color:#000;background:#FFF;} +#djDebug, #djDebug div, #djDebug span, #djDebug applet, #djDebug object, #djDebug iframe, +#djDebug h1, #djDebug h2, #djDebug h3, #djDebug h4, #djDebug h5, #djDebug h6, #djDebug p, #djDebug blockquote, #djDebug pre, +#djDebug a, #djDebug abbr, #djDebug acronym, #djDebug address, #djDebug big, #djDebug cite, #djDebug code, +#djDebug del, #djDebug dfn, #djDebug em, #djDebug font, #djDebug img, #djDebug ins, #djDebug kbd, #djDebug q, #djDebug s, #djDebug samp, +#djDebug small, #djDebug strike, #djDebug strong, #djDebug sub, #djDebug sup, #djDebug tt, #djDebug var, +#djDebug b, #djDebug u, #djDebug i, #djDebug center, +#djDebug dl, #djDebug dt, #djDebug dd, #djDebug ol, #djDebug ul, #djDebug li, +#djDebug fieldset, #djDebug form, #djDebug label, #djDebug legend, +#djDebug table, #djDebug caption, #djDebug tbody, #djDebug tfoot, #djDebug thead, #djDebug tr, #djDebug th, #djDebug td { + margin:0; + padding:0; + border:0; + outline:0; + font-size:12px; + line-height:1.5em; + color:#000; + vertical-align:baseline; + background:transparent; + font-family:sans-serif; + text-align:left; +} + +#djDebug #djDebugToolbar { + background:#111; + width:200px; + z-index:100000000; + position:fixed; + top:0; + bottom:0; + right:0; + opacity:0.9; +} + +#djDebug #djDebugToolbar small { + color:#999; +} + +#djDebug #djDebugToolbar ul { + margin:0; + padding:0; + list-style:none; +} + +#djDebug #djDebugToolbar li { + border-bottom:1px solid #222; + color:#fff; + display:block; + font-weight:bold; + float:none; + margin:0; + padding:0; + position:relative; + width:auto; +} + +#djDebug #djDebugToolbar li>a, +#djDebug #djDebugToolbar li>div.contentless { + font-weight:normal; + font-style:normal; + text-decoration:none; + display:block; + font-size:16px; + padding:10px 10px 5px 25px; + color:#fff; +} + +#djDebug #djDebugToolbar li a:hover { + color:#111; + background-color:#ffc; +} + +#djDebug #djDebugToolbar li.active { + background-image:url(indicator.png); + background-repeat:no-repeat; + background-position:left center; + background-color:#333; + padding-left:10px; +} + +#djDebug #djDebugToolbar li.active a:hover { + color:#b36a60; + background-color:transparent; +} + +#djDebug #djDebugToolbar li small { + font-size:12px; + color:#999; + font-style:normal; + text-decoration:none; + font-variant:small-caps; +} + +#djDebug #djDebugToolbarHandle { + position:fixed; + background:#fff; + border:1px solid #111; + top:30px; + right:0; + z-index:100000000; + opacity:0.75; +} + +#djDebug a#djShowToolBarButton { + display:block; + height:75px; + width:30px; + border-right:none; + border-bottom:4px solid #fff; + border-top:4px solid #fff; + border-left:4px solid #fff; + color:#fff; + font-size:10px; + font-weight:bold; + text-decoration:none; + text-align:center; + text-indent:-999999px; + background:#000 url(djdt_vertical.png) no-repeat left center; + opacity:0.5; +} + +#djDebug a#djShowToolBarButton:hover { + background-color:#111; + padding-right:6px; + border-top-color:#FFE761; + border-left-color:#FFE761; + border-bottom-color:#FFE761; + opacity:1.0; +} + +#djDebug code { + display:block; + font-family:Consolas, Monaco, "Bitstream Vera Sans Mono", "Lucida Console", monospace; + white-space:pre; + overflow:auto; +} + +#djDebug tr.djDebugOdd { + background-color:#f5f5f5; +} + +#djDebug .panelContent { + display:none; + position:fixed; + margin:0; + top:0; + right:200px; + bottom:0; + left:0px; + background-color:#eee; + color:#666; + z-index:100000000; +} + +#djDebug .panelContent > div { + border-bottom:1px solid #ddd; +} + +#djDebug .djDebugPanelTitle { + position:absolute; + background-color:#ffc; + color:#666; + padding-left:20px; + top:0; + right:0; + left:0; + height:50px; +} + +#djDebug .djDebugPanelTitle code { + display:inline; + font-size:inherit; +} + +#djDebug .djDebugPanelContent { + position:absolute; + top:50px; + right:0; + bottom:0; + left:0; + height:auto; + padding:0 0 0 20px; +} + +#djDebug .djDebugPanelContent .scroll { + height:100%; + overflow:auto; + display:block; + padding:0 10px 0 0; +} + +#djDebug h3 { + font-size:24px; + font-weight:normal; + line-height:50px; +} + +#djDebug h4 { + font-size:20px; + font-weight:bold; + margin-top:0.8em; +} + +#djDebug .panelContent table { + border:1px solid #ccc; + border-collapse:collapse; + width:100%; + background-color:#fff; + display:block; + margin-top:0.8em; + overflow: auto; +} +#djDebug .panelContent tbody td, +#djDebug .panelContent tbody th { + vertical-align:top; + padding:2px 3px; +} +#djDebug .panelContent thead th { + padding:1px 6px 1px 3px; + text-align:left; + font-weight:bold; + font-size:14px; +} +#djDebug .panelContent tbody th { + width:12em; + text-align:right; + color:#666; + padding-right:.5em; +} + +#djDebug .djTemplateHideContextDiv { + background-color:#fff; +} + +/* +#djDebug .panelContent p a:hover, #djDebug .panelContent dd a:hover { + color:#111; + background-color:#ffc; +} + +#djDebug .panelContent p { + padding:0 5px; +} + +#djDebug .panelContent p, #djDebug .panelContent table, #djDebug .panelContent ol, #djDebug .panelContent ul, #djDebug .panelContent dl { + margin:5px 0 15px; + background-color:#fff; +} +#djDebug .panelContent table { + clear:both; + border:0; + padding:0; + margin:0; + border-collapse:collapse; + border-spacing:0; +} + +#djDebug .panelContent table a { + color:#000; + padding:2px 4px; +} +#djDebug .panelContent table a:hover { + background-color:#ffc; +} + +#djDebug .panelContent table th { + background-color:#333; + font-weight:bold; + color:#fff; + padding:3px 7px 3px; + text-align:left; + cursor:pointer; +} +#djDebug .panelContent table td { + padding:5px 10px; + font-size:14px; + background:#fff; + color:#000; + vertical-align:top; + border:0; +} +#djDebug .panelContent table tr.djDebugOdd td { + background:#eee; +} +*/ + +#djDebug .panelContent .djDebugClose { + text-indent:-9999999px; + display:block; + position:absolute; + top:4px; + right:15px; + height:40px; + width:40px; + background:url(close.png) no-repeat center center; +} + +#djDebug .panelContent .djDebugClose:hover { + background-image:url(close_hover.png); +} + +#djDebug .panelContent .djDebugClose.djDebugBack { + background-image:url(back.png); +} + +#djDebug .panelContent .djDebugClose.djDebugBack:hover { + background-image:url(back_hover.png); +} + +#djDebug .panelContent dt, #djDebug .panelContent dd { + display:block; +} + +#djDebug .panelContent dt { + margin-top:0.75em; +} + +#djDebug .panelContent dd { + margin-left:10px; +} + +#djDebug a.toggleTemplate { + padding:4px; + background-color:#bbb; + -moz-border-radius:3px; + -webkit-border-radius:3px; +} + +#djDebug a.toggleTemplate:hover { + padding:4px; + background-color:#444; + color:#ffe761; + -moz-border-radius:3px; + -webkit-border-radius:3px; +} + + +#djDebug a.djTemplateShowContext, #djDebug a.djTemplateShowContext span.toggleArrow { + color:#999; +} + +#djDebug a.djTemplateShowContext:hover, #djDebug a.djTemplateShowContext:hover span.toggleArrow { + color:#000; + cursor:pointer; +} + +#djDebug .djDebugSqlWrap { + position:relative; +} + +#djDebug .djDebugSql { + z-index:100000002; +} + +#djDebug .djSQLHideStacktraceDiv tbody th { + text-align: left; +} + +#djDebug span.djDebugLineChart { + border-top:3px solid #777; + position:absolute; + bottom:0; + top:0; + left:0; + display:block; + z-index:1000000001; +} +#djDebug span.djDebugLineChartWarning { + border-top-color:#900; +} + +#djDebug .highlight { color:#000; } +#djDebug .highlight .err { color:#000; } /* Error */ +#djDebug .highlight .g { color:#000; } /* Generic */ +#djDebug .highlight .k { color:#000; font-weight:bold } /* Keyword */ +#djDebug .highlight .o { color:#000; } /* Operator */ +#djDebug .highlight .n { color:#000; } /* Name */ +#djDebug .highlight .mi { color:#000; font-weight:bold } /* Literal.Number.Integer */ +#djDebug .highlight .l { color:#000; } /* Literal */ +#djDebug .highlight .x { color:#000; } /* Other */ +#djDebug .highlight .p { color:#000; } /* Punctuation */ +#djDebug .highlight .m { color:#000; font-weight:bold } /* Literal.Number */ +#djDebug .highlight .s { color:#333 } /* Literal.String */ +#djDebug .highlight .w { color:#888888 } /* Text.Whitespace */ +#djDebug .highlight .il { color:#000; font-weight:bold } /* Literal.Number.Integer.Long */ +#djDebug .highlight .na { color:#333 } /* Name.Attribute */ +#djDebug .highlight .nt { color:#000; font-weight:bold } /* Name.Tag */ +#djDebug .highlight .nv { color:#333 } /* Name.Variable */ +#djDebug .highlight .s2 { color:#333 } /* Literal.String.Double */ +#djDebug .highlight .cp { color:#333 } /* Comment.Preproc */ diff --git a/debug_toolbar/media/debug_toolbar/toolbar.js b/debug_toolbar/media/debug_toolbar/toolbar.js new file mode 100644 index 0000000..0d9bdc8 --- /dev/null +++ b/debug_toolbar/media/debug_toolbar/toolbar.js @@ -0,0 +1,141 @@ +jQuery.noConflict(); +jQuery(function($j) { + var COOKIE_NAME = 'dj_debug_panel'; + $j.djDebug = function(data, klass) { + $j.djDebug.init(); + } + $j.extend($j.djDebug, { + init: function() { + var current = null; + $j('#djDebugPanelList li a').click(function() { + if (!this.className) { + return false; + } + current = $j('#djDebug #' + this.className); + if (current.is(':visible')) { + $j(document).trigger('close.djDebug'); + $j(this).parent().removeClass('active'); + } else { + $j('.panelContent').hide(); // Hide any that are already open + current.show(); + $j.djDebug.open(); + $j('#djDebugToolbar li').removeClass('active'); + $j(this).parent().addClass('active'); + } + return false; + }); + $j('#djDebug a.djDebugClose').click(function() { + $j(document).trigger('close.djDebug'); + $j('#djDebugToolbar li').removeClass('active'); + return false; + }); + $j('#djDebug a.remoteCall').click(function() { + $j('#djDebugWindow').load(this.href, {}, function() { + $j('#djDebugWindow a.djDebugBack').click(function() { + $j(this).parent().parent().hide(); + return false; + }); + }); + $j('#djDebugWindow').show(); + return false; + }); + $j('#djDebugTemplatePanel a.djTemplateShowContext').click(function() { + $j.djDebug.toggle_arrow($j(this).children('.toggleArrow')) + $j.djDebug.toggle_content($j(this).parent().next()); + return false; + }); + $j('#djDebugSQLPanel a.djSQLShowStacktrace').click(function() { + $j.djDebug.toggle_content($j('.djSQLHideStacktraceDiv', $j(this).parents('tr'))); + return false; + }); + $j('#djHideToolBarButton').click(function() { + $j.djDebug.hide_toolbar(true); + return false; + }); + $j('#djShowToolBarButton').click(function() { + $j.djDebug.show_toolbar(); + return false; + }); + if ($j.cookie(COOKIE_NAME)) { + $j.djDebug.hide_toolbar(false); + } else { + $j.djDebug.show_toolbar(false); + } + }, + open: function() { + // TODO: Decide if we should remove this + }, + toggle_content: function(elem) { + if (elem.is(':visible')) { + elem.hide(); + } else { + elem.show(); + } + }, + close: function() { + $j(document).trigger('close.djDebug'); + return false; + }, + hide_toolbar: function(setCookie) { + // close any sub panels + $j('#djDebugWindow').hide(); + // close all panels + $j('.panelContent').hide(); + $j('#djDebugToolbar li').removeClass('active'); + // finally close toolbar + $j('#djDebugToolbar').hide('fast'); + $j('#djDebugToolbarHandle').show(); + // Unbind keydown + $j(document).unbind('keydown.djDebug'); + if (setCookie) { + $j.cookie(COOKIE_NAME, 'hide', { + path: '/', + expires: 10 + }); + } + }, + show_toolbar: function(animate) { + // Set up keybindings + $j(document).bind('keydown.djDebug', function(e) { + if (e.keyCode == 27) { + $j.djDebug.close(); + } + }); + $j('#djDebugToolbarHandle').hide(); + if (animate) { + $j('#djDebugToolbar').show('fast'); + } else { + $j('#djDebugToolbar').show(); + } + $j.cookie(COOKIE_NAME, null, { + path: '/', + expires: -1 + }); + }, + toggle_arrow: function(elem) { + var uarr = String.fromCharCode(0x25b6); + var darr = String.fromCharCode(0x25bc); + elem.html(elem.html() == uarr ? darr : uarr); + } + }); + $j(document).bind('close.djDebug', function() { + // If a sub-panel is open, close that + if ($j('#djDebugWindow').is(':visible')) { + $j('#djDebugWindow').hide(); + return; + } + // If a panel is open, close that + if ($j('.panelContent').is(':visible')) { + $j('.panelContent').hide(); + return; + } + // Otherwise, just minimize the toolbar + if ($j('#djDebugToolbar').is(':visible')) { + $j.djDebug.hide_toolbar(true); + return; + } + }); +}); +jQuery(function() { + jQuery.djDebug(); +}); diff --git a/debug_toolbar/media/debug_toolbar/toolbar.min.css b/debug_toolbar/media/debug_toolbar/toolbar.min.css new file mode 100644 index 0000000..960b62d --- /dev/null +++ b/debug_toolbar/media/debug_toolbar/toolbar.min.css @@ -0,0 +1 @@ +#djDebug{color:#000;background:#FFF;}#djDebug,#djDebug div,#djDebug span,#djDebug applet,#djDebug object,#djDebug iframe,#djDebug h1,#djDebug h2,#djDebug h3,#djDebug h4,#djDebug h5,#djDebug h6,#djDebug p,#djDebug blockquote,#djDebug pre,#djDebug a,#djDebug abbr,#djDebug acronym,#djDebug address,#djDebug big,#djDebug cite,#djDebug code,#djDebug del,#djDebug dfn,#djDebug em,#djDebug font,#djDebug img,#djDebug ins,#djDebug kbd,#djDebug q,#djDebug s,#djDebug samp,#djDebug small,#djDebug strike,#djDebug strong,#djDebug sub,#djDebug sup,#djDebug tt,#djDebug var,#djDebug b,#djDebug u,#djDebug i,#djDebug center,#djDebug dl,#djDebug dt,#djDebug dd,#djDebug ol,#djDebug ul,#djDebug li,#djDebug fieldset,#djDebug form,#djDebug label,#djDebug legend,#djDebug table,#djDebug caption,#djDebug tbody,#djDebug tfoot,#djDebug thead,#djDebug tr,#djDebug th,#djDebug td{margin:0;padding:0;border:0;outline:0;font-size:12px;line-height:1.5em;color:#000;vertical-align:baseline;background:transparent;font-family:sans-serif;text-align:left;}#djDebug #djDebugToolbar{background:#111;width:200px;z-index:100000000;position:fixed;top:0;bottom:0;right:0;opacity:.9;}#djDebug #djDebugToolbar small{color:#999;}#djDebug #djDebugToolbar ul{margin:0;padding:0;list-style:none;}#djDebug #djDebugToolbar li{border-bottom:1px solid #222;color:#fff;display:block;font-weight:bold;float:none;margin:0;padding:0;position:relative;width:auto;}#djDebug #djDebugToolbar li>a,#djDebug #djDebugToolbar li>div.contentless{font-weight:normal;font-style:normal;text-decoration:none;display:block;font-size:16px;padding:10px 10px 5px 25px;color:#fff;}#djDebug #djDebugToolbar li a:hover{color:#111;background-color:#ffc;}#djDebug #djDebugToolbar li.active{background-image:url(indicator.png);background-repeat:no-repeat;background-position:left center;background-color:#333;padding-left:10px;}#djDebug #djDebugToolbar li.active a:hover{color:#b36a60;background-color:transparent;}#djDebug #djDebugToolbar li small{font-size:12px;color:#999;font-style:normal;text-decoration:none;font-variant:small-caps;}#djDebug #djDebugToolbarHandle{position:fixed;background:#fff;border:1px solid #111;top:30px;right:0;z-index:100000000;opacity:.75;}#djDebug a#djShowToolBarButton{display:block;height:75px;width:30px;border-right:none;border-bottom:4px solid #fff;border-top:4px solid #fff;border-left:4px solid #fff;color:#fff;font-size:10px;font-weight:bold;text-decoration:none;text-align:center;text-indent:-999999px;background:#000 url(djdt_vertical.png) no-repeat left center;opacity:.5;}#djDebug a#djShowToolBarButton:hover{background-color:#111;padding-right:6px;border-top-color:#FFE761;border-left-color:#FFE761;border-bottom-color:#FFE761;opacity:1.0;}#djDebug code{display:block;font-family:Consolas,Monaco,"Bitstream Vera Sans Mono","Lucida Console",monospace;white-space:pre;overflow:auto;}#djDebug tr.djDebugOdd{background-color:#f5f5f5;}#djDebug .panelContent{display:none;position:fixed;margin:0;top:0;right:200px;bottom:0;left:0;background-color:#eee;color:#666;z-index:100000000;}#djDebug .panelContent>div{border-bottom:1px solid #ddd;}#djDebug .djDebugPanelTitle{position:absolute;background-color:#ffc;color:#666;padding-left:20px;top:0;right:0;left:0;height:50px;}#djDebug .djDebugPanelTitle code{display:inline;font-size:inherit;}#djDebug .djDebugPanelContent{position:absolute;top:50px;right:0;bottom:0;left:0;height:auto;padding:0 0 0 20px;}#djDebug .djDebugPanelContent .scroll{height:100%;overflow:auto;display:block;padding:0 10px 0 0;}#djDebug h3{font-size:24px;font-weight:normal;line-height:50px;}#djDebug h4{font-size:20px;font-weight:bold;margin-top:.8em;}#djDebug .panelContent table{border:1px solid #ccc;border-collapse:collapse;width:100%;background-color:#fff;display:block;margin-top:.8em;overflow:auto;}#djDebug .panelContent tbody td,#djDebug .panelContent tbody th{vertical-align:top;padding:2px 3px;}#djDebug .panelContent thead th{padding:1px 6px 1px 3px;text-align:left;font-weight:bold;font-size:14px;}#djDebug .panelContent tbody th{width:12em;text-align:right;color:#666;padding-right:.5em;}#djDebug .djTemplateHideContextDiv{background-color:#fff;}#djDebug .panelContent .djDebugClose{text-indent:-9999999px;display:block;position:absolute;top:4px;right:15px;height:40px;width:40px;background:url(close.png) no-repeat center center;}#djDebug .panelContent .djDebugClose:hover{background-image:url(close_hover.png);}#djDebug .panelContent .djDebugClose.djDebugBack{background-image:url(back.png);}#djDebug .panelContent .djDebugClose.djDebugBack:hover{background-image:url(back_hover.png);}#djDebug .panelContent dt,#djDebug .panelContent dd{display:block;}#djDebug .panelContent dt{margin-top:.75em;}#djDebug .panelContent dd{margin-left:10px;}#djDebug a.toggleTemplate{padding:4px;background-color:#bbb;-moz-border-radius:3px;-webkit-border-radius:3px;}#djDebug a.toggleTemplate:hover{padding:4px;background-color:#444;color:#ffe761;-moz-border-radius:3px;-webkit-border-radius:3px;}#djDebug a.djTemplateShowContext,#djDebug a.djTemplateShowContext span.toggleArrow{color:#999;}#djDebug a.djTemplateShowContext:hover,#djDebug a.djTemplateShowContext:hover span.toggleArrow{color:#000;cursor:pointer;}#djDebug .djDebugSqlWrap{position:relative;}#djDebug .djDebugSql{z-index:100000002;}#djDebug .djSQLHideStacktraceDiv tbody th{text-align:left;}#djDebug span.djDebugLineChart{border-top:3px solid #777;position:absolute;bottom:0;top:0;left:0;display:block;z-index:1000000001;}#djDebug span.djDebugLineChartWarning{border-top-color:#900;}#djDebug .highlight{color:#000;}#djDebug .highlight .err{color:#000;}#djDebug .highlight .g{color:#000;}#djDebug .highlight .k{color:#000;font-weight:bold;}#djDebug .highlight .o{color:#000;}#djDebug .highlight .n{color:#000;}#djDebug .highlight .mi{color:#000;font-weight:bold;}#djDebug .highlight .l{color:#000;}#djDebug .highlight .x{color:#000;}#djDebug .highlight .p{color:#000;}#djDebug .highlight .m{color:#000;font-weight:bold;}#djDebug .highlight .s{color:#333;}#djDebug .highlight .w{color:#888;}#djDebug .highlight .il{color:#000;font-weight:bold;}#djDebug .highlight .na{color:#333;}#djDebug .highlight .nt{color:#000;font-weight:bold;}#djDebug .highlight .nv{color:#333;}#djDebug .highlight .s2{color:#333;}#djDebug .highlight .cp{color:#333;} \ No newline at end of file diff --git a/debug_toolbar/media/debug_toolbar/toolbar.min.js b/debug_toolbar/media/debug_toolbar/toolbar.min.js new file mode 100644 index 0000000..9bef217 --- /dev/null +++ b/debug_toolbar/media/debug_toolbar/toolbar.min.js @@ -0,0 +1 @@ +jQuery.noConflict();jQuery(function(b){var a="dj_debug_panel";b.djDebug=function(d,c){b.djDebug.init()};b.extend(b.djDebug,{init:function(){var c=null;b("#djDebugPanelList li a").click(function(){if(!this.className){return false}c=b("#djDebug #"+this.className);if(c.is(":visible")){b(document).trigger("close.djDebug");b(this).parent().removeClass("active")}else{b(".panelContent").hide();c.show();b.djDebug.open();b("#djDebugToolbar li").removeClass("active");b(this).parent().addClass("active")}return false});b("#djDebug a.djDebugClose").click(function(){b(document).trigger("close.djDebug");b("#djDebugToolbar li").removeClass("active");return false});b("#djDebug a.remoteCall").click(function(){b("#djDebugWindow").load(this.href,{},function(){b("#djDebugWindow a.djDebugBack").click(function(){b(this).parent().parent().hide();return false})});b("#djDebugWindow").show();return false});b("#djDebugTemplatePanel a.djTemplateShowContext").click(function(){b.djDebug.toggle_arrow(b(this).children(".toggleArrow"));b.djDebug.toggle_content(b(this).parent().next());return false});b("#djDebugSQLPanel a.djSQLShowStacktrace").click(function(){b.djDebug.toggle_content(b(".djSQLHideStacktraceDiv",b(this).parents("tr")));return false});b("#djHideToolBarButton").click(function(){b.djDebug.hide_toolbar(true);return false});b("#djShowToolBarButton").click(function(){b.djDebug.show_toolbar();return false});if(b.cookie(a)){b.djDebug.hide_toolbar(false)}else{b.djDebug.show_toolbar(false)}},open:function(){},toggle_content:function(c){if(c.is(":visible")){c.hide()}else{c.show()}},close:function(){b(document).trigger("close.djDebug");return false},hide_toolbar:function(c){b("#djDebugWindow").hide();b(".panelContent").hide();b("#djDebugToolbar li").removeClass("active");b("#djDebugToolbar").hide("fast");b("#djDebugToolbarHandle").show();b(document).unbind("keydown.djDebug");if(c){b.cookie(a,"hide",{path:"/",expires:10})}},show_toolbar:function(c){b(document).bind("keydown.djDebug",function(d){if(d.keyCode==27){b.djDebug.close()}});b("#djDebugToolbarHandle").hide();if(c){b("#djDebugToolbar").show("fast")}else{b("#djDebugToolbar").show()}b.cookie(a,null,{path:"/",expires:-1})},toggle_arrow:function(d){var c=String.fromCharCode(9654);var e=String.fromCharCode(9660);d.html(d.html()==c?e:c)}});b(document).bind("close.djDebug",function(){if(b("#djDebugWindow").is(":visible")){b("#djDebugWindow").hide();return}if(b(".panelContent").is(":visible")){b(".panelContent").hide();return}if(b("#djDebugToolbar").is(":visible")){b.djDebug.hide_toolbar(true);return}})});jQuery(function(){jQuery.djDebug()});jQuery.cookie=function(b,j,m){if(typeof j!="undefined"){m=m||{};if(j===null){j="";m.expires=-1}var e="";if(m.expires&&(typeof m.expires=="number"||m.expires.toUTCString)){var f;if(typeof m.expires=="number"){f=new Date();f.setTime(f.getTime()+(m.expires*24*60*60*1000))}else{f=m.expires}e="; expires="+f.toUTCString()}var l=m.path?"; path="+(m.path):"";var g=m.domain?"; domain="+(m.domain):"";var a=m.secure?"; secure":"";document.cookie=[b,"=",encodeURIComponent(j),e,l,g,a].join("")}else{var d=null;if(document.cookie&&document.cookie!=""){var k=document.cookie.split(";");for(var h=0;h= 0: + return string[:index] + replacement + string[index + len(target):] + else: # no results so return the original string + return string + +class DebugToolbarMiddleware(object): + """ + Middleware to set up Debug Toolbar on incoming request and render toolbar + on outgoing response. + """ + def __init__(self): + self.debug_toolbars = {} + self.override_url = True + + # Set method to use to decide to show toolbar + self.show_toolbar = self._show_toolbar # default + if hasattr(settings, 'DEBUG_TOOLBAR_CONFIG'): + show_toolbar_callback = settings.DEBUG_TOOLBAR_CONFIG.get( + 'SHOW_TOOLBAR_CALLBACK', None) + if show_toolbar_callback: + self.show_toolbar = show_toolbar_callback + + def _show_toolbar(self, request): + if not settings.DEBUG: + return False + if request.is_ajax() and not \ + request.path.startswith(os.path.join('/', debug_toolbar.urls._PREFIX)): + # Allow ajax requests from the debug toolbar + return False + if not request.META.get('REMOTE_ADDR') in settings.INTERNAL_IPS: + return False + return True + + def process_request(self, request): + if self.show_toolbar(request): + if self.override_url: + original_urlconf = getattr(request, 'urlconf', settings.ROOT_URLCONF) + debug_toolbar.urls.urlpatterns += patterns('', + ('', include(original_urlconf)), + ) + self.override_url = False + request.urlconf = 'debug_toolbar.urls' + + self.debug_toolbars[request] = DebugToolbar(request) + for panel in self.debug_toolbars[request].panels: + panel.process_request(request) + + def process_view(self, request, view_func, view_args, view_kwargs): + if request in self.debug_toolbars: + for panel in self.debug_toolbars[request].panels: + panel.process_view(request, view_func, view_args, view_kwargs) + + def process_response(self, request, response): + if request not in self.debug_toolbars: + return response + if self.debug_toolbars[request].config['INTERCEPT_REDIRECTS']: + if isinstance(response, HttpResponseRedirect): + redirect_to = response.get('Location', None) + if redirect_to: + response = render_to_response( + 'debug_toolbar/redirect.html', + {'redirect_to': redirect_to} + ) + if response.status_code == 200: + for panel in self.debug_toolbars[request].panels: + panel.process_response(request, response) + if response['Content-Type'].split(';')[0] in _HTML_TYPES: + response.content = replace_insensitive(smart_unicode(response.content), u'', smart_unicode(self.debug_toolbars[request].render_toolbar() + u'')) + del self.debug_toolbars[request] + return response diff --git a/debug_toolbar/models.py b/debug_toolbar/models.py new file mode 100644 index 0000000..e69de29 diff --git a/debug_toolbar/panels/__init__.py b/debug_toolbar/panels/__init__.py new file mode 100644 index 0000000..fa2e4b6 --- /dev/null +++ b/debug_toolbar/panels/__init__.py @@ -0,0 +1,48 @@ +"""Base DebugPanel class""" + +class DebugPanel(object): + """ + Base class for debug panels. + """ + # name = Base + has_content = False # If content returns something, set to true in subclass + + # We'll maintain a local context instance so we can expose our template + # context variables to panels which need them: + context = {} + + # Panel methods + def __init__(self, context={}): + self.context.update(context) + + def dom_id(self): + return 'djDebug%sPanel' % (self.name.replace(' ', '')) + + def nav_title(self): + """Title showing in toolbar""" + raise NotImplementedError + + def nav_subtitle(self): + """Subtitle showing until title in toolbar""" + return '' + + def title(self): + """Title showing in panel""" + raise NotImplementedError + + def url(self): + raise NotImplementedError + + def content(self): + raise NotImplementedError + + # Standard middleware methods + def process_request(self, request): + pass + + def process_view(self, request, view_func, view_args, view_kwargs): + pass + + def process_response(self, request, response): + pass + diff --git a/debug_toolbar/panels/cache.py b/debug_toolbar/panels/cache.py new file mode 100644 index 0000000..5617ec2 --- /dev/null +++ b/debug_toolbar/panels/cache.py @@ -0,0 +1,105 @@ +import time +import inspect + +from django.core import cache +from django.core.cache.backends.base import BaseCache +from django.template.loader import render_to_string +from django.utils.translation import ugettext_lazy as _ +from debug_toolbar.panels import DebugPanel + +class CacheStatTracker(BaseCache): + """A small class used to track cache calls.""" + def __init__(self, cache): + self.cache = cache + self.reset() + + def reset(self): + self.calls = [] + self.hits = 0 + self.misses = 0 + self.sets = 0 + self.gets = 0 + self.get_many = 0 + self.deletes = 0 + self.total_time = 0 + + def _get_func_info(self): + stack = inspect.stack()[2] + return (stack[1], stack[2], stack[3], stack[4]) + + def get(self, key, default=None): + t = time.time() + value = self.cache.get(key, default) + this_time = time.time() - t + self.total_time += this_time * 1000 + if value is None: + self.misses += 1 + else: + self.hits += 1 + self.gets += 1 + self.calls.append((this_time, 'get', (key,), self._get_func_info())) + return value + + def set(self, key, value, timeout=None): + t = time.time() + self.cache.set(key, value, timeout) + this_time = time.time() - t + self.total_time += this_time * 1000 + self.sets += 1 + self.calls.append((this_time, 'set', (key, value, timeout), self._get_func_info())) + + def delete(self, key): + t = time.time() + self.cache.delete(key) + this_time = time.time() - t + self.total_time += this_time * 1000 + self.deletes += 1 + self.calls.append((this_time, 'delete', (key,), self._get_func_info())) + + def get_many(self, keys): + t = time.time() + results = self.cache.get_many(keys) + this_time = time.time() - t + self.total_time += this_time * 1000 + self.get_many += 1 + for key, value in results.iteritems(): + if value is None: + self.misses += 1 + else: + self.hits += 1 + self.calls.append((this_time, 'get_many', (keys,), self._get_func_info())) + +class CacheDebugPanel(DebugPanel): + """ + Panel that displays the cache statistics. + """ + name = 'Cache' + has_content = True + + def __init__(self, *args, **kwargs): + super(self.__class__, self).__init__(*args, **kwargs) + # This is hackish but to prevent threading issues is somewhat needed + if isinstance(cache.cache, CacheStatTracker): + cache.cache.reset() + self.cache = cache.cache + else: + self.cache = CacheStatTracker(cache.cache) + cache.cache = self.cache + + def nav_title(self): + return _('Cache: %.2fms') % self.cache.total_time + + def title(self): + return _('Cache Usage') + + def url(self): + return '' + + def content(self): + context = self.context.copy() + context.update({ + 'cache_calls': len(self.cache.calls), + 'cache_time': self.cache.total_time, + 'cache': self.cache, + }) + return render_to_string('debug_toolbar/panels/cache.html', context) diff --git a/debug_toolbar/panels/headers.py b/debug_toolbar/panels/headers.py new file mode 100644 index 0000000..1e929f6 --- /dev/null +++ b/debug_toolbar/panels/headers.py @@ -0,0 +1,54 @@ +from django.template.loader import render_to_string +from django.utils.translation import ugettext_lazy as _ +from debug_toolbar.panels import DebugPanel + +class HeaderDebugPanel(DebugPanel): + """ + A panel to display HTTP headers. + """ + name = 'Header' + has_content = True + # List of headers we want to display + header_filter = ( + 'CONTENT_TYPE', + 'HTTP_ACCEPT', + 'HTTP_ACCEPT_CHARSET', + 'HTTP_ACCEPT_ENCODING', + 'HTTP_ACCEPT_LANGUAGE', + 'HTTP_CACHE_CONTROL', + 'HTTP_CONNECTION', + 'HTTP_HOST', + 'HTTP_KEEP_ALIVE', + 'HTTP_REFERER', + 'HTTP_USER_AGENT', + 'QUERY_STRING', + 'REMOTE_ADDR', + 'REMOTE_HOST', + 'REQUEST_METHOD', + 'SCRIPT_NAME', + 'SERVER_NAME', + 'SERVER_PORT', + 'SERVER_PROTOCOL', + 'SERVER_SOFTWARE', + ) + + def nav_title(self): + return _('HTTP Headers') + + def title(self): + return _('HTTP Headers') + + def url(self): + return '' + + def process_request(self, request): + self.headers = dict( + [(k, request.META[k]) for k in self.header_filter if k in request.META] + ) + + def content(self): + context = self.context.copy() + context.update({ + 'headers': self.headers + }) + return render_to_string('debug_toolbar/panels/headers.html', context) diff --git a/debug_toolbar/panels/logger.py b/debug_toolbar/panels/logger.py new file mode 100644 index 0000000..620102e --- /dev/null +++ b/debug_toolbar/panels/logger.py @@ -0,0 +1,83 @@ +import datetime +import logging +try: + import threading +except ImportError: + threading = None +from django.template.loader import render_to_string +from django.utils.translation import ugettext_lazy as _ +from debug_toolbar.panels import DebugPanel + +class ThreadTrackingHandler(logging.Handler): + def __init__(self): + if threading is None: + raise NotImplementedError("threading module is not available, \ + the logging panel cannot be used without it") + logging.Handler.__init__(self) + self.records = {} # a dictionary that maps threads to log records + + def emit(self, record): + self.get_records().append(record) + + def get_records(self, thread=None): + """ + Returns a list of records for the provided thread, of if none is provided, + returns a list for the current thread. + """ + if thread is None: + thread = threading.currentThread() + if thread not in self.records: + self.records[thread] = [] + return self.records[thread] + + def clear_records(self, thread=None): + if thread is None: + thread = threading.currentThread() + if thread in self.records: + del self.records[thread] + +handler = ThreadTrackingHandler() +logging.root.setLevel(logging.NOTSET) +logging.root.addHandler(handler) + +class LoggingPanel(DebugPanel): + name = 'Logging' + has_content = True + + def process_request(self, request): + handler.clear_records() + + def get_and_delete(self): + records = handler.get_records() + handler.clear_records() + return records + + def nav_title(self): + return _("Logging") + + def nav_subtitle(self): + # FIXME l10n: use ngettext + return "%s message%s" % (len(handler.get_records()), (len(handler.get_records()) == 1) and '' or 's') + + def title(self): + return _('Log Messages') + + def url(self): + return '' + + def content(self): + records = [] + for record in self.get_and_delete(): + records.append({ + 'message': record.getMessage(), + 'time': datetime.datetime.fromtimestamp(record.created), + 'level': record.levelname, + 'file': record.pathname, + 'line': record.lineno, + }) + + context = self.context.copy() + context.update({'records': records}) + + return render_to_string('debug_toolbar/panels/logger.html', context) + diff --git a/debug_toolbar/panels/request_vars.py b/debug_toolbar/panels/request_vars.py new file mode 100644 index 0000000..956e028 --- /dev/null +++ b/debug_toolbar/panels/request_vars.py @@ -0,0 +1,44 @@ +from django.template.loader import render_to_string +from django.utils.translation import ugettext_lazy as _ +from debug_toolbar.panels import DebugPanel + +class RequestVarsDebugPanel(DebugPanel): + """ + A panel to display request variables (POST/GET, session, cookies). + """ + name = 'RequestVars' + has_content = True + + def nav_title(self): + return _('Request Vars') + + def title(self): + return _('Request Vars') + + def url(self): + return '' + + def process_request(self, request): + self.request = request + + def process_view(self, request, view_func, view_args, view_kwargs): + self.view_func = view_func + self.view_args = view_args + self.view_kwargs = view_kwargs + + def content(self): + context = self.context.copy() + context.update({ + 'get': [(k, self.request.GET.getlist(k)) for k in self.request.GET], + 'post': [(k, self.request.POST.getlist(k)) for k in self.request.POST], + 'cookies': [(k, self.request.COOKIES.get(k)) for k in self.request.COOKIES], + 'view_func': '%s.%s' % (self.view_func.__module__, self.view_func.__name__), + 'view_args': self.view_args, + 'view_kwargs': self.view_kwargs + }) + if hasattr(self.request, 'session'): + context.update({ + 'session': [(k, self.request.session.get(k)) for k in self.request.session.iterkeys()] + }) + + return render_to_string('debug_toolbar/panels/request_vars.html', context) diff --git a/debug_toolbar/panels/settings_vars.py b/debug_toolbar/panels/settings_vars.py new file mode 100644 index 0000000..ebb4464 --- /dev/null +++ b/debug_toolbar/panels/settings_vars.py @@ -0,0 +1,29 @@ +from django.conf import settings +from django.template.loader import render_to_string +from django.views.debug import get_safe_settings +from django.utils.translation import ugettext_lazy as _ +from debug_toolbar.panels import DebugPanel + + +class SettingsVarsDebugPanel(DebugPanel): + """ + A panel to display all variables in django.conf.settings + """ + name = 'SettingsVars' + has_content = True + + def nav_title(self): + return _('Settings') + + def title(self): + return _('Settings from %s') % settings.SETTINGS_MODULE + + def url(self): + return '' + + def content(self): + context = self.context.copy() + context.update({ + 'settings': get_safe_settings(), + }) + return render_to_string('debug_toolbar/panels/settings_vars.html', context) diff --git a/debug_toolbar/panels/signals.py b/debug_toolbar/panels/signals.py new file mode 100644 index 0000000..dbd3725 --- /dev/null +++ b/debug_toolbar/panels/signals.py @@ -0,0 +1,87 @@ +import sys + +from django.conf import settings +from django.core.signals import request_started, request_finished, \ + got_request_exception +from django.db.models.signals import class_prepared, pre_init, post_init, \ + pre_save, post_save, pre_delete, post_delete, post_syncdb +from django.dispatch.dispatcher import WEAKREF_TYPES +from django.template.loader import render_to_string +from django.utils.translation import ugettext_lazy as _ + +try: + from django.db.backends.signals import connection_created +except ImportError: + connection_created = None + +from debug_toolbar.panels import DebugPanel + +class SignalDebugPanel(DebugPanel): + name = "Signals" + has_content = True + + SIGNALS = { + 'request_started': request_started, + 'request_finished': request_finished, + 'got_request_exception': got_request_exception, + 'connection_created': connection_created, + 'class_prepared': class_prepared, + 'pre_init': pre_init, + 'post_init': post_init, + 'pre_save': pre_save, + 'post_save': post_save, + 'pre_delete': pre_delete, + 'post_delete': post_delete, + 'post_syncdb': post_syncdb, + } + + def nav_title(self): + return _("Signals") + + def title(self): + return _("Signals") + + def url(self): + return '' + + def signals(self): + signals = self.SIGNALS.copy() + if hasattr(settings, 'DEBUG_TOOLBAR_CONFIG'): + extra_signals = settings.DEBUG_TOOLBAR_CONFIG.get('EXTRA_SIGNALS', []) + else: + extra_signals = [] + for signal in extra_signals: + parts = signal.split('.') + path = '.'.join(parts[:-1]) + __import__(path) + signals[parts[-1]] = getattr(sys.modules[path], parts[-1]) + return signals + signals = property(signals) + + def content(self): + signals = [] + keys = self.signals.keys() + keys.sort() + for name in keys: + signal = self.signals[name] + if signal is None: + continue + receivers = [] + for (receiverkey, r_senderkey), receiver in signal.receivers: + if isinstance(receiver, WEAKREF_TYPES): + receiver = receiver() + if receiver is None: + continue + if getattr(receiver, 'im_self', None) is not None: + text = "method %s on %s object" % (receiver.__name__, receiver.im_self.__class__.__name__) + elif getattr(receiver, 'im_class', None) is not None: + text = "method %s on %s" % (receiver.__name__, receiver.im_class.__name__) + else: + text = "function %s" % receiver.__name__ + receivers.append(text) + signals.append((name, signal, receivers)) + + context = self.context.copy() + context.update({'signals': signals}) + + return render_to_string('debug_toolbar/panels/signals.html', context) diff --git a/debug_toolbar/panels/sql.py b/debug_toolbar/panels/sql.py new file mode 100644 index 0000000..e1e9bdf --- /dev/null +++ b/debug_toolbar/panels/sql.py @@ -0,0 +1,208 @@ +from datetime import datetime +import os +import sys +import SocketServer +import traceback + +import django +from django.conf import settings +from django.db import connection +from django.db.backends import util +from django.views.debug import linebreak_iter +from django.template import Node +from django.template.loader import render_to_string +from django.utils import simplejson +from django.utils.encoding import force_unicode +from django.utils.hashcompat import sha_constructor +from django.utils.translation import ugettext_lazy as _ + +from debug_toolbar.panels import DebugPanel +from debug_toolbar.utils import sqlparse + +# Figure out some paths +django_path = os.path.realpath(os.path.dirname(django.__file__)) +socketserver_path = os.path.realpath(os.path.dirname(SocketServer.__file__)) + +# TODO:This should be set in the toolbar loader as a default and panels should +# get a copy of the toolbar object with access to its config dictionary +SQL_WARNING_THRESHOLD = getattr(settings, 'DEBUG_TOOLBAR_CONFIG', {}) \ + .get('SQL_WARNING_THRESHOLD', 500) + +def tidy_stacktrace(strace): + """ + Clean up stacktrace and remove all entries that: + 1. Are part of Django (except contrib apps) + 2. Are part of SocketServer (used by Django's dev server) + 3. Are the last entry (which is part of our stacktracing code) + """ + trace = [] + for s in strace[:-1]: + s_path = os.path.realpath(s[0]) + if getattr(settings, 'DEBUG_TOOLBAR_CONFIG', {}).get('HIDE_DJANGO_SQL', True) \ + and django_path in s_path and not 'django/contrib' in s_path: + continue + if socketserver_path in s_path: + continue + trace.append((s[0], s[1], s[2], s[3])) + return trace + +def get_template_info(source, context_lines=3): + line = 0 + upto = 0 + source_lines = [] + before = during = after = "" + + origin, (start, end) = source + template_source = origin.reload() + + for num, next in enumerate(linebreak_iter(template_source)): + if start >= upto and end <= next: + line = num + before = template_source[upto:start] + during = template_source[start:end] + after = template_source[end:next] + source_lines.append((num, template_source[upto:next])) + upto = next + + top = max(1, line - context_lines) + bottom = min(len(source_lines), line + 1 + context_lines) + + context = [] + for num, content in source_lines[top:bottom]: + context.append({ + 'num': num, + 'content': content, + 'highlight': (num == line), + }) + + return { + 'name': origin.name, + 'context': context, + } + +class DatabaseStatTracker(util.CursorDebugWrapper): + """ + Replacement for CursorDebugWrapper which stores additional information + in `connection.queries`. + """ + def execute(self, sql, params=()): + start = datetime.now() + try: + return self.cursor.execute(sql, params) + finally: + stop = datetime.now() + duration = ms_from_timedelta(stop - start) + stacktrace = tidy_stacktrace(traceback.extract_stack()) + _params = '' + try: + _params = simplejson.dumps([force_unicode(x, strings_only=True) for x in params]) + except TypeError: + pass # object not JSON serializable + + template_info = None + cur_frame = sys._getframe().f_back + try: + while cur_frame is not None: + if cur_frame.f_code.co_name == 'render': + node = cur_frame.f_locals['self'] + if isinstance(node, Node): + template_info = get_template_info(node.source) + break + cur_frame = cur_frame.f_back + except: + pass + del cur_frame + + # We keep `sql` to maintain backwards compatibility + self.db.queries.append({ + 'sql': self.db.ops.last_executed_query(self.cursor, sql, params), + 'duration': duration, + 'raw_sql': sql, + 'params': _params, + 'hash': sha_constructor(settings.SECRET_KEY + sql + _params).hexdigest(), + 'stacktrace': stacktrace, + 'start_time': start, + 'stop_time': stop, + 'is_slow': (duration > SQL_WARNING_THRESHOLD), + 'is_select': sql.lower().strip().startswith('select'), + 'template_info': template_info, + }) +util.CursorDebugWrapper = DatabaseStatTracker + +class SQLDebugPanel(DebugPanel): + """ + Panel that displays information about the SQL queries run while processing + the request. + """ + name = 'SQL' + has_content = True + + def __init__(self, *args, **kwargs): + super(self.__class__, self).__init__(*args, **kwargs) + self._offset = len(connection.queries) + self._sql_time = 0 + self._queries = [] + + def nav_title(self): + return _('SQL') + + def nav_subtitle(self): + self._queries = connection.queries[self._offset:] + self._sql_time = sum([q['duration'] for q in self._queries]) + num_queries = len(self._queries) + # TODO l10n: use ngettext + return "%d %s in %.2fms" % ( + num_queries, + (num_queries == 1) and 'query' or 'queries', + self._sql_time + ) + + def title(self): + return _('SQL Queries') + + def url(self): + return '' + + def content(self): + width_ratio_tally = 0 + for query in self._queries: + query['sql'] = reformat_sql(query['sql']) + try: + query['width_ratio'] = (query['duration'] / self._sql_time) * 100 + except ZeroDivisionError: + query['width_ratio'] = 0 + query['start_offset'] = width_ratio_tally + width_ratio_tally += query['width_ratio'] + + context = self.context.copy() + context.update({ + 'queries': self._queries, + 'sql_time': self._sql_time, + 'is_mysql': settings.DATABASE_ENGINE == 'mysql', + }) + + return render_to_string('debug_toolbar/panels/sql.html', context) + +def ms_from_timedelta(td): + """ + Given a timedelta object, returns a float representing milliseconds + """ + return (td.seconds * 1000) + (td.microseconds / 1000.0) + +class BoldKeywordFilter(sqlparse.filters.Filter): + """sqlparse filter to bold SQL keywords""" + def process(self, stack, stream): + """Process the token stream""" + for token_type, value in stream: + is_keyword = token_type in sqlparse.tokens.Keyword + if is_keyword: + yield sqlparse.tokens.Text, '' + yield token_type, django.utils.html.escape(value) + if is_keyword: + yield sqlparse.tokens.Text, '' + +def reformat_sql(sql): + stack = sqlparse.engine.FilterStack() + stack.preprocess.append(BoldKeywordFilter()) # add our custom filter + stack.postprocess.append(sqlparse.filters.SerializerUnicode()) # tokens -> strings + return ''.join(stack.run(sql)) diff --git a/debug_toolbar/panels/template.py b/debug_toolbar/panels/template.py new file mode 100644 index 0000000..fe34729 --- /dev/null +++ b/debug_toolbar/panels/template.py @@ -0,0 +1,115 @@ +from os.path import normpath +from pprint import pformat + +from django import http +from django.conf import settings +from django.core.signals import request_started +from django.dispatch import Signal +from django.template.context import get_standard_processors +from django.template.loader import render_to_string +from django.test.signals import template_rendered +from django.utils.translation import ugettext_lazy as _ +from debug_toolbar.panels import DebugPanel + +# Code taken and adapted from Simon Willison and Django Snippets: +# http://www.djangosnippets.org/snippets/766/ + +# Monkeypatch instrumented test renderer from django.test.utils - we could use +# django.test.utils.setup_test_environment for this but that would also set up +# e-mail interception, which we don't want +from django.test.utils import instrumented_test_render +from django.template import Template +if Template.render != instrumented_test_render: + Template.original_render = Template.render + Template.render = instrumented_test_render +# MONSTER monkey-patch +old_template_init = Template.__init__ +def new_template_init(self, template_string, origin=None, name=''): + old_template_init(self, template_string, origin, name) + self.origin = origin +Template.__init__ = new_template_init + +class TemplateDebugPanel(DebugPanel): + """ + A panel that lists all templates used during processing of a response. + """ + name = 'Template' + has_content = True + + def __init__(self, *args, **kwargs): + super(self.__class__, self).__init__(*args, **kwargs) + self.templates = [] + template_rendered.connect(self._store_template_info) + + def _store_template_info(self, sender, **kwargs): + self.templates.append(kwargs) + + def nav_title(self): + return _('Templates') + + def title(self): + num_templates = len([t for t in self.templates + if not t['template'].name.startswith('debug_toolbar/')]) + return _('Templates (%(num_templates)s rendered)') % {'num_templates': num_templates} + + def url(self): + return '' + + def process_request(self, request): + self.request = request + + def content(self): + context_processors = dict( + [ + ("%s.%s" % (k.__module__, k.__name__), + pformat(k(self.request))) for k in get_standard_processors() + ] + ) + template_context = [] + for template_data in self.templates: + info = {} + # Clean up some info about templates + template = template_data.get('template', None) + # Skip templates that we are generating through the debug toolbar. + if template.name.startswith('debug_toolbar/'): + continue + if template.origin and template.origin.name: + template.origin_name = template.origin.name + else: + template.origin_name = 'No origin' + info['template'] = template + # Clean up context for better readability + if getattr(settings, 'DEBUG_TOOLBAR_CONFIG', {}).get('SHOW_TEMPLATE_CONTEXT', True): + context_data = template_data.get('context', None) + + context_list = [] + for context_layer in context_data.dicts: + if hasattr(context_layer, 'items'): + for key, value in context_layer.items(): + # Replace any request elements - they have a large + # unicode representation and the request data is + # already made available from the Request Vars panel. + if isinstance(value, http.HttpRequest): + context_layer[key] = '<>' + # Replace the debugging sql_queries element. The SQL + # data is already made available from the SQL panel. + elif key == 'sql_queries' and isinstance(value, list): + context_layer[key] = '<>' + # Replace LANGUAGES, which is available in i18n context processor + elif key == 'LANGUAGES' and isinstance(value, tuple): + context_layer[key] = '<>' + try: + context_list.append(pformat(context_layer)) + except UnicodeEncodeError: + pass + info['context'] = '\n'.join(context_list) + template_context.append(info) + + context = self.context.copy() + context.update({ + 'templates': template_context, + 'template_dirs': [normpath(x) for x in settings.TEMPLATE_DIRS], + 'context_processors': context_processors, + }) + + return render_to_string('debug_toolbar/panels/templates.html', context) diff --git a/debug_toolbar/panels/timer.py b/debug_toolbar/panels/timer.py new file mode 100644 index 0000000..d866166 --- /dev/null +++ b/debug_toolbar/panels/timer.py @@ -0,0 +1,93 @@ +try: + import resource +except ImportError: + pass # Will fail on Win32 systems +import time +from django.template.loader import render_to_string +from django.utils.translation import ugettext_lazy as _ +from debug_toolbar.panels import DebugPanel + +class TimerDebugPanel(DebugPanel): + """ + Panel that displays the time a response took in milliseconds. + """ + name = 'Timer' + try: # if resource module not available, don't show content panel + resource + except NameError: + has_content = False + has_resource = False + else: + has_content = True + has_resource = True + + def process_request(self, request): + self._start_time = time.time() + if self.has_resource: + self._start_rusage = resource.getrusage(resource.RUSAGE_SELF) + + def process_response(self, request, response): + self.total_time = (time.time() - self._start_time) * 1000 + if self.has_resource: + self._end_rusage = resource.getrusage(resource.RUSAGE_SELF) + + def nav_title(self): + return _('Time') + + def nav_subtitle(self): + # TODO l10n + if self.has_resource: + utime = self._end_rusage.ru_utime - self._start_rusage.ru_utime + stime = self._end_rusage.ru_stime - self._start_rusage.ru_stime + return 'CPU: %0.2fms (%0.2fms)' % ((utime + stime) * 1000.0, self.total_time) + else: + return 'TOTAL: %0.2fms' % (self.total_time) + + def title(self): + return _('Resource Usage') + + def url(self): + return '' + + def _elapsed_ru(self, name): + return getattr(self._end_rusage, name) - getattr(self._start_rusage, name) + + def content(self): + + utime = 1000 * self._elapsed_ru('ru_utime') + stime = 1000 * self._elapsed_ru('ru_stime') + vcsw = self._elapsed_ru('ru_nvcsw') + ivcsw = self._elapsed_ru('ru_nivcsw') + minflt = self._elapsed_ru('ru_minflt') + majflt = self._elapsed_ru('ru_majflt') + +# these are documented as not meaningful under Linux. If you're running BSD +# feel free to enable them, and add any others that I hadn't gotten to before +# I noticed that I was getting nothing but zeroes and that the docs agreed. :-( +# +# blkin = self._elapsed_ru('ru_inblock') +# blkout = self._elapsed_ru('ru_oublock') +# swap = self._elapsed_ru('ru_nswap') +# rss = self._end_rusage.ru_maxrss +# srss = self._end_rusage.ru_ixrss +# urss = self._end_rusage.ru_idrss +# usrss = self._end_rusage.ru_isrss + + # TODO l10n on values + rows = ( + (_('User CPU time'), '%0.3f msec' % utime), + (_('System CPU time'), '%0.3f msec' % stime), + (_('Total CPU time'), '%0.3f msec' % (utime + stime)), + (_('Elapsed time'), '%0.3f msec' % self.total_time), + (_('Context switches'), '%d voluntary, %d involuntary' % (vcsw, ivcsw)), +# ('Memory use', '%d max RSS, %d shared, %d unshared' % (rss, srss, urss + usrss)), +# ('Page faults', '%d no i/o, %d requiring i/o' % (minflt, majflt)), +# ('Disk operations', '%d in, %d out, %d swapout' % (blkin, blkout, swap)), + ) + + context = self.context.copy() + context.update({ + 'rows': rows, + }) + + return render_to_string('debug_toolbar/panels/timer.html', context) diff --git a/debug_toolbar/panels/version.py b/debug_toolbar/panels/version.py new file mode 100644 index 0000000..098ab62 --- /dev/null +++ b/debug_toolbar/panels/version.py @@ -0,0 +1,59 @@ +import sys + +import django +from django.conf import settings +from django.template.loader import render_to_string +from django.utils.translation import ugettext_lazy as _ + +import debug_toolbar +from debug_toolbar.panels import DebugPanel + + +class VersionDebugPanel(DebugPanel): + """ + Panel that displays the Django version. + """ + name = 'Version' + has_content = True + + def nav_title(self): + return _('Versions') + + def nav_subtitle(self): + return 'Django %s' % django.get_version() + + def url(self): + return '' + + def title(self): + return _('Versions') + + def content(self): + versions = {} + for app in settings.INSTALLED_APPS + ['django']: + name = app.split('.')[-1].replace('_', ' ').capitalize() + __import__(app) + app = sys.modules[app] + if hasattr(app, 'get_version'): + get_version = app.get_version + if callable(get_version): + version = get_version() + else: + version = get_version + elif hasattr(app, 'VERSION'): + version = app.VERSION + elif hasattr(app, '__version__'): + version = app.__version__ + else: + continue + if isinstance(version, (list, tuple)): + version = '.'.join(str(o) for o in version) + versions[name] = version + + context = self.context.copy() + context.update({ + 'versions': versions, + 'paths': sys.path, + }) + + return render_to_string('debug_toolbar/panels/versions.html', context) diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html new file mode 100644 index 0000000..50c0be0 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -0,0 +1,74 @@ +{% load i18n %} + + + +
+ + + {% for panel in panels %} + {% if panel.has_content %} +
+
+ {% trans "Close" %} +

{{ panel.title|safe }}

+
+
+
+ {{ panel.content|safe }} +
+
+
+ {% endif %} + {% endfor %} +
+
diff --git a/debug_toolbar/templates/debug_toolbar/panels/cache.html b/debug_toolbar/templates/debug_toolbar/panels/cache.html new file mode 100644 index 0000000..5c5f13b --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/cache.html @@ -0,0 +1,56 @@ +{% load i18n %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
{% trans "Total Calls" %}{{ cache_calls }}{% trans "Total Time" %}{{ cache_time }}ms{% trans "Hits" %}{{ cache.hits }}{% trans "Misses" %}{{ cache.misses }}
gets{{ cache.gets }}sets{{ cache.sets }}deletes{{ cache.deletes }}get_many{{ cache.get_many }}
+{% if cache.calls %} +

{% trans "Breakdown" %}

+ + + + + + + + + + + {% for query in cache.calls %} + + + + + + + {% endfor %} + +
{% trans "Time" %} (ms){% trans "Type" %}{% trans "Parameters" %}{% trans "Function" %}
{{ query.0|floatformat:"4" }}{{ query.1|escape }}{{ query.2|escape }}{{ query.3.2|escape }}: {{ query.3.3.0|escape }}
+{% endif %} diff --git a/debug_toolbar/templates/debug_toolbar/panels/headers.html b/debug_toolbar/templates/debug_toolbar/panels/headers.html new file mode 100644 index 0000000..f251056 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/headers.html @@ -0,0 +1,17 @@ +{% load i18n %} + + + + + + + + + {% for key, value in headers.iteritems %} + + + + + {% endfor %} + +
{% trans "Key" %}{% trans "Value" %}
{{ key|escape }}{{ value|escape }}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/logger.html b/debug_toolbar/templates/debug_toolbar/panels/logger.html new file mode 100644 index 0000000..5e8b652 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/logger.html @@ -0,0 +1,26 @@ +{% load i18n %} +{% if records %} + + + + + + + + + + + {% for record in records %} + + + + + + + {% endfor %} + +
{% trans "Level" %}{% trans "Time" %}{% trans "Message" %}{% trans "Location" %}
{{ record.level }}{{ record.time|date:"h:i:s m/d/Y" }}{{ record.message }}{{ record.file }}:{{ record.line }}
+{% else %} +

{% trans "No messages logged" %}.

+{% endif %} + diff --git a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html new file mode 100644 index 0000000..377076b --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html @@ -0,0 +1,121 @@ +{% load i18n %} + +

{% trans 'View information' %}

+ + + + + + + + + + + + + + + +
{% trans 'View Function' %}{% trans 'args' %}{% trans 'kwargs' %}
{{ view_func }}{{ view_args|default:"None" }} + {% for k, v in view_kwargs.items %} + {{ k }}={{ v }}{% if not forloop.last %}, {% endif %} + {% empty %} + None + {% endfor %} +
+ +

{% trans 'COOKIES Variables' %}

+{% if cookies %} + + + + + + + + + + + + + {% for key, value in cookies %} + + + + + {% endfor %} + +
{% trans "Variable" %}{% trans "Value" %}
{{ key|escape }}{{ value|escape }}
+{% else %} +

{% trans "No COOKIE data" %}

+{% endif %} + +

{% trans 'SESSION Variables' %}

+{% if session %} + + + + + + + + + + + + + {% for key, value in session %} + + + + + {% endfor %} + +
{% trans "Variable" %}{% trans "Value" %}
{{ key|escape }}{{ value|escape }}
+{% else %} +

{% trans "No SESSION data" %}

+{% endif %} + +

{% trans 'GET Variables' %}

+{% if get %} + + + + + + + + + {% for key, value in get %} + + + + + {% endfor %} + +
{% trans "Variable" %}{% trans "Value" %}
{{ key|escape }}{{ value|join:", "|escape }}
+{% else %} +

{% trans "No GET data" %}

+{% endif %} + +

{% trans 'POST Variables' %}

+{% if post %} + + + + + + + + + {% for key, value in post %} + + + + + {% endfor %} + +
{% trans "Variable" %}{% trans "Value" %}
{{ key|escape }}{{ value|join:", "|escape }}
+{% else %} +

{% trans "No POST data" %}

+{% endif %} diff --git a/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html b/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html new file mode 100644 index 0000000..99c43b6 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html @@ -0,0 +1,17 @@ +{% load i18n %} + + + + + + + + + {% for var in settings.items|dictsort:"0" %} + + + + + {% endfor %} + +
{% trans "Setting" %}{% trans "Value" %}
{{ var.0 }}{{ var.1|pprint }}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/signals.html b/debug_toolbar/templates/debug_toolbar/panels/signals.html new file mode 100644 index 0000000..75c1e22 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/signals.html @@ -0,0 +1,19 @@ +{% load i18n %} + + + + + + + + + + {% for name, signal, receivers in signals %} + + + + + + {% endfor %} + +
{% trans "Signal" %}{% trans 'Providing Args' %}{% trans 'Receivers' %}
{{ name|escape }}{{ signal.providing_args|join:", " }}{{ receivers|join:", " }}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html new file mode 100644 index 0000000..9ed87ca --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -0,0 +1,69 @@ +{% load i18n %} + + + + + + + + + + + {% for query in queries %} + + + + + + + {% endfor %} + +
{% trans "Time" %} (ms){% trans "Action" %}{% trans 'Stacktrace' %}{% trans 'Query' %}
{{ query.duration|floatformat:"2" }} + {% if query.params %} + {% if query.is_select %} + SELECT
+ EXPLAIN
+ {% if is_mysql %} + PROFILE
+ {% endif %} + {% endif %} + {% endif %} +
+ {% if query.stacktrace %} + + {% endif %} + +
+
{{ query.sql|safe }}
+ {% if query.stacktrace %} + + {% endif %} + +
+
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html new file mode 100644 index 0000000..a995b92 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html @@ -0,0 +1,33 @@ +{% load i18n %} +
+ {% trans "Back" %} +

{% trans "SQL Explained" %}

+
+
+
+
+
{% trans "Executed SQL" %}
+
{{ sql|safe }}
+
{% trans "Time" %}
+
{{ duration }} ms
+
+ + + + {% for h in headers %} + + {% endfor %} + + + + {% for row in result %} + + {% for column in row %} + + {% endfor %} + + {% endfor %} + +
{{ h|upper }}
{{ column|escape }}
+
+
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html b/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html new file mode 100644 index 0000000..7919ee5 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html @@ -0,0 +1,40 @@ +{% load i18n %} +
+ {% trans "Back" %} +

{% trans "SQL Profiled" %}

+
+
+
+ {% if result %} +
+
{% trans "Executed SQL" %}
+
{{ sql|safe }}
+
{% trans "Time" %}
+
{{ duration }} ms
+
+ + + + {% for h in headers %} + + {% endfor %} + + + + {% for row in result %} + + {% for column in row %} + + {% endfor %} + + {% endfor %} + +
{{ h|upper }}
{{ column|escape }}
+ {% else %} +
+
{% trans 'Error' %}
+
{{ result_error }}
+
+ {% endif %} +
+
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_select.html b/debug_toolbar/templates/debug_toolbar/panels/sql_select.html new file mode 100644 index 0000000..89804fa --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_select.html @@ -0,0 +1,37 @@ +{% load i18n %} +
+ {% trans "Back" %} +

{% trans "SQL Selected" %}

+
+
+
+
+
{% trans "Executed SQL" %}
+
{{ sql|safe }}
+
{% trans "Time" %}
+
{{ duration }} ms
+
+ {% if result %} + + + + {% for h in headers %} + + {% endfor %} + + + + {% for row in result %} + + {% for column in row %} + + {% endfor %} + + {% endfor %} + +
{{ h|upper }}
{{ column|escape }}
+ {% else %} +

{% trans "Empty set" %}

+ {% endif %} +
+
diff --git a/debug_toolbar/templates/debug_toolbar/panels/template_source.html b/debug_toolbar/templates/debug_toolbar/panels/template_source.html new file mode 100644 index 0000000..7dedde3 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/template_source.html @@ -0,0 +1,14 @@ +{% load i18n %} +
+ {% trans "Back" %} +

{% trans 'Template Source' %}: {{ template_name }}

+
+
+
+ {% if not source.pygmentized %} + {{ source }} + {% else %} + {{ source }} + {% endif %} +
+
diff --git a/debug_toolbar/templates/debug_toolbar/panels/templates.html b/debug_toolbar/templates/debug_toolbar/panels/templates.html new file mode 100644 index 0000000..9a1a16d --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/templates.html @@ -0,0 +1,44 @@ +{% load i18n %} +

{% trans 'Template path' %}{{ template_dirs|length|pluralize }}

+{% if template_dirs %} +
    + {% for template in template_dirs %} +
  1. {{ template }}
  2. + {% endfor %} +
+{% else %} +

None

+{% endif %} + +

{% trans "Template" %}{{ templates|length|pluralize }}

+{% if templates %} +
+{% for template in templates %} +
{{ template.template.name|addslashes }}
+
{{ template.template.origin_name|addslashes }}
+ {% if template.context %} +
+ + +
+ {% endif %} +{% endfor %} +
+{% else %} +

{% trans 'None' %}

+{% endif %} + +

{% trans 'Context processor' %}{{ context_processors|length|pluralize }}

+{% if context_processors %} +
+{% for key, value in context_processors.iteritems %} +
{{ key|escape }}
+
+ + +
+{% endfor %} +
+{% else %} +

{% trans 'None' %}

+{% endif %} diff --git a/debug_toolbar/templates/debug_toolbar/panels/timer.html b/debug_toolbar/templates/debug_toolbar/panels/timer.html new file mode 100644 index 0000000..f267de1 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/timer.html @@ -0,0 +1,21 @@ +{% load i18n %} + + + + + + + + + + + + + {% for key, value in rows %} + + + + + {% endfor %} + +
{% trans "Resource" %}{% trans "Value" %}
{{ key|escape }}{{ value|escape }}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/versions.html b/debug_toolbar/templates/debug_toolbar/panels/versions.html new file mode 100644 index 0000000..8a09928 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/versions.html @@ -0,0 +1,18 @@ +{% load i18n %} + + + + + + + + + + {% for package, version in versions.iteritems %} + + + + + {% endfor %} + +
{% trans "Package" %}{% trans "Version" %}
{{ package }}{{ version }}
diff --git a/debug_toolbar/templates/debug_toolbar/redirect.html b/debug_toolbar/templates/debug_toolbar/redirect.html new file mode 100644 index 0000000..250e3e8 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/redirect.html @@ -0,0 +1,12 @@ +{% load i18n %} + + + + +

HttpResponseRedirect

+

{% trans 'Location' %}: {{ redirect_to }}

+

+ {% trans "The Django Debug Toolbar has intercepted a redirect to the above URL for debug viewing purposes. You can click the above link to continue with the redirect as normal. If you'd like to disable this feature, set the DEBUG_TOOLBAR_CONFIG dictionary's key INTERCEPT_REDIRECTS to False." %} +

+ + diff --git a/debug_toolbar/toolbar/__init__.py b/debug_toolbar/toolbar/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/debug_toolbar/toolbar/loader.py b/debug_toolbar/toolbar/loader.py new file mode 100644 index 0000000..8e89aef --- /dev/null +++ b/debug_toolbar/toolbar/loader.py @@ -0,0 +1,75 @@ +""" +The main DebugToolbar class that loads and renders the Toolbar. +""" +from django.template.loader import render_to_string + +class DebugToolbar(object): + + def __init__(self, request): + self.request = request + self.panels = [] + self.config = { + 'INTERCEPT_REDIRECTS': True, + } + self.template_context = { + 'BASE_URL': self.request.META.get('SCRIPT_NAME', ''), + } + # Override this tuple by copying to settings.py as `DEBUG_TOOLBAR_PANELS` + self.default_panels = ( + 'debug_toolbar.panels.version.VersionDebugPanel', + 'debug_toolbar.panels.timer.TimerDebugPanel', + 'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel', + 'debug_toolbar.panels.headers.HeaderDebugPanel', + 'debug_toolbar.panels.request_vars.RequestVarsDebugPanel', + 'debug_toolbar.panels.sql.SQLDebugPanel', + 'debug_toolbar.panels.template.TemplateDebugPanel', + #'debug_toolbar.panels.cache.CacheDebugPanel', + 'debug_toolbar.panels.signals.SignalDebugPanel', + 'debug_toolbar.panels.logger.LoggingPanel', + ) + self.load_panels() + + def load_panels(self): + """ + Populate debug panels + """ + from django.conf import settings + from django.core import exceptions + + # Check if settings has a DEBUG_TOOLBAR_PANELS, otherwise use default + if hasattr(settings, 'DEBUG_TOOLBAR_PANELS'): + self.default_panels = settings.DEBUG_TOOLBAR_PANELS + # Check if settings has a DEBUG_TOOLBAR_CONFIG and updated config + if hasattr(settings, 'DEBUG_TOOLBAR_CONFIG'): + self.config.update(settings.DEBUG_TOOLBAR_CONFIG) + + for panel_path in self.default_panels: + try: + dot = panel_path.rindex('.') + except ValueError: + raise exceptions.ImproperlyConfigured, '%s isn\'t a debug panel module' % panel_path + panel_module, panel_classname = panel_path[:dot], panel_path[dot+1:] + try: + mod = __import__(panel_module, {}, {}, ['']) + except ImportError, e: + raise exceptions.ImproperlyConfigured, 'Error importing debug panel %s: "%s"' % (panel_module, e) + try: + panel_class = getattr(mod, panel_classname) + except AttributeError: + raise exceptions.ImproperlyConfigured, 'Toolbar Panel module "%s" does not define a "%s" class' % (panel_module, panel_classname) + + try: + panel_instance = panel_class(context=self.template_context) + except: + raise # Bubble up problem loading panel + + self.panels.append(panel_instance) + + def render_toolbar(self): + """ + Renders the overall Toolbar with panels inside. + """ + context = self.template_context.copy() + context.update({ 'panels': self.panels, }) + + return render_to_string('debug_toolbar/base.html', context) diff --git a/debug_toolbar/urls.py b/debug_toolbar/urls.py new file mode 100644 index 0000000..77491e3 --- /dev/null +++ b/debug_toolbar/urls.py @@ -0,0 +1,18 @@ +""" +URLpatterns for the debug toolbar. + +These should not be loaded explicitly; the debug toolbar middleware will patch +this into the urlconf for the request. +""" +from django.conf.urls.defaults import * +from django.conf import settings + +_PREFIX = '__debug__' + +urlpatterns = patterns('', + url(r'^%s/m/(.*)$' % _PREFIX, 'debug_toolbar.views.debug_media'), + url(r'^%s/sql_select/$' % _PREFIX, 'debug_toolbar.views.sql_select', name='sql_select'), + url(r'^%s/sql_explain/$' % _PREFIX, 'debug_toolbar.views.sql_explain', name='sql_explain'), + url(r'^%s/sql_profile/$' % _PREFIX, 'debug_toolbar.views.sql_profile', name='sql_profile'), + url(r'^%s/template_source/$' % _PREFIX, 'debug_toolbar.views.template_source', name='template_source'), +) diff --git a/debug_toolbar/utils/__init__.py b/debug_toolbar/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/debug_toolbar/utils/sqlparse/__init__.py b/debug_toolbar/utils/sqlparse/__init__.py new file mode 100644 index 0000000..69873ca --- /dev/null +++ b/debug_toolbar/utils/sqlparse/__init__.py @@ -0,0 +1,59 @@ +# Copyright (C) 2008 Andi Albrecht, albrecht.andi@gmail.com +# +# This module is part of python-sqlparse and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php. + +"""Parse SQL statements.""" + + +__version__ = '0.1.1' + + +import os + + +class SQLParseError(Exception): + """Base class for exceptions in this module.""" + + +# Setup namespace +from debug_toolbar.utils.sqlparse import engine +from debug_toolbar.utils.sqlparse import filters +from debug_toolbar.utils.sqlparse import formatter + + +def parse(sql): + """Parse sql and return a list of statements. + + *sql* is a single string containting one or more SQL statements. + + Returns a tuple of :class:`~sqlparse.sql.Statement` instances. + """ + stack = engine.FilterStack() + stack.full_analyze() + return tuple(stack.run(sql)) + + +def format(sql, **options): + """Format *sql* according to *options*. + + Available options are documented in :ref:`formatting`. + + Returns the formatted SQL statement as string. + """ + stack = engine.FilterStack() + options = formatter.validate_options(options) + stack = formatter.build_filter_stack(stack, options) + stack.postprocess.append(filters.SerializerUnicode()) + return ''.join(stack.run(sql)) + + +def split(sql): + """Split *sql* into single statements. + + Returns a list of strings. + """ + stack = engine.FilterStack() + stack.split_statements = True + return [unicode(stmt) for stmt in stack.run(sql)] + diff --git a/debug_toolbar/utils/sqlparse/engine/__init__.py b/debug_toolbar/utils/sqlparse/engine/__init__.py new file mode 100644 index 0000000..cae0793 --- /dev/null +++ b/debug_toolbar/utils/sqlparse/engine/__init__.py @@ -0,0 +1,80 @@ +# Copyright (C) 2008 Andi Albrecht, albrecht.andi@gmail.com +# +# This module is part of python-sqlparse and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php. + +"""filter""" + +import re + +from debug_toolbar.utils.sqlparse import lexer, SQLParseError +from debug_toolbar.utils.sqlparse.engine import grouping +from debug_toolbar.utils.sqlparse.engine.filter import StatementFilter + +# XXX remove this when cleanup is complete +Filter = object + + +class FilterStack(object): + + def __init__(self): + self.preprocess = [] + self.stmtprocess = [] + self.postprocess = [] + self.split_statements = False + self._grouping = False + + def _flatten(self, stream): + for token in stream: + if token.is_group(): + for t in self._flatten(token.tokens): + yield t + else: + yield token + + def enable_grouping(self): + self._grouping = True + + def full_analyze(self): + self.enable_grouping() + + def run(self, sql): + stream = lexer.tokenize(sql) + # Process token stream + if self.preprocess: + for filter_ in self.preprocess: + stream = filter_.process(self, stream) + + if (self.stmtprocess or self.postprocess or self.split_statements + or self._grouping): + splitter = StatementFilter() + stream = splitter.process(self, stream) + + if self._grouping: + def _group(stream): + for stmt in stream: + grouping.group(stmt) + yield stmt + stream = _group(stream) + + if self.stmtprocess: + def _run(stream): + ret = [] + for stmt in stream: + for filter_ in self.stmtprocess: + filter_.process(self, stmt) + ret.append(stmt) + return ret + stream = _run(stream) + + if self.postprocess: + def _run(stream): + for stmt in stream: + stmt.tokens = list(self._flatten(stmt.tokens)) + for filter_ in self.postprocess: + stmt = filter_.process(self, stmt) + yield stmt + stream = _run(stream) + + return stream + diff --git a/debug_toolbar/utils/sqlparse/engine/filter.py b/debug_toolbar/utils/sqlparse/engine/filter.py new file mode 100644 index 0000000..8d1c7b2 --- /dev/null +++ b/debug_toolbar/utils/sqlparse/engine/filter.py @@ -0,0 +1,99 @@ +# -*- coding: utf-8 -*- + +from debug_toolbar.utils.sqlparse import tokens as T +from debug_toolbar.utils.sqlparse.engine.grouping import Statement, Token + + +class TokenFilter(object): + + def __init__(self, **options): + self.options = options + + def process(self, stack, stream): + """Process token stream.""" + raise NotImplementedError + + +class StatementFilter(TokenFilter): + + def __init__(self): + TokenFilter.__init__(self) + self._in_declare = False + self._in_dbldollar = False + self._is_create = False + + def _reset(self): + self._in_declare = False + self._in_dbldollar = False + self._is_create = False + + def _change_splitlevel(self, ttype, value): + # PostgreSQL + if (ttype == T.Name.Builtin + and value.startswith('$') and value.endswith('$')): + if self._in_dbldollar: + self._in_dbldollar = False + return -1 + else: + self._in_dbldollar = True + return 1 + elif self._in_dbldollar: + return 0 + + # ANSI + if ttype is not T.Keyword: + return 0 + + unified = value.upper() + + if unified == 'DECLARE': + self._in_declare = True + return 1 + + if unified == 'BEGIN': + if self._in_declare: + return 0 + return 0 + + if unified == 'END': + # Should this respect a preceeding BEGIN? + # In CASE ... WHEN ... END this results in a split level -1. + return -1 + + if ttype is T.Keyword.DDL and unified.startswith('CREATE'): + self._is_create = True + + if unified in ('IF', 'FOR') and self._is_create: + return 1 + + # Default + return 0 + + def process(self, stack, stream): + splitlevel = 0 + stmt = None + consume_ws = False + stmt_tokens = [] + for ttype, value in stream: + # Before appending the token + if (consume_ws and ttype is not T.Whitespace + and ttype is not T.Comment.Single): + consume_ws = False + stmt.tokens = stmt_tokens + yield stmt + self._reset() + stmt = None + splitlevel = 0 + if stmt is None: + stmt = Statement() + stmt_tokens = [] + splitlevel += self._change_splitlevel(ttype, value) + # Append the token + stmt_tokens.append(Token(ttype, value)) + # After appending the token + if (splitlevel <= 0 and ttype is T.Punctuation + and value == ';'): + consume_ws = True + if stmt is not None: + stmt.tokens = stmt_tokens + yield stmt diff --git a/debug_toolbar/utils/sqlparse/engine/grouping.py b/debug_toolbar/utils/sqlparse/engine/grouping.py new file mode 100644 index 0000000..532ccec --- /dev/null +++ b/debug_toolbar/utils/sqlparse/engine/grouping.py @@ -0,0 +1,250 @@ +# -*- coding: utf-8 -*- + +import itertools +import re +import types + +from debug_toolbar.utils.sqlparse import tokens as T +from debug_toolbar.utils.sqlparse.sql import * + + + +def _group_left_right(tlist, ttype, value, cls, + check_right=lambda t: True, + include_semicolon=False): + [_group_left_right(sgroup, ttype, value, cls, check_right, + include_semicolon) for sgroup in tlist.get_sublists() + if not isinstance(sgroup, cls)] + idx = 0 + token = tlist.token_next_match(idx, ttype, value) + while token: + right = tlist.token_next(tlist.token_index(token)) + left = tlist.token_prev(tlist.token_index(token)) + if (right is None or not check_right(right) + or left is None): + token = tlist.token_next_match(tlist.token_index(token)+1, + ttype, value) + else: + if include_semicolon: + right = tlist.token_next_match(tlist.token_index(right), + T.Punctuation, ';') + tokens = tlist.tokens_between(left, right)[1:] + if not isinstance(left, cls): + new = cls([left]) + new_idx = tlist.token_index(left) + tlist.tokens.remove(left) + tlist.tokens.insert(new_idx, new) + left = new + left.tokens.extend(tokens) + for t in tokens: + tlist.tokens.remove(t) + token = tlist.token_next_match(tlist.token_index(left)+1, + ttype, value) + +def _group_matching(tlist, start_ttype, start_value, end_ttype, end_value, + cls, include_semicolon=False, recurse=False): + def _find_matching(i, tl, stt, sva, ett, eva): + depth = 1 + for t in tl.tokens[i:]: + if t.match(stt, sva): + depth += 1 + elif t.match(ett, eva): + depth -= 1 + if depth == 1: + return t + return None + [_group_matching(sgroup, start_ttype, start_value, end_ttype, end_value, + cls, include_semicolon) for sgroup in tlist.get_sublists() + if recurse] + if isinstance(tlist, cls): + idx = 1 + else: + idx = 0 + token = tlist.token_next_match(idx, start_ttype, start_value) + while token: + tidx = tlist.token_index(token) + end = _find_matching(tidx, tlist, start_ttype, start_value, + end_ttype, end_value) + if end is None: + idx = tidx+1 + else: + if include_semicolon: + next_ = tlist.token_next(tlist.token_index(end)) + if next_ and next_.match(T.Punctuation, ';'): + end = next_ + group = tlist.group_tokens(cls, tlist.tokens_between(token, end)) + _group_matching(group, start_ttype, start_value, + end_ttype, end_value, cls, include_semicolon) + idx = tlist.token_index(group)+1 + token = tlist.token_next_match(idx, start_ttype, start_value) + +def group_if(tlist): + _group_matching(tlist, T.Keyword, 'IF', T.Keyword, 'END IF', If, True) + +def group_for(tlist): + _group_matching(tlist, T.Keyword, 'FOR', T.Keyword, 'END LOOP', For, True) + +def group_as(tlist): + _group_left_right(tlist, T.Keyword, 'AS', Identifier) + +def group_assignment(tlist): + _group_left_right(tlist, T.Assignment, ':=', Assignment, + include_semicolon=True) + +def group_comparsion(tlist): + _group_left_right(tlist, T.Operator, None, Comparsion) + + +def group_case(tlist): + _group_matching(tlist, T.Keyword, 'CASE', T.Keyword, 'END', Case, + include_semicolon=True, recurse=True) + + +def group_identifier(tlist): + def _consume_cycle(tl, i): + x = itertools.cycle((lambda y: y.match(T.Punctuation, '.'), + lambda y: y.ttype in (T.String.Symbol, + T.Name, + T.Wildcard))) + for t in tl.tokens[i:]: + if x.next()(t): + yield t + else: + raise StopIteration + + # bottom up approach: group subgroups first + [group_identifier(sgroup) for sgroup in tlist.get_sublists() + if not isinstance(sgroup, Identifier)] + + # real processing + idx = 0 + token = tlist.token_next_by_type(idx, (T.String.Symbol, T.Name)) + while token: + identifier_tokens = [token]+list( + _consume_cycle(tlist, + tlist.token_index(token)+1)) + group = tlist.group_tokens(Identifier, identifier_tokens) + idx = tlist.token_index(group)+1 + token = tlist.token_next_by_type(idx, (T.String.Symbol, T.Name)) + + +def group_identifier_list(tlist): + [group_identifier_list(sgroup) for sgroup in tlist.get_sublists() + if not isinstance(sgroup, (Identifier, IdentifierList))] + idx = 0 + # Allowed list items + fend1_funcs = [lambda t: isinstance(t, Identifier), + lambda t: t.is_whitespace(), + lambda t: t.ttype == T.Wildcard, + lambda t: t.match(T.Keyword, 'null'), + lambda t: t.ttype == T.Number.Integer, + lambda t: t.ttype == T.String.Single, + lambda t: isinstance(t, Comparsion), + ] + tcomma = tlist.token_next_match(idx, T.Punctuation, ',') + start = None + while tcomma is not None: + before = tlist.token_prev(tcomma) + after = tlist.token_next(tcomma) + # Check if the tokens around tcomma belong to a list + bpassed = apassed = False + for func in fend1_funcs: + if before is not None and func(before): + bpassed = True + if after is not None and func(after): + apassed = True + if not bpassed or not apassed: + # Something's wrong here, skip ahead to next "," + start = None + tcomma = tlist.token_next_match(tlist.token_index(tcomma)+1, + T.Punctuation, ',') + else: + if start is None: + start = before + next_ = tlist.token_next(after) + if next_ is None or not next_.match(T.Punctuation, ','): + # Reached the end of the list + tokens = tlist.tokens_between(start, after) + group = tlist.group_tokens(IdentifierList, tokens) + start = None + tcomma = tlist.token_next_match(tlist.token_index(group)+1, + T.Punctuation, ',') + else: + tcomma = next_ + + +def group_parenthesis(tlist): + _group_matching(tlist, T.Punctuation, '(', T.Punctuation, ')', Parenthesis) + +def group_comments(tlist): + [group_comments(sgroup) for sgroup in tlist.get_sublists() + if not isinstance(sgroup, Comment)] + idx = 0 + token = tlist.token_next_by_type(idx, T.Comment) + while token: + tidx = tlist.token_index(token) + end = tlist.token_not_matching(tidx+1, + [lambda t: t.ttype in T.Comment, + lambda t: t.is_whitespace()]) + if end is None: + idx = tidx + 1 + else: + eidx = tlist.token_index(end) + grp_tokens = tlist.tokens_between(token, + tlist.token_prev(eidx, False)) + group = tlist.group_tokens(Comment, grp_tokens) + idx = tlist.token_index(group) + token = tlist.token_next_by_type(idx, T.Comment) + +def group_where(tlist): + [group_where(sgroup) for sgroup in tlist.get_sublists() + if not isinstance(sgroup, Where)] + idx = 0 + token = tlist.token_next_match(idx, T.Keyword, 'WHERE') + stopwords = ('ORDER', 'GROUP', 'LIMIT', 'UNION') + while token: + tidx = tlist.token_index(token) + end = tlist.token_next_match(tidx+1, T.Keyword, stopwords) + if end is None: + end = tlist.tokens[-1] + else: + end = tlist.tokens[tlist.token_index(end)-1] + group = tlist.group_tokens(Where, tlist.tokens_between(token, end)) + idx = tlist.token_index(group) + token = tlist.token_next_match(idx, T.Keyword, 'WHERE') + +def group_aliased(tlist): + [group_aliased(sgroup) for sgroup in tlist.get_sublists() + if not isinstance(sgroup, Identifier)] + idx = 0 + token = tlist.token_next_by_instance(idx, Identifier) + while token: + next_ = tlist.token_next(tlist.token_index(token)) + if next_ is not None and isinstance(next_, Identifier): + grp = tlist.tokens_between(token, next_)[1:] + token.tokens.extend(grp) + for t in grp: + tlist.tokens.remove(t) + idx = tlist.token_index(token)+1 + token = tlist.token_next_by_instance(idx, Identifier) + + +def group_typecasts(tlist): + _group_left_right(tlist, T.Punctuation, '::', Identifier) + + +def group(tlist): + for func in [group_parenthesis, + group_comments, + group_where, + group_case, + group_identifier, + group_typecasts, + group_as, + group_aliased, + group_assignment, + group_comparsion, + group_identifier_list, + group_if, + group_for,]: + func(tlist) diff --git a/debug_toolbar/utils/sqlparse/filters.py b/debug_toolbar/utils/sqlparse/filters.py new file mode 100644 index 0000000..3c92791 --- /dev/null +++ b/debug_toolbar/utils/sqlparse/filters.py @@ -0,0 +1,440 @@ +# -*- coding: utf-8 -*- + +import re + +from debug_toolbar.utils.sqlparse.engine import grouping +from debug_toolbar.utils.sqlparse import tokens as T +from debug_toolbar.utils.sqlparse import sql + + +class Filter(object): + + def process(self, *args): + raise NotImplementedError + + +class TokenFilter(Filter): + + def process(self, stack, stream): + raise NotImplementedError + + +# FIXME: Should be removed +def rstrip(stream): + buff = [] + for token in stream: + if token.is_whitespace() and '\n' in token.value: + # assuming there's only one \n in value + before, rest = token.value.split('\n', 1) + token.value = '\n%s' % rest + buff = [] + yield token + elif token.is_whitespace(): + buff.append(token) + elif token.is_group(): + token.tokens = list(rstrip(token.tokens)) + # process group and look if it starts with a nl + if token.tokens and token.tokens[0].is_whitespace(): + before, rest = token.tokens[0].value.split('\n', 1) + token.tokens[0].value = '\n%s' % rest + buff = [] + while buff: + yield buff.pop(0) + yield token + else: + while buff: + yield buff.pop(0) + yield token + + +# -------------------------- +# token process + +class _CaseFilter(TokenFilter): + + ttype = None + + def __init__(self, case=None): + if case is None: + case = 'upper' + assert case in ['lower', 'upper', 'capitalize'] + self.convert = getattr(unicode, case) + + def process(self, stack, stream): + for ttype, value in stream: + if ttype in self.ttype: + value = self.convert(value) + yield ttype, value + + +class KeywordCaseFilter(_CaseFilter): + ttype = T.Keyword + + +class IdentifierCaseFilter(_CaseFilter): + ttype = (T.Name, T.String.Symbol) + + +# ---------------------- +# statement process + +class StripCommentsFilter(Filter): + + def _process(self, tlist): + idx = 0 + clss = set([x.__class__ for x in tlist.tokens]) + while grouping.Comment in clss: + token = tlist.token_next_by_instance(0, grouping.Comment) + tidx = tlist.token_index(token) + prev = tlist.token_prev(tidx, False) + next_ = tlist.token_next(tidx, False) + # Replace by whitespace if prev and next exist and if they're not + # whitespaces. This doesn't apply if prev or next is a paranthesis. + if (prev is not None and next_ is not None + and not prev.is_whitespace() and not next_.is_whitespace() + and not (prev.match(T.Punctuation, '(') + or next_.match(T.Punctuation, ')'))): + tlist.tokens[tidx] = grouping.Token(T.Whitespace, ' ') + else: + tlist.tokens.pop(tidx) + clss = set([x.__class__ for x in tlist.tokens]) + + def process(self, stack, stmt): + [self.process(stack, sgroup) for sgroup in stmt.get_sublists()] + self._process(stmt) + + +class StripWhitespaceFilter(Filter): + + def _stripws(self, tlist): + func_name = '_stripws_%s' % tlist.__class__.__name__.lower() + func = getattr(self, func_name, self._stripws_default) + func(tlist) + + def _stripws_default(self, tlist): + last_was_ws = False + for token in tlist.tokens: + if token.is_whitespace(): + if last_was_ws: + token.value = '' + else: + token.value = ' ' + last_was_ws = token.is_whitespace() + + def _stripws_parenthesis(self, tlist): + if tlist.tokens[1].is_whitespace(): + tlist.tokens.pop(1) + if tlist.tokens[-2].is_whitespace(): + tlist.tokens.pop(-2) + self._stripws_default(tlist) + + def process(self, stack, stmt): + [self.process(stack, sgroup) for sgroup in stmt.get_sublists()] + self._stripws(stmt) + if stmt.tokens[-1].is_whitespace(): + stmt.tokens.pop(-1) + + +class ReindentFilter(Filter): + + def __init__(self, width=2, char=' ', line_width=None): + self.width = width + self.char = char + self.indent = 0 + self.offset = 0 + self.line_width = line_width + self._curr_stmt = None + self._last_stmt = None + + def _get_offset(self, token): + all_ = list(self._curr_stmt.flatten()) + idx = all_.index(token) + raw = ''.join(unicode(x) for x in all_[:idx+1]) + line = raw.splitlines()[-1] + # Now take current offset into account and return relative offset. + full_offset = len(line)-(len(self.char*(self.width*self.indent))) + return full_offset - self.offset + + def nl(self): + # TODO: newline character should be configurable + ws = '\n'+(self.char*((self.indent*self.width)+self.offset)) + return grouping.Token(T.Whitespace, ws) + + def _split_kwds(self, tlist): + split_words = ('FROM', 'JOIN$', 'AND', 'OR', + 'GROUP', 'ORDER', 'UNION', 'VALUES', + 'SET') + idx = 0 + token = tlist.token_next_match(idx, T.Keyword, split_words, + regex=True) + while token: + prev = tlist.token_prev(tlist.token_index(token), False) + offset = 1 + if prev and prev.is_whitespace(): + tlist.tokens.pop(tlist.token_index(prev)) + offset += 1 + if (prev + and isinstance(prev, sql.Comment) + and (str(prev).endswith('\n') + or str(prev).endswith('\r'))): + nl = tlist.token_next(token) + else: + nl = self.nl() + tlist.insert_before(token, nl) + token = tlist.token_next_match(tlist.token_index(nl)+offset, + T.Keyword, split_words, regex=True) + + def _split_statements(self, tlist): + idx = 0 + token = tlist.token_next_by_type(idx, (T.Keyword.DDL, T.Keyword.DML)) + while token: + prev = tlist.token_prev(tlist.token_index(token), False) + if prev and prev.is_whitespace(): + tlist.tokens.pop(tlist.token_index(prev)) + # only break if it's not the first token + if prev: + nl = self.nl() + tlist.insert_before(token, nl) + token = tlist.token_next_by_type(tlist.token_index(token)+1, + (T.Keyword.DDL, T.Keyword.DML)) + + def _process(self, tlist): + func_name = '_process_%s' % tlist.__class__.__name__.lower() + func = getattr(self, func_name, self._process_default) + func(tlist) + + def _process_where(self, tlist): + token = tlist.token_next_match(0, T.Keyword, 'WHERE') + tlist.insert_before(token, self.nl()) + self.indent += 1 + self._process_default(tlist) + self.indent -= 1 + + def _process_parenthesis(self, tlist): + first = tlist.token_next(0) + indented = False + if first and first.ttype in (T.Keyword.DML, T.Keyword.DDL): + self.indent += 1 + tlist.tokens.insert(0, self.nl()) + indented = True + num_offset = self._get_offset(tlist.token_next_match(0, + T.Punctuation, '(')) + self.offset += num_offset + self._process_default(tlist, stmts=not indented) + if indented: + self.indent -= 1 + self.offset -= num_offset + + def _process_identifierlist(self, tlist): + identifiers = tlist.get_identifiers() + if len(identifiers) > 1: + first = list(identifiers[0].flatten())[0] + num_offset = self._get_offset(first)-len(first.value) + self.offset += num_offset + for token in identifiers[1:]: + tlist.insert_before(token, self.nl()) + self.offset -= num_offset + self._process_default(tlist) + + def _process_case(self, tlist): + cases = tlist.get_cases() + is_first = True + num_offset = None + case = tlist.tokens[0] + outer_offset = self._get_offset(case)-len(case.value) + self.offset += outer_offset + for cond, value in tlist.get_cases(): + if is_first: + is_first = False + num_offset = self._get_offset(cond[0])-len(cond[0].value) + self.offset += num_offset + continue + if cond is None: + token = value[0] + else: + token = cond[0] + tlist.insert_before(token, self.nl()) + # Line breaks on group level are done. Now let's add an offset of + # 5 (=length of "when", "then", "else") and process subgroups. + self.offset += 5 + self._process_default(tlist) + self.offset -= 5 + if num_offset is not None: + self.offset -= num_offset + end = tlist.token_next_match(0, T.Keyword, 'END') + tlist.insert_before(end, self.nl()) + self.offset -= outer_offset + + def _process_default(self, tlist, stmts=True, kwds=True): + if stmts: + self._split_statements(tlist) + if kwds: + self._split_kwds(tlist) + [self._process(sgroup) for sgroup in tlist.get_sublists()] + + def process(self, stack, stmt): + if isinstance(stmt, grouping.Statement): + self._curr_stmt = stmt + self._process(stmt) + if isinstance(stmt, grouping.Statement): + if self._last_stmt is not None: + if self._last_stmt.to_unicode().endswith('\n'): + nl = '\n' + else: + nl = '\n\n' + stmt.tokens.insert(0, + grouping.Token(T.Whitespace, nl)) + if self._last_stmt != stmt: + self._last_stmt = stmt + + +# FIXME: Doesn't work ;) +class RightMarginFilter(Filter): + + keep_together = ( +# grouping.TypeCast, grouping.Identifier, grouping.Alias, + ) + + def __init__(self, width=79): + self.width = width + self.line = '' + + def _process(self, stack, group, stream): + for token in stream: + if token.is_whitespace() and '\n' in token.value: + if token.value.endswith('\n'): + self.line = '' + else: + self.line = token.value.splitlines()[-1] + elif (token.is_group() + and not token.__class__ in self.keep_together): + token.tokens = self._process(stack, token, token.tokens) + else: + val = token.to_unicode() + if len(self.line) + len(val) > self.width: + match = re.search('^ +', self.line) + if match is not None: + indent = match.group() + else: + indent = '' + yield grouping.Token(T.Whitespace, '\n%s' % indent) + self.line = indent + self.line += val + yield token + + def process(self, stack, group): + return + group.tokens = self._process(stack, group, group.tokens) + + +# --------------------------- +# postprocess + +class SerializerUnicode(Filter): + + def process(self, stack, stmt): + raw = stmt.to_unicode() + add_nl = raw.endswith('\n') + res = '\n'.join(line.rstrip() for line in raw.splitlines()) + if add_nl: + res += '\n' + return res + + +class OutputPythonFilter(Filter): + + def __init__(self, varname='sql'): + self.varname = varname + self.cnt = 0 + + def _process(self, stream, varname, count, has_nl): + if count > 1: + yield grouping.Token(T.Whitespace, '\n') + yield grouping.Token(T.Name, varname) + yield grouping.Token(T.Whitespace, ' ') + yield grouping.Token(T.Operator, '=') + yield grouping.Token(T.Whitespace, ' ') + if has_nl: + yield grouping.Token(T.Operator, '(') + yield grouping.Token(T.Text, "'") + cnt = 0 + for token in stream: + cnt += 1 + if token.is_whitespace() and '\n' in token.value: + if cnt == 1: + continue + after_lb = token.value.split('\n', 1)[1] + yield grouping.Token(T.Text, " '") + yield grouping.Token(T.Whitespace, '\n') + for i in range(len(varname)+4): + yield grouping.Token(T.Whitespace, ' ') + yield grouping.Token(T.Text, "'") + if after_lb: # it's the indendation + yield grouping.Token(T.Whitespace, after_lb) + continue + elif token.value and "'" in token.value: + token.value = token.value.replace("'", "\\'") + yield grouping.Token(T.Text, token.value or '') + yield grouping.Token(T.Text, "'") + if has_nl: + yield grouping.Token(T.Operator, ')') + + def process(self, stack, stmt): + self.cnt += 1 + if self.cnt > 1: + varname = '%s%d' % (self.varname, self.cnt) + else: + varname = self.varname + has_nl = len(stmt.to_unicode().strip().splitlines()) > 1 + stmt.tokens = self._process(stmt.tokens, varname, self.cnt, has_nl) + return stmt + + +class OutputPHPFilter(Filter): + + def __init__(self, varname='sql'): + self.varname = '$%s' % varname + self.count = 0 + + def _process(self, stream, varname): + if self.count > 1: + yield grouping.Token(T.Whitespace, '\n') + yield grouping.Token(T.Name, varname) + yield grouping.Token(T.Whitespace, ' ') + yield grouping.Token(T.Operator, '=') + yield grouping.Token(T.Whitespace, ' ') + yield grouping.Token(T.Text, '"') + cnt = 0 + for token in stream: + if token.is_whitespace() and '\n' in token.value: +# cnt += 1 +# if cnt == 1: +# continue + after_lb = token.value.split('\n', 1)[1] + yield grouping.Token(T.Text, ' "') + yield grouping.Token(T.Operator, ';') + yield grouping.Token(T.Whitespace, '\n') + yield grouping.Token(T.Name, varname) + yield grouping.Token(T.Whitespace, ' ') + yield grouping.Token(T.Punctuation, '.') + yield grouping.Token(T.Operator, '=') + yield grouping.Token(T.Whitespace, ' ') + yield grouping.Token(T.Text, '"') + if after_lb: + yield grouping.Token(T.Text, after_lb) + continue + elif '"' in token.value: + token.value = token.value.replace('"', '\\"') + yield grouping.Token(T.Text, token.value) + yield grouping.Token(T.Text, '"') + yield grouping.Token(T.Punctuation, ';') + + def process(self, stack, stmt): + self.count += 1 + if self.count > 1: + varname = '%s%d' % (self.varname, self.count) + else: + varname = self.varname + stmt.tokens = tuple(self._process(stmt.tokens, varname)) + return stmt + diff --git a/debug_toolbar/utils/sqlparse/formatter.py b/debug_toolbar/utils/sqlparse/formatter.py new file mode 100644 index 0000000..34e9fe0 --- /dev/null +++ b/debug_toolbar/utils/sqlparse/formatter.py @@ -0,0 +1,122 @@ +# Copyright (C) 2008 Andi Albrecht, albrecht.andi@gmail.com +# +# This module is part of python-sqlparse and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php. + +"""SQL formatter""" + +from debug_toolbar.utils.sqlparse import SQLParseError +from debug_toolbar.utils.sqlparse import filters + + +def validate_options(options): + """Validates options.""" + kwcase = options.get('keyword_case', None) + if kwcase not in [None, 'upper', 'lower', 'capitalize']: + raise SQLParseError('Invalid value for keyword_case: %r' % kwcase) + + idcase = options.get('identifier_case', None) + if idcase not in [None, 'upper', 'lower', 'capitalize']: + raise SQLParseError('Invalid value for identifier_case: %r' % idcase) + + ofrmt = options.get('output_format', None) + if ofrmt not in [None, 'sql', 'python', 'php']: + raise SQLParseError('Unknown output format: %r' % ofrmt) + + strip_comments = options.get('strip_comments', False) + if strip_comments not in [True, False]: + raise SQLParseError('Invalid value for strip_comments: %r' + % strip_comments) + + strip_ws = options.get('strip_whitespace', False) + if strip_ws not in [True, False]: + raise SQLParseError('Invalid value for strip_whitespace: %r' + % strip_ws) + + reindent = options.get('reindent', False) + if reindent not in [True, False]: + raise SQLParseError('Invalid value for reindent: %r' + % reindent) + elif reindent: + options['strip_whitespace'] = True + indent_tabs = options.get('indent_tabs', False) + if indent_tabs not in [True, False]: + raise SQLParseError('Invalid value for indent_tabs: %r' % indent_tabs) + elif indent_tabs: + options['indent_char'] = '\t' + else: + options['indent_char'] = ' ' + indent_width = options.get('indent_width', 2) + try: + indent_width = int(indent_width) + except (TypeError, ValueError): + raise SQLParseError('indent_width requires an integer') + if indent_width < 1: + raise SQLParseError('indent_width requires an positive integer') + options['indent_width'] = indent_width + + right_margin = options.get('right_margin', None) + if right_margin is not None: + try: + right_margin = int(right_margin) + except (TypeError, ValueError): + raise SQLParseError('right_margin requires an integer') + if right_margin < 10: + raise SQLParseError('right_margin requires an integer > 10') + options['right_margin'] = right_margin + + return options + + +def build_filter_stack(stack, options): + """Setup and return a filter stack. + + Args: + stack: :class:`~sqlparse.filters.FilterStack` instance + options: Dictionary with options validated by validate_options. + """ + # Token filter + if 'keyword_case' in options: + stack.preprocess.append( + filters.KeywordCaseFilter(options['keyword_case'])) + + if 'identifier_case' in options: + stack.preprocess.append( + filters.IdentifierCaseFilter(options['identifier_case'])) + + # After grouping + if options.get('strip_comments', False): + stack.enable_grouping() + stack.stmtprocess.append(filters.StripCommentsFilter()) + + if (options.get('strip_whitespace', False) + or options.get('reindent', False)): + stack.enable_grouping() + stack.stmtprocess.append(filters.StripWhitespaceFilter()) + + if options.get('reindent', False): + stack.enable_grouping() + stack.stmtprocess.append( + filters.ReindentFilter(char=options['indent_char'], + width=options['indent_width'])) + + if options.get('right_margin', False): + stack.enable_grouping() + stack.stmtprocess.append( + filters.RightMarginFilter(width=options['right_margin'])) + + # Serializer + if options.get('output_format'): + frmt = options['output_format'] + if frmt.lower() == 'php': + fltr = filters.OutputPHPFilter() + elif frmt.lower() == 'python': + fltr = filters.OutputPythonFilter() + else: + fltr = None + if fltr is not None: + stack.postprocess.append(fltr) + + return stack + + diff --git a/debug_toolbar/utils/sqlparse/keywords.py b/debug_toolbar/utils/sqlparse/keywords.py new file mode 100644 index 0000000..cada139 --- /dev/null +++ b/debug_toolbar/utils/sqlparse/keywords.py @@ -0,0 +1,590 @@ +from debug_toolbar.utils.sqlparse.tokens import * + +KEYWORDS = { + 'ABORT': Keyword, + 'ABS': Keyword, + 'ABSOLUTE': Keyword, + 'ACCESS': Keyword, + 'ADA': Keyword, + 'ADD': Keyword, + 'ADMIN': Keyword, + 'AFTER': Keyword, + 'AGGREGATE': Keyword, + 'ALIAS': Keyword, + 'ALL': Keyword, + 'ALLOCATE': Keyword, + 'ANALYSE': Keyword, + 'ANALYZE': Keyword, + 'AND': Keyword, + 'ANY': Keyword, + 'ARE': Keyword, + 'AS': Keyword, + 'ASC': Keyword, + 'ASENSITIVE': Keyword, + 'ASSERTION': Keyword, + 'ASSIGNMENT': Keyword, + 'ASYMMETRIC': Keyword, + 'AT': Keyword, + 'ATOMIC': Keyword, + 'AUTHORIZATION': Keyword, + 'AVG': Keyword, + + 'BACKWARD': Keyword, + 'BEFORE': Keyword, + 'BEGIN': Keyword, + 'BETWEEN': Keyword, + 'BITVAR': Keyword, + 'BIT_LENGTH': Keyword, + 'BOTH': Keyword, + 'BREADTH': Keyword, + 'BY': Keyword, + +# 'C': Keyword, # most likely this is an alias + 'CACHE': Keyword, + 'CALL': Keyword, + 'CALLED': Keyword, + 'CARDINALITY': Keyword, + 'CASCADE': Keyword, + 'CASCADED': Keyword, + 'CASE': Keyword, + 'CAST': Keyword, + 'CATALOG': Keyword, + 'CATALOG_NAME': Keyword, + 'CHAIN': Keyword, + 'CHARACTERISTICS': Keyword, + 'CHARACTER_LENGTH': Keyword, + 'CHARACTER_SET_CATALOG': Keyword, + 'CHARACTER_SET_NAME': Keyword, + 'CHARACTER_SET_SCHEMA': Keyword, + 'CHAR_LENGTH': Keyword, + 'CHECK': Keyword, + 'CHECKED': Keyword, + 'CHECKPOINT': Keyword, + 'CLASS': Keyword, + 'CLASS_ORIGIN': Keyword, + 'CLOB': Keyword, + 'CLOSE': Keyword, + 'CLUSTER': Keyword, + 'COALSECE': Keyword, + 'COBOL': Keyword, + 'COLLATE': Keyword, + 'COLLATION': Keyword, + 'COLLATION_CATALOG': Keyword, + 'COLLATION_NAME': Keyword, + 'COLLATION_SCHEMA': Keyword, + 'COLUMN': Keyword, + 'COLUMN_NAME': Keyword, + 'COMMAND_FUNCTION': Keyword, + 'COMMAND_FUNCTION_CODE': Keyword, + 'COMMENT': Keyword, + 'COMMIT': Keyword, + 'COMMITTED': Keyword, + 'COMPLETION': Keyword, + 'CONDITION_NUMBER': Keyword, + 'CONNECT': Keyword, + 'CONNECTION': Keyword, + 'CONNECTION_NAME': Keyword, + 'CONSTRAINT': Keyword, + 'CONSTRAINTS': Keyword, + 'CONSTRAINT_CATALOG': Keyword, + 'CONSTRAINT_NAME': Keyword, + 'CONSTRAINT_SCHEMA': Keyword, + 'CONSTRUCTOR': Keyword, + 'CONTAINS': Keyword, + 'CONTINUE': Keyword, + 'CONVERSION': Keyword, + 'CONVERT': Keyword, + 'COPY': Keyword, + 'CORRESPONTING': Keyword, + 'COUNT': Keyword, + 'CREATEDB': Keyword, + 'CREATEUSER': Keyword, + 'CROSS': Keyword, + 'CUBE': Keyword, + 'CURRENT': Keyword, + 'CURRENT_DATE': Keyword, + 'CURRENT_PATH': Keyword, + 'CURRENT_ROLE': Keyword, + 'CURRENT_TIME': Keyword, + 'CURRENT_TIMESTAMP': Keyword, + 'CURRENT_USER': Keyword, + 'CURSOR': Keyword, + 'CURSOR_NAME': Keyword, + 'CYCLE': Keyword, + + 'DATA': Keyword, + 'DATABASE': Keyword, + 'DATETIME_INTERVAL_CODE': Keyword, + 'DATETIME_INTERVAL_PRECISION': Keyword, + 'DAY': Keyword, + 'DEALLOCATE': Keyword, + 'DECLARE': Keyword, + 'DEFAULT': Keyword, + 'DEFAULTS': Keyword, + 'DEFERRABLE': Keyword, + 'DEFERRED': Keyword, + 'DEFINED': Keyword, + 'DEFINER': Keyword, + 'DELIMITER': Keyword, + 'DELIMITERS': Keyword, + 'DEREF': Keyword, + 'DESC': Keyword, + 'DESCRIBE': Keyword, + 'DESCRIPTOR': Keyword, + 'DESTROY': Keyword, + 'DESTRUCTOR': Keyword, + 'DETERMINISTIC': Keyword, + 'DIAGNOSTICS': Keyword, + 'DICTIONARY': Keyword, + 'DISCONNECT': Keyword, + 'DISPATCH': Keyword, + 'DISTINCT': Keyword, + 'DO': Keyword, + 'DOMAIN': Keyword, + 'DYNAMIC': Keyword, + 'DYNAMIC_FUNCTION': Keyword, + 'DYNAMIC_FUNCTION_CODE': Keyword, + + 'EACH': Keyword, + 'ELSE': Keyword, + 'ENCODING': Keyword, + 'ENCRYPTED': Keyword, + 'END': Keyword, + 'END-EXEC': Keyword, + 'EQUALS': Keyword, + 'ESCAPE': Keyword, + 'EVERY': Keyword, + 'EXCEPT': Keyword, + 'ESCEPTION': Keyword, + 'EXCLUDING': Keyword, + 'EXCLUSIVE': Keyword, + 'EXEC': Keyword, + 'EXECUTE': Keyword, + 'EXISTING': Keyword, + 'EXISTS': Keyword, + 'EXTERNAL': Keyword, + 'EXTRACT': Keyword, + + 'FALSE': Keyword, + 'FETCH': Keyword, + 'FINAL': Keyword, + 'FIRST': Keyword, + 'FOR': Keyword, + 'FORCE': Keyword, + 'FOREIGN': Keyword, + 'FORTRAN': Keyword, + 'FORWARD': Keyword, + 'FOUND': Keyword, + 'FREE': Keyword, + 'FREEZE': Keyword, + 'FROM': Keyword, + 'FULL': Keyword, + 'FUNCTION': Keyword, + + 'G': Keyword, + 'GENERAL': Keyword, + 'GENERATED': Keyword, + 'GET': Keyword, + 'GLOBAL': Keyword, + 'GO': Keyword, + 'GOTO': Keyword, + 'GRANT': Keyword, + 'GRANTED': Keyword, + 'GROUP': Keyword, + 'GROUPING': Keyword, + + 'HANDLER': Keyword, + 'HAVING': Keyword, + 'HIERARCHY': Keyword, + 'HOLD': Keyword, + 'HOST': Keyword, + + 'IDENTITY': Keyword, + 'IF': Keyword, + 'IGNORE': Keyword, + 'ILIKE': Keyword, + 'IMMEDIATE': Keyword, + 'IMMUTABLE': Keyword, + + 'IMPLEMENTATION': Keyword, + 'IMPLICIT': Keyword, + 'IN': Keyword, + 'INCLUDING': Keyword, + 'INCREMENT': Keyword, + 'INDEX': Keyword, + + 'INDITCATOR': Keyword, + 'INFIX': Keyword, + 'INHERITS': Keyword, + 'INITIALIZE': Keyword, + 'INITIALLY': Keyword, + 'INNER': Keyword, + 'INOUT': Keyword, + 'INPUT': Keyword, + 'INSENSITIVE': Keyword, + 'INSTANTIABLE': Keyword, + 'INSTEAD': Keyword, + 'INTERSECT': Keyword, + 'INTO': Keyword, + 'INVOKER': Keyword, + 'IS': Keyword, + 'ISNULL': Keyword, + 'ISOLATION': Keyword, + 'ITERATE': Keyword, + + 'JOIN': Keyword, + + 'K': Keyword, + 'KEY': Keyword, + 'KEY_MEMBER': Keyword, + 'KEY_TYPE': Keyword, + + 'LANCOMPILER': Keyword, + 'LANGUAGE': Keyword, + 'LARGE': Keyword, + 'LAST': Keyword, + 'LATERAL': Keyword, + 'LEADING': Keyword, + 'LEFT': Keyword, + 'LENGTH': Keyword, + 'LESS': Keyword, + 'LEVEL': Keyword, + 'LIKE': Keyword, + 'LIMIT': Keyword, + 'LISTEN': Keyword, + 'LOAD': Keyword, + 'LOCAL': Keyword, + 'LOCALTIME': Keyword, + 'LOCALTIMESTAMP': Keyword, + 'LOCATION': Keyword, + 'LOCATOR': Keyword, + 'LOCK': Keyword, + 'LOWER': Keyword, + + 'M': Keyword, + 'MAP': Keyword, + 'MATCH': Keyword, + 'MAX': Keyword, + 'MAXVALUE': Keyword, + 'MESSAGE_LENGTH': Keyword, + 'MESSAGE_OCTET_LENGTH': Keyword, + 'MESSAGE_TEXT': Keyword, + 'METHOD': Keyword, + 'MIN': Keyword, + 'MINUTE': Keyword, + 'MINVALUE': Keyword, + 'MOD': Keyword, + 'MODE': Keyword, + 'MODIFIES': Keyword, + 'MODIFY': Keyword, + 'MONTH': Keyword, + 'MORE': Keyword, + 'MOVE': Keyword, + 'MUMPS': Keyword, + + 'NAMES': Keyword, + 'NATIONAL': Keyword, + 'NATURAL': Keyword, + 'NCHAR': Keyword, + 'NCLOB': Keyword, + 'NEW': Keyword, + 'NEXT': Keyword, + 'NO': Keyword, + 'NOCREATEDB': Keyword, + 'NOCREATEUSER': Keyword, + 'NONE': Keyword, + 'NOT': Keyword, + 'NOTHING': Keyword, + 'NOTIFY': Keyword, + 'NOTNULL': Keyword, + 'NULL': Keyword, + 'NULLABLE': Keyword, + 'NULLIF': Keyword, + + 'OBJECT': Keyword, + 'OCTET_LENGTH': Keyword, + 'OF': Keyword, + 'OFF': Keyword, + 'OFFSET': Keyword, + 'OIDS': Keyword, + 'OLD': Keyword, + 'ON': Keyword, + 'ONLY': Keyword, + 'OPEN': Keyword, + 'OPERATION': Keyword, + 'OPERATOR': Keyword, + 'OPTION': Keyword, + 'OPTIONS': Keyword, + 'OR': Keyword, + 'ORDER': Keyword, + 'ORDINALITY': Keyword, + 'OUT': Keyword, + 'OUTER': Keyword, + 'OUTPUT': Keyword, + 'OVERLAPS': Keyword, + 'OVERLAY': Keyword, + 'OVERRIDING': Keyword, + 'OWNER': Keyword, + + 'PAD': Keyword, + 'PARAMETER': Keyword, + 'PARAMETERS': Keyword, + 'PARAMETER_MODE': Keyword, + 'PARAMATER_NAME': Keyword, + 'PARAMATER_ORDINAL_POSITION': Keyword, + 'PARAMETER_SPECIFIC_CATALOG': Keyword, + 'PARAMETER_SPECIFIC_NAME': Keyword, + 'PARAMATER_SPECIFIC_SCHEMA': Keyword, + 'PARTIAL': Keyword, + 'PASCAL': Keyword, + 'PENDANT': Keyword, + 'PLACING': Keyword, + 'PLI': Keyword, + 'POSITION': Keyword, + 'POSTFIX': Keyword, + 'PRECISION': Keyword, + 'PREFIX': Keyword, + 'PREORDER': Keyword, + 'PREPARE': Keyword, + 'PRESERVE': Keyword, + 'PRIMARY': Keyword, + 'PRIOR': Keyword, + 'PRIVILEGES': Keyword, + 'PROCEDURAL': Keyword, + 'PROCEDURE': Keyword, + 'PUBLIC': Keyword, + + 'RAISE': Keyword, + 'READ': Keyword, + 'READS': Keyword, + 'RECHECK': Keyword, + 'RECURSIVE': Keyword, + 'REF': Keyword, + 'REFERENCES': Keyword, + 'REFERENCING': Keyword, + 'REINDEX': Keyword, + 'RELATIVE': Keyword, + 'RENAME': Keyword, + 'REPEATABLE': Keyword, + 'REPLACE': Keyword, + 'RESET': Keyword, + 'RESTART': Keyword, + 'RESTRICT': Keyword, + 'RESULT': Keyword, + 'RETURN': Keyword, + 'RETURNED_LENGTH': Keyword, + 'RETURNED_OCTET_LENGTH': Keyword, + 'RETURNED_SQLSTATE': Keyword, + 'RETURNS': Keyword, + 'REVOKE': Keyword, + 'RIGHT': Keyword, + 'ROLE': Keyword, + 'ROLLBACK': Keyword, + 'ROLLUP': Keyword, + 'ROUTINE': Keyword, + 'ROUTINE_CATALOG': Keyword, + 'ROUTINE_NAME': Keyword, + 'ROUTINE_SCHEMA': Keyword, + 'ROW': Keyword, + 'ROWS': Keyword, + 'ROW_COUNT': Keyword, + 'RULE': Keyword, + + 'SAVE_POINT': Keyword, + 'SCALE': Keyword, + 'SCHEMA': Keyword, + 'SCHEMA_NAME': Keyword, + 'SCOPE': Keyword, + 'SCROLL': Keyword, + 'SEARCH': Keyword, + 'SECOND': Keyword, + 'SECURITY': Keyword, + 'SELF': Keyword, + 'SENSITIVE': Keyword, + 'SERIALIZABLE': Keyword, + 'SERVER_NAME': Keyword, + 'SESSION': Keyword, + 'SESSION_USER': Keyword, + 'SETOF': Keyword, + 'SETS': Keyword, + 'SHARE': Keyword, + 'SHOW': Keyword, + 'SIMILAR': Keyword, + 'SIMPLE': Keyword, + 'SIZE': Keyword, + 'SOME': Keyword, + 'SOURCE': Keyword, + 'SPACE': Keyword, + 'SPECIFIC': Keyword, + 'SPECIFICTYPE': Keyword, + 'SPECIFIC_NAME': Keyword, + 'SQL': Keyword, + 'SQLCODE': Keyword, + 'SQLERROR': Keyword, + 'SQLEXCEPTION': Keyword, + 'SQLSTATE': Keyword, + 'SQLWARNINIG': Keyword, + 'STABLE': Keyword, + 'START': Keyword, + 'STATE': Keyword, + 'STATEMENT': Keyword, + 'STATIC': Keyword, + 'STATISTICS': Keyword, + 'STDIN': Keyword, + 'STDOUT': Keyword, + 'STORAGE': Keyword, + 'STRICT': Keyword, + 'STRUCTURE': Keyword, + 'STYPE': Keyword, + 'SUBCLASS_ORIGIN': Keyword, + 'SUBLIST': Keyword, + 'SUBSTRING': Keyword, + 'SUM': Keyword, + 'SYMMETRIC': Keyword, + 'SYSID': Keyword, + 'SYSTEM': Keyword, + 'SYSTEM_USER': Keyword, + + 'TABLE': Keyword, + 'TABLE_NAME': Keyword, + ' TEMP': Keyword, + 'TEMPLATE': Keyword, + 'TEMPORARY': Keyword, + 'TERMINATE': Keyword, + 'THAN': Keyword, + 'THEN': Keyword, + 'TIMESTAMP': Keyword, + 'TIMEZONE_HOUR': Keyword, + 'TIMEZONE_MINUTE': Keyword, + 'TO': Keyword, + 'TOAST': Keyword, + 'TRAILING': Keyword, + 'TRANSATION': Keyword, + 'TRANSACTIONS_COMMITTED': Keyword, + 'TRANSACTIONS_ROLLED_BACK': Keyword, + 'TRANSATION_ACTIVE': Keyword, + 'TRANSFORM': Keyword, + 'TRANSFORMS': Keyword, + 'TRANSLATE': Keyword, + 'TRANSLATION': Keyword, + 'TREAT': Keyword, + 'TRIGGER': Keyword, + 'TRIGGER_CATALOG': Keyword, + 'TRIGGER_NAME': Keyword, + 'TRIGGER_SCHEMA': Keyword, + 'TRIM': Keyword, + 'TRUE': Keyword, + 'TRUNCATE': Keyword, + 'TRUSTED': Keyword, + 'TYPE': Keyword, + + 'UNCOMMITTED': Keyword, + 'UNDER': Keyword, + 'UNENCRYPTED': Keyword, + 'UNION': Keyword, + 'UNIQUE': Keyword, + 'UNKNOWN': Keyword, + 'UNLISTEN': Keyword, + 'UNNAMED': Keyword, + 'UNNEST': Keyword, + 'UNTIL': Keyword, + 'UPPER': Keyword, + 'USAGE': Keyword, + 'USER': Keyword, + 'USER_DEFINED_TYPE_CATALOG': Keyword, + 'USER_DEFINED_TYPE_NAME': Keyword, + 'USER_DEFINED_TYPE_SCHEMA': Keyword, + 'USING': Keyword, + + 'VACUUM': Keyword, + 'VALID': Keyword, + 'VALIDATOR': Keyword, + 'VALUES': Keyword, + 'VARIABLE': Keyword, + 'VERBOSE': Keyword, + 'VERSION': Keyword, + 'VIEW': Keyword, + 'VOLATILE': Keyword, + + 'WHEN': Keyword, + 'WHENEVER': Keyword, + 'WHERE': Keyword, + 'WITH': Keyword, + 'WITHOUT': Keyword, + 'WORK': Keyword, + 'WRITE': Keyword, + + 'YEAR': Keyword, + + 'ZONE': Keyword, + + + 'ARRAY': Name.Builtin, + 'BIGINT': Name.Builtin, + 'BINARY': Name.Builtin, + 'BIT': Name.Builtin, + 'BLOB': Name.Builtin, + 'BOOLEAN': Name.Builtin, + 'CHAR': Name.Builtin, + 'CHARACTER': Name.Builtin, + 'DATE': Name.Builtin, + 'DEC': Name.Builtin, + 'DECIMAL': Name.Builtin, + 'FLOAT': Name.Builtin, + 'INT': Name.Builtin, + 'INTEGER': Name.Builtin, + 'INTERVAL': Name.Builtin, + 'NUMBER': Name.Builtin, + 'NUMERIC': Name.Builtin, + 'REAL': Name.Builtin, + 'SERIAL': Name.Builtin, + 'SMALLINT': Name.Builtin, + 'VARCHAR': Name.Builtin, + 'VARYING': Name.Builtin, + 'INT8': Name.Builtin, + 'SERIAL8': Name.Builtin, + 'TEXT': Name.Builtin, + } + + +KEYWORDS_COMMON = { + 'SELECT': Keyword.DML, + 'INSERT': Keyword.DML, + 'DELETE': Keyword.DML, + 'UPDATE': Keyword.DML, + 'DROP': Keyword.DDL, + 'CREATE': Keyword.DDL, + 'ALTER': Keyword.DDL, + + 'WHERE': Keyword, + 'FROM': Keyword, + 'INNER': Keyword, + 'JOIN': Keyword, + 'AND': Keyword, + 'OR': Keyword, + 'LIKE': Keyword, + 'ON': Keyword, + 'IN': Keyword, + 'SET': Keyword, + + 'BY': Keyword, + 'GROUP': Keyword, + 'ORDER': Keyword, + 'LEFT': Keyword, + 'OUTER': Keyword, + + 'IF': Keyword, + 'END': Keyword, + 'THEN': Keyword, + 'LOOP': Keyword, + 'AS': Keyword, + 'ELSE': Keyword, + 'FOR': Keyword, + + 'CASE': Keyword, + 'WHEN': Keyword, + 'MIN': Keyword, + 'MAX': Keyword, + 'DISTINCT': Keyword, + + } diff --git a/debug_toolbar/utils/sqlparse/lexer.py b/debug_toolbar/utils/sqlparse/lexer.py new file mode 100644 index 0000000..727a4ff --- /dev/null +++ b/debug_toolbar/utils/sqlparse/lexer.py @@ -0,0 +1,315 @@ +# -*- coding: utf-8 -*- + +# Copyright (C) 2008 Andi Albrecht, albrecht.andi@gmail.com +# +# This module is part of python-sqlparse and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php. + +"""SQL Lexer""" + +# This code is based on the SqlLexer in pygments. +# http://pygments.org/ +# It's separated from the rest of pygments to increase performance +# and to allow some customizations. + +import re + +from debug_toolbar.utils.sqlparse.keywords import KEYWORDS, KEYWORDS_COMMON +from debug_toolbar.utils.sqlparse.tokens import * +from debug_toolbar.utils.sqlparse.tokens import _TokenType + + +class include(str): + pass + +class combined(tuple): + """Indicates a state combined from multiple states.""" + + def __new__(cls, *args): + return tuple.__new__(cls, args) + + def __init__(self, *args): + # tuple.__init__ doesn't do anything + pass + +def is_keyword(value): + test = value.upper() + return KEYWORDS_COMMON.get(test, KEYWORDS.get(test, Name)), value + + +def apply_filters(stream, filters, lexer=None): + """ + Use this method to apply an iterable of filters to + a stream. If lexer is given it's forwarded to the + filter, otherwise the filter receives `None`. + """ + def _apply(filter_, stream): + for token in filter_.filter(lexer, stream): + yield token + for filter_ in filters: + stream = _apply(filter_, stream) + return stream + + +class LexerMeta(type): + """ + Metaclass for Lexer, creates the self._tokens attribute from + self.tokens on the first instantiation. + """ + + def _process_state(cls, unprocessed, processed, state): + assert type(state) is str, "wrong state name %r" % state + assert state[0] != '#', "invalid state name %r" % state + if state in processed: + return processed[state] + tokens = processed[state] = [] + rflags = cls.flags + for tdef in unprocessed[state]: + if isinstance(tdef, include): + # it's a state reference + assert tdef != state, "circular state reference %r" % state + tokens.extend(cls._process_state(unprocessed, processed, str(tdef))) + continue + + assert type(tdef) is tuple, "wrong rule def %r" % tdef + + try: + rex = re.compile(tdef[0], rflags).match + except Exception, err: + raise ValueError("uncompilable regex %r in state %r of %r: %s" % + (tdef[0], state, cls, err)) + + assert type(tdef[1]) is _TokenType or callable(tdef[1]), \ + 'token type must be simple type or callable, not %r' % (tdef[1],) + + if len(tdef) == 2: + new_state = None + else: + tdef2 = tdef[2] + if isinstance(tdef2, str): + # an existing state + if tdef2 == '#pop': + new_state = -1 + elif tdef2 in unprocessed: + new_state = (tdef2,) + elif tdef2 == '#push': + new_state = tdef2 + elif tdef2[:5] == '#pop:': + new_state = -int(tdef2[5:]) + else: + assert False, 'unknown new state %r' % tdef2 + elif isinstance(tdef2, combined): + # combine a new state from existing ones + new_state = '_tmp_%d' % cls._tmpname + cls._tmpname += 1 + itokens = [] + for istate in tdef2: + assert istate != state, 'circular state ref %r' % istate + itokens.extend(cls._process_state(unprocessed, + processed, istate)) + processed[new_state] = itokens + new_state = (new_state,) + elif isinstance(tdef2, tuple): + # push more than one state + for state in tdef2: + assert (state in unprocessed or + state in ('#pop', '#push')), \ + 'unknown new state ' + state + new_state = tdef2 + else: + assert False, 'unknown new state def %r' % tdef2 + tokens.append((rex, tdef[1], new_state)) + return tokens + + def process_tokendef(cls): + cls._all_tokens = {} + cls._tmpname = 0 + processed = cls._all_tokens[cls.__name__] = {} + #tokendefs = tokendefs or cls.tokens[name] + for state in cls.tokens.keys(): + cls._process_state(cls.tokens, processed, state) + return processed + + def __call__(cls, *args, **kwds): + if not hasattr(cls, '_tokens'): + cls._all_tokens = {} + cls._tmpname = 0 + if hasattr(cls, 'token_variants') and cls.token_variants: + # don't process yet + pass + else: + cls._tokens = cls.process_tokendef() + + return type.__call__(cls, *args, **kwds) + + + + +class Lexer: + + __metaclass__ = LexerMeta + + encoding = 'utf-8' + stripall = False + stripnl = False + tabsize = 0 + flags = re.IGNORECASE + + tokens = { + 'root': [ + (r'--.*?(\r|\n|\r\n)', Comment.Single), + (r'(\r|\n|\r\n)', Newline), + (r'\s+', Whitespace), + (r'/\*', Comment.Multiline, 'multiline-comments'), + (r':=', Assignment), + (r'::', Punctuation), + (r'[*]', Wildcard), + (r"`(``|[^`])*`", Name), + (r"´(´´|[^´])*´", Name), + (r'@[a-zA-Z_][a-zA-Z0-9_]+', Name), + (r'[+/<>=~!@#%^&|`?^-]', Operator), + (r'[0-9]+', Number.Integer), + # TODO: Backslash escapes? + (r"'(''|[^'])*'", String.Single), + (r'"(""|[^"])*"', String.Symbol), # not a real string literal in ANSI SQL + (r'(LEFT |RIGHT )?(INNER |OUTER )?JOIN', Keyword), + (r'END( IF| LOOP)?', Keyword), + (r'CREATE( OR REPLACE)?', Keyword.DDL), + (r'[a-zA-Z_][a-zA-Z0-9_]*', is_keyword), + (r'\$([a-zA-Z_][a-zA-Z0-9_]*)?\$', Name.Builtin), + (r'[;:()\[\],\.]', Punctuation), + ], + 'multiline-comments': [ + (r'/\*', Comment.Multiline, 'multiline-comments'), + (r'\*/', Comment.Multiline, '#pop'), + (r'[^/\*]+', Comment.Multiline), + (r'[/*]', Comment.Multiline) + ] + } + + def __init__(self): + self.filters = [] + + def add_filter(self, filter_, **options): + from sqlparse.filters import Filter + if not isinstance(filter_, Filter): + filter_ = filter_(**options) + self.filters.append(filter_) + + def get_tokens(self, text, unfiltered=False): + """ + Return an iterable of (tokentype, value) pairs generated from + `text`. If `unfiltered` is set to `True`, the filtering mechanism + is bypassed even if filters are defined. + + Also preprocess the text, i.e. expand tabs and strip it if + wanted and applies registered filters. + """ + if not isinstance(text, unicode): + if self.encoding == 'guess': + try: + text = text.decode('utf-8') + if text.startswith(u'\ufeff'): + text = text[len(u'\ufeff'):] + except UnicodeDecodeError: + text = text.decode('latin1') + elif self.encoding == 'chardet': + try: + import chardet + except ImportError: + raise ImportError('To enable chardet encoding guessing, ' + 'please install the chardet library ' + 'from http://chardet.feedparser.org/') + enc = chardet.detect(text) + text = text.decode(enc['encoding']) + else: + text = text.decode(self.encoding) + if self.stripall: + text = text.strip() + elif self.stripnl: + text = text.strip('\n') + if self.tabsize > 0: + text = text.expandtabs(self.tabsize) +# if not text.endswith('\n'): +# text += '\n' + + def streamer(): + for i, t, v in self.get_tokens_unprocessed(text): + yield t, v + stream = streamer() + if not unfiltered: + stream = apply_filters(stream, self.filters, self) + return stream + + + def get_tokens_unprocessed(self, text, stack=('root',)): + """ + Split ``text`` into (tokentype, text) pairs. + + ``stack`` is the inital stack (default: ``['root']``) + """ + pos = 0 + tokendefs = self._tokens + statestack = list(stack) + statetokens = tokendefs[statestack[-1]] + known_names = {} + while 1: + for rexmatch, action, new_state in statetokens: + m = rexmatch(text, pos) + if m: + # print rex.pattern + value = m.group() + if value in known_names: + yield pos, known_names[value], value + elif type(action) is _TokenType: + yield pos, action, value + elif hasattr(action, '__call__'): + ttype, value = action(value) + known_names[value] = ttype + yield pos, ttype, value + else: + for item in action(self, m): + yield item + pos = m.end() + if new_state is not None: + # state transition + if isinstance(new_state, tuple): + for state in new_state: + if state == '#pop': + statestack.pop() + elif state == '#push': + statestack.append(statestack[-1]) + else: + statestack.append(state) + elif isinstance(new_state, int): + # pop + del statestack[new_state:] + elif new_state == '#push': + statestack.append(statestack[-1]) + else: + assert False, "wrong state def: %r" % new_state + statetokens = tokendefs[statestack[-1]] + break + else: + try: + if text[pos] == '\n': + # at EOL, reset state to "root" + pos += 1 + statestack = ['root'] + statetokens = tokendefs['root'] + yield pos, Text, u'\n' + continue + yield pos, Error, text[pos] + pos += 1 + except IndexError: + break + + +def tokenize(sql): + """Tokenize sql. + + Tokenize *sql* using the :class:`Lexer` and return a 2-tuple stream + of ``(token type, value)`` items. + """ + lexer = Lexer() + return lexer.get_tokens(sql) diff --git a/debug_toolbar/utils/sqlparse/sql.py b/debug_toolbar/utils/sqlparse/sql.py new file mode 100644 index 0000000..5bbb977 --- /dev/null +++ b/debug_toolbar/utils/sqlparse/sql.py @@ -0,0 +1,457 @@ +# -*- coding: utf-8 -*- + +"""This module contains classes representing syntactical elements of SQL.""" + +import re +import types + +from debug_toolbar.utils.sqlparse import tokens as T + + +class Token(object): + """Base class for all other classes in this module. + + It represents a single token and has two instance attributes: + ``value`` is the unchange value of the token and ``ttype`` is + the type of the token. + """ + + __slots__ = ('value', 'ttype',) + + def __init__(self, ttype, value): + self.value = value + self.ttype = ttype + + def __str__(self): + return unicode(self).encode('latin-1') + + def __repr__(self): + short = self._get_repr_value() + return '<%s \'%s\' at 0x%07x>' % (self._get_repr_name(), + short, id(self)) + + def __unicode__(self): + return self.value or '' + + def to_unicode(self): + """Returns a unicode representation of this object.""" + return unicode(self) + + def _get_repr_name(self): + return str(self.ttype).split('.')[-1] + + def _get_repr_value(self): + raw = unicode(self) + if len(raw) > 7: + short = raw[:6]+u'...' + else: + short = raw + return re.sub('\s+', ' ', short) + + def flatten(self): + """Resolve subgroups.""" + yield self + + def match(self, ttype, values, regex=False): + """Checks whether the token matches the given arguments. + + *ttype* is a token type. If this token doesn't match the given token + type. + *values* is a list of possible values for this token. The values + are OR'ed together so if only one of the values matches ``True`` + is returned. Except for keyword tokens the comparsion is + case-sensitive. For convenience it's ok to pass in a single string. + If *regex* is ``True`` (default is ``False``) the given values are + treated as regular expressions. + """ + type_matched = self.ttype in ttype + if not type_matched or values is None: + return type_matched + if isinstance(values, basestring): + values = set([values]) + if regex: + if self.ttype is T.Keyword: + values = set([re.compile(v, re.IGNORECASE) for v in values]) + else: + values = set([re.compile(v) for v in values]) + for pattern in values: + if pattern.search(self.value): + return True + return False + else: + if self.ttype is T.Keyword: + values = set([v.upper() for v in values]) + return self.value.upper() in values + else: + return self.value in values + + def is_group(self): + """Returns ``True`` if this object has children.""" + return False + + def is_whitespace(self): + """Return ``True`` if this token is a whitespace token.""" + return self.ttype and self.ttype in T.Whitespace + + +class TokenList(Token): + """A group of tokens. + + It has an additional instance attribute ``tokens`` which holds a + list of child-tokens. + """ + + __slots__ = ('value', 'ttype', 'tokens') + + def __init__(self, tokens=None): + if tokens is None: + tokens = [] + self.tokens = tokens + Token.__init__(self, None, None) + + def __unicode__(self): + return ''.join(unicode(x) for x in self.flatten()) + + def __str__(self): + return unicode(self).encode('latin-1') + + def _get_repr_name(self): + return self.__class__.__name__ + + ## def _pprint_tree(self, max_depth=None, depth=0): + ## """Pretty-print the object tree.""" + ## indent = ' '*(depth*2) + ## for token in self.tokens: + ## if token.is_group(): + ## pre = ' | ' + ## else: + ## pre = ' | ' + ## print '%s%s%s \'%s\'' % (indent, pre, token._get_repr_name(), + ## token._get_repr_value()) + ## if (token.is_group() and max_depth is not None + ## and depth < max_depth): + ## token._pprint_tree(max_depth, depth+1) + + def flatten(self): + """Generator yielding ungrouped tokens. + + This method is recursively called for all child tokens. + """ + for token in self.tokens: + if isinstance(token, TokenList): + for item in token.flatten(): + yield item + else: + yield token + + def is_group(self): + return True + + def get_sublists(self): + return [x for x in self.tokens if isinstance(x, TokenList)] + + def token_first(self, ignore_whitespace=True): + """Returns the first child token. + + If *ignore_whitespace* is ``True`` (the default), whitespace + tokens are ignored. + """ + for token in self.tokens: + if ignore_whitespace and token.is_whitespace(): + continue + return token + return None + + def token_next_by_instance(self, idx, clss): + """Returns the next token matching a class. + + *idx* is where to start searching in the list of child tokens. + *clss* is a list of classes the token should be an instance of. + + If no matching token can be found ``None`` is returned. + """ + if isinstance(clss, (list, tuple)): + clss = (clss,) + if isinstance(clss, tuple): + clss = tuple(clss) + for token in self.tokens[idx:]: + if isinstance(token, clss): + return token + return None + + def token_next_by_type(self, idx, ttypes): + """Returns next matching token by it's token type.""" + if not isinstance(ttypes, (list, tuple)): + ttypes = [ttypes] + for token in self.tokens[idx:]: + if token.ttype in ttypes: + return token + return None + + def token_next_match(self, idx, ttype, value, regex=False): + """Returns next token where it's ``match`` method returns ``True``.""" + if type(idx) != types.IntType: + idx = self.token_index(idx) + for token in self.tokens[idx:]: + if token.match(ttype, value, regex): + return token + return None + + def token_not_matching(self, idx, funcs): + for token in self.tokens[idx:]: + passed = False + for func in funcs: + if func(token): + passed = True + break + if not passed: + return token + return None + + def token_matching(self, idx, funcs): + for token in self.tokens[idx:]: + for i, func in enumerate(funcs): + if func(token): + return token + return None + + def token_prev(self, idx, skip_ws=True): + """Returns the previous token relative to *idx*. + + If *skip_ws* is ``True`` (the default) whitespace tokens are ignored. + ``None`` is returned if there's no previous token. + """ + if idx is None: + return None + if not isinstance(idx, int): + idx = self.token_index(idx) + while idx != 0: + idx -= 1 + if self.tokens[idx].is_whitespace() and skip_ws: + continue + return self.tokens[idx] + + def token_next(self, idx, skip_ws=True): + """Returns the next token relative to *idx*. + + If *skip_ws* is ``True`` (the default) whitespace tokens are ignored. + ``None`` is returned if there's no next token. + """ + if idx is None: + return None + if not isinstance(idx, int): + idx = self.token_index(idx) + while idx < len(self.tokens)-1: + idx += 1 + if self.tokens[idx].is_whitespace() and skip_ws: + continue + return self.tokens[idx] + + def token_index(self, token): + """Return list index of token.""" + return self.tokens.index(token) + + def tokens_between(self, start, end, exclude_end=False): + """Return all tokens between (and including) start and end. + + If *exclude_end* is ``True`` (default is ``False``) the end token + is included too. + """ + if exclude_end: + offset = 0 + else: + offset = 1 + return self.tokens[self.token_index(start):self.token_index(end)+offset] + + def group_tokens(self, grp_cls, tokens): + """Replace tokens by an instance of *grp_cls*.""" + idx = self.token_index(tokens[0]) + for t in tokens: + self.tokens.remove(t) + grp = grp_cls(tokens) + self.tokens.insert(idx, grp) + return grp + + def insert_before(self, where, token): + """Inserts *token* before *where*.""" + self.tokens.insert(self.token_index(where), token) + + +class Statement(TokenList): + """Represents a SQL statement.""" + + __slots__ = ('value', 'ttype', 'tokens') + + def get_type(self): + """Returns the type of a statement. + + The returned value is a string holding an upper-cased reprint of + the first DML or DDL keyword. If the first token in this group + isn't a DML or DDL keyword "UNKNOWN" is returned. + """ + first_token = self.token_first() + if first_token.ttype in (T.Keyword.DML, T.Keyword.DDL): + return first_token.value.upper() + else: + return 'UNKNOWN' + + +class Identifier(TokenList): + """Represents an identifier. + + Identifiers may have aliases or typecasts. + """ + + __slots__ = ('value', 'ttype', 'tokens') + + def has_alias(self): + """Returns ``True`` if an alias is present.""" + return self.get_alias() is not None + + def get_alias(self): + """Returns the alias for this identifier or ``None``.""" + kw = self.token_next_match(0, T.Keyword, 'AS') + if kw is not None: + alias = self.token_next(self.token_index(kw)) + if alias is None: + return None + else: + next_ = self.token_next(0) + if next_ is None or not isinstance(next_, Identifier): + return None + alias = next_ + if isinstance(alias, Identifier): + return alias.get_name() + else: + return alias.to_unicode() + + def get_name(self): + """Returns the name of this identifier. + + This is either it's alias or it's real name. The returned valued can + be considered as the name under which the object corresponding to + this identifier is known within the current statement. + """ + alias = self.get_alias() + if alias is not None: + return alias + return self.get_real_name() + + def get_real_name(self): + """Returns the real name (object name) of this identifier.""" + # a.b + dot = self.token_next_match(0, T.Punctuation, '.') + if dot is None: + return self.token_next_by_type(0, T.Name).value + else: + next_ = self.token_next_by_type(self.token_index(dot), + (T.Name, T.Wildcard)) + if next_ is None: # invalid identifier, e.g. "a." + return None + return next_.value + + def get_parent_name(self): + """Return name of the parent object if any. + + A parent object is identified by the first occuring dot. + """ + dot = self.token_next_match(0, T.Punctuation, '.') + if dot is None: + return None + prev_ = self.token_prev(self.token_index(dot)) + if prev_ is None: # something must be verry wrong here.. + return None + return prev_.value + + def is_wildcard(self): + """Return ``True`` if this identifier contains a wildcard.""" + token = self.token_next_by_type(0, T.Wildcard) + return token is not None + + def get_typecast(self): + """Returns the typecast or ``None`` of this object as a string.""" + marker = self.token_next_match(0, T.Punctuation, '::') + if marker is None: + return None + next_ = self.token_next(self.token_index(marker), False) + if next_ is None: + return None + return next_.to_unicode() + + +class IdentifierList(TokenList): + """A list of :class:`~sqlparse.sql.Identifier`\'s.""" + + __slots__ = ('value', 'ttype', 'tokens') + + def get_identifiers(self): + """Returns the identifiers. + + Whitespaces and punctuations are not included in this list. + """ + return [x for x in self.tokens + if not x.is_whitespace() and not x.match(T.Punctuation, ',')] + + +class Parenthesis(TokenList): + """Tokens between parenthesis.""" + __slots__ = ('value', 'ttype', 'tokens') + + +class Assignment(TokenList): + """An assignment like 'var := val;'""" + __slots__ = ('value', 'ttype', 'tokens') + +class If(TokenList): + """An 'if' clause with possible 'else if' or 'else' parts.""" + __slots__ = ('value', 'ttype', 'tokens') + +class For(TokenList): + """A 'FOR' loop.""" + __slots__ = ('value', 'ttype', 'tokens') + +class Comparsion(TokenList): + """A comparsion used for example in WHERE clauses.""" + __slots__ = ('value', 'ttype', 'tokens') + +class Comment(TokenList): + """A comment.""" + __slots__ = ('value', 'ttype', 'tokens') + +class Where(TokenList): + """A WHERE clause.""" + __slots__ = ('value', 'ttype', 'tokens') + + +class Case(TokenList): + """A CASE statement with one or more WHEN and possibly an ELSE part.""" + + __slots__ = ('value', 'ttype', 'tokens') + + def get_cases(self): + """Returns a list of 2-tuples (condition, value). + + If an ELSE exists condition is None. + """ + ret = [] + in_condition = in_value = False + for token in self.tokens: + if token.match(T.Keyword, 'WHEN'): + ret.append(([], [])) + in_condition = True + in_value = False + elif token.match(T.Keyword, 'ELSE'): + ret.append((None, [])) + in_condition = False + in_value = True + elif token.match(T.Keyword, 'THEN'): + in_condition = False + in_value = True + elif token.match(T.Keyword, 'END'): + in_condition = False + in_value = False + if in_condition: + ret[-1][0].append(token) + elif in_value: + ret[-1][1].append(token) + return ret diff --git a/debug_toolbar/utils/sqlparse/tokens.py b/debug_toolbar/utils/sqlparse/tokens.py new file mode 100644 index 0000000..2c63c41 --- /dev/null +++ b/debug_toolbar/utils/sqlparse/tokens.py @@ -0,0 +1,131 @@ +# Copyright (C) 2008 Andi Albrecht, albrecht.andi@gmail.com +# +# This module is part of python-sqlparse and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php. + +# The Token implementation is based on pygment's token system written +# by Georg Brandl. +# http://pygments.org/ + +"""Tokens""" + +try: + set +except NameError: + from sets import Set as set + + +class _TokenType(tuple): + parent = None + + def split(self): + buf = [] + node = self + while node is not None: + buf.append(node) + node = node.parent + buf.reverse() + return buf + + def __init__(self, *args): + # no need to call super.__init__ + self.subtypes = set() + + def __contains__(self, val): + return self is val or ( + type(val) is self.__class__ and + val[:len(self)] == self + ) + + def __getattr__(self, val): + if not val or not val[0].isupper(): + return tuple.__getattribute__(self, val) + new = _TokenType(self + (val,)) + setattr(self, val, new) + self.subtypes.add(new) + new.parent = self + return new + + def __hash__(self): + return hash(tuple(self)) + + def __repr__(self): + return 'Token' + (self and '.' or '') + '.'.join(self) + + +Token = _TokenType() + +# Special token types +Text = Token.Text +Whitespace = Text.Whitespace +Newline = Whitespace.Newline +Error = Token.Error +# Text that doesn't belong to this lexer (e.g. HTML in PHP) +Other = Token.Other + +# Common token types for source code +Keyword = Token.Keyword +Name = Token.Name +Literal = Token.Literal +String = Literal.String +Number = Literal.Number +Punctuation = Token.Punctuation +Operator = Token.Operator +Wildcard = Token.Wildcard +Comment = Token.Comment +Assignment = Token.Assignement + +# Generic types for non-source code +Generic = Token.Generic + +# String and some others are not direct childs of Token. +# alias them: +Token.Token = Token +Token.String = String +Token.Number = Number + +# SQL specific tokens +DML = Keyword.DML +DDL = Keyword.DDL +Command = Keyword.Command + +Group = Token.Group +Group.Parenthesis = Token.Group.Parenthesis +Group.Comment = Token.Group.Comment +Group.Where = Token.Group.Where + + +def is_token_subtype(ttype, other): + """ + Return True if ``ttype`` is a subtype of ``other``. + + exists for backwards compatibility. use ``ttype in other`` now. + """ + return ttype in other + + +def string_to_tokentype(s): + """ + Convert a string into a token type:: + + >>> string_to_token('String.Double') + Token.Literal.String.Double + >>> string_to_token('Token.Literal.Number') + Token.Literal.Number + >>> string_to_token('') + Token + + Tokens that are already tokens are returned unchanged: + + >>> string_to_token(String) + Token.Literal.String + """ + if isinstance(s, _TokenType): + return s + if not s: + return Token + node = Token + for item in s.split('.'): + node = getattr(node, item) + return node + diff --git a/debug_toolbar/views.py b/debug_toolbar/views.py new file mode 100644 index 0000000..9828c44 --- /dev/null +++ b/debug_toolbar/views.py @@ -0,0 +1,188 @@ +""" +Helper views for the debug toolbar. These are dynamically installed when the +debug toolbar is displayed, and typically can do Bad Things, so hooking up these +views in any other way is generally not advised. +""" + +import os +import django.views.static +from django.conf import settings +from django.db import connection +from django.http import HttpResponseBadRequest +from django.shortcuts import render_to_response +from django.utils import simplejson +from django.utils.hashcompat import sha_constructor + +class InvalidSQLError(Exception): + def __init__(self, value): + self.value = value + def __str__(self): + return repr(self.value) + +def debug_media(request, path): + root = getattr(settings, 'DEBUG_TOOLBAR_MEDIA_ROOT', None) + if root is None: + parent = os.path.abspath(os.path.dirname(__file__)) + root = os.path.join(parent, 'media', 'debug_toolbar') + return django.views.static.serve(request, path, root) + +def sql_select(request): + """ + Returns the output of the SQL SELECT statement. + + Expected GET variables: + sql: urlencoded sql with positional arguments + params: JSON encoded parameter values + duration: time for SQL to execute passed in from toolbar just for redisplay + hash: the hash of (secret + sql + params) for tamper checking + """ + from debug_toolbar.panels.sql import reformat_sql + sql = request.GET.get('sql', '') + params = request.GET.get('params', '') + hash = sha_constructor(settings.SECRET_KEY + sql + params).hexdigest() + if hash != request.GET.get('hash', ''): + return HttpResponseBadRequest('Tamper alert') # SQL Tampering alert + if sql.lower().strip().startswith('select'): + params = simplejson.loads(params) + cursor = connection.cursor() + cursor.execute(sql, params) + headers = [d[0] for d in cursor.description] + result = cursor.fetchall() + cursor.close() + context = { + 'result': result, + 'sql': reformat_sql(cursor.db.ops.last_executed_query(cursor, sql, params)), + 'duration': request.GET.get('duration', 0.0), + 'headers': headers, + } + return render_to_response('debug_toolbar/panels/sql_select.html', context) + raise InvalidSQLError("Only 'select' queries are allowed.") + +def sql_explain(request): + """ + Returns the output of the SQL EXPLAIN on the given query. + + Expected GET variables: + sql: urlencoded sql with positional arguments + params: JSON encoded parameter values + duration: time for SQL to execute passed in from toolbar just for redisplay + hash: the hash of (secret + sql + params) for tamper checking + """ + from debug_toolbar.panels.sql import reformat_sql + sql = request.GET.get('sql', '') + params = request.GET.get('params', '') + hash = sha_constructor(settings.SECRET_KEY + sql + params).hexdigest() + if hash != request.GET.get('hash', ''): + return HttpResponseBadRequest('Tamper alert') # SQL Tampering alert + if sql.lower().strip().startswith('select'): + params = simplejson.loads(params) + cursor = connection.cursor() + + if settings.DATABASE_ENGINE == "sqlite3": + # SQLite's EXPLAIN dumps the low-level opcodes generated for a query; + # EXPLAIN QUERY PLAN dumps a more human-readable summary + # See http://www.sqlite.org/lang_explain.html for details + cursor.execute("EXPLAIN QUERY PLAN %s" % (sql,), params) + else: + cursor.execute("EXPLAIN %s" % (sql,), params) + + headers = [d[0] for d in cursor.description] + result = cursor.fetchall() + cursor.close() + context = { + 'result': result, + 'sql': reformat_sql(cursor.db.ops.last_executed_query(cursor, sql, params)), + 'duration': request.GET.get('duration', 0.0), + 'headers': headers, + } + return render_to_response('debug_toolbar/panels/sql_explain.html', context) + raise InvalidSQLError("Only 'select' queries are allowed.") + +def sql_profile(request): + """ + Returns the output of running the SQL and getting the profiling statistics. + + Expected GET variables: + sql: urlencoded sql with positional arguments + params: JSON encoded parameter values + duration: time for SQL to execute passed in from toolbar just for redisplay + hash: the hash of (secret + sql + params) for tamper checking + """ + from debug_toolbar.panels.sql import reformat_sql + sql = request.GET.get('sql', '') + params = request.GET.get('params', '') + hash = sha_constructor(settings.SECRET_KEY + sql + params).hexdigest() + if hash != request.GET.get('hash', ''): + return HttpResponseBadRequest('Tamper alert') # SQL Tampering alert + if sql.lower().strip().startswith('select'): + params = simplejson.loads(params) + cursor = connection.cursor() + result = None + headers = None + result_error = None + try: + cursor.execute("SET PROFILING=1") # Enable profiling + cursor.execute(sql, params) # Execute SELECT + cursor.execute("SET PROFILING=0") # Disable profiling + # The Query ID should always be 1 here but I'll subselect to get the last one just in case... + cursor.execute("SELECT * FROM information_schema.profiling WHERE query_id=(SELECT query_id FROM information_schema.profiling ORDER BY query_id DESC LIMIT 1)") + headers = [d[0] for d in cursor.description] + result = cursor.fetchall() + except: + result_error = "Profiling is either not available or not supported by your database." + cursor.close() + context = { + 'result': result, + 'result_error': result_error, + 'sql': reformat_sql(cursor.db.ops.last_executed_query(cursor, sql, params)), + 'duration': request.GET.get('duration', 0.0), + 'headers': headers, + } + return render_to_response('debug_toolbar/panels/sql_profile.html', context) + raise InvalidSQLError("Only 'select' queries are allowed.") + +def template_source(request): + """ + Return the source of a template, syntax-highlighted by Pygments if + it's available. + """ + from django.template import TemplateDoesNotExist + from django.utils.safestring import mark_safe + from django.conf import settings + + template_name = request.GET.get('template', None) + if template_name is None: + return HttpResponseBadRequest('"template" key is required') + + try: # Django 1.2 ... + from django.template.loader import find_template_loader, make_origin + loaders = [] + for loader_name in settings.TEMPLATE_LOADERS: + loader = find_template_loader(loader_name) + if loader is not None: + loaders.append(loader) + for loader in loaders: + try: + source, display_name = loader.load_template_source(template_name) + origin = make_origin(display_name, loader, template_name, settings.TEMPLATE_DIRS) + except TemplateDoesNotExist: + source = "Template Does Not Exist: %s" % (template_name,) + except ImportError: # Django 1.1 ... + from django.template.loader import find_template_source + source, origin = find_template_source(template_name) + + try: + from pygments import highlight + from pygments.lexers import HtmlDjangoLexer + from pygments.formatters import HtmlFormatter + + source = highlight(source, HtmlDjangoLexer(), HtmlFormatter()) + source = mark_safe(source) + source.pygmentized = True + except ImportError: + pass + + return render_to_response('debug_toolbar/panels/template_source.html', { + 'source': source, + 'template_name': template_name + }) diff --git a/engine/__init__.py b/engine/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/engine/admin.py b/engine/admin.py new file mode 100644 index 0000000..dc95c2a --- /dev/null +++ b/engine/admin.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- + +from django.contrib import admin +from models import * + +class AdvertiserAdmin(admin.ModelAdmin): + """admin class""" + +class ProductCategoryAdmin(admin.ModelAdmin): + """admin class""" + +class DealAdmin(admin.ModelAdmin): + prepopulated_fields = { + 'slug': ( 'title', ) + } + + +class ProfileAdmin(admin.ModelAdmin): + """admin class""" + +class EmailSubAdmin(admin.ModelAdmin): + """admin class""" + +class CouponAdmin(admin.ModelAdmin): + """admin class""" + list_display = ['user', 'deal', 'status'] + list_filter = ('user', 'deal') + list_per_page = 100 + search_fields = ['user', 'deal'] + + +class CityAdmin(admin.ModelAdmin): + """admin class""" + list_display = ['name', 'province', 'is_active'] + list_per_page = 100 + search_fields = ['name'] + prepopulated_fields = { + 'slug': ( 'name', ) + } + + +admin.site.register(ProductCategory, ProductCategoryAdmin) +admin.site.register(Deal, DealAdmin) +admin.site.register(City, CityAdmin) +admin.site.register(Profile, ProfileAdmin) +admin.site.register(Coupon, CouponAdmin) +admin.site.register(Advertiser, AdvertiserAdmin) +admin.site.register(EmailSubscribe, EmailSubAdmin) diff --git a/engine/forms.py b/engine/forms.py new file mode 100644 index 0000000..9e8b2cf --- /dev/null +++ b/engine/forms.py @@ -0,0 +1,135 @@ +from django import forms +from django.forms import widgets +from massivecoupon.engine import models as enginemodels +from massivecoupon.libs import formutils +from datetime import date +import re +import pdb + +r_postalcode = re.compile(r'^([A-Z][0-9][A-Z])[ -]?([0-9][A-Z][0-9])$', re.I) +r_date = re.compile(r'^(\d\d\d\d)[/-](\d{1,2})[/-](\d{1,2})$') + +expiry_choices_month = ( + (1, '1'), + (2, '2'), + (3, '3'), + (4, '4'), + (5, '5'), + (6, '6'), + (7, '7'), + (8, '8'), + (9, '9'), + (10, '10'), + (11, '11'), + (12, '12'), +) + +expiry_choices_year = ( + (2010, '2010'), + (2011, '2011'), + (2012, '2012'), + (2013, '2013'), + (2014, '2014'), + (2015, '2015'), + (2016, '2016'), + (2017, '2017'), + (2018, '2018'), + (2019, '2019'), + (2020, '2020'), +) + +class EmailSubForm(forms.Form): + email = forms.EmailField(help_text="you@domain.com", widget=forms.TextInput(attrs={'size':'25'})) + city = forms.ChoiceField(initial=1, choices=[ (obj.id, obj.name) for obj in enginemodels.City.objects.all() ]) + + +class SignupForm(forms.Form): + full_name = forms.CharField(max_length=128, widget=forms.TextInput(attrs={'size':'30'}) ) + password = forms.CharField(max_length=20, widget=forms.PasswordInput(attrs={'size':'12'}) ) + password_verify = forms.CharField(max_length=20, widget=forms.PasswordInput(attrs={'size':'12'})) + email = forms.EmailField(help_text="you@domain.com", widget=forms.TextInput(attrs={'size':'30'})) + + + def clean(self): + """ + Validate fields to make sure everything's as expected. + - postalcode is in right format and actually exists + - service actually exists + """ + cd = self.cleaned_data + + if 'password' in cd and 'password_verify' in cd: + if self.cleaned_data['password'] != self.cleaned_data['password_verify']: + self._errors['password'] = forms.util.ErrorList(["Passwords don't match!"]) + + else: + self._errors['password'] = forms.util.ErrorList(["Please enter and confirm your password"]) + +# raise forms.ValidationError(_(u'Please enter and confirm your password')) + + + return cd + + + +class LoginForm(forms.Form): + email = forms.EmailField(help_text="you@domain.com", widget=forms.TextInput(attrs={'size':'25'})) + password = forms.CharField(max_length=20, widget=forms.PasswordInput(attrs={'size':'12'}) ) + + def clean(self): + # only do further checks if the rest was valid + if self._errors: return + + from django.contrib.auth import login, authenticate + user = authenticate(username=self.data['email'], + password=self.data['password']) + if user is not None: + if user.is_active: + self.user = user + else: + raise forms.ValidationError( 'This account is currently inactive. Please contact the administrator if you believe this to be in error.') + else: + raise forms.ValidationError( 'The username and password you specified are not valid.') + + +class DealCheckoutForm(forms.Form): + + full_name = forms.CharField(max_length=128, widget=forms.TextInput(attrs={'size':'30'}) ) + password = forms.CharField(max_length=20, widget=forms.PasswordInput(attrs={'size':'12'}) ) + password_verify = forms.CharField(max_length=20, widget=forms.PasswordInput(attrs={'size':'12'})) + email = forms.EmailField(help_text="you@domain.com", widget=forms.TextInput(attrs={'size':'30'})) + + quantity = forms.IntegerField(initial=1, widget=forms.TextInput(attrs={'size':'2'})) + +# cardholder_name = forms.CharField(max_length=128, widget=forms.TextInput(attrs={'size':'30'})) +# type = forms.ChoiceField( choices = enginemodels.CC_TYPE ) +# number = forms.CharField(help_text="Enter your credit card #", max_length=20) +# expiry_month = forms.ChoiceField(choices=expiry_choices_month, help_text="Enter your credit card expiration month") +# expiry_year = forms.ChoiceField(choices=expiry_choices_year, help_text="Enter your credit card expiration year") +# security = forms.CharField(help_text="CVV", max_length=5, widget=forms.TextInput(attrs={'size':'5'})) +# billing_address = forms.CharField(max_length=256, widget=forms.TextInput(attrs={'size':'30'})) +# city = forms.CharField(max_length=25, widget=forms.TextInput(attrs={'size':'30'})) +# postalcode = forms.CharField(max_length=7, widget=forms.TextInput(attrs={'size':'7'})) +# province = forms.ChoiceField(choices=enginemodels.PROVINCES) +# country = forms.ChoiceField(initial="CA", choices=[ (obj.iso, obj.name) for obj in enginemodels.Country.objects.all() ]) + + def clean(self): + """ + Validate fields to make sure everything's as expected. + - postalcode is in right format and actually exists + - service actually exists + """ + cd = self.cleaned_data + + if 'password' in cd and 'password_verify' in cd: + if self.cleaned_data['password'] != self.cleaned_data['password_verify']: + self._errors['password'] = forms.util.ErrorList(["Passwords don't match!"]) + + else: + self._errors['password'] = forms.util.ErrorList(["Please enter and confirm your password"]) + +# raise forms.ValidationError(_(u'Please enter and confirm your password')) + + + return cd + diff --git a/engine/models.py b/engine/models.py new file mode 100644 index 0000000..39b9d5d --- /dev/null +++ b/engine/models.py @@ -0,0 +1,304 @@ +""" +MASSIVEcoupon.com + +""" + + +from django.db import models # Replaced by models in gis package +from django.contrib.auth.models import User +from django.contrib.contenttypes.models import ContentType +from django.contrib.contenttypes import generic +from photologue.models import ImageModel +from countries.models import Country +from tagging.fields import TagField +import datetime + +UPLOAD_TO = 'deal_images' + +STATUS_ONHOLD = 1 +STATUS_ACTIVE = 2 +STATUS_REDEEMED = 3 + +STATUS = ( + (STATUS_ONHOLD, "Purchased - ON HOLD"), + (STATUS_ACTIVE, "Purchased - Money Collected"), + (STATUS_REDEEMED, "Redeemed"), +) + + +DAYS = ( + ( 1, 'Monday' ), + ( 2, 'Tuesday' ), + ( 3, 'Wednesday' ), + ( 4, 'Thursday' ), + ( 5, 'Friday' ), + ( 6, 'Saturday' ), + ( 7, 'Sunday' ), +) + + +PROVINCES = ( + ( 'ON' , 'Ontario' ), + ( 'QC' , 'Quebec' ), + ( 'NS' , 'Nova Scotia' ), + ( 'NB' , 'New Brunswick' ), + ( 'MB' , 'Manitoba' ), + ( 'BC' , 'British Columbia' ), + ( 'PE' , 'Prince Edward Island' ), + ( 'SK' , 'Saskatchewan' ), + ( 'AB' , 'Alberta' ), + ( 'NL' , 'Newfoundland and Labrador' ), + ( 'YT' , 'Yukon Territory' ), + ( 'NT' , 'Northwest Territories' ), + ( 'NU' , 'Nunavut' ), +) +PROVINCES_d = dict(PROVINCES) + +CC_TYPE_VISA = 1 +CC_TYPE_MASTERCARD = 2 +CC_TYPE_AMEX = 3 + +CC_TYPE = ( + (CC_TYPE_VISA, 'Visa'), + (CC_TYPE_MASTERCARD, 'Mastercard'), + (CC_TYPE_AMEX, 'American Express'), +) + +class City(models.Model): + """ + City database (latitude, longitude, postalcode) + """ + + name = models.CharField("City Name", max_length=60) + slug = models.SlugField() + is_active = models.BooleanField(default=False) + province = models.CharField("Province", max_length=2, choices=PROVINCES) + order = models.IntegerField(default = 0) + + class Meta: + verbose_name = 'City' + verbose_name_plural = 'Cities' + + def __unicode__(self): + return self.name + +class Advertiser(models.Model): + name = models.CharField(max_length=60) + address = models.CharField(max_length=60) + city = models.ForeignKey(City) + postalcode = models.CharField(max_length=7) + province = models.CharField(max_length=25, choices=PROVINCES) + country = models.ForeignKey(Country) + phone = models.CharField(max_length=25) + phoneext = models.CharField("Phone Ext", max_length=6, blank=True) + cell = models.CharField(max_length=25) + fax = models.CharField(max_length=25) + contact = models.CharField(max_length=50, blank=True, help_text="Advertising contact") + email = models.EmailField(blank=True, help_text="Email address of contact") + + def __str__(self): + return self.name + + class Admin: + list_display = ( "name", "contact", "email", "rep" ) + + class Meta: + verbose_name = 'Advertiser' + + +class ProductCategory(models.Model): + """ + Categories for various products + """ + + name = models.CharField("Category", max_length=60) + + class Meta: + verbose_name = 'Product Category' + verbose_name_plural = 'Product Categories' + + def __unicode__(self): + return self.name + +class Deal(models.Model): + """ + Actual services + """ + + advertiser = models.ForeignKey(Advertiser) + city = models.ForeignKey(City) + title = models.CharField("Title", max_length=256) + slug = models.SlugField() + + category = models.ForeignKey(ProductCategory) + + date_published = models.DateTimeField() + retail_price = models.DecimalField(default=0,decimal_places=2, max_digits=6, help_text='Full retail price') + deal_price = models.DecimalField(default=0,decimal_places=2, max_digits=6, help_text='Deal (real) Price') + + discount_percentage = models.DecimalField(default=0,decimal_places=2, max_digits=6, help_text='% Percentage Off retail') + discount_value = models.DecimalField(default=0,decimal_places=2, max_digits=6, help_text='$ Dollars Off retail') + + auction_duration = models.IntegerField(default=24, help_text='Deal duration in hours') + + is_deal_on = models.BooleanField(default=False) + + fine_print = models.TextField() + highlights = models.TextField() + + tipping_point = models.IntegerField(default=0) + tipped_at = models.DateTimeField() + + max_available = models.IntegerField(default=0) + + description = models.TextField() +# reviews = models.TextField() + + company_desc = models.TextField() +# address = models.TextField() + +# url = models.URLField() + image = models.ImageField(upload_to=UPLOAD_TO, max_length=255, blank=True) + + tags = TagField(help_text="Tags seperated by commas!!", verbose_name='tags') + + latitude = models.DecimalField("Latitude (decimal)", max_digits=9, decimal_places=6, blank=True) + longitude = models.DecimalField("Longitude (decimal)", max_digits=9, decimal_places=6, blank=True) + + entry_date = models.DateTimeField(blank=True, editable=False, null=True, auto_now_add=True) + last_mod = models.DateTimeField(blank=True, editable=False, null=True, auto_now=True) + deleted_date = models.DateTimeField(blank=True, editable=False, null=True) + + class Meta: + verbose_name = 'Deal' + verbose_name_plural = 'Deals' + + def __unicode__(self): + return self.title + + def num_available(self): + num_sold = Coupon.objects.filter(deal=self.id).count() + num_available = self.max_available - num_sold + return num_available + + def num_sold(self): + num_sold = Coupon.objects.filter(deal=self.id).count() + return num_sold + + def percentage_sold(self): + num_sold = self.num_sold() + if num_sold > self.tipping_point: + return 100 + else: + return int( ( (num_sold*1.0) / self.tipping_point) * 100) + + def num_needed(self): + num_sold = self.num_sold() + if num_sold > self.tipping_point: + return 0 + else: + return self.tipping_point - num_sold + + def time_left(self): + now = datetime.datetime.now() + expired_at = self.date_published + datetime.timedelta(hours=self.auction_duration) + + if expired_at < now : + return "Request closed" + + expire_time = expired_at - now + expire_time_hours = int(time.strftime("%H", time.gmtime(expire_time.seconds))) + expire_time_mins = int(time.strftime("%M", time.gmtime(expire_time.seconds))) + + if expire_time.days < 1: + if expire_time_hours < 1: + if expire_time_mins < 1: + + if expire_time.seconds < 1: + return "Request closed" + else: + return "%d seconds" % expire_time.seconds + + else: + return "%d minutes" % expire_time_mins + + else: + return "%d hours, %d minutes" % (expire_time_hours, expire_time_mins) + + else: + if expire_time_hours < 1: + return "%d days" % (expire_time.days) + else: + return "%d days, %d hours" % (expire_time.days, expire_time_hours) + + def is_expired(self): + now = datetime.datetime.now() + expired_at = self.date_published + datetime.timedelta(hours=self.auction_duration) + + if expired_at < now : + return True + else: + return False + + + + +class EmailSubscribe(models.Model): + email = models.EmailField(blank=True, help_text="Email address of contact") + city = models.ForeignKey(City) + + class Meta: + verbose_name = 'EmailSubscribe' + verbose_name_plural = 'EmailSubscribes' + + def __unicode__(self): + return self.email + + +class Profile(models.Model): + """ + User profile + """ + + is_email_sub = models.BooleanField(default=False) + streetnumber = models.CharField("Street Number", max_length=10) + street = models.CharField("Street Name", max_length=40) + apt = models.CharField("Apartment #", max_length=20) + city = models.ForeignKey(City) + postalcode = models.CharField("Postal Code", max_length=7) + + province = models.CharField(max_length=25, choices=PROVINCES) + country = models.ForeignKey(Country) + + phone = models.CharField(blank=True, max_length=16) + phoneext = models.CharField("Phone Ext", max_length=6, blank=True) + cell = models.CharField("Cell #", blank=True, max_length=16) + fax = models.CharField(blank=True, max_length=16) + + class Meta: + verbose_name = 'Profile' + verbose_name_plural = 'Profiles' + + def __unicode__(self): + return self.phone + + + +class Coupon(models.Model): + + user = models.ForeignKey(User) + deal = models.ForeignKey(Deal) + + status = models.IntegerField(choices=STATUS, default=0) + + entry_date = models.DateTimeField(blank=True, editable=False, null=True, auto_now_add=True) + last_mod = models.DateTimeField(blank=True, editable=False, null=True, auto_now=True) + deleted_date = models.DateTimeField(blank=True, editable=False, null=True) + + class Meta: + verbose_name = 'Coupon' + verbose_name_plural = 'Coupons' + + def __unicode__(self): + return str(self.user) + diff --git a/engine/templatetags/extra_tags.py b/engine/templatetags/extra_tags.py new file mode 100644 index 0000000..7c8eb1f --- /dev/null +++ b/engine/templatetags/extra_tags.py @@ -0,0 +1,4 @@ +from django import template + +register = template.Library() + diff --git a/engine/tests.py b/engine/tests.py new file mode 100644 index 0000000..2247054 --- /dev/null +++ b/engine/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/engine/views.py b/engine/views.py new file mode 100644 index 0000000..619bf01 --- /dev/null +++ b/engine/views.py @@ -0,0 +1,366 @@ +import os.path +import time, datetime, calendar, random +import logging +from urllib import quote, unquote, urlencode +from django.conf import settings +from django.shortcuts import render_to_response, get_object_or_404 +from django.contrib.auth.decorators import login_required +from django.http import HttpResponseRedirect, HttpResponse,Http404 +from django.core.paginator import Paginator, EmptyPage, InvalidPage +from django.template import RequestContext +from django.contrib.auth import authenticate, login, logout +from engine.forms import * +from engine.models import * +import math +import pdb +import uuid + +from paypalxpress.driver import PayPal +from paypalxpress.models import PayPalResponse + +def user_signup(request): + cities = City.objects.all() + + if request.method == 'POST': # If the form has been submitted... + form = SignupForm(request.POST) + + if form.is_valid(): + cd = form.cleaned_data + + user = User() + user.username = cd.get('email') #str(uuid.uuid4())[:30] + user.first_name = cd.get('full_name') + user.email = cd.get('email') + user.save() + user.set_password( cd.get('password') ) + user.save() + + user = authenticate(username=user.username, password=cd.get('password')) + if user is not None: + if user.is_active: + login(request, user) + # Redirect to a success page. + else: + pass + # Return a 'disabled account' error message + else: + # Return an 'invalid login' error message. + pass + + return HttpResponseRedirect('/') + + + else: + initial_data = {} + form = SignupForm(initial=initial_data) + + return render_to_response('user_signup.html', { + 'form' : form, + 'cities' : cities, + }, context_instance=RequestContext( request ) ) + + +def user_logout(request): + logout(request) + return HttpResponseRedirect('/') + + +def user_login(request): + cities = City.objects.all() + + if request.method == 'POST': # If the form has been submitted... + form = LoginForm(request.POST) + + if form.is_valid(): + cd = form.cleaned_data + + login(request, form.user) + + return HttpResponseRedirect('/') + + + else: + initial_data = {} + form = LoginForm(initial=initial_data) + + return render_to_response('user_login.html', { + 'form' : form, + 'cities' : cities, + }, context_instance=RequestContext( request ) ) + + + + + +def terms(request): + cities = City.objects.all() + return render_to_response('terms.html', { + 'cities' : cities, + }, context_instance=RequestContext( request ) ) + +def faq(request): + cities = City.objects.all() + return render_to_response('faq.html', { + 'cities' : cities, + }, context_instance=RequestContext( request ) ) + +def howitworks(request): + cities = City.objects.all() + return render_to_response('howitworks.html', { + 'cities' : cities, + }, context_instance=RequestContext( request ) ) + +def aboutus(request): + cities = City.objects.all() + return render_to_response('aboutus.html', { + 'cities' : cities, + }, context_instance=RequestContext( request ) ) + + +def contactus(request): + cities = City.objects.all() + return render_to_response('contactus.html', { + 'cities' : cities, + }, context_instance=RequestContext( request ) ) + + + +def city_subscribe(request, city_slug): + try: + city = City.objects.get(slug=city_slug) + except: + return HttpResponseRedirect('/deals/groupon-clone/') + + + if request.method == 'POST': # If the form has been submitted... + form = EmailSubForm(request.POST) + + if form.is_valid(): + cd = form.cleaned_data + + esub = EmailSubscribe() + esub.email = cd.get('email') + ecity = City.objects.get(id = int(cd.get('city'))) + esub.city = ecity + esub.save() + + user_msg = "Thanks for subscribing!" + user_msg = quote(user_msg) + return HttpResponseRedirect('/?user_msg=' + user_msg) + + # set some sort of message and redirect back to deals + + else: + initial_data = { 'city': city.id } + form = EmailSubForm(initial=initial_data) + + cities = City.objects.all() + + return render_to_response('email_subscribe.html', { + 'city' : city, + 'form' : form, + 'cities' : cities, + }, context_instance=RequestContext( request ) ) + + +@login_required +def profile(request): + cities = City.objects.all() + coupons = Coupon.objects.filter(user = request.user, status=STATUS_ACTIVE) + +#@login_required # unlock to make fb work!! +def index(request): + + try: + user_msg = request.GET.get('user_msg', None) + except: + user_msg = None + + if user_msg: + return HttpResponseRedirect('/deals/groupon-clone/?user_msg=' + user_msg ) + else: + return HttpResponseRedirect('/deals/groupon-clone/' ) + + +# return render_to_response('index.html', { +# # 'now' : now, +# }, context_instance=RequestContext( request ) ) + + + +def deal_checkout_complete(request, slug, quantity): + + user_msg = "" + quantity = int(quantity) + + try: + deal = Deal.objects.get(slug=slug) + except: + return Http404() + + token = request.GET.get('token', None) + payerid = request.GET.get('PayerID', None) + + if token and payerid: + + # TODO: i have no idea how many they bought! + p = PayPal() + rc = p.DoExpressCheckoutPayment("CAD", quantity * deal.deal_price, token, payerid, PAYMENTACTION="Authorization") + + if rc: # payment is looking good + + response = PayPalResponse() + response.fill_from_response(p.GetPaymentResponse()) + response.status = PayPalResponse.get_default_status() + response.save() + + num_sold = deal.num_sold() + + # check if it's sold out! + if num_sold > deal.max_available: + pass + #setup form error + # Sold out! + + + for i in range(quantity): + coupon = Coupon() + coupon.user = request.user + coupon.deal = deal + + coupon.status = STATUS_ONHOLD + + coupon.save() + num_sold = num_sold + 1 + + # update the deal object + if not deal.is_deal_on and num_sold >= deal.tipping_point: + deal.tipped_at = datetime.datetime.now() + deal.is_deal_on = True + deal.save() + + + user_msg = 'Thanks for purchasing a Massive Coupon! It will arrive in your profile within 24 hours' + return HttpResponseRedirect('/deals/groupon-clone/?user_msg=' + user_msg ) + else: + return Http404() + + else: + return Http404() + + +def deal_checkout(request, slug): + + user_msg = "" + + try: + deal = Deal.objects.get(slug=slug) + except: + return HttpResponseRedirect('/') + + + must_login_error = False + must_login_email = None + + if request.method == 'POST': # If the form has been submitted... + form = DealCheckoutForm(request.POST) + + # before we do anything, check if this user has an account and isn't logged in + if not request.user.is_authenticated(): + try: + user = User.objects.get(email=request.POST['email']) + must_login_error = True + must_login_email = request.POST['email'] + form = DealCheckoutForm(initial={}) + user_msg = 'An account already exists for ' + user.email + '. Please sign in first.' + except: + pass + + else: + user = request.user + + if not must_login_error and form.is_valid(): + cd = form.cleaned_data + + if not request.user.is_authenticated(): + # User in NOT Logged IN and doesn't exist + # setup a new user + user = User() + user.username = cd.get('email') #str(uuid.uuid4())[:30] + user.first_name = cd.get('full_name') + user.email = cd.get('email') + user.save() + user.set_password( cd.get('password') ) + user.save() + + + user = authenticate(username=user.username, password=cd.get('password')) + if user is not None: + if user.is_active: + login(request, user) + # Redirect to a success page. + else: + pass + # Return a 'disabled account' error message + else: + # Return an 'invalid login' error message. + pass + + quantity = int(cd.get('quantity')) + total_price = quantity * deal.deal_price + + p = PayPal() + rc = p.SetExpressCheckout(total_price, "CAD", "http://www.massivecoupon.com/deals/" + deal.slug + "/" + str(quantity) + "/checkout/complete/", "http://www.massivecoupon.com/", PAYMENTACTION="Authorization") + + if rc: + token = p.api_response['TOKEN'][0] + return HttpResponseRedirect( p.paypal_url() ) + else: + return HttpResponseRedirect('/checkout/error') + + + + + else: + initial_data = {} + form = DealCheckoutForm(initial=initial_data) + + cities = City.objects.all() + + return render_to_response('deal_checkout.html', { + 'form' : form, + 'deal' : deal, + 'user_msg' : user_msg, + 'must_login_error' : must_login_error, + 'must_login_email' : must_login_email, + 'cities' : cities, + }, context_instance=RequestContext( request ) ) + +def deal_detail(request, slug=None): + + try: + user_msg = request.GET.get('user_msg', None) + except: + user_msg = None + + if slug == None: + deal = Deal.objects.all()[0] + else: + deal = Deal.objects.get(slug=slug) + + if not deal.is_expired(): + countdown_time = deal.date_published.strftime("%Y,%m,%d") #+ ' 11:59 PM' + else: + countdown_time = -1 + + cities = City.objects.all() + + return render_to_response('deal_detail.html', { + # 'now' : now, + 'user_msg' : user_msg, + 'deal' : deal, + 'countdown_time' : countdown_time, + 'cities' : cities, + }, context_instance=RequestContext( request ) ) + + diff --git a/facebook/__init__.py b/facebook/__init__.py new file mode 100644 index 0000000..7ee9e0c --- /dev/null +++ b/facebook/__init__.py @@ -0,0 +1,1431 @@ +#! /usr/bin/env python +# +# pyfacebook - Python bindings for the Facebook API +# +# Copyright (c) 2008, Samuel Cormier-Iijima +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the author nor the names of its contributors may +# be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS``AS IS'' AND ANY +# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +""" +Python bindings for the Facebook API (pyfacebook - http://code.google.com/p/pyfacebook) + +PyFacebook is a client library that wraps the Facebook API. + +For more information, see + +Home Page: http://code.google.com/p/pyfacebook +Developer Wiki: http://wiki.developers.facebook.com/index.php/Python +Facebook IRC Channel: #facebook on irc.freenode.net + +PyFacebook can use simplejson if it is installed, which +is much faster than XML and also uses less bandwith. Go to +http://undefined.org/python/#simplejson to download it, or do +apt-get install python-simplejson on a Debian-like system. +""" + +import sys +import time +import struct +import urllib +import urllib2 +import httplib +try: + import hashlib +except ImportError: + import md5 as hashlib +import binascii +import urlparse +import mimetypes + +# try to use simplejson first, otherwise fallback to XML +RESPONSE_FORMAT = 'JSON' +try: + import json as simplejson +except ImportError: + try: + import simplejson + except ImportError: + try: + from django.utils import simplejson + except ImportError: + try: + import jsonlib as simplejson + simplejson.loads + except (ImportError, AttributeError): + from xml.dom import minidom + RESPONSE_FORMAT = 'XML' + +# support Google App Engine. GAE does not have a working urllib.urlopen. +try: + from google.appengine.api import urlfetch + + def urlread(url, data=None, headers=None): + if data is not None: + if headers is None: + headers = {"Content-type": "application/x-www-form-urlencoded"} + method = urlfetch.POST + else: + if headers is None: + headers = {} + method = urlfetch.GET + + result = urlfetch.fetch(url, method=method, + payload=data, headers=headers) + + if result.status_code == 200: + return result.content + else: + raise urllib2.URLError("fetch error url=%s, code=%d" % (url, result.status_code)) + +except ImportError: + def urlread(url, data=None): + res = urllib2.urlopen(url, data=data) + return res.read() + +__all__ = ['Facebook'] + +VERSION = '0.1' + +FACEBOOK_URL = 'http://api.facebook.com/restserver.php' +FACEBOOK_SECURE_URL = 'https://api.facebook.com/restserver.php' + +class json(object): pass + +# simple IDL for the Facebook API +METHODS = { + 'application': { + 'getPublicInfo': [ + ('application_id', int, ['optional']), + ('application_api_key', str, ['optional']), + ('application_canvas_name', str,['optional']), + ], + }, + + # admin methods + 'admin': { + 'getAllocation': [ + ('integration_point_name', str, []), + ], + }, + + # auth methods + 'auth': { + 'revokeAuthorization': [ + ('uid', int, ['optional']), + ], + }, + + # feed methods + 'feed': { + 'publishStoryToUser': [ + ('title', str, []), + ('body', str, ['optional']), + ('image_1', str, ['optional']), + ('image_1_link', str, ['optional']), + ('image_2', str, ['optional']), + ('image_2_link', str, ['optional']), + ('image_3', str, ['optional']), + ('image_3_link', str, ['optional']), + ('image_4', str, ['optional']), + ('image_4_link', str, ['optional']), + ('priority', int, ['optional']), + ], + + 'publishActionOfUser': [ + ('title', str, []), + ('body', str, ['optional']), + ('image_1', str, ['optional']), + ('image_1_link', str, ['optional']), + ('image_2', str, ['optional']), + ('image_2_link', str, ['optional']), + ('image_3', str, ['optional']), + ('image_3_link', str, ['optional']), + ('image_4', str, ['optional']), + ('image_4_link', str, ['optional']), + ('priority', int, ['optional']), + ], + + 'publishTemplatizedAction': [ + ('title_template', str, []), + ('page_actor_id', int, ['optional']), + ('title_data', json, ['optional']), + ('body_template', str, ['optional']), + ('body_data', json, ['optional']), + ('body_general', str, ['optional']), + ('image_1', str, ['optional']), + ('image_1_link', str, ['optional']), + ('image_2', str, ['optional']), + ('image_2_link', str, ['optional']), + ('image_3', str, ['optional']), + ('image_3_link', str, ['optional']), + ('image_4', str, ['optional']), + ('image_4_link', str, ['optional']), + ('target_ids', list, ['optional']), + ], + + 'registerTemplateBundle': [ + ('one_line_story_templates', json, []), + ('short_story_templates', json, ['optional']), + ('full_story_template', json, ['optional']), + ('action_links', json, ['optional']), + ], + + 'deactivateTemplateBundleByID': [ + ('template_bundle_id', int, []), + ], + + 'getRegisteredTemplateBundles': [], + + 'getRegisteredTemplateBundleByID': [ + ('template_bundle_id', str, []), + ], + + 'publishUserAction': [ + ('template_bundle_id', int, []), + ('template_data', json, ['optional']), + ('target_ids', list, ['optional']), + ('body_general', str, ['optional']), + ('story_size', int, ['optional']), + ], + }, + + # fql methods + 'fql': { + 'query': [ + ('query', str, []), + ], + }, + + # friends methods + 'friends': { + 'areFriends': [ + ('uids1', list, []), + ('uids2', list, []), + ], + + 'get': [ + ('flid', int, ['optional']), + ], + + 'getLists': [], + + 'getAppUsers': [], + }, + + # notifications methods + 'notifications': { + 'get': [], + + 'send': [ + ('to_ids', list, []), + ('notification', str, []), + ('email', str, ['optional']), + ('type', str, ['optional']), + ], + + 'sendRequest': [ + ('to_ids', list, []), + ('type', str, []), + ('content', str, []), + ('image', str, []), + ('invite', bool, []), + ], + + 'sendEmail': [ + ('recipients', list, []), + ('subject', str, []), + ('text', str, ['optional']), + ('fbml', str, ['optional']), + ] + }, + + # profile methods + 'profile': { + 'setFBML': [ + ('markup', str, ['optional']), + ('uid', int, ['optional']), + ('profile', str, ['optional']), + ('profile_action', str, ['optional']), + ('mobile_fbml', str, ['optional']), + ('profile_main', str, ['optional']), + ], + + 'getFBML': [ + ('uid', int, ['optional']), + ('type', int, ['optional']), + ], + + 'setInfo': [ + ('title', str, []), + ('type', int, []), + ('info_fields', json, []), + ('uid', int, []), + ], + + 'getInfo': [ + ('uid', int, []), + ], + + 'setInfoOptions': [ + ('field', str, []), + ('options', json, []), + ], + + 'getInfoOptions': [ + ('field', str, []), + ], + }, + + # users methods + 'users': { + 'getInfo': [ + ('uids', list, []), + ('fields', list, [('default', ['name'])]), + ], + + 'getStandardInfo': [ + ('uids', list, []), + ('fields', list, [('default', ['uid'])]), + ], + + 'getLoggedInUser': [], + + 'isAppAdded': [], + + 'hasAppPermission': [ + ('ext_perm', str, []), + ('uid', int, ['optional']), + ], + + 'setStatus': [ + ('status', str, []), + ('clear', bool, []), + ('status_includes_verb', bool, ['optional']), + ('uid', int, ['optional']), + ], + }, + + # events methods + 'events': { + 'get': [ + ('uid', int, ['optional']), + ('eids', list, ['optional']), + ('start_time', int, ['optional']), + ('end_time', int, ['optional']), + ('rsvp_status', str, ['optional']), + ], + + 'getMembers': [ + ('eid', int, []), + ], + + 'create': [ + ('event_info', json, []), + ], + }, + + # update methods + 'update': { + 'decodeIDs': [ + ('ids', list, []), + ], + }, + + # groups methods + 'groups': { + 'get': [ + ('uid', int, ['optional']), + ('gids', list, ['optional']), + ], + + 'getMembers': [ + ('gid', int, []), + ], + }, + + # marketplace methods + 'marketplace': { + 'createListing': [ + ('listing_id', int, []), + ('show_on_profile', bool, []), + ('listing_attrs', str, []), + ], + + 'getCategories': [], + + 'getListings': [ + ('listing_ids', list, []), + ('uids', list, []), + ], + + 'getSubCategories': [ + ('category', str, []), + ], + + 'removeListing': [ + ('listing_id', int, []), + ('status', str, []), + ], + + 'search': [ + ('category', str, ['optional']), + ('subcategory', str, ['optional']), + ('query', str, ['optional']), + ], + }, + + # pages methods + 'pages': { + 'getInfo': [ + ('fields', list, [('default', ['page_id', 'name'])]), + ('page_ids', list, ['optional']), + ('uid', int, ['optional']), + ], + + 'isAdmin': [ + ('page_id', int, []), + ], + + 'isAppAdded': [ + ('page_id', int, []), + ], + + 'isFan': [ + ('page_id', int, []), + ('uid', int, []), + ], + }, + + # photos methods + 'photos': { + 'addTag': [ + ('pid', int, []), + ('tag_uid', int, [('default', 0)]), + ('tag_text', str, [('default', '')]), + ('x', float, [('default', 50)]), + ('y', float, [('default', 50)]), + ('tags', str, ['optional']), + ], + + 'createAlbum': [ + ('name', str, []), + ('location', str, ['optional']), + ('description', str, ['optional']), + ], + + 'get': [ + ('subj_id', int, ['optional']), + ('aid', int, ['optional']), + ('pids', list, ['optional']), + ], + + 'getAlbums': [ + ('uid', int, ['optional']), + ('aids', list, ['optional']), + ], + + 'getTags': [ + ('pids', list, []), + ], + }, + + # status methods + 'status': { + 'get': [ + ('uid', int, ['optional']), + ('limit', int, ['optional']), + ], + 'set': [ + ('status', str, ['optional']), + ('uid', int, ['optional']), + ], + }, + + # fbml methods + 'fbml': { + 'refreshImgSrc': [ + ('url', str, []), + ], + + 'refreshRefUrl': [ + ('url', str, []), + ], + + 'setRefHandle': [ + ('handle', str, []), + ('fbml', str, []), + ], + }, + + # SMS Methods + 'sms' : { + 'canSend' : [ + ('uid', int, []), + ], + + 'send' : [ + ('uid', int, []), + ('message', str, []), + ('session_id', int, []), + ('req_session', bool, []), + ], + }, + + 'data': { + 'getCookies': [ + ('uid', int, []), + ('string', str, ['optional']), + ], + + 'setCookie': [ + ('uid', int, []), + ('name', str, []), + ('value', str, []), + ('expires', int, ['optional']), + ('path', str, ['optional']), + ], + }, + + # connect methods + 'connect': { + 'registerUsers': [ + ('accounts', json, []), + ], + + 'unregisterUsers': [ + ('email_hashes', json, []), + ], + + 'getUnconnectedFriendsCount': [ + ], + }, + + #stream methods (beta) + 'stream' : { + 'addComment' : [ + ('post_id', int, []), + ('comment', str, []), + ('uid', int, ['optional']), + ], + + 'addLike': [ + ('uid', int, ['optional']), + ('post_id', int, ['optional']), + ], + + 'get' : [ + ('viewer_id', int, ['optional']), + ('source_ids', list, ['optional']), + ('start_time', int, ['optional']), + ('end_time', int, ['optional']), + ('limit', int, ['optional']), + ('filter_key', str, ['optional']), + ], + + 'getComments' : [ + ('post_id', int, []), + ], + + 'getFilters' : [ + ('uid', int, ['optional']), + ], + + 'publish' : [ + ('message', str, ['optional']), + ('attachment', json, ['optional']), + ('action_links', json, ['optional']), + ('target_id', str, ['optional']), + ('uid', str, ['optional']), + ], + + 'remove' : [ + ('post_id', int, []), + ('uid', int, ['optional']), + ], + + 'removeComment' : [ + ('comment_id', int, []), + ('uid', int, ['optional']), + ], + + 'removeLike' : [ + ('uid', int, ['optional']), + ('post_id', int, ['optional']), + ], + } +} + +class Proxy(object): + """Represents a "namespace" of Facebook API calls.""" + + def __init__(self, client, name): + self._client = client + self._name = name + + def __call__(self, method=None, args=None, add_session_args=True): + # for Django templates + if method is None: + return self + + if add_session_args: + self._client._add_session_args(args) + + return self._client('%s.%s' % (self._name, method), args) + + +# generate the Facebook proxies +def __generate_proxies(): + for namespace in METHODS: + methods = {} + + for method in METHODS[namespace]: + params = ['self'] + body = ['args = {}'] + + for param_name, param_type, param_options in METHODS[namespace][method]: + param = param_name + + for option in param_options: + if isinstance(option, tuple) and option[0] == 'default': + if param_type == list: + param = '%s=None' % param_name + body.append('if %s is None: %s = %s' % (param_name, param_name, repr(option[1]))) + else: + param = '%s=%s' % (param_name, repr(option[1])) + + if param_type == json: + # we only jsonify the argument if it's a list or a dict, for compatibility + body.append('if isinstance(%s, list) or isinstance(%s, dict): %s = simplejson.dumps(%s)' % ((param_name,) * 4)) + + if 'optional' in param_options: + param = '%s=None' % param_name + body.append('if %s is not None: args[\'%s\'] = %s' % (param_name, param_name, param_name)) + else: + body.append('args[\'%s\'] = %s' % (param_name, param_name)) + + params.append(param) + + # simple docstring to refer them to Facebook API docs + body.insert(0, '"""Facebook API call. See http://developers.facebook.com/documentation.php?v=1.0&method=%s.%s"""' % (namespace, method)) + + body.insert(0, 'def %s(%s):' % (method, ', '.join(params))) + + body.append('return self(\'%s\', args)' % method) + + exec('\n '.join(body)) + + methods[method] = eval(method) + + proxy = type('%sProxy' % namespace.title(), (Proxy, ), methods) + + globals()[proxy.__name__] = proxy + + +__generate_proxies() + + +class FacebookError(Exception): + """Exception class for errors received from Facebook.""" + + def __init__(self, code, msg, args=None): + self.code = code + self.msg = msg + self.args = args + + def __str__(self): + return 'Error %s: %s' % (self.code, self.msg) + + +class AuthProxy(AuthProxy): + """Special proxy for facebook.auth.""" + + def getSession(self): + """Facebook API call. See http://developers.facebook.com/documentation.php?v=1.0&method=auth.getSession""" + args = {} + try: + args['auth_token'] = self._client.auth_token + except AttributeError: + raise RuntimeError('Client does not have auth_token set.') + result = self._client('%s.getSession' % self._name, args) + self._client.session_key = result['session_key'] + self._client.uid = result['uid'] + self._client.secret = result.get('secret') + self._client.session_key_expires = result['expires'] + return result + + def createToken(self): + """Facebook API call. See http://developers.facebook.com/documentation.php?v=1.0&method=auth.createToken""" + token = self._client('%s.createToken' % self._name) + self._client.auth_token = token + return token + + +class FriendsProxy(FriendsProxy): + """Special proxy for facebook.friends.""" + + def get(self, **kwargs): + """Facebook API call. See http://developers.facebook.com/documentation.php?v=1.0&method=friends.get""" + if not kwargs.get('flid') and self._client._friends: + return self._client._friends + return super(FriendsProxy, self).get(**kwargs) + + +class PhotosProxy(PhotosProxy): + """Special proxy for facebook.photos.""" + + def upload(self, image, aid=None, caption=None, size=(604, 1024), filename=None, callback=None): + """Facebook API call. See http://developers.facebook.com/documentation.php?v=1.0&method=photos.upload + + size -- an optional size (width, height) to resize the image to before uploading. Resizes by default + to Facebook's maximum display width of 604. + """ + args = {} + + if aid is not None: + args['aid'] = aid + + if caption is not None: + args['caption'] = caption + + args = self._client._build_post_args('facebook.photos.upload', self._client._add_session_args(args)) + + try: + import cStringIO as StringIO + except ImportError: + import StringIO + + # check for a filename specified...if the user is passing binary data in + # image then a filename will be specified + if filename is None: + try: + import Image + except ImportError: + data = StringIO.StringIO(open(image, 'rb').read()) + else: + img = Image.open(image) + if size: + img.thumbnail(size, Image.ANTIALIAS) + data = StringIO.StringIO() + img.save(data, img.format) + else: + # there was a filename specified, which indicates that image was not + # the path to an image file but rather the binary data of a file + data = StringIO.StringIO(image) + image = filename + + content_type, body = self.__encode_multipart_formdata(list(args.iteritems()), [(image, data)]) + urlinfo = urlparse.urlsplit(self._client.facebook_url) + try: + content_length = len(body) + chunk_size = 4096 + + h = httplib.HTTPConnection(urlinfo[1]) + h.putrequest('POST', urlinfo[2]) + h.putheader('Content-Type', content_type) + h.putheader('Content-Length', str(content_length)) + h.putheader('MIME-Version', '1.0') + h.putheader('User-Agent', 'PyFacebook Client Library') + h.endheaders() + + if callback: + count = 0 + while len(body) > 0: + if len(body) < chunk_size: + data = body + body = '' + else: + data = body[0:chunk_size] + body = body[chunk_size:] + + h.send(data) + count += 1 + callback(count, chunk_size, content_length) + else: + h.send(body) + + response = h.getresponse() + + if response.status != 200: + raise Exception('Error uploading photo: Facebook returned HTTP %s (%s)' % (response.status, response.reason)) + response = response.read() + except: + # sending the photo failed, perhaps we are using GAE + try: + from google.appengine.api import urlfetch + + try: + response = urlread(url=self._client.facebook_url,data=body,headers={'POST':urlinfo[2],'Content-Type':content_type,'MIME-Version':'1.0'}) + except urllib2.URLError: + raise Exception('Error uploading photo: Facebook returned %s' % (response)) + except ImportError: + # could not import from google.appengine.api, so we are not running in GAE + raise Exception('Error uploading photo.') + + return self._client._parse_response(response, 'facebook.photos.upload') + + + def __encode_multipart_formdata(self, fields, files): + """Encodes a multipart/form-data message to upload an image.""" + boundary = '-------tHISiStheMulTIFoRMbOUNDaRY' + crlf = '\r\n' + l = [] + + for (key, value) in fields: + l.append('--' + boundary) + l.append('Content-Disposition: form-data; name="%s"' % str(key)) + l.append('') + l.append(str(value)) + for (filename, value) in files: + l.append('--' + boundary) + l.append('Content-Disposition: form-data; filename="%s"' % (str(filename), )) + l.append('Content-Type: %s' % self.__get_content_type(filename)) + l.append('') + l.append(value.getvalue()) + l.append('--' + boundary + '--') + l.append('') + body = crlf.join(l) + content_type = 'multipart/form-data; boundary=%s' % boundary + return content_type, body + + + def __get_content_type(self, filename): + """Returns a guess at the MIME type of the file from the filename.""" + return str(mimetypes.guess_type(filename)[0]) or 'application/octet-stream' + + +class Facebook(object): + """ + Provides access to the Facebook API. + + Instance Variables: + + added + True if the user has added this application. + + api_key + Your API key, as set in the constructor. + + app_name + Your application's name, i.e. the APP_NAME in http://apps.facebook.com/APP_NAME/ if + this is for an internal web application. Optional, but useful for automatic redirects + to canvas pages. + + auth_token + The auth token that Facebook gives you, either with facebook.auth.createToken, + or through a GET parameter. + + callback_path + The path of the callback set in the Facebook app settings. If your callback is set + to http://www.example.com/facebook/callback/, this should be '/facebook/callback/'. + Optional, but useful for automatic redirects back to the same page after login. + + desktop + True if this is a desktop app, False otherwise. Used for determining how to + authenticate. + + ext_perms + Any extended permissions that the user has granted to your application. + This parameter is set only if the user has granted any. + + facebook_url + The url to use for Facebook requests. + + facebook_secure_url + The url to use for secure Facebook requests. + + in_canvas + True if the current request is for a canvas page. + + in_iframe + True if the current request is for an HTML page to embed in Facebook inside an iframe. + + is_session_from_cookie + True if the current request session comes from a session cookie. + + in_profile_tab + True if the current request is for a user's tab for your application. + + internal + True if this Facebook object is for an internal application (one that can be added on Facebook) + + locale + The user's locale. Default: 'en_US' + + page_id + Set to the page_id of the current page (if any) + + profile_update_time + The time when this user's profile was last updated. This is a UNIX timestamp. Default: None if unknown. + + secret + Secret that is used after getSession for desktop apps. + + secret_key + Your application's secret key, as set in the constructor. + + session_key + The current session key. Set automatically by auth.getSession, but can be set + manually for doing infinite sessions. + + session_key_expires + The UNIX time of when this session key expires, or 0 if it never expires. + + uid + After a session is created, you can get the user's UID with this variable. Set + automatically by auth.getSession. + + ---------------------------------------------------------------------- + + """ + + def __init__(self, api_key, secret_key, auth_token=None, app_name=None, callback_path=None, internal=None, proxy=None, facebook_url=None, facebook_secure_url=None): + """ + Initializes a new Facebook object which provides wrappers for the Facebook API. + + If this is a desktop application, the next couple of steps you might want to take are: + + facebook.auth.createToken() # create an auth token + facebook.login() # show a browser window + wait_login() # somehow wait for the user to log in + facebook.auth.getSession() # get a session key + + For web apps, if you are passed an auth_token from Facebook, pass that in as a named parameter. + Then call: + + facebook.auth.getSession() + + """ + self.api_key = api_key + self.secret_key = secret_key + self.session_key = None + self.session_key_expires = None + self.auth_token = auth_token + self.secret = None + self.uid = None + self.page_id = None + self.in_canvas = False + self.in_iframe = False + self.is_session_from_cookie = False + self.in_profile_tab = False + self.added = False + self.app_name = app_name + self.callback_path = callback_path + self.internal = internal + self._friends = None + self.locale = 'en_US' + self.profile_update_time = None + self.ext_perms = None + self.proxy = proxy + if facebook_url is None: + self.facebook_url = FACEBOOK_URL + else: + self.facebook_url = facebook_url + if facebook_secure_url is None: + self.facebook_secure_url = FACEBOOK_SECURE_URL + else: + self.facebook_secure_url = facebook_secure_url + + for namespace in METHODS: + self.__dict__[namespace] = eval('%sProxy(self, \'%s\')' % (namespace.title(), 'facebook.%s' % namespace)) + + + def _hash_args(self, args, secret=None): + """Hashes arguments by joining key=value pairs, appending a secret, and then taking the MD5 hex digest.""" + # @author: houyr + # fix for UnicodeEncodeError + hasher = hashlib.md5(''.join(['%s=%s' % (isinstance(x, unicode) and x.encode("utf-8") or x, isinstance(args[x], unicode) and args[x].encode("utf-8") or args[x]) for x in sorted(args.keys())])) + if secret: + hasher.update(secret) + elif self.secret: + hasher.update(self.secret) + else: + hasher.update(self.secret_key) + return hasher.hexdigest() + + + def _parse_response_item(self, node): + """Parses an XML response node from Facebook.""" + if node.nodeType == node.DOCUMENT_NODE and \ + node.childNodes[0].hasAttributes() and \ + node.childNodes[0].hasAttribute('list') and \ + node.childNodes[0].getAttribute('list') == "true": + return {node.childNodes[0].nodeName: self._parse_response_list(node.childNodes[0])} + elif node.nodeType == node.ELEMENT_NODE and \ + node.hasAttributes() and \ + node.hasAttribute('list') and \ + node.getAttribute('list')=="true": + return self._parse_response_list(node) + elif len(filter(lambda x: x.nodeType == x.ELEMENT_NODE, node.childNodes)) > 0: + return self._parse_response_dict(node) + else: + return ''.join(node.data for node in node.childNodes if node.nodeType == node.TEXT_NODE) + + + def _parse_response_dict(self, node): + """Parses an XML dictionary response node from Facebook.""" + result = {} + for item in filter(lambda x: x.nodeType == x.ELEMENT_NODE, node.childNodes): + result[item.nodeName] = self._parse_response_item(item) + if node.nodeType == node.ELEMENT_NODE and node.hasAttributes(): + if node.hasAttribute('id'): + result['id'] = node.getAttribute('id') + return result + + + def _parse_response_list(self, node): + """Parses an XML list response node from Facebook.""" + result = [] + for item in filter(lambda x: x.nodeType == x.ELEMENT_NODE, node.childNodes): + result.append(self._parse_response_item(item)) + return result + + + def _check_error(self, response): + """Checks if the given Facebook response is an error, and then raises the appropriate exception.""" + if type(response) is dict and response.has_key('error_code'): + raise FacebookError(response['error_code'], response['error_msg'], response['request_args']) + + + def _build_post_args(self, method, args=None): + """Adds to args parameters that are necessary for every call to the API.""" + if args is None: + args = {} + + for arg in args.items(): + if type(arg[1]) == list: + args[arg[0]] = ','.join(str(a) for a in arg[1]) + elif type(arg[1]) == unicode: + args[arg[0]] = arg[1].encode("UTF-8") + elif type(arg[1]) == bool: + args[arg[0]] = str(arg[1]).lower() + + args['method'] = method + args['api_key'] = self.api_key + args['v'] = '1.0' + args['format'] = RESPONSE_FORMAT + args['sig'] = self._hash_args(args) + + return args + + + def _add_session_args(self, args=None): + """Adds 'session_key' and 'call_id' to args, which are used for API calls that need sessions.""" + if args is None: + args = {} + + if not self.session_key: + return args + #some calls don't need a session anymore. this might be better done in the markup + #raise RuntimeError('Session key not set. Make sure auth.getSession has been called.') + + args['session_key'] = self.session_key + args['call_id'] = str(int(time.time() * 1000)) + + return args + + + def _parse_response(self, response, method, format=None): + """Parses the response according to the given (optional) format, which should be either 'JSON' or 'XML'.""" + if not format: + format = RESPONSE_FORMAT + + if format == 'JSON': + result = simplejson.loads(response) + + self._check_error(result) + elif format == 'XML': + dom = minidom.parseString(response) + result = self._parse_response_item(dom) + dom.unlink() + + if 'error_response' in result: + self._check_error(result['error_response']) + + result = result[method[9:].replace('.', '_') + '_response'] + else: + raise RuntimeError('Invalid format specified.') + + return result + + + def hash_email(self, email): + """ + Hash an email address in a format suitable for Facebook Connect. + + """ + email = email.lower().strip() + return "%s_%s" % ( + struct.unpack("I", struct.pack("i", binascii.crc32(email)))[0], + hashlib.md5(email).hexdigest(), + ) + + + def unicode_urlencode(self, params): + """ + @author: houyr + A unicode aware version of urllib.urlencode. + """ + if isinstance(params, dict): + params = params.items() + return urllib.urlencode([(k, isinstance(v, unicode) and v.encode('utf-8') or v) + for k, v in params]) + + + def __call__(self, method=None, args=None, secure=False): + """Make a call to Facebook's REST server.""" + # for Django templates, if this object is called without any arguments + # return the object itself + if method is None: + return self + + # __init__ hard-codes into en_US + if args is not None and not args.has_key('locale'): + args['locale'] = self.locale + + # @author: houyr + # fix for bug of UnicodeEncodeError + post_data = self.unicode_urlencode(self._build_post_args(method, args)) + + if self.proxy: + proxy_handler = urllib2.ProxyHandler(self.proxy) + opener = urllib2.build_opener(proxy_handler) + if secure: + response = opener.open(self.facebook_secure_url, post_data).read() + else: + response = opener.open(self.facebook_url, post_data).read() + else: + if secure: + response = urlread(self.facebook_secure_url, post_data) + else: + response = urlread(self.facebook_url, post_data) + + return self._parse_response(response, method) + + + # URL helpers + def get_url(self, page, **args): + """ + Returns one of the Facebook URLs (www.facebook.com/SOMEPAGE.php). + Named arguments are passed as GET query string parameters. + + """ + return 'http://www.facebook.com/%s.php?%s' % (page, urllib.urlencode(args)) + + + def get_app_url(self, path=''): + """ + Returns the URL for this app's canvas page, according to app_name. + + """ + return 'http://apps.facebook.com/%s/%s' % (self.app_name, path) + + + def get_add_url(self, next=None): + """ + Returns the URL that the user should be redirected to in order to add the application. + + """ + args = {'api_key': self.api_key, 'v': '1.0'} + + if next is not None: + args['next'] = next + + return self.get_url('install', **args) + + + def get_authorize_url(self, next=None, next_cancel=None): + """ + Returns the URL that the user should be redirected to in order to + authorize certain actions for application. + + """ + args = {'api_key': self.api_key, 'v': '1.0'} + + if next is not None: + args['next'] = next + + if next_cancel is not None: + args['next_cancel'] = next_cancel + + return self.get_url('authorize', **args) + + + def get_login_url(self, next=None, popup=False, canvas=True): + """ + Returns the URL that the user should be redirected to in order to login. + + next -- the URL that Facebook should redirect to after login + + """ + args = {'api_key': self.api_key, 'v': '1.0'} + + if next is not None: + args['next'] = next + + if canvas is True: + args['canvas'] = 1 + + if popup is True: + args['popup'] = 1 + + if self.auth_token is not None: + args['auth_token'] = self.auth_token + + return self.get_url('login', **args) + + + def login(self, popup=False): + """Open a web browser telling the user to login to Facebook.""" + import webbrowser + webbrowser.open(self.get_login_url(popup=popup)) + + + def get_ext_perm_url(self, ext_perm, next=None, popup=False): + """ + Returns the URL that the user should be redirected to in order to grant an extended permission. + + ext_perm -- the name of the extended permission to request + next -- the URL that Facebook should redirect to after login + + """ + args = {'ext_perm': ext_perm, 'api_key': self.api_key, 'v': '1.0'} + + if next is not None: + args['next'] = next + + if popup is True: + args['popup'] = 1 + + return self.get_url('authorize', **args) + + + def request_extended_permission(self, ext_perm, popup=False): + """Open a web browser telling the user to grant an extended permission.""" + import webbrowser + webbrowser.open(self.get_ext_perm_url(ext_perm, popup=popup)) + + + def check_session(self, request): + """ + Checks the given Django HttpRequest for Facebook parameters such as + POST variables or an auth token. If the session is valid, returns True + and this object can now be used to access the Facebook API. Otherwise, + it returns False, and the application should take the appropriate action + (either log the user in or have him add the application). + + """ + self.in_canvas = (request.POST.get('fb_sig_in_canvas') == '1') + + if self.session_key and (self.uid or self.page_id): + return True + + + if request.method == 'POST': + params = self.validate_signature(request.POST) + else: + if 'installed' in request.GET: + self.added = True + + if 'fb_page_id' in request.GET: + self.page_id = request.GET['fb_page_id'] + + if 'auth_token' in request.GET: + self.auth_token = request.GET['auth_token'] + + try: + self.auth.getSession() + except FacebookError, e: + self.auth_token = None + return False + + return True + + params = self.validate_signature(request.GET) + + if not params: + # first check if we are in django - to check cookies + if hasattr(request, 'COOKIES'): + params = self.validate_cookie_signature(request.COOKIES) + self.is_session_from_cookie = True + else: + # if not, then we might be on GoogleAppEngine, check their request object cookies + if hasattr(request,'cookies'): + params = self.validate_cookie_signature(request.cookies) + self.is_session_from_cookie = True + + if not params: + return False + + if params.get('in_canvas') == '1': + self.in_canvas = True + + if params.get('in_iframe') == '1': + self.in_iframe = True + + if params.get('in_profile_tab') == '1': + self.in_profile_tab = True + + if params.get('added') == '1': + self.added = True + + if params.get('expires'): + self.session_key_expires = int(params['expires']) + + if 'locale' in params: + self.locale = params['locale'] + + if 'profile_update_time' in params: + try: + self.profile_update_time = int(params['profile_update_time']) + except ValueError: + pass + + if 'ext_perms' in params: + self.ext_perms = params['ext_perms'] + + if 'friends' in params: + if params['friends']: + self._friends = params['friends'].split(',') + else: + self._friends = [] + + if 'session_key' in params: + self.session_key = params['session_key'] + if 'user' in params: + self.uid = params['user'] + elif 'page_id' in params: + self.page_id = params['page_id'] + else: + return False + elif 'profile_session_key' in params: + self.session_key = params['profile_session_key'] + if 'profile_user' in params: + self.uid = params['profile_user'] + else: + return False + elif 'canvas_user' in params: + self.uid = params['canvas_user'] + elif 'uninstall' in params: + self.uid = params['user'] + else: + return False + + return True + + + def validate_signature(self, post, prefix='fb_sig', timeout=None): + """ + Validate parameters passed to an internal Facebook app from Facebook. + + """ + args = post.copy() + + if prefix not in args: + return None + + del args[prefix] + + if timeout and '%s_time' % prefix in post and time.time() - float(post['%s_time' % prefix]) > timeout: + return None + + args = dict([(key[len(prefix + '_'):], value) for key, value in args.items() if key.startswith(prefix)]) + + hash = self._hash_args(args) + + if hash == post[prefix]: + return args + else: + return None + + def validate_cookie_signature(self, cookies): + """ + Validate parameters passed by cookies, namely facebookconnect or js api. + """ + + api_key = self.api_key + if api_key not in cookies: + return None + + prefix = api_key + "_" + + params = {} + vals = '' + for k in sorted(cookies): + if k.startswith(prefix): + key = k.replace(prefix,"") + value = cookies[k] + params[key] = value + vals += '%s=%s' % (key, value) + + hasher = hashlib.md5(vals) + + hasher.update(self.secret_key) + digest = hasher.hexdigest() + if digest == cookies[api_key]: + params['is_session_from_cookie'] = True + return params + else: + return False + + + + +if __name__ == '__main__': + # sample desktop application + + api_key = '' + secret_key = '' + + facebook = Facebook(api_key, secret_key) + + facebook.auth.createToken() + + # Show login window + # Set popup=True if you want login without navigational elements + facebook.login() + + # Login to the window, then press enter + print 'After logging in, press enter...' + raw_input() + + facebook.auth.getSession() + print 'Session Key: ', facebook.session_key + print 'Your UID: ', facebook.uid + + info = facebook.users.getInfo([facebook.uid], ['name', 'birthday', 'affiliations', 'sex'])[0] + + print 'Your Name: ', info['name'] + print 'Your Birthday: ', info['birthday'] + print 'Your Gender: ', info['sex'] + + friends = facebook.friends.get() + friends = facebook.users.getInfo(friends[0:5], ['name', 'birthday', 'relationship_status']) + + for friend in friends: + print friend['name'], 'has a birthday on', friend['birthday'], 'and is', friend['relationship_status'] + + arefriends = facebook.friends.areFriends([friends[0]['uid']], [friends[1]['uid']]) + + photos = facebook.photos.getAlbums(facebook.uid) + diff --git a/facebook/__init__.pyc b/facebook/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2491182eac2301fac5779341433f373c12d5b1de GIT binary patch literal 36370 zcmdU&d7NC?Ro`z_Z|YWSms;D*=#6BJTDH`h&9bf0j7OtoMxIeiyw;4yvPDr{?{#-c z)m5!})l#=-WWY1n4oe_lwj}I3m^DCvge4F#Nq_`M2s;6r*aVXB;g19Y!TJ8qeM?nK z9*-pRNz&c*`rZBBbIv{Y+;h&o^{aoeW@P8uSD&r9^kf zO70>r{=Mujmb3Rhcd;*f?{^pbv-bgaaUgpibQcHR^78g9JySR?JKb+V7jaGNj_&T5A z{dtD>_zat^+J1Lsy=z#W(uL-`^GxS_rmb1q8&pfY&ebK$@d#$02oySUYr;%$z{%h+6OBT`t<7 z!ZToUql<&C;HIA7EEzVt!_gLZSVhN_IO|l7($Q8@w)vFpJ(VhP2Z=jLT;-yBiek~d zJ@rTT^#*tK27}(<{k_56y}>=b!8h~<_x1)K=u#I=Ww@@ra1t*fW&q zO)g&Bh0g=M<38A%I?`YfhlU?s;UA#L3Eh9ch6`$4Be%O_Ds;9x|d{0pAKTqKo7|NiFF7zZu zy-X!~u{ZUdy}^sU!FTlpXQ}+%w6mf{hT6pn1^Y{6>gEELBL&81i!9Q2tH{4=43(_z zGzxru4pCKgA}ujplvYEv-egfnMAVBO5OEhUXY?M;x@gW=b~$C-szhzvGVAu6verG_ zT=xI2P_WU}xn8)a>UnZByK=M&j7JN4FIJEhg#pJ^3bz>vt4D8Ql-OYM#i!GQfM~Hd zc&!(Q5Sj@6x-u1TULtC_3$_6AJw&}k^Sr)X08${nLCSkcVSp<-_PISB69m-O=iS`a z=X(sjuSkhr>4MFx1E>#MOV6!rlvkf^55$!NKe0zsO~npaG?@kl$9vZ z@WnmQg4cAf>*~vwQ0DK`dk~b<)R!7rl_kgkAISq>)&qzYU{WPa!h_?V^|FnBPRdXAM*WnZzCTUM&roLAMgO8}EI-@T?h3dA?4Qee zTp-5^=RqOoUy|wPd%OG#Jya6CHjC_~iRdG}!-dvGhFyIY+JEt;jw$wE5o<`x`xpId z0iy^$+8g{gJ#7j3UHb^hLBG`7^orS_(f=|zex(bbD}YFje|uA3{b=%DshWRBreAf3 zFTTM=zm{!$em&p#>~+zXFl$W@- zy87F!!ncU6!|b9za?wX!^fAYzqdEBN_KQbc^v4wA-<;b{9sk(}{>TC!_koWopc)@@ z^`mO`;$v2?Z{RUi6n(c2nd3Rr-vl z%g&9QTkg!Yn!$9v8P%J!NifrD2c5Y%I9091)2-H(;Mlp-!T7@ROcp*E%yl{oM-CmT zwW4@pw$++##1pmF{Go+IMXvoLRGe2)Pl9StYt-XrCur2C+tv0mZB#qK^>%e3xv9B{ zk&#pMV!qXmgL;z=%~w11R`WoR#PP_;Gp+eJI9HvGkG!6ajGTzC#f{cN+zu|(uhjE0 z*9lBSSz0oY4bMgbEaIh!g}H@89y%lWNKS{xgX446W;1Ra3HD@#0svTV*CuA#aoiMC znsKKG0JUl}SWMy|sn0Jo;>(Hh&jj^O0A%XTq*HA);^;tdeXd@c8zF9fu{IaXRFe+f z22jo5#WT+Z)n*h_8%awwB|#%jl3<#+>-EmuMDTPg=(I*s%q-IXnR+vhCR*)Tup$f} z+SAo|rxir4>&-^18qtdb0nmfCQ8G%d_g zIdZVGybyN=iI|T;T|_(1EmW6c2>QvXh5FEr{D~5J{bn?@bN_s`l}{ z(fBawhM37#GY*9z3!OVVb>1-W^vUxb!P@HRtmX}R>?|e~Rbb84e7EeK+L^%*cQmx; z!{<(_$#E68x=6LkqiUxbs@I_QJQusdOrp2}n`ZQGc7UPw|>;7#I4=&t9T{Clxmc*A5Gt<_#{Ge%!*cW;glbqfMlJkRGQWKxKgocUa8EtqQwTm0tohY zyJ!xD)~jk-4Gp@EkkB=ID)q=(Z!Ks^s5Ux+Tz5KStz3zhJ6l)8!-B6>6YFzl4QVjC zbBohV%G0bcM)qB`bjHY0XEM&VZO&E}T7-HEA8RyPenQ*qsYY-$KL_ZcI@OM^wXVd+ z7Ma2A`g^Pz19X)bE7GZV8nH!9w<1s9^?BB{%0nG7gY>=9s5h?|75a#WyAmH>nfORo z;v*{)AMHwf)F%qP3+*}`>@0USDj<*~b5osGd-;6pdFaW;l13k^3Fv2MEZ$~^hEQPz zSZGu`vB7mgBdFG>K&a9ZVB@TaC0GUxwkRU*WHFYmaa(9MZpLk}YvrqLkVS1tN5ql# z<-BjS{+>AU-LgbjoJJN`5{)2lCh2UUWCA8SH>KFrTWmB|Bp9$52Lm=(B}NnNc($%p zIc+_Dilr7L3UnD1D$^FH(ceRK6swYJfTy?2Q_H7MSO&%xrnSaVZ=R$hw)GkrtP)Xk z-nfC$7G48D0(?5+Xerc$xfERDG&6A=87*F2jN8jbzB5-F7PAPvAIjezHcV98@u@aa z9GI}u4aO+eL=SCJ^8Y!&lh|}3aBN{g4JJmuGigaJ2A!6nQ|NBCI`x@!X|(3z`D)#- zBDM^wp@b$w8>W^Mn+LW$)|=Prke#hr$`Uh-q+?xe$F=%`1Ww<0vN(M?u63;2op{N= z%uLTWIwC;Tf6|&&Bi%hp{4!i^Us+tRQ7p7uGj%X7>QCQA?NEtzW4<*_YQ<{S=&~$S z-n8;b+&T5sndj^s2-&;(FFCg|Q;!?KR!a`~j4|n*eDwJS#9Yo7&JFSvFI9FBTIf8YTcEBUNd&$DkTx-PDc4u=Q$x2^qEJkrsVFjB`(bAzCh$5a0 zjgmBuSmW?CP8F3-ooK-^~ zt+(@R@_?HscHXrZ(P<5|9bc`m545SJ!6fs(gGr|?k`ZlF@Hjho(Ti|#t=d@hsEd~t z>Jk@i@KwYS&ji!lUZxdVt2G32u~1Jee(CcZU0pX$U16fnQI}|Yv6-!pKGP23=*07E zao91}I&qXPAIDX#jWA8I_XPl};TaTK^YhG18wa>Po(7df@HzIL*6C~Y_ltbf6;P*( z`IPllUC3q_-L>h|fxpZfHqNzMOUpH~*pDz_0{4DiViUL{o@{bUQj^J@#QtLTp=I|f z4jzM&$W<&k#3PIsK&Y0xpc?EJBTp8XsJnyKOs^)VhN>Z%uno4TMnd*+RU(0xJrO(E z3NLJncu9A$nthYDIWkaGyduX2VG^h(bIHu zG+e4_+}X#v{|+Kj{QxR~0ru!@=t}J7Tbu2jeIL6#+tIs{v|ywY2Xytqz8}L5dv|4! zdQ4!MOf+fsCKG!TgLA0vgulhZ1gZ*Tm`%V6w339sO_I;~JIblj1{Eb54_;Z~u0bPY zRx0lhXhdv|UGPA8sI<8}Ij)HkZr4MT&?BxAwQ7}0_9mNjDKk0W$ zSO1t2WL=pI2~oqtKBQkjm4uHvQ#dhY{b2c z4PcEDc&V?Y2%c||6flwoCqvDiL@ZbnCwM$~=|-J^3r#B^y55^SE?t)KEYzrb(V-@R zVvgwjaUM)<>hSXyWmqEiAcbpUs?BCC9+!qp0@Qx#K3Bv?^;&0tT34aJoQM|Z7ZM8Y z2flRY9yPJsSM0mM#v$#7dj76`dy{>atUHMo$CYuPL)`A&yE7e+>De`*CxWRs&Q#l< zN<+;|UewBCY6aSJw$2<=PD1*5!O9%*`lO2sQT zIwbXkbSb_>QK&7c%0t@H+?jk~3*i?D_FA!=AYQ7eANr_m>%4eUDkj(p z1#1y=%wz<~!3Jxlm{^914q@I!8<%mkyPz7)!wP%ZcBS%V>aGCmN|WR2cCp5Xf280l zJ#2;lYu<`R?d^8yHT+BJ_+SPht?8o!Hut2}>=j@Iv#0nZ0goOE%LQ0ZUi~63LDzCl zEug2VHUgViMqHWhe?ofF3B!kSYpjNkujggXgofqKw#1kqC)uy$j+z5?$2%N*2Ws|b z&^5~wHW_m+hUQpKkOcJ7kI2WWgsI4cLu7;PKD}b*AB2J|j5vUyfOT}x);g=C!a@l7 zA{wNHY$^0+p9HFQ*<}2T@^*s@dzYzn^CxbmxJn0gb2E8^0Od`sQ42ev7NxoBwKyp9 z!1Fs3iP#?NL|08>t?8Cho2F1z83#;aw$YvNrwEU$Ig^6J|E*-{!H%J}s826;Vw(uI zs}0%Tp_Z`-6O6;ZRXNodp4H=%JWRFR)nFyvmwNMx3DKJ2;YJ<>CEqR)8}~0p`PCw4 z?RH#wu+&%DTw06$XnScrzgzei!I7n401psIiN^01N+t;*wR)ZgHNnJq_befS`2P+O z@AVny4b_4@80?DjkkcN;16?Tc97)jhi?oW~1vEt@T`hiF#vNRFtTb9OQ{YOT)CY42 z2Y3|C+S~17GW;9b{!rGSZ86pwwWV5xPr;ES?A($g!H9(EWDk$mU_`0n+Vi4}G@ez# zxAOq;;wLgEy3v;8a$`vBHe0K^0$7W&G@F?jc0&oueTf!6>%r$x(ccNP$odZbhm$no z@nbVkRATzGN}9>YBUwa)8x9It>X|KF#sjWgmv~rU@V1esM!%mr{c2mjue7@47xnFG zN4r$Nf+=6o%$*U6`u}0I)lX$26jPaS;m1tdgicj)Z9z9foV;FzN@%7T@Ugh`> zQc`~^C9ycXinwHYm{qD_H;>mKBd-yG#9LBMH1^6N$k4{r3R#zE^m;gr9+xp{Q2MYo zdUSw&-_?_)(u-`SwSlzxa)W(uziV-{=jGL|&c=}WK{A_0ww^X1tB(q_Ya|O>VgJJR zQCY?)X<5?xNJJ6f+4Ne6P7>hM*QY%o52X>_P$*CuJlq&{H`Yjrzy--j8BngS)ZOEq$TOJ4Vc9;1|21uP?86mz`^^ zr_>rjjr}@9G<^Xr(cks%egPA;!FsogBz11507JJ*FK^V)-a<39Nq{`+a37k4J!KAc zi5Pu;1B?akQ6F!x-QVQu9IM*oE~9k|=+b>U7v*F1+~t)DUJ_GV#2Il=_CoVpML)|g z8GUVWR|40#-`zlWxBP_b?AEEO96ubXqW2uCnuE4I&;kEpU=73%15D0$9e&02S+x&9 zpnF{X4MwBT89(Y5c-UmCcqSEIxcYT{87ZfNBiR7Ib(h4_i_qhXX(#roc+@8}O^xql z_9k0kIDaP$Jmnhfta1Jsv3H!T5D_(Q^laxwt+%hjs%` zFBHQ{kyD?UP8ByD<9`$fzFO=B6G3RXa4B03Qk!7jm>Sd%<+3sE!$+;URG(j*52AX4 zQD`}^hNW*l{NSS#dD-y00gvs_Yq*zTzcATrCUqu6b0KreMA{GUL=Fl$u>tQS zT6Vg86jPb`Iq#mx0?m5#O+37l)th#hwZv~Tz7Vhx(iL||2ZOSY} zr_b7&czS*TrwFUpgn>M9fc&TBj$-?9xj%(ktE`I7+~WLnQ)YUh=Gf%<)5o4WeQe5d zChRp#VDNsM9jS6E=ZclLQt=*dm3hq0b+jyA|IQU zGyuI}coQvTbX1Y!nedD|oe`Uyr0`R-?TOFB>QpZeDWUEG&qRPYps3mFZZ!cW7F2ZhV7f)_LSF^hDux6 zeQfQQzU&|yxjsUJnOoP5qC~ zy}JeTQFN^p1K&SC4u;b`mb9RmHpoYJ5esD)!A>D5gTG-d z`%~tHn!F7Fo-}{gB&g!#oHBqz<_jwh5TpigEj6A7w8Gh{HDP|V2mMdynbTACDJJci z#m4#5r&{5e>9fyIo~VZJH09Wu5&L)WV6tCm^TdAe1PfIwsf!65k*aC_pqhLv(DZqH zH~Mnp_sPN6Q6!snRxA;}%^K0FBt4*Mw{9`Q$AW2W-+0z6qont{u}@GuydSbcGFizh z;Wzl<7L(Ox8j)tp5C4?>rV#ghVu7GdN_Ee(&a5$G8a3Rj&6mRSN~w5$Qf==SkI;+_ z5Ab#uQ&*zUYw-8YaOmWX^N@eY z^0V>botq*k%f$t}`+FhSB#c;Qb`Y!Wh5Z7lI~*5Ra6QDUcvi5p|5 zY-&{DPHj*We~)zKw!grl>P)6advUFflT(0ijz}6tDVojXa%q}5J|k)Uv`%qg>I`0} zw(HetIKmO1fEz*_d6{jB7c@6Kx>&7(PFcgf4 ziPX!SA+Z|aUCfk4xdZ2=7t9LRTfD0kwicRw2ZH)UJYkg_J9n-!d5k$rrMdU}!iqCH zS*Ak_Ca>E@z#!oEwvfO`+c=E}*W>A)fd$@8vf4NhpvM**W)>U1)MBTl<3}~b`v|A0 zS|=%LZv{2;Di6%LEgN92i_bHj2ewkbgDsS=j0r}RV{8^1S`sX`77qk5M|r@2PV{j4 z$DhAS?I7ltXlmaBd9@6xGl!$$>>M19V;pn?n`g`z)2?LlAfjbwE-$9uC?ey2S*~up z<-G$jikBN=G7+4fQAgVh+Y6d9ypx(&4K=0+;!wv#yj0b3Cp%J=4d+l+^w0r1ui|s9 z#YV)2G}u?1`^YoxD|V8%gCY(_)vjc7BLOCcp`bbgY=TA$Sv-XhGwDjFwU7^>m<@D| zzbczy%OP?(0MZ(q;%W&?*Xs%7$$k?1Cy3yvj9gutz$w7PleY6Zg?WT+`8daEvze!C zK}*M)%K@?MIjB%hwBBo0hvU*!E1#U4Nq~--o-L1zuDMe{>%3r_(?g0U&Z#w)Z<_2` zebwf2+Pw@}+E(Sm5ZMq`vvkDJpG~- zXK9{a=o*B)mozciVK+ILnPS)5UGui5%na+{M|HHzfly;<2!vB9d3a`&^Q>%2`l@8s z&8xF@y9+x2*XIge*FxT9xXr5+bg~JV(JPh7rKzJ8&@ZJd9?Q}*iZOQCpZ(gK5=Qr` zGGA>jS{WM~-a@lb7w22i5M{HX7^ZiUrqRrr+|#)n0V0C}gCvw|(kzwksuKoXL=kHKc< zUy#)O%POhMlxHM+S)ILL8}Uh)WBd!wioO&^9Go#Ig)IW31TVahwAq!@#xi&(go_BvVDGn!O6?;UOGn+QEi~c6JKb? z*K-aSq^#5qgUd0-%lkSik6hqaH}SKKV|I!BRv`GhRn7t5qMWLrEDNQIE0-;18lxtf20)|;C{~N(O*B6;5;QRYP=~3!&8|32n`hGcAUmivY z$I~28O%bj&K?HJ~Px8k+P{d)Pg9)RHLlNGu+Z0#^2;(4bD&!NFYVzJ^ae!fhSC~2| z!fG_D+dpfra9TmuA!X4Ifct)g25zPAqrh)jjULR)_S@l&5kog^=DF z{%+2HC9Wei#~dz?P=!8;&SQW^#ojEk6PKF8$z$H@=_#9t;XY$Wo#ZEN&evuvmG`nF z5?ICKrj=z%*V`}%v1_|i1*Ya_6meYP0c%2VtX@$ev8gjB-i)<&2|KC|$W3@9v?dj9 z?t2q+$6oBr9DM7zXw)0G=!T42;ML7XZ#Ffs(S3p`kF%Kl#M7N5G!)5lvDmDeN39U( z&2QlcdG%9Sq-b-3UieOU&r-RJc}vnKd9zw8?|SG`_{|EbCOi4nzH{m{EvcO!GZW>H zGafVOy8f@kptAw>?`8}$xe8drI?gBALx)9U{#mjk96I1(WC$^C_XdpC#hy6SiAD>p z<2})Kpb8>@3U&X`19qDT>py-hMTMjn0qF2BXN&R z5s00W^^`To-y@S5>TnHZ+uG~AZ7OeXhZVR{-NiMaZ7$J>FK&vD**ny6I?2=EKjo=F zS&Z$eYMDZev7UVHjF?5*|IS@nWg zi%uTlW$A!=dTFn@2IYA3gfr?lM=tto%39-@Y zG4Y_y4h{OwM`cG|j_Pc{(n9-*-_WpB_b|PXt8Qq$(A$Z#$DhyPnObJC^-t2eKdH&Q z%w2L5!$5b8MIb@sS-Sol)H1#+_D+@2Yf_OlIx%|TkqD=y`=}R@2)Yc@7mICY{teuM9X5S$N3~*#A6Pt zZP_h7q7{tUmCiTjj;yTr$hs@iM#Q&uMY|r3RrMj!--AIE3Svd$iR&9P|E->aSk;*M zx|)a-^T}f(nr|Cnwjef>sfm}PS3kg_BOj>TTqOsS-f1c@Vye_#S+6x?Z+Chc9T_q| z6H_r{E9ib#SfKw7&wHTeuN(?5i(Y`O3mbaCCp-;%LgI9u3o%f;5O2Kh(;cD|^Z2$Y zB_!WD-Go=D?6=fAnP_Eo9K#!QhuQjf`h`W5p^s6 z^ND+!WacaL3xHz))|Q^5o0@M-D~oOIW{YnUDB@BEz*Vs)zeJVC z=i=HGHq71zCUZ=ojw~>y{dCh`vDGEVwX2u`{0(-7eCDQXnlSzx>y|8k zpVlx9`XDEpj1{MfYZHMcJ$zr#Kt+|}0h!2WM>77B$S!NLoKfz4dRX(7nucGoKK+@n zpmtq(Pst>H1#?T6i0FNAUsE8>$^;z#BPd>Z^&;?AHRFoaAvVip)AI z=euH;pW1VzHNYPYm95yj)S6N-F59j@(^t!qE2b$*ckVzfl@LKxU{d zZ{~+-Enf@A)Cn6)eKwVFR#DQn{^t7UPlA4&I1?tq7bp;3P$>~5S5r2;(~QWo(c%^e zYsFmY!jn_y&Q4C9teiR5sUzQL3a*@a1B-eg+?DxsSe=dRmK{# zwX~nlE5qNgFRTgIsA>#*vY>Rau|FW`E^r{% z)>VMiZypT?Bc%cS1B0?1MwPspGqH~lfQKvqYbFeWp2=axRKzRfxNhqSAOxOLUC?b- z6g%-=YT}144#W{dGB?N!4oqdC%)F49jiYykqbwUV9QoKkffcII5r4k*B(IWKaYru; zk{#aC?{-OAWUFXu68O*7?ewB4-L?7Fk)LIZ%2KDgm;t4thSUkUtf)Q z8_)d3_lxh~+K^$rFvO>B2>W!C=RTc}-^VST`zAsfa-q;@Dm%Z5WzE4;i3iVa!k!h= zDCFL(=52kN8~C^~ENwSPboP_0sG3$|jB2 zPGqr}-;l=({-%M=gHM9nG>BUw_VBs|ppk2xUqmb>) zHtDvEMEz2uS;G*lzWNrmv$U5ktb2Kd0QMt+i4osg)wfh17jB=Px zEldGF>2(T~y@?_Cv_0#_?mhlq0w9JuJbt)=Nwd!T{-kK)LYgZ!`|U;CflG(0Nv&SD zQnhyNk%vPOKscqxi#)n`#Pj68b8MLyCVf@KE-iXccvBDDz(#z9$NgSFJVKF%BbYO=0mCQGFI2aPtz;ghmdwA$QV+*(|2=h4To7MofxsB$(h4v-*p-a(d4{4`Jy zPVmob`wG91E`6fN(Nu(CTku}y;W1@}ZT{vJ6sxc2?Y0B>b5-z8731TsgxC3Z7bwy- zh3SaoG2(lEw7`_SxYv}7qYFzUcucLPS%5E|%!WYgC6bS})`~&li}*)?Y389mYRX~e z9VjDDcB;;Ed7fa-#6Zoqd;u76tr_q=D0VLH?HT-l0H%rPgD`%MK1oI;*6fD_68L6WJ2gKb>rpq7wAEemCvoJ>k%vw}J*NG6P>ycnIP?ynC3 zoik>=%Z18pZe!<1KswJVZkNS|&jPrkp zMfk%eIwXP^wowJlcwt8vWJ&So9mFy1PGqkWD#S2j6=p^;sK=! zAG<&W(gEa5a7YVEf>=Bg)^e46HIICzW`4+W@Wd3qfXV08G zckJnty4z)cF@2?p!|5Y8Ky;fQ6Y~MIn>+)tU{-z>ObVc=%lspZk>5|>y4>`7+T}dC zZj;F_viJ%i??VE#hHrRFS@>*xm)CEY#E2eJbDbOaQwQcjvwzeCLw(fhaXyKdg8&Y+ zZMJuTx`$V0pq3~EXl+q5dpO&32)|bNYqE>)mXIGhkp5NOG_|MPLp_W?%t6hv9h$mAVIAERox%V1Tk4 z7>OcW=I4aTXQr|*(N;lAL87JnCX&tI*z1N^$cmX)EL6!Z0=WX2)0^FqHO#)nFf!kR zF4*>L32o&tx{_al5r$pV)M%s{cr%%b>4#t6LyO@z61-bFlx0?QNQVXQCBa*5xq+?7 zaA=SPZO!}~>e3qB66#*_gw~;eI^tXgbwFMufgq9wdJtj@h#^GnCm-PPnL|iklb0rR zB(w%Ym3l zp07{oRL|zQ=?V%r>cTtb<_T>S!rGXMm7evQsK3x!SX}V;#|RhJp;T#5%=C|v;vG(G z&YQGgVyBVKcZh7h{WCy2QrL-htP`S}uM*vCCe{rVbR*hXU)oSe0_x6jK6b(k#tYxQ zVwM9hY6`Q)i6xY|60(6mnk4eGV{m7Ym4a#@f1=FesS_i#r%nM~zDvwcIBSNF3I9zS zp~i1(vh8fBCauLwU*DCb`iW-1`fkP1yno#G0iW-r`1c7k8iFg2mP`=unMx4}bDjmV z5~XVrU&_IP#JoA|_e2nPHltvH5PQY~du9}zkfh#egPfht3UgADQ^IF(R+tyO?UZl! z!tYwQGQS}mzSo4&QI$-lBWhm{gDy8*MNAdAWud z3EV5@)d@NHf4sECbkQV0LwOQe|cc%E-v>QuoI|J|eKG zS(|v0G!+=;W8nI=zD%D4lzH2Mm$)0mXXk+Q%IsTGF!W?kmwV~x ztuvnY!{KrSbV12~Gf|qwe9SzKy0VOUWwcjT;Cz;$u`A2g?krp{bBin<9ce>$Pm8<| z_<9VYIN2zLvjE6fWD6sx4j>iqDS3npYdtRTepaeo46D?KxQb<~ODkEISF+PxxcU|4 ze*B?@q9MCrg$TPXrNnW`-n!TOy6^RM18d*1Y`C<%!EJBt$X{`xjy7t1>gz6d_0P*C z6m33WUE{_XU;MLtnN7ZO)*5b|=^4^ypVIHH{z_kovzNW8TYTz(r3#JB&u8Gcjr%$t z@wJcTwc|kEQ~TEL+O7OC${V!1z`8BV)!aiW9_BrD4N004m7N9VAlo_jqmFVLvsLosGZ% zZtD93ENHsuBnfm_F7KLmZ6s6bzK*zugV}W*@-bVIY)mzOWR*%YamJk2gR`__2kMHm zjrehA&6sm>ZgcNGx0xLtG&gnimCZ|TgZG=7yno}VRYTt3%4!mp?N|Nvh;#LMsmE7t zS<$`ZRe)R^pQgD2gKu-l4yBpy^C7#V#*|m-#uYbANh#z`k0g0d3H9{gwxV*E2pv(13tmp3C>!+>T{mQcy?r7pKSNx@!DEl|HG*59v_= z>vI(>>+!4}0+zx41%2PaNx5Da?7V40SI3y6c(ICGAJWA)lup}FdKaF2rndBM6)75i zS?l))soD+ihE&R&xb&ENH+Qr7OH|OLvp}16)z)t^4vK1sV)@ivB)d?3 zn+fG5oUmSU@6BzmUM4WRt*&)9afV{sCF0ON4dOw|X!J2^NOaLoKHDK5qr@&HDzA3Z zL%gi(gk#RkU_UGTX$$6&-llD*2}8P#L@uD)6t1-vmi?UgJQ1(v)eQE}PM2ZEwmf_% zMJLheaP!0TZVjr$gi)(Ws&m6FUk5Q$Uoz5`vAwm}@vhu5*Mvv((A6JSMrN_Q*ckp8 zmA#EF`%6^^Mxj2wgrNL5&v%t&4;}EkW~nkXG9$4+;YG4owq+LWr1Ui)`U1Npw-s@3 zjvVX+p$9J6nU>Optbk8f?LZ>3wAl85sMZr8l`yo45CF;8m4{>}a(hYvq_L^QUIWr) zGFfFh`?pZ}RZ8=@0Q3tBK8hGTTD*9#!zqQU^Z)2oyB()B@H)D--L`Gcj*(v1T zDKkYU^2B&O#Kpl#f5aDm4DBvCD>;)|Ww}j3Mp>=ZmvKkq8vyePjigqb9WZV=Y3BxP zljuq8ypaEMdVEliP!BV>ia+^tDKfo!7B3#%b#%ozuk9g!URjJ;YA3=1kc3~UsGPJy z?ily>#Pm!7+3ryF@DtSZS)wqb(g7Vy87Pm~9WwH@5to#I%{@@tdhUJF!GQrTLb+Gt z(VEhAx#%hde@_qj1bNTYD|(yLLyX_syMA9;_9^(~dYBgwm9R-=oKe_4sK$G)Y2@!-h~iZd(nrm1Z950~QbRGB`C@zVDIIwZj{SR}Zfm z9vmGTT|c^QcyxI6#$b4Obk*pZbsIKr8y#G?X>@S7v2I&>B1vCH#(m-eHTZ+8$V6O; zFpK)0gKFj=z=?Wpk(ijUZ!VZhj}|{0FCRf|VR3eNm@}-3;Kyp7uD3gLQFYk_j_M3@ z2+ojLr2W@ECGk>GQg$p~w1|5uEq{g*Ci8$?;FB?>~bM@>SzRWxX z9}74?nAXBw2X@n}CNWG zm+5W09!K?nsW|&C17-6z(a0q6iN#L6;lDLXU#N)@KKugZbv%q2FU>b5@H;V|mhb^3 zY5w?`sli#MN=2So6?=c-WH@#D>|{8pyk}L7mToU(hbH>muau9gmiOrGXZ84)g1@Q9 z|J36RiZjXUZxkFnaVJ&D_FVnk+!|x{;elL$=ZrI!HP7v$;QU7J6PaLGa ze{5DND>K%=sc)!nQ(i;X)@W%{|5)Epd3AqZX{b+Q zT31pT|Ev6pQSPipr5AZN^()V&e)W5_w2Sv$)TWwzExl#wh2>Ok)!|D~p1!FTUzb`^ zi#x3^KGx^l!c|`S^`lZhvfiXM_W6=U89xGD=BNH;Bg=F3t+swE#n+ULQa$zc`!;-8 z#oRkEwrTj#P~X_-*tW5ev6sd^=|1U>uL1LeEE#M1NBRazLx?RvuKXr1JTun4cJ6U6 GG5-fdC==lT literal 0 HcmV?d00001 diff --git a/facebook/djangofb/__init__.py b/facebook/djangofb/__init__.py new file mode 100644 index 0000000..68b1b27 --- /dev/null +++ b/facebook/djangofb/__init__.py @@ -0,0 +1,248 @@ +import re +import datetime +import facebook + +from django.http import HttpResponse, HttpResponseRedirect +from django.core.exceptions import ImproperlyConfigured +from django.conf import settings +from datetime import datetime + +try: + from threading import local +except ImportError: + from django.utils._threading_local import local + +__all__ = ['Facebook', 'FacebookMiddleware', 'get_facebook_client', 'require_login', 'require_add'] + +_thread_locals = local() + +class Facebook(facebook.Facebook): + def redirect(self, url): + """ + Helper for Django which redirects to another page. If inside a + canvas page, writes a instead to achieve the same effect. + + """ + if self.in_canvas: + return HttpResponse('' % (url, )) + elif re.search("^https?:\/\/([^\/]*\.)?facebook\.com(:\d+)?", url.lower()): + return HttpResponse('' % url) + else: + return HttpResponseRedirect(url) + + +def get_facebook_client(): + """ + Get the current Facebook object for the calling thread. + + """ + try: + return _thread_locals.facebook + except AttributeError: + raise ImproperlyConfigured('Make sure you have the Facebook middleware installed.') + + +def require_login(next=None, internal=None): + """ + Decorator for Django views that requires the user to be logged in. + The FacebookMiddleware must be installed. + + Standard usage: + @require_login() + def some_view(request): + ... + + Redirecting after login: + To use the 'next' parameter to redirect to a specific page after login, a callable should + return a path relative to the Post-add URL. 'next' can also be an integer specifying how many + parts of request.path to strip to find the relative URL of the canvas page. If 'next' is None, + settings.callback_path and settings.app_name are checked to redirect to the same page after logging + in. (This is the default behavior.) + @require_login(next=some_callable) + def some_view(request): + ... + """ + def decorator(view): + def newview(request, *args, **kwargs): + next = newview.next + internal = newview.internal + + try: + fb = request.facebook + except: + raise ImproperlyConfigured('Make sure you have the Facebook middleware installed.') + + if internal is None: + internal = request.facebook.internal + + if callable(next): + next = next(request.path) + elif isinstance(next, int): + next = '/'.join(request.path.split('/')[next + 1:]) + elif next is None and fb.callback_path and request.path.startswith(fb.callback_path): + next = request.path[len(fb.callback_path):] + elif not isinstance(next, str): + next = '' + + if not fb.check_session(request): + #If user has never logged in before, the get_login_url will redirect to the TOS page + return fb.redirect(fb.get_login_url(next=next)) + + if internal and request.method == 'GET' and fb.app_name: + return fb.redirect('%s%s' % (fb.get_app_url(), next)) + + return view(request, *args, **kwargs) + newview.next = next + newview.internal = internal + return newview + return decorator + + +def require_add(next=None, internal=None, on_install=None): + """ + Decorator for Django views that requires application installation. + The FacebookMiddleware must be installed. + + Standard usage: + @require_add() + def some_view(request): + ... + + Redirecting after installation: + To use the 'next' parameter to redirect to a specific page after login, a callable should + return a path relative to the Post-add URL. 'next' can also be an integer specifying how many + parts of request.path to strip to find the relative URL of the canvas page. If 'next' is None, + settings.callback_path and settings.app_name are checked to redirect to the same page after logging + in. (This is the default behavior.) + @require_add(next=some_callable) + def some_view(request): + ... + + Post-install processing: + Set the on_install parameter to a callable in order to handle special post-install processing. + The callable should take a request object as the parameter. + @require_add(on_install=some_callable) + def some_view(request): + ... + """ + def decorator(view): + def newview(request, *args, **kwargs): + next = newview.next + internal = newview.internal + + try: + fb = request.facebook + except: + raise ImproperlyConfigured('Make sure you have the Facebook middleware installed.') + + if internal is None: + internal = request.facebook.internal + + if callable(next): + next = next(request.path) + elif isinstance(next, int): + next = '/'.join(request.path.split('/')[next + 1:]) + elif next is None and fb.callback_path and request.path.startswith(fb.callback_path): + next = request.path[len(fb.callback_path):] + else: + next = '' + + if not fb.check_session(request): + if fb.added: + if request.method == 'GET' and fb.app_name: + return fb.redirect('%s%s' % (fb.get_app_url(), next)) + return fb.redirect(fb.get_login_url(next=next)) + else: + return fb.redirect(fb.get_add_url(next=next)) + + if not fb.added: + return fb.redirect(fb.get_add_url(next=next)) + + if 'installed' in request.GET and callable(on_install): + on_install(request) + + if internal and request.method == 'GET' and fb.app_name: + return fb.redirect('%s%s' % (fb.get_app_url(), next)) + + return view(request, *args, **kwargs) + newview.next = next + newview.internal = internal + return newview + return decorator + +# try to preserve the argspecs +try: + import decorator +except ImportError: + pass +else: + def updater(f): + def updated(*args, **kwargs): + original = f(*args, **kwargs) + def newdecorator(view): + return decorator.new_wrapper(original(view), view) + return decorator.new_wrapper(newdecorator, original) + return decorator.new_wrapper(updated, f) + require_login = updater(require_login) + require_add = updater(require_add) + +class FacebookMiddleware(object): + """ + Middleware that attaches a Facebook object to every incoming request. + The Facebook object created can also be accessed from models for the + current thread by using get_facebook_client(). + + """ + + def __init__(self, api_key=None, secret_key=None, app_name=None, callback_path=None, internal=None): + self.api_key = api_key or settings.FACEBOOK_API_KEY + self.secret_key = secret_key or settings.FACEBOOK_SECRET_KEY + self.app_name = app_name or getattr(settings, 'FACEBOOK_APP_NAME', None) + self.callback_path = callback_path or getattr(settings, 'FACEBOOK_CALLBACK_PATH', None) + self.internal = internal or getattr(settings, 'FACEBOOK_INTERNAL', True) + self.proxy = None + if getattr(settings, 'USE_HTTP_PROXY', False): + self.proxy = settings.HTTP_PROXY + + def process_request(self, request): + _thread_locals.facebook = request.facebook = Facebook(self.api_key, self.secret_key, app_name=self.app_name, callback_path=self.callback_path, internal=self.internal, proxy=self.proxy) + if not self.internal: + if 'fb_sig_session_key' in request.GET and 'fb_sig_user' in request.GET: + request.facebook.session_key = request.session['facebook_session_key'] = request.GET['fb_sig_session_key'] + request.facebook.uid = request.session['fb_sig_user'] = request.GET['fb_sig_user'] + elif request.session.get('facebook_session_key', None) and request.session.get('facebook_user_id', None): + request.facebook.session_key = request.session['facebook_session_key'] + request.facebook.uid = request.session['facebook_user_id'] + + def process_response(self, request, response): + if not self.internal and request.facebook.session_key and request.facebook.uid: + request.session['facebook_session_key'] = request.facebook.session_key + request.session['facebook_user_id'] = request.facebook.uid + + if request.facebook.session_key_expires: + expiry = datetime.datetime.fromtimestamp(request.facebook.session_key_expires) + request.session.set_expiry(expiry) + + try: + fb = request.facebook + except: + return response + + if not fb.is_session_from_cookie: + # Make sure the browser accepts our session cookies inside an Iframe + response['P3P'] = 'CP="NOI DSP COR NID ADMa OPTa OUR NOR"' + fb_cookies = { + 'expires': fb.session_key_expires, + 'session_key': fb.session_key, + 'user': fb.uid, + } + + expire_time = None + if fb.session_key_expires: + expire_time = datetime.utcfromtimestamp(fb.session_key_expires) + + for k in fb_cookies: + response.set_cookie(self.api_key + '_' + k, fb_cookies[k], expires=expire_time) + response.set_cookie(self.api_key , fb._hash_args(fb_cookies), expires=expire_time) + + return response diff --git a/facebook/djangofb/__init__.pyc b/facebook/djangofb/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bac838589dc77359dce887b49c5503ef6028874c GIT binary patch literal 9881 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 + {% comment %} + We can use {{ fbuser }} to get at the current user. + {{ fbuser.id }} will be the user's UID, and {{ fbuser.language }} + is his/her favorite language (Python :-). + {% endcomment %} + Welcome, ! + + +
+ Your favorite language is {{ fbuser.language|escape }}. +

+ +
+

+ +
+ + +
+
+
diff --git a/facebook/djangofb/default_app/urls.py b/facebook/djangofb/default_app/urls.py new file mode 100644 index 0000000..8501844 --- /dev/null +++ b/facebook/djangofb/default_app/urls.py @@ -0,0 +1,7 @@ +from django.conf.urls.defaults import * + +urlpatterns = patterns('{{ project }}.{{ app }}.views', + (r'^$', 'canvas'), + # Define other pages you want to create here +) + diff --git a/facebook/djangofb/default_app/views.py b/facebook/djangofb/default_app/views.py new file mode 100644 index 0000000..931d621 --- /dev/null +++ b/facebook/djangofb/default_app/views.py @@ -0,0 +1,37 @@ +from django.http import HttpResponse +from django.views.generic.simple import direct_to_template +#uncomment the following two lines and the one below +#if you dont want to use a decorator instead of the middleware +#from django.utils.decorators import decorator_from_middleware +#from facebook.djangofb import FacebookMiddleware + +# Import the Django helpers +import facebook.djangofb as facebook + +# The User model defined in models.py +from models import User + +# We'll require login for our canvas page. This +# isn't necessarily a good idea, as we might want +# to let users see the page without granting our app +# access to their info. See the wiki for details on how +# to do this. +#@decorator_from_middleware(FacebookMiddleware) +@facebook.require_login() +def canvas(request): + # Get the User object for the currently logged in user + user = User.objects.get_current() + + # Check if we were POSTed the user's new language of choice + if 'language' in request.POST: + user.language = request.POST['language'][:64] + user.save() + + # User is guaranteed to be logged in, so pass canvas.fbml + # an extra 'fbuser' parameter that is the User object for + # the currently logged in user. + return direct_to_template(request, 'canvas.fbml', extra_context={'fbuser': user}) + +@facebook.require_login() +def ajax(request): + return HttpResponse('hello world') diff --git a/facebook/djangofb/models.py b/facebook/djangofb/models.py new file mode 100644 index 0000000..b5d2c62 --- /dev/null +++ b/facebook/djangofb/models.py @@ -0,0 +1,36 @@ +from django.db import models +from django.utils.html import escape +from django.utils.safestring import mark_safe + +FB_MESSAGE_STATUS = ( + (0, 'Explanation'), + (1, 'Error'), + (2, 'Success'), +) + +class MessageManager(models.Manager): + def get_and_delete_all(self, uid): + messages = [] + for m in self.filter(uid=uid): + messages.append(m) + m.delete() + return messages + +class Message(models.Model): + """Represents a message for a Facebook user.""" + uid = models.CharField(max_length=25) + status = models.IntegerField(choices=FB_MESSAGE_STATUS) + message = models.CharField(max_length=300) + objects = MessageManager() + + def __unicode__(self): + return self.message + + def _fb_tag(self): + return self.get_status_display().lower() + + def as_fbml(self): + return mark_safe(u'' % ( + self._fb_tag(), + escape(self.message), + )) diff --git a/facebook/webappfb.py b/facebook/webappfb.py new file mode 100644 index 0000000..5fdf77a --- /dev/null +++ b/facebook/webappfb.py @@ -0,0 +1,170 @@ +# +# webappfb - Facebook tools for Google's AppEngine "webapp" Framework +# +# Copyright (c) 2009, Max Battcher +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the author nor the names of its contributors may +# be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS``AS IS'' AND ANY +# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +from google.appengine.api import memcache +from google.appengine.ext.webapp import RequestHandler +from facebook import Facebook +import yaml + +""" +Facebook tools for Google AppEngine's object-oriented "webapp" framework. +""" + +# This global configuration dictionary is for configuration variables +# for Facebook requests such as the application's API key and secret +# key. Defaults to loading a 'facebook.yaml' YAML file. This should be +# useful and familiar for most AppEngine development. +FACEBOOK_CONFIG = yaml.load(file('facebook.yaml', 'r')) + +class FacebookRequestHandler(RequestHandler): + """ + Base class for request handlers for Facebook apps, providing useful + Facebook-related tools: a local + """ + + def _fbconfig_value(self, name, default=None): + """ + Checks the global config dictionary and then for a class/instance + variable, using a provided default if no value is found. + """ + if name in FACEBOOK_CONFIG: + default = FACEBOOK_CONFIG[name] + + return getattr(self, name, default) + + def initialize(self, request, response): + """ + Initialize's this request's Facebook client. + """ + super(FacebookRequestHandler, self).initialize(request, response) + + app_name = self._fbconfig_value('app_name', '') + api_key = self._fbconfig_value('api_key', None) + secret_key = self._fbconfig_value('secret_key', None) + + self.facebook = Facebook(api_key, secret_key, + app_name=app_name) + + require_app = self._fbconfig_value('require_app', False) + require_login = self._fbconfig_value('require_login', False) + need_session = self._fbconfig_value('need_session', False) + check_session = self._fbconfig_value('check_session', True) + + self._messages = None + self.redirecting = False + + if require_app or require_login: + if not self.facebook.check_session(request): + self.redirect(self.facebook.get_login_url(next=request.path)) + self.redirecting = True + return + elif check_session: + self.facebook.check_session(request) # ignore response + + # NOTE: require_app is deprecated according to modern Facebook login + # policies. Included for completeness, but unnecessary. + if require_app and not self.facebook.added: + self.redirect(self.facebook.get_add_url(next=request.path)) + self.redirecting = True + return + + if not (require_app or require_login) and need_session: + self.facebook.auth.getSession() + + def redirect(self, url, **kwargs): + """ + For Facebook canvas pages we should use instead of + a normal redirect. + """ + if self.facebook.in_canvas: + self.response.clear() + self.response.out.write('' % (url, )) + else: + super(FacebookRequestHandler, self).redirect(url, **kwargs) + + def add_user_message(self, kind, msg, detail='', time=15 * 60): + """ + Add a message to the current user to memcache. + """ + if self.facebook.uid: + key = 'messages:%s' % self.facebook.uid + self._messages = memcache.get(key) + message = { + 'kind': kind, + 'message': msg, + 'detail': detail, + } + if self._messages is not None: + self._messages.append(message) + else: + self._messages = [message] + memcache.set(key, self._messages, time=time) + + def get_and_delete_user_messages(self): + """ + Get all of the messages for the current user; removing them. + """ + if self.facebook.uid: + key = 'messages:%s' % self.facebook.uid + if not hasattr(self, '_messages') or self._messages is None: + self._messages = memcache.get(key) + memcache.delete(key) + return self._messages + return None + +class FacebookCanvasHandler(FacebookRequestHandler): + """ + Request handler for Facebook canvas (FBML application) requests. + """ + + def canvas(self, *args, **kwargs): + """ + This will be your handler to deal with Canvas requests. + """ + raise NotImplementedError() + + def get(self, *args): + """ + All valid canvas views are POSTS. + """ + # TODO: Attempt to auto-redirect to Facebook canvas? + self.error(404) + + def post(self, *args, **kwargs): + """ + Check a couple of simple safety checks and then call the canvas + handler. + """ + if self.redirecting: return + + if not self.facebook.in_canvas: + self.error(404) + return + + self.canvas(*args, **kwargs) + +# vim: ai et ts=4 sts=4 sw=4 diff --git a/facebook/wsgi.py b/facebook/wsgi.py new file mode 100644 index 0000000..f6a790d --- /dev/null +++ b/facebook/wsgi.py @@ -0,0 +1,129 @@ +"""This is some simple helper code to bridge the Pylons / PyFacebook gap. + +There's some generic WSGI middleware, some Paste stuff, and some Pylons +stuff. Once you put FacebookWSGIMiddleware into your middleware stack, +you'll have access to ``environ["pyfacebook.facebook"]``, which is a +``facebook.Facebook`` object. If you're using Paste (which includes +Pylons users), you can also access this directly using the facebook +global in this module. + +""" + +# Be careful what you import. Don't expect everyone to have Pylons, +# Paste, etc. installed. Degrade gracefully. + +from facebook import Facebook + +__docformat__ = "restructuredtext" + + +# Setup Paste, if available. This needs to stay in the same module as +# FacebookWSGIMiddleware below. + +try: + from paste.registry import StackedObjectProxy + from webob.exc import _HTTPMove + from paste.util.quoting import strip_html, html_quote, no_quote +except ImportError: + pass +else: + facebook = StackedObjectProxy(name="PyFacebook Facebook Connection") + + + class CanvasRedirect(_HTTPMove): + + """This is for canvas redirects.""" + + title = "See Other" + code = 200 + template = '' + + def html(self, environ): + """ text/html representation of the exception """ + body = self.make_body(environ, self.template, html_quote, no_quote) + return body + +class FacebookWSGIMiddleware(object): + + """This is WSGI middleware for Facebook.""" + + def __init__(self, app, config, facebook_class=Facebook): + """Initialize the Facebook middleware. + + ``app`` + This is the WSGI application being wrapped. + + ``config`` + This is a dict containing the keys "pyfacebook.apikey" and + "pyfacebook.secret". + + ``facebook_class`` + If you want to subclass the Facebook class, you can pass in + your replacement here. Pylons users will want to use + PylonsFacebook. + + """ + self.app = app + self.config = config + self.facebook_class = facebook_class + + def __call__(self, environ, start_response): + config = self.config + real_facebook = self.facebook_class(config["pyfacebook.apikey"], + config["pyfacebook.secret"]) + registry = environ.get('paste.registry') + if registry: + registry.register(facebook, real_facebook) + environ['pyfacebook.facebook'] = real_facebook + return self.app(environ, start_response) + + +# The remainder is Pylons specific. + +try: + import pylons + from pylons.controllers.util import redirect_to as pylons_redirect_to + from routes import url_for +except ImportError: + pass +else: + + + class PylonsFacebook(Facebook): + + """Subclass Facebook to add Pylons goodies.""" + + def check_session(self, request=None): + """The request parameter is now optional.""" + if request is None: + request = pylons.request + return Facebook.check_session(self, request) + + # The Django request object is similar enough to the Paste + # request object that check_session and validate_signature + # should *just work*. + + def redirect_to(self, url): + """Wrap Pylons' redirect_to function so that it works in_canvas. + + By the way, this won't work until after you call + check_session(). + + """ + if self.in_canvas: + raise CanvasRedirect(url) + pylons_redirect_to(url) + + def apps_url_for(self, *args, **kargs): + """Like url_for, but starts with "http://apps.facebook.com".""" + return "http://apps.facebook.com" + url_for(*args, **kargs) + + + def create_pylons_facebook_middleware(app, config): + """This is a simple wrapper for FacebookWSGIMiddleware. + + It passes the correct facebook_class. + + """ + return FacebookWSGIMiddleware(app, config, + facebook_class=PylonsFacebook) diff --git a/get_map.py b/get_map.py new file mode 100644 index 0000000..61bed3c --- /dev/null +++ b/get_map.py @@ -0,0 +1,20 @@ +import pdb +import urllib +import socket + +""" +http://maps.google.com/maps/api/staticmap?center=Brooklyn+Bridge,New+York,NY&zoom=14&size=512x512&maptype=roadmap +&markers=color:blue|label:S|40.702147,-74.015794&markers=color:green|label:G|40.711614,-74.012318 +&markers=color:red|color:red|label:C|40.718217,-73.998284&sensor=false +""" + +timeout = 4 +socket.setdefaulttimeout(timeout) + +api_url = 'http://maps.google.com/maps/api/staticmap?center=1029+King+St+W,Toronto&zoom=14&size=100x100&maptype=roadmap&sensor=false&markers=color:red|label:X|1029+King+St+W,Toronto' +fp = urllib.urlopen(api_url) +map = fp.read() + +fo = open('/var/www/massivecoupon/media/images/map.png', 'w') +fo.write(map) +fo.close() diff --git a/libs/__init__.py b/libs/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/libs/__init__.pyc b/libs/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2692501611d810d925cd6aed18bcfee2fef644de GIT binary patch literal 143 zcmcckiI?jIZ;N*_0~9a9^vlc3^>Y)8 zi!;kolk-ap^7Hid^w0!yGLwq+ current ids:", curids + + # Sort forms by order (helps validating order #s after) + allforms = list(formset.forms) + allforms.sort() + + # Process all forms + order = 1 + for form in allforms: + data = form.cleaned_data + # If empty form, skip it + if not data: + continue + print "> FOUND: id=%s, order=%s, delete=%s" % (data['id'], data['order'], data['delete']) + # If we have an id and its not part of current instance, raise tampering error + if data['id'] and data['id'] not in curids: + raise Exception('Detected form tampering during instance save: instance id# %d has no %s id# %d' % (instance.id, which, data['id'])) + if data['id']: + # Operation: update/delete + row = curvalues_d[data['id']] + if data['delete'] or data_blank(data): + print "- Removing %s id# %s" % (which, row.id) + row.delete() + else: + if (ordered and row.order != order) or getattr(row,'stage', 1) != 1 or data_changed(row, data): + print "- Update %s id# %s" % (which, row.id) + if ordered: row.order = order + data_update(row, data) + row.save() + else: + print "- Skipping unchanged %s id# %s" % (which, row.id) + pass + order += 1 + curids.remove(data['id']) + elif not data_blank(data) and not data['delete']: + # Operation: add + print "- Adding %s id# %s" % (which, "???") + row = model(**{ fkname: instance }) + if ordered: row.order = order + data_update(row, data) + row.save() + print "- Added as id=%s" % (row.id,) + order += 1 + + # Remove items that disappeared from form (shouldn't happen, but...) + for curid in curids: + row = curvalues_d[curid] + print "- REMOVING unknown %s id# %s" % (which, row.id) + row.delete() + + # Done: updateSet. + +def makesetdata(row): + return dict(id=row.id, order=getattr(row, 'order', 0), delete='') + +def updateRelations(rel, table, maxvalues, form, rel_filter=None): + """ + Logic to update generic relations. + Requires: + - rel : relation to update + - table: database model + - maxvalues : maximum # of relations to support + - form : CollecitonForm instance + - rel_filter : filter to apply to relation to find eligible rows to update + Will use CollectionForm data to update relations for a given model. Does a proper "sync", ie. + it doesn't just delete and re-create everything (although it wouldn't be a big deal, as its + just relations that are updated, not actual objects). + """ + + if rel_filter and isinstance(rel_filter, dict): curvalues = rel.filter(**rel_filter) + else: curvalues = rel.all() + curvalues_d = dict( [ (_.id, _) for _ in curvalues ] ) + curids = curvalues_d.keys() # Keep track of what we need to remove afterwards + newvalues = filter(None, map(siteutils.to_int, form.cleaned_data.values())) + for idx0 in range(min(len(newvalues), maxvalues)): + vid = newvalues[idx0] + if not vid: continue + idx = idx0+1 + if vid in curvalues_d: + if vid in curids: curids.remove(vid) # Just in case we try to remove twice! + continue + q = table.objects.filter(id=vid) or None + if not q: + continue + rel.add(q[0]) + for vid in curids: + rel.remove(curvalues_d[vid]) + + # Done: updateRelation + diff --git a/libs/formutils.pyc b/libs/formutils.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be745f5a75b98192e6797ec817def2e0751e0427 GIT binary patch literal 8549 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.runtimeStyle.backgroundImage = "none", +this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')", +this.src = "images/none.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''), +this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')", +this.runtimeStyle.backgroundImage = "none")),this.pngSet=true)); +} +* html #sidebar .discuss .t{ + filter:progid:dximagetransform.microsoft.alphaimageloader(src='images/bg-discuss-t.png', sizingmethod='crop'); + background:none; +} +* html #sidebar .discuss .b{ + filter:progid:dximagetransform.microsoft.alphaimageloader(src='images/bg-discuss-b.png', sizingmethod='crop'); + background:none; +} +* html #sidebar .discuss .txt .bg{ + filter:progid:dximagetransform.microsoft.alphaimageloader(src='images/bg-discuss-txt.png', sizingmethod='crop'); + background:none; +} +* html #sidebar .sb-box .t{ + filter:progid:dximagetransform.microsoft.alphaimageloader(src='images/bg-sb-box-t.png', sizingmethod='crop'); + background:none; +} +* html #sidebar .sb-box .b{ + filter:progid:dximagetransform.microsoft.alphaimageloader(src='images/bg-sb-box-b.png', sizingmethod='crop'); + background:none; +} +#sidebar .social-services li{ + display:inline; + zoom:1; + margin:0 -4px 0 -3px; +} \ No newline at end of file diff --git a/media/css/massivecoupon.css b/media/css/massivecoupon.css new file mode 100644 index 0000000..d40febd --- /dev/null +++ b/media/css/massivecoupon.css @@ -0,0 +1,74 @@ +.hidden { + display: none; +} + +.toggle-link, .cmd { + color: white; + background-color: #e18a10; + padding: 1px 4px; + -moz-border-radius: 2px; + font-size: 77%; + text-decoration: none; +} + +.help-list { + border: 2px solid #CCD5E4; + background-color: #EFF2F7; + -moz-border-radius: 0.5em; + margin-bottom: 1em; + padding: 3px 5px; +} +.help-list ul li { + list-style-position: outside; + list-style-type: disc; + margin-left: 1.5em; +} + +.form-body { +} + +.form-label { + margin-top:20px; + margin-bottom: 10px; + font-size: 120%; + color: #f19a20; + font-weight: bold; +} +.form-label-highlight { + color: #e00; +} + +div.fieldWrapper { + padding: 2px; + margin: 3px 0; +} +div.fieldWrapper label { + display: block; + float: left; + text-align: right; + padding-right: 1em; + width: 150px; + font-family: tahoma; + font-size: 12.5pt; +} +div.fieldWrapper label.w200 { + width: 200px; +} +div.fieldWrapper label.w250 { + width: 250px; +} +div.fieldWrapper label.w300 { + width: 300px; +} + +div.fieldWrapper input { + border: 1px solid #bbb; + padding: 3px; + font-size: 11.5pt; + font-family: tahoma; +} + +div.fieldWrapper input.focused { + background-color: #ffff88; +} + diff --git a/media/css/yui2.8-reset-fonts-grids.css b/media/css/yui2.8-reset-fonts-grids.css new file mode 100644 index 0000000..55bff7b --- /dev/null +++ b/media/css/yui2.8-reset-fonts-grids.css @@ -0,0 +1,7 @@ +/* +Copyright (c) 2009, Yahoo! Inc. All rights reserved. +Code licensed under the BSD License: +http://developer.yahoo.net/yui/license.txt +version: 2.8.0r4 +*/ +html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}del,ins{text-decoration:none;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:baseline;}sub{vertical-align:baseline;}legend{color:#000;}input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}input,button,textarea,select{*font-size:100%;}body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}select,input,button,textarea,button{font:99% arial,helvetica,clean,sans-serif;}table{font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}body{text-align:center;}#doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7{margin:auto;text-align:left;width:57.69em;*width:56.25em;}#doc2{width:73.076em;*width:71.25em;}#doc3{margin:auto 10px;width:auto;}#doc4{width:74.923em;*width:73.05em;}.yui-b{position:relative;}.yui-b{_position:static;}#yui-main .yui-b{position:static;}#yui-main,.yui-g .yui-u .yui-g{width:100%;}.yui-t1 #yui-main,.yui-t2 #yui-main,.yui-t3 #yui-main{float:right;margin-left:-25em;}.yui-t4 #yui-main,.yui-t5 #yui-main,.yui-t6 #yui-main{float:left;margin-right:-25em;}.yui-t1 .yui-b{float:left;width:12.30769em;*width:12.00em;}.yui-t1 #yui-main .yui-b{margin-left:13.30769em;*margin-left:13.05em;}.yui-t2 .yui-b{float:left;width:13.8461em;*width:13.50em;}.yui-t2 #yui-main .yui-b{margin-left:14.8461em;*margin-left:14.55em;}.yui-t3 .yui-b{float:left;width:23.0769em;*width:22.50em;}.yui-t3 #yui-main .yui-b{margin-left:24.0769em;*margin-left:23.62em;}.yui-t4 .yui-b{float:right;width:13.8456em;*width:13.50em;}.yui-t4 #yui-main .yui-b{margin-right:14.8456em;*margin-right:14.55em;}.yui-t5 .yui-b{float:right;width:18.4615em;*width:18.00em;}.yui-t5 #yui-main .yui-b{margin-right:19.4615em;*margin-right:19.125em;}.yui-t6 .yui-b{float:right;width:23.0769em;*width:22.50em;}.yui-t6 #yui-main .yui-b{margin-right:24.0769em;*margin-right:23.62em;}.yui-t7 #yui-main .yui-b{display:block;margin:0 0 1em 0;}#yui-main .yui-b{float:none;width:auto;}.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{float:left;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u{float:right;}.yui-g div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first,.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-gc div.first div.first{float:left;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf{width:49.1%;}.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{width:32%;margin-left:1.99%;}.yui-gb .yui-u{*margin-left:1.9%;*width:31.9%;}.yui-gc div.first,.yui-gd .yui-u{width:66%;}.yui-gd div.first{width:32%;}.yui-ge div.first,.yui-gf .yui-u{width:74.2%;}.yui-ge .yui-u,.yui-gf div.first{width:24%;}.yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first{margin-left:0;}.yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u{width:49%;*width:48.1%;*margin-left:0;}.yui-g .yui-g .yui-u{width:48.1%;}.yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%;}.yui-g .yui-gc div.first,.yui-gd .yui-g{width:66%;}.yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%;}.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0;}.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%;}.yui-g .yui-gb .yui-u{_margin-left:1.0%;}.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%;}.yui-gb .yui-gd div.first{*width:31%;_width:29.5%;}.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u{width:32%;_float:right;margin-right:0;_margin-left:0;}.yui-gb .yui-gc div.first{width:66%;*float:left;*margin-left:0;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u{margin:0;}.yui-gb .yui-gb .yui-u{_margin-left:.7%;}.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0;}.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0;}.yui-gb .yui-gd div.first{width:32%;}.yui-g .yui-gd div.first{_width:29.9%;}.yui-ge .yui-g{width:24%;}.yui-gf .yui-g{width:74.2%;}.yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u{float:right;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first{float:left;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}.yui-ge div.first .yui-gd .yui-u{width:65%;}.yui-ge div.first .yui-gd div.first{width:32%;}#hd:after,#bd:after,#ft:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after{content:".";display:block;height:0;clear:both;visibility:hidden;}#hd,#bd,#ft,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf{zoom:1;} \ No newline at end of file diff --git a/media/css/yui3-base-reset-fonts-grids.css b/media/css/yui3-base-reset-fonts-grids.css new file mode 100644 index 0000000..4da5eb9 --- /dev/null +++ b/media/css/yui3-base-reset-fonts-grids.css @@ -0,0 +1,29 @@ +/* +Copyright (c) 2009, Yahoo! Inc. All rights reserved. +Code licensed under the BSD License: +http://developer.yahoo.net/yui/license.txt +version: 3.0.0 +build: 1549 +*/ +body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}select,input,button,textarea{font:99% arial,helvetica,clean,sans-serif;}table{font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}/* +Copyright (c) 2009, Yahoo! Inc. All rights reserved. +Code licensed under the BSD License: +http://developer.yahoo.net/yui/license.txt +version: 3.0.0 +build: 1549 +*/ +html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}/* +Copyright (c) 2009, Yahoo! Inc. All rights reserved. +Code licensed under the BSD License: +http://developer.yahoo.net/yui/license.txt +version: 3.0.0 +build: 1549 +*/ +body{text-align:center;margin-left:auto;margin-right:auto;}.yui-d0,.yui-d1,.yui-d1f,.yui-d2,.yui-d2f,.yui-d3,.yui-d3f{margin:auto;text-align:left;width:57.69em;*width:56.25em;}.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6{margin:auto;text-align:left;width:100%;}.yui-d0{margin:auto 10px;width:auto;}.yui-d0f{width:100%;}.yui-d2{width:73.076em;*width:71.25em;}.yui-d2f{width:950px;}.yui-d3{width:74.923em;*width:73.05em;}.yui-d3f{width:974px;}.yui-b{position:relative;}.yui-b{_position:static;}.yui-main .yui-b{position:static;}.yui-main{width:100%;}.yui-t1 .yui-main,.yui-t2 .yui-main,.yui-t3 .yui-main{float:right;margin-left:-25em;}.yui-t4 .yui-main,.yui-t5 .yui-main,.yui-t6 .yui-main{float:left;margin-right:-25em;}.yui-t1 .yui-b{float:left;width:12.30769em;*width:12.00em;}.yui-t1 .yui-main .yui-b{margin-left:13.30769em;*margin-left:12.975em;}.yui-t2 .yui-b{float:left;width:13.84615em;*width:13.50em;}.yui-t2 .yui-main .yui-b{margin-left:14.84615em;*margin-left:14.475em;}.yui-t3 .yui-b{float:left;width:23.0769em;*width:22.50em;}.yui-t3 .yui-main .yui-b{margin-left:24.0769em;*margin-left:23.475em;}.yui-t4 .yui-b{float:right;width:13.8456em;*width:13.50em;}.yui-t4 .yui-main .yui-b{margin-right:14.8456em;*margin-right:14.475em;}.yui-t5 .yui-b{float:right;width:18.4615em;*width:18.00em;}.yui-t5 .yui-main .yui-b{margin-right:19.4615em;*margin-right:18.975em;}.yui-t6 .yui-b{float:right;width:23.0769em;*width:22.50em;}.yui-t6 .yui-main .yui-b{margin-right:24.0769em;*margin-right:23.475em;}.yui-main .yui-b{float:none;width:auto;}.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{float:left;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u{float:right;}.yui-g div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first,.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-gc div.first div.first{float:left;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf{width:49.1%;}.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{width:32%;margin-left:2.0%;}.yui-gb .yui-u{*width:31.8%;*margin-left:1.9%;}.yui-gc div.first,.yui-gd .yui-u{width:66%;_width:65.7%;}.yui-gd div.first{width:32%;_width:31.5%;}.yui-ge div.first,.yui-gf .yui-u{width:74.2%;_width:74%;}.yui-ge .yui-u,.yui-gf div.first{width:24%;_width:23.8%;}.yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first{margin-left:0;}.yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u{width:49%;*width:48.1%;*margin-left:0;}.yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%;}.yui-g .yui-gc div.first,.yui-gd .yui-g{width:66%;}.yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%;}.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0;}.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%;}.yui-g .yui-gb .yui-u{_margin-left:1.0%;}.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%;}.yui-gb .yui-gd div.first{*width:31%;_width:29.5%;}.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u{width:32%;_float:right;margin-right:0;_margin-left:0;}.yui-gb .yui-gc div.first{width:66%;*float:left;*margin-left:0;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u{margin:0;}.yui-gb .yui-gb .yui-u{_margin-left:.7%;}.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0;}.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0;}.yui-gb .yui-gd div.first{width:32%;}.yui-g .yui-gd div.first{_width:29.9%;}.yui-ge .yui-g{width:24%;}.yui-gf .yui-g{width:74.2%;}.yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u{float:right;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first{float:left;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}.yui-ge div.first .yui-gd .yui-u{width:65%;}.yui-ge div.first .yui-gd div.first{width:32%;}#bd:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after,.yui-t1:after,.yui-t2:after,.yui-t3:after,.yui-t4:after,.yui-t5:after,.yui-t6:after{content:".";display:block;height:0;clear:both;visibility:hidden;}#bd,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6{zoom:1;}/* +Copyright (c) 2009, Yahoo! Inc. All rights reserved. +Code licensed under the BSD License: +http://developer.yahoo.net/yui/license.txt +version: 3.0.0 +build: 1549 +*/ +h1{font-size:138.5%;}h2{font-size:123.1%;}h3{font-size:108%;}h1,h2,h3{margin:1em 0;}h1,h2,h3,h4,h5,h6,strong{font-weight:bold;}abbr,acronym{border-bottom:1px dotted #000;cursor:help;}em{font-style:italic;}blockquote,ul,ol,dl{margin:1em;}ol,ul,dl{margin-left:2em;}ol li{list-style:decimal outside;}ul li{list-style:disc outside;}dl dd{margin-left:1em;}th,td{border:1px solid #000;padding:.5em;}th{font-weight:bold;text-align:center;}caption{margin-bottom:.5em;text-align:center;}p,fieldset,table,pre{margin-bottom:1em;}input[type=text],input[type=password],textarea{width:12.25em;*width:11.9em;} \ No newline at end of file diff --git a/media/deal_images/blah.jpg b/media/deal_images/blah.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf457853eae56b9a8fe6e9821b934c003a5ccb20 GIT binary patch literal 36442 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 z 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 literal 0 HcmV?d00001 diff --git a/media/deal_images/breville_banner0909.gif b/media/deal_images/breville_banner0909.gif new file mode 100644 index 0000000000000000000000000000000000000000..35827579ccb93b6f22b4cf840517b01395cc046c GIT binary patch literal 23184 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

Gi8o#t}>4#^JxY7vXVRQf#B(yt1AM=$GEw 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 F|Je>+X$b%T literal 0 HcmV?d00001 diff --git a/media/deal_images/hammam_.jpg b/media/deal_images/hammam_.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5fb8ccbadce3e033d4fb72f77ed82701ce6c483 GIT binary patch literal 45203 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

Gi8o#t}>4#^JxY7vXVRQf#B(yt1AM=$GEw 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 F|Je>+X$b%T literal 0 HcmV?d00001 diff --git a/media/deal_images/hammam__.jpg b/media/deal_images/hammam__.jpg new file mode 100755 index 0000000000000000000000000000000000000000..c5fb8ccbadce3e033d4fb72f77ed82701ce6c483 GIT binary patch literal 45203 zcmb4pRa6|j6Yt{guElk6cXwUf9g4eKafiYp#f!r(Qrx?^JBvecXmM%r%KiQi_uS_@ zImtt2GRfrROwP>w{%!o*2jHtKt0@Bz5D);W|24qB0|2Q~u!|D_prr-i0002!|Mmaq z-(LWkg0G{kzoP?Pkc+=Foq@9>or;>4?!Rq-0ssXG85tP~<-Y+11qBri8y)RG!o$MC zz$U;WBqYEiARr>8CLvu& z5Iz7A0r7u_M?pqKM@B+NLO?`9CIFxi(xVdb$uWRz(TIJbvl#iyTZTyF^_EBld@F_z z(3$M)W5BJqf(rV}ezA9C%q)rq4%ux=l}G=nq(u0i_W!pZ0Dy#yfQSM>{f{S306;(n zAR}O+AR!?m{ZHn9!UV{K^n7wCL?GMftn!wnTVe*Ep#u_rc}BfEK|Am=s(^3nzbydv zfAWX~NCW^Gz#Aj2@beQzN<9-yIz%=pSUfk-Ic&E?x!8>W2|W`24Jxu?ke zI4j%!%Q$#f;_Xc5fKQBCzfVxW%hH~DK%zEfq4vAF1;A4$#?4h65SEZ}1}9w=Hi8hn4hm=)ny9MevO`46K6 zf~1&36^uoFfXJMkqf$|H+s&{E+)O8eHBf`^T9v`QX$NCM_b-+`3m4It`dz3Rk0w6D zv~Ijtze$WrUdiv<1_4sSFM(HvmLLt0zQWAE!Z}=DJV@OvJ^*QA;!iv+I)wBfu${q* zz1uX|s`^yk=~D6F>UHggYJ@waI+K|2vD@`ej`-pi#S47!z;#AD30^ig ze0zW)zt8di`MzC8`K(uzhbBIKCB0en-5)KrqvNtA&)ktY7KiD2+Gg?8tFCZfWrgal zhn7K$ru_UDckOMn4PeTWa4sP42k*{`MdAA^ECbscQX?R&=J}hNDTP-5-Jw2jPLCS- z3jt&zYPlZ?(lZF#;93561#wPjI>*xdVmQyQPSl(xe(tR(7Q{iN!VBA zPz$IJT;#6YbxZR;Ea9-OhaDyo&MYt3eFuD-2J~XvAYydf9U_EvZ&$zCEX@YflKcZq zEVc!{z0bZUonSfSCa85AnaN7-+FWY+2dLYoW(uL?ePZkM@ufv=B@rUp!MWQNr-ZmO zRu$ZA%aL!~RTE}Us)NzA*pg%J^cTEbRw){ z$z^(>^GJKQQTtT>oj4CK)s{s$0YB-)=2KKJU=LSefQ%xII*4IC-s-p!c{;()z%|gR5L)3A@KFN zf!+2?1K7Xy{Ym`_i@06oX)S>0wk_xh_rP`B{vZr$j>NSVvLgrB^(r$wQVz&=SB`24 ze$QQ+-TdH4OeC-XQIg?g!3WLNnboNC%{;(HKW2(1>@HF!2u8uR@^vWM=G%Y-(tl(D zMd7kTX1$)&<;*hn8eDx-?C%amqa3Ev;^5woW}SeBi~#)g`(<7yVZ<#U>z-Bx`7z6N zCNArOfE8nX5{_!S{`B(HBzQuDDhM_*9D4M*wfGY^q$a$JKd+L1cD2Kg=~OnHE=p&gZDyapA6hqy2;L!Y^4-K+K|m{aRvw zt1@RB*%0uqSGw=0$t`OH=+k7aflR1aWhNRII*~grJbnIIVEUxcjIyvdfACZZFW#|d zBWCR#K{#PUDU`e^XQ?5Mhe3>q4XV^cF~~UJZaew1b=TAdf6+-xe{plvS@W(oB=O5@ zRI19FOk1I#t`E{*!TqB;#35Oj#5M0morbb4ugvx5D3zsQSu4j#Azz3@NJ){~lCsP< z6`=*C>t!3mpuIq&qe!fx-IHXEDNpNl+o9$4NL|uBTj2Cyu|{}Yc*!OA_JqY=kHn!N zht!Z7%o8X~qc`#aXp-}H#-)hW_4ic77CCjp9B^5pbK8W+yvQ8!IVj~>J<1vXR0xZ1kNNtFFReMRo*6ojv5;ss+3V=ew~YKh;-fgWzZe6{y)7CqpUcdTfCM^!?DU5>oNQEWgT zUSvg^MfZ|jM4g9aoZ)CbSVxrfJF}1^-0LA-H1;s1fxbnFiiDeR|DouPfK?n6S`sN^+Uc%o~rgPJu1=gNt z-Q{9WD~!v(PoUOyP<$Ym3UOV7vV~u8#Hq`Cw?UPPO@P+iy%9k&)2G`fdn-HbXY;O3C}*Q2PFwOm4#1B z_DOfvqz-fUk1u8f1;QG6nsPIWQ3QeYv#=l6{^J#YLak}o1g8BA5z7B0)D3l@)VQEG zZxCL343uKt8Yw9*^|$Iz2xbH@lH9pSAVj=9{u&z@Dt;%YL2M{w;DW_jK*309n38G{ z{q*J73y!6LJ}Seg;-WHo6q2|75%yqqQm{^>k*~LW@-md}h&x9^BgxsC8fdLc*jy)0 z%yN6F&w3puy>>*&To*r{%QEp!BuwXE>~#8!yak!SvwI>;;T;q{e2C@04;B^pcyeHn zmsgX&y3EGHtVMt1#ibHv+xx-oz1VbZd2Lw+pJb?P5Vx`CR@hBSkVy1F&KUDm7`@ch z_E9o5SBb&$y8hyvKG6T#gNjW&XLoIDoow*<_}Ti8<^ca9`KJv}529;XFl%4qae_*5 zee-66yR^!{0vQgiZc@1a0|_z}S*fwx<6f9;So|}K3WNIeYPLcPoSZIuk=w z!QILsZY(8TlE0#=-lg4Jbo9F=F}a|%-_du8gdA$c@?7a{K43;QMO|{_e-YJGo{5fMJDzx z-Y~aO(Q0Os#rqok!o3p|Qe9Y_B5r3@%FI0*&>q!$bJk*=J5j@Q@*?F6FR%wE>#Nz% z^yf)zAbLA_`ty(T%qNeR$+oeam(e`EZ9K*x*SSI%TNZ-gT(A)FF|z5!|Faf;V2R!zip&k{M&5C>=>g>7L{Weh}3G zIDTbS%DtKn!#{v|ow66XxgWhTG=%8l7_*8RhK09(la%WN*Cb4qGa z)X4fe3=2EA5hNcp&j!^=xwkkJU#l-Etr1CA=Zy&ZMJ5$=7M;`H@eAA4aq_2d`ai%= z%97j&t-(J&&Ue20-CxX|gFoFH7CxE}9f*(k!-z6_4Jjj$)c3EVTHxQHwTDGFYIc%D7QDrRe`8|#S zQYx6?kTNDWV!aC+NEm!qDzT&_hnJd-F0lbUXZ<+=tmm#1>xT0;>$*Q&RqofVRmXR#g!!IOwOufdEI@d`+B!gz@}^EuBgbM|eh2 zR0N;bvA4LMT*dS_+lWUS7S5gN_izDg?ugzXdH!yUs=C$^>R2eQ|~KoW=kXGNEpBIBj8;gr+6e@ZE0R9^dnEq zF=}6GXCBqJjN`O-Q^ESYwR-m8&uZ5AEzQzJwxyb2cRtBcqfpiLImT&3pvoLm$4Vh* z_eZ7_mQzCv(g_E>J=$23&m=y0*akg?$aB=^XqWrCS_ADPFd9fOGgYA*XSL1E7kMnU z0Sk;-slt&{89ktsuxO7_t1{F9ds zxjb_#^*Vb%(RRh>1?t*Ta7H5`F3C)a_@}Q*ig2q5AKR)ByOH`w7n7B{5j7^sjg-w9 z{5rXAMvqq{ukZ2Pj0aP!GpT(uM9A;c2~+`)HpsP?ecC5Epn=uaJEgC*!eajRHy!+M zT=Vxo3)OBYbnuos#OxevQx%hX@Me(`j7Vjq%R7m;#u%;ivEhn zVOtN-t5wmWwCbD=_)HFAB)`;ZLJ2h9P6F4xBHC_AjqM3 zWLCiCsC7cfJZUxRhr61D$6I%Pfne3KtyGQ#+-ubK2r-3=8JNAMf6tD6taw*vxPox; z_k#t&Ot+T=xI#spqEb0eg!1u+q$1X@F}LD3@5A0vKHdL5eLJ3S4oQG@F~l5;uT zbteIWdVoraF9#K$(?rpj4<P*#11lGX@B{*}TAs7R zwahGreH(JX$W%1;sxMv%GU{u4tWmUegm%X{0K`{yFSi}E$&})^afkM@A0XvrQgY+*z=DUp(jgB*mr4)+&(2`AQW)r-}VMytA4ahv`@Imm*}Ai-D6W}nm7AN znPs%3BRR55>Pf&waS?^ks&@Gq0u%s{r6KC?ep5F?JlaGWM&F6lO0v{ zW%3!4OZRVgmXY(-J*#T@+2@m7&qr!?WroX{>s*sPzyVESo7*zyK}ddvwCnV|6zs0i zx6aif)AzHPa}D_Ep}*)VgZIt%5S)yoY@Q_^&=R9j(pUPvlrvgQk*kS%Ou-X41*dIf zF+)i?qFIk zZLKQwIS|Urs;*g{r5Nx~xA(Ov=iSu2*p!NVo!Mt0`S9xKm45)Z z*986!F<{$V1v;FFf3qX^`q}Uyp6pfAduVE{c{If@VGaEOqp~(zizan&UPuS&exeXyzS)X7$ zlPCYMuAC5^u7)~qwdgX$LgwR{UWit%o{#u$aacPRoO2v^ae=cK;H|V7>iz%x_PNLX zxE*qSfk9?|C$dBNSdQp*mjaWe&RDcc&c*eo@4V1rCrgh3GvT-{f< zGJ4rQ(=b9$l_pfm5EYU&kds~h z#moZxL3;M*#s$F}Zz^^6X4csdKqBl1CgxB@rsk1EMP3(A8HiQ7ub@W6T+oa-yCHDL z+)Kv7xZf|2OVeHcW)F9jS`hwz$xuU=vIyv%HO64kcfURn7S(x+XUX(52xF*Ov7nh8 z2A_)LGqgq%!^{qM;?sVz#JUw-#pg}B)^#Ux)k1tA$I6yNTTf({xIB@Z(}vaW4R-d> zsl(KS$f!@8=pnOgcaR^mc$ye(VwGHP)wPK>5qrjkJ+A!F(Mh{H_jO(u&6M=VPNSZd zO^>@F*IrFnRzN-^7K@;1cKn<6+x{3C?vesNVM;oO9QEc#^xElqCzAol(f^lYoZz^M zhNS_~heY>~n)YtPMv+OR6zuFFCNAutER-YyMU&D$3B=u{XQfyZKqioCDCM-IQK9 zVFtUo8O$D1hSI7Ygt&hhsn8@Dy`QIa${SOSlTX_AF?u4jP(6v0ff!6{P*s;<#0cVSwBcc{*~n9*G}AZV$FOKfD6@RnXEuR9+@5iw};%Ho+*f-Nk}=O>z^z?iPN zV0ELD6|PukN)xK+L+et}(a9Or_SRrlBX;WbW_Sz4%ts2zd&7vo--8_`1 zr%8|EDp+SuLU0+`J)b*=eo%jbU0Nu5zZE>|R-4mn;?<0}C+TBm=0EEymc_TSUr(|D z23)uYPJZVBFRIF)f%8O~|4yDI^CN!r-x2=fbN12+6V6Dvx8js2d~)l(&_YxoSNg%@ z7A0+R9=H+ki~RToZk+f*`uT?mz@#JU+^bX2o(qZ79|3qFo_i+oFdoH5CfvRI{I1}; zKSekXNMF)Ne;flGLe1oIXW#sMnD>}?^_1v)TKbVQxjVj#!`9Q1SLBC9>cE&BxwgBz zhYa0p#GR%>JXl|rv*wFnO-!dK&c>AQn6ZO|xpD44fTmIZhY1UU5&l(uA5;(Z_~Q`L zJVM91-F3ZG-!2gmVXB9TnVq03`?TOZF$kw$2s{4^`9A<;*^G%ZGHqn^@j(X2IHqB# zk5Gs%=6`gvqN?cgF;#eiqLuGC`i~yq{CA_XclcUaeVF9q1C5CAr&v+fQZ~6I5-SG{ zb)#=f+T(vD->=v;AMQE#TaIR?NM0m!LTzRKn$a<){nq0}_yQ8v`tlI}qS*3q~)=JWk7|7xsWdWZTHZAWH-xaKd z{R7alF@;2UxMHw7=hM@&(lOvAOJI9v^Tbn!&3oW?{k7!de+NyC6pbj~$6nyCBYbb# z9Pstgsi609)rR*ZGmP(G!-3F10c0kJjlAHv-I zlmd?BZ7k?SC|v&sh?f(!nSSO;J%=I_ThN23zvBF0vj54`JOMA}$%H!&{+*wJICos` zBpG5nXYxFZq?1r@y8%Zgi?I%ikF;DN5kA*T;hWiEgpbMj3@I6gh*GH-P_TscpZsg@ zhmpM>3!3t-JlL=zjpBtQWhdvKl&^1T46smkqDU*3)$!IP#;lkg4}gGdIFa zRf4H)eUpRDsHQGsCE2b)*ftoLOJgc*sKw)NYr7`&(HU9|e2#pzUx3jIO zS?cR~j1T{ZpzSG65#(FnGnu8dx?EDSsCNrrEL=sc6Kv?q4rWV*QTH2(gU}Xg$ZM>D zcuj?vCLtY$`0%mczLNxzwMhQho^x0|-%ECMU!mdxkiwMA?0(mp@d)JTFLuV!d!nxIY`YUS9HwPIuIXp%8#G2}yWUqR=P70}5Y%+Or@Iu# zOCIK-@ZM`zZ{nyaihusZHRC%Z`BP^uLyb9S8o;1>Rii~Jj=`{PU2_hj60hXDJ~W6V zPZq#r_fzkk;&f$!ma;S02eZ%mwlcX8&>}*~>UzG;iyIAL0C$ptsQ!R&o^9S^edpCT zc7lwG?ONj)I=X}4ex>3roCS;o?T2)ilA3}sRS73M0iAe8bPn9TrmEQFR55t+c;TEt z2jW0A7aiW2`xgu@ImLf~ty-Ov`2GoospIbON*;-SfY*R`nIrL`MTBKGG-f5&d>~sg zJ~fix%$bvFVy>)VjLq*#5e>bKG}WB*Dj5IHM*ZRD{loA2wPh`pzHv4Hot_C{9nJj< zwIL3Pk=F17?~PiqK^+ZpYF%V-w0`#Kd9`CKPb1CzkG=R7m(v#-N8}iBXkgmszRn2* zjvrOZ9Mc9FWvSG}n!$C*=_&Q+{1r9J4i8HmPbZ>TA9U6!QVAeQQa5Qsihr+^{Vq`+ zS=%800Co;yP1gC-HSW;&;PP0Um8M2(3BD0pts?!?Uw1|$)Kdf~xm9U(9HBz<-+0>; zKqI*p3ZNndpq7v(Lumt3@dm4*RDN&(*6-WnmD~JT^_HYv{yccc$C`Iet~DiS&~fo1 zPNv+nwP+)G1FE*ouqU!XX||f|R|&&>d4ySZ^F79^pfqdQe*niE;ss~s)4!Ha!g zTD&`8enuRv*4qUF{{WVn%pY~%rrfUal&L<}iCTnK7M>V9j3eNQ@-;`uMyYl`Z^N)0 zi3tsE^DJystMRcjG>x2DrkqGWvfg_-P2A|$=_$B=E3Dl9QEdYWk?ZYwV@R`LOY znf0^hX%d;CL~(o0n?Sw0b=>-3#VOi)tgRcb3}E;v*HlMiJS`uAfe%c%H4~FuFuMb` z>Qj*96qX9p4_OR-Fqp2$+gQF_V7de&?MBvk$^6($OKlD`dgXAld_%FaROhtjOhhZxx6LRgSh8c ze)ejMmSzX$X2o0*kCl_aQB_G)<{kl2assOJvm-?IA~HCwBYlo-HHPFaEw zN{k6{{9$%NYK3A|_DJf^88wg^UwSUdFV%qYbq(zD~jNwtbScxH3cQ^mA3e8HW;%a^1Ag#X(vg#Ip ze&SO_VCV=(4nFK*ei$E(4$D~ItC6g$D`0nJXsmW@aeiq@2Njuj=}P&~)78`mTctoi z$8Hizd&8C}ThQtghGUCn`KEgA%5>6yWmy$#vqEcQ@4y~W9p+LNOAQ5lx@)d-uYuBy z&$>TMG8N5DV?FHG5k)bz!dbI&n5=oyOj2obO#TL&K5mb#_S28}Il<0w9MmY#nUED7 zx-rSqht4CysJ%WNM>kPk?aA^m&XH-GiL1NK`AuuW(rfGTm}=z?A*CQ{&~KA}fW5jg zv2oa*3mxH-_aEN59UO+%vV6#wztea`A1xD`q{9y9c@DJ&W|zZvVVZ+q9*Czg$H*SZ z!b)C?TDJW|-wke^%(pah`>KE^loSl} zu)RpeUpL}tw~$fhkMkPPTbP4>NQ(=OB#3`Lisx1$oOEn>UssU6(E|H3_xiaMb1fmB zXB45zRwc&YPFXEGnX1Fn_Pq?r$7{UOe*YqtLYS?zPr=ISG*=Z;E1t$BS{WeJ2EvYi zqMXu6Rd{6hGl+42pD~qXtNSOeD#zfn)nok# z-x9^h&j}Pio|=0YJ8pA9<^}EkLV{hP>d7(UOX7Ko!n$ToC~_+vHc~u^MhE>HMng)u zJ~$43IRzyX78G0cd^a09z+#eHA2y6VKl89Lhf#HZ5SY906N~58QS6ZtvdB5? zHCtQP!_Va*MDB=1dP+}ELUY^KPRV#IgAF(H-xH@d#^!*zw{4}d#|Vux*f>~uGnskE z>R1LhZhBf!XMB0!sBC`ZOetb|4$j{cI8irZ7x&Z3qAs+4WmI{@-p{^9|uM(F7fMzL?+ z9>%S}eT$O4Nu<%DEK6nPdEaw+eg}6n4KTETvu8Ofrss(c0j8>pNzVnp+=MrODP7iI zGjz@2$D2~70`%jF!$?SuvsRFv<%D=uYEu@JfC zW3;p4Xs>g&-E69i7jF|hN>|sNvW$#i4lVjaZ}O!EwMhsEW`P{#STxr-Q)lr(Gmy%| zmuJpoKh2+l<+JQoZR{>TP1g%3J-7s;P2AWdWlNz!XK}B;*S8E}zA(=}XEQd`;!!uR zkLV_WQJkDo4B@kPh-D<8s*0kA0cnmSDCR$ayX3q48DnD5;*_M-4LU!si>>6E)7Fty zjxJiN!aE>3qISGRiPYQE&d*V5iV@;X2mD2EZ3Pg1mR;TICyHZLprJO3VU64}R*hJ4oR2Zn-GpA(W5*7-{;dhxvyde13b&&mW>*S6(UWoqm!jdF+5_%j0f+7E)~;}}Sd{kQQGrL#wkjU@h_cEBoej)!~E)_T7w zwjZ{Q4aDB?1)w+l`PixCn2sX~EfFN$7cjg)T7p7Hxi-h%6<#n zz?ZO315IdvNSJ(-ZL=m*4qs84R8G7yNbgH&rdwyBy|5IQ%J;cnj}eLf0R-C!0f_qo zcoHTySBjS%FX05lCPxJi2rDki%Q7dOl%i?#(|1eO3boJ$zO#y}B7GzVK>`Cceh8T! z1&GQH-Hscl7w5OA-rW5brerCwM$P&DHFS^|K4vf;K9dI{@8Go*?=%u-+S9sS_^gy~ zRm5MxKiRzby(azA5z80w^IWO#P<>fWU&;bJMl?ZZ2x!_j2cgXbvZ4Y}{sFi@-OPN@ z!XHc56G82-P1NF2v?w?`@m|^*5~4aoYR0KEhg17`(Zi9u6B24UzdZGK<_lW%Q2O`m zxB}OIvKnoWaY{u{Kr+D2vVHtoHe>F%jeTCvwqn#~{4~QZm3*^=rNN)j!kK+Y^F_bY z*GDK?@ihc&)%@8lnlV78s@qC$)H^XcPQ@j7Q3x?0DtEbAoc2_eM|xhAfGt;sW?XM0mcMh z8LW!W#1}>&s$I0X%OK74>#oa~Y$-|qvNpVz!1>v^p>g!rIjO=wz_(msyCS@{4^2Rm z)nN{(c2xii55~?DBf5pJ{GApyzjC;N5P)dM_n74wyP{s3y`S&p;}ZRd@=q7%+F*5# z-U`nyPPbgCu%i$MXe|b_C2if-QvFz1QR=U&h`VnPhS0iMqC)2rY$1A-Kt1J+D}$Z} z-BIQY_M@nJii6EbK>Et>FniL=^RA{&E64T~!yMxIjI7lv^@cmCDkCiWe}MN?0!}TB zh7<(GXb2=FalY53MlGG9qik;fNp+~#fkobGjk4W70Da5rp^4v42q*Y^FKk72VMUiC zwI6Eetg3yS*;Gpp+Ql{RP>x##?z$*hw@Nc)P$uZMJLw4_qAOz?FJ|)9 zZTmC4!X`RGViicXj3lyn7X&)U; z1nHHKg+)~^5I`*%npb)kz9Bz6j74X?Ns@s278df}ZW0Q<7U)f8O}F>un4e2=-I6zx zw1SpVWS5RNOKnjtt#hYHbC}k(m|Vv&%y;%8d-K+t&%NI>)Ktug=2h_vuDpb+5&Ptz zn5oGDx6{Wni34|D4lgVBEo!;(I2{GGI6X}((TvC6-j#C9Gt@O4@VNFQ@~4ER0AGpo z@B-5S67t6cozGjxi^tZ=8J_UfAV#mmZrE*7 z7+!LGB24n>3@LWdpD1>GS>7#d5GyNfE3^l1w}(zSlDhHZLI)o=5|K|ke*KnFu{1Af z&|((15X@7xL!68b#k$n-oz*6=rcdRX^5ZB>7ZS3%;_x&1)Eea;v}f2U{ENIG_iff- z)6-tx$c|vNoE@1#2REyV$NQ0tDKeiiR)dX1o4vD3s1};Vlr1&azPuv2IH%nP^d%MH zm<4<@3EH;3h}q=!lQsJN)54Vs|llgoO#Hv`t~$w9qQP!_i#nx$>^A^q137sgfU4>zh2$nxWc~ z*i(lH!+5q-OzgPVTT`D6T3&G$CT*UbR=2Dapuj!=uIQTnm?1@q?wI(q1qAI-oEj}Q z<(_qRe|oF&?EJgl;+P@Qpw&d#8p=ZEO-xPzXhrsceuAydq$ECJ{n_1ns8mE$B~a@L z=l4V?sU8XAXK$8}oV!j(RKw9#!JN%iBo#G%$;jKurE_~NNcxItDxyg1XU@akx_!wb z&boOS_wVV2g{!slaD^{sW8?@Qzd70r=5nleB=?XH{A^;I`nhvnnefBbeO%qu-t4Cw zKP0UVhaj$`Bw4sy*qrJzNNXQPy}+q+SqgN$v(7I}*>u&jrK{n`sW8VMZ`?`_d;k+xBUJqt&7|={WaCI`lLz9dkKqO}si{^Gh>n4safSn_xqg^A|N240SQ>*j`^|{H%AO2#@#nq=rB=zpk zH$ky9l9qJ?ASYo(J&8yk7L9^d7YvW-GC2eTaT_ezTgy7WY3J*AVP3Giuat$xlY>?wkvD73Uh#keu*w1a*Tc4pmjjcC!8`J)B z*yG0W!#9JZurzdQPU{96w@^{v$w`^Uoyz{~d%`Z^JV$~HjgYcEjivYumz08rdiyvA zBa%icABuy0wOk9U4;*ucQ(^wd{U?9C!MLDar8~*#a*h3iA=>wgR6S|*S;l#OT>4qu zUIOiVJ=vXlrmHFpVc%t5*>46eOhKcf&6r3r=gfTXfBSs8MODGIx6C^w8Q1B~X$h7^ z2{`v_H4z%S3JW0joN4pqZJbt;T-oH(3eaK|u1F!y(#vBfJ~PVcS*Is$1#rvlU{Ryi z&2=mA)Yi@f*9%M^BtSZVB-)s&b{vnaWprnBd}K`ap6Ex^i3!1anDgv&XRRao>YNNN z4~z@5N=}$nuIv<&9iD|C*{#t$uDTy_*O@697$1{eTd}u!7hKygLk&%nPsK5F0px?p z?pY>LYGigQ77jZC`aC3Bqmn%NUj^HV6Tn5gRjx@K7CkNm9pLFAj&pf*4@-Bs?}LWF zeya=xbhJNYt~;LAwCn4^4f2&^fob&uc!VuRR8%O)RMgnhq8Ae7F1`~7P~nWIk((ib zA0_-hEQlZ_E2Oezw0}GzW05K3NQq79*7}KfaD7O1#{CJ0m?bgtLF#t1{L@8}IoVvR zO%fTMwk>EBDIYcmNW4E2zquTJ4zH=Io32+k1W6gV+1bLec)vC_;Cq~Q?Zp ze2(M0KTFw)X{kM^b35m73TgcfD|O`m!ZY$zDrK~1t`03TcMGu_+)r_B5zGbWpCmMl zfoy<;#`F}%OP(q->$FyCv}crPI$Qm?UmELx`=s3}q^ zvU^>0cvjiIjBfFw_jkkZyw%+flEX|sX-*`sZ)XED?%a~Ta+b8!lFd~j0U~s~53p*+ zvpwtpoZ#VH<`PfgOV$6dpvZ@$b%~sTRfb?Fit(zAdvAVGXjCQAsGVPXJB>QfF1^Y% zg;{-SKUXBBRTSjWM?@!+WIaI=MAT~FGk_-vja;kraof7C!W%ujp08tqHpTL#pta3V z4^dt`LgUh{%smG3$MnYvgrvyG9b3jgj0OtSjr!~wTtKX<$+ecdGmcWTsxEhjPFv<* ze=#?PWH|ez53GEcIR;g@OO#8Jk&buhU_J=c0;ZM(cAg{Lk}G{_$+YE%kh=83rL-?MDfQAXfC-o#0Zkm!sN z;~64nae`J*#BD;g*#nSiUFZOnczeja>BHaq`SY)C{Ws+de3 z_q{4|DdU_OKIM@m+7!z&9HfIO$^WB-9$~kn{p+u-WB;F5>9l6O`W$T&QtKK-`+>;r zp5hPp<8AQebshDST-XMuq_6J=BAy;FyjkwvW!+-sVU8tJXPdh(iaXpg%pM)lxQq!2 zB5xncs%lpsr}&Ck=i?T=^B<-SejGj-mucAVAc3-0Rt9RO^7AQ*e3l8}EJ`XjwCt zNlpDe$;407rWFxoEV1+mv3op)tl<>YJ3N@sY>wC4)%&>n9IjYjm3$m&k<^msLhS6= ze6FI2d^DoOS0Mx<-}r>>h@yt)31&YD3TcJ;DYA|eUj8I^-W=^$t5W_c8pusQGH<+R~W+gxR zbSZq6{;yoBM+@O^AcYh=r;wt}dFnyGDb7eDg4R+N$(fcjC z)>_k5Fbk#h;|HZvhcBt{+H08MVOm0#XlN!#8AEd?89;-PBIow>R<^f}Lp$^ALD(dA znnu%?76>k>Dlerlh{k=7u{gY?mZEWR6bs3dHjE+@9`latsaOh8dZ5=1k+vpwu44p! z(9tAwbvQ|7>u47KA~16=SsK1A1W`8=_s0>eBC1yFxI|#GI8-A20Cv)%4hi&7Fj$uD zAn%rFSa-L>qn-I9y%F4VzPJ^NZ~rMp zr`xA0{T4{IQ1xMY13IiF2wQ|qVt1X18cJf(g8c!^pJyQo=Qsbu;CaArdOdNqdG`fA9bQ|MJPp(plBOW?dqZw z(0EjBZ-o~O#1=C+J_-5RrPh%ID$=ix|4Mi zj_4yZVSgi_%WE5Yau)Z!sO1TH7V{m)P;iSY^-ps}8>$x2;wAb(0U&UM6<6O!hFHTe z+fa8|_vFhv?iw}v_jb~+y@)C)TVX}Kdsuq#tOz6V9;Naea|{+$ z3cs>SSLTb)AA#^ZF1b;^C9vGaz0C388-wmxBJvERloQKqV=sHue1Rl6uB;2jwq2#( zR<>`P^i^f0(9lw|q>3QQlgyirsJ;2&K|Hw(3;n`5(aPHLDdt(I=FE-YoDB0p%zrV( z;W27Q!d54+G#EX%C9Clr(u>Gq9I6{}QCqKMCo~t=Ry~)243D%t(3l4E^EVkyq=Ww5 z)>`^xNkQD_ZH0jCB zZ=+r|!c4X*iNT=*997WSakpY8(|Ol%64$e3#b_ijO$^~DxyAIZO}TA?=dx2%A$Jln z9BE@yd3e7e{iYG*xWynv*zk_ThWvbYU~K}$Eu|q9HQO$h~?Kk7E%mfy(65dJ4=Tr1M$ zUVK%p#c3#k6{5y}wfY2-{OH5lT1>~RU(t?k-0LFE6FoO1KDY|wbGQM+{07H_Y9MAS z7aT0Zf&=k1S$sSo+hVoOZT23{jtmY{G00kqK;hGp{%ApD37E7*u?_hi89fQ<`hpP# z6v8SFSU-pPJr)f2^zT?}2Wyv_^-`vYfK$xK)9p&rL5O;T+feyt+Qd`5phh-Ir4Fpy6TYeV?Raj!K#` z8x!~8KkElHJb5A6rw_jZ^cGZ11yRSh9E1l(5Pi6_MQ|i1%Bb}cQL1CUsGm8!saED< z*NND6W`@H^$=4Ks3&8-~G$Dz`OAnio$Pzi4Yah$w-%3R(jsn`*kgetM|L};DEi&I@ zmVDIdu|TTRj82*4h5tE8S%e0UX0olfoe;aLe3;%**Scl@Y;RhcWvieWTTrJ0~1spGL*u(4JZktSLPIG(y}Qn|tKdIJd0GDe=X`XYDzYkYl1Rr=gVTP2&yHt$MrK=+kVCZ-lQ@Fj zsPm{y?p_lY^P<;cX=A6`DScWs*#$}!{O@PTzGaAmG`-De`v}r1l-NEtWWDsB_7wt3 zpQW4&%`BRF4KgkqPb@cx{tp17KwQ7DI_>4Y7I>0s*|>)#lB+F}jF*uDwCLmxT!h>y z^EjUcT|~J=by3;~=K-R)Rb~fp6kgT>+x%_Q9rLO$cH-U~nJL7S9{Q;q%G#8jE^Noo zw)iUxq;M6)dHe9`L}Oahrx1LS#5B-PN+W7Yd1{gy2xq)*8ruW=!v6rSAb&`*VOJd` z3s&XyqMe$dQQB!9Uc8pN-ZQO7U71E4{i#s_oaEIrENrsK!R0$E4OdksZi4n0uDH^f za=PgAkut>_D#aXV&8~8y_K<%1Uib7O=dpJIlM9J<9n?<(M!N;*IUkzE5F9md(zgevL_2ODwx;mIDIWj{=B-T0pDPlL}x|@Lo*LGTRu0&8Go?L24ETemXHUN5@SzgRC>df+oF3qXfyv zw22{%a+MH+%4H(QNg&_I-*aJ&8DfHQ&E@Um?^CCO)5LO469&f_9rITD(DS~XJXMti zG{c<9RVj-_ynkq;uS4+l#C{>9s;G)M)gq{;r-7w1BbE$2HX3cYVftaBS{%-&faQdP zHe`Ubs{;Tk7%@5(x&>~5y6=1g8Fvt5xkVOXo>WnC=z~2(Pf|c7_Et7R2AhBYxZ7_$ zFCQYpT11ZMt{p#xzcEV#VOrqyr%%a0%bzjJRWd7ZB**sR{S6O3JG6L%0W>Q<&F7&6+VJWs65;XI(&e zkEl4XVTKrK%pB$`B7ofLfp7;-;@Cu`rlN*P9YU5O$5UVB`C#=Bq0oUuTL3mo@86)n z@k2Ya1$;baCWewP>Zeo1NMcgbCGF9qx!C&PmR}tzkRx#NU!p1f1|csl$W;kKE)Jc) z92&}Mc^9VlcV=lXs1aju0N(zXN#u=nMl{i-cPqo$I>MYEm4=U&0#k*MTS2(vBJkAeDNFS9A5ZV{wPx_3n~N)qd+TUqWeZl0Jq#N?+7W||zh z_ennX`&j<~mNwuZ;k!QESCpFmD4+Lz)e{sFd!f`=-l{9y_q2l!{4*F07$BAIFW3I} z!o?6*%19+ymZl9%y$e~v{72)4&K?RHF@bV*NUGn+T!iXYn* z(vDi0By^4_fjUu97z+W^o15R$2t0f2eRyW7myCD3X<9{PL#ymqokGNF z~9)r08kel%a1^NA6#vLqR9^+>ZlB_FXA3M_G`m4467%oNMtj|Q9FRBVUeTc zv?LyJVX4VxRn+Hkf?P|G)#iB}E?t;Z%#u@umFgKIjz*n#La85wDz%#1-$)*34w;Ta zn{eFKnU4uUPg6xy?NL>e)G>`3L-(GZP!5J|uBmtH={}DvT6zxodc~^ zRd}6L9^yFE79+`ui}k+v1ML_()h)&H^J^)xtkWr$YPf?{R8v70HaWmjh{#7pW@GoP zRF3^hX9s0#mBUd-EWz^-QL14MSi+=TSFMP#z5Q+57H1S>{{XV9edJDRD=Mj~7FxQc zxtd@V*HB)Ir5FWWfK%Mx6>eKim~kYJo>j(_&aQ%;xoGjp5F|8uPUK$JExy9ovj{9A z=qpyC7_E+_ks6pq&WcT9If>Hy5n@N(Ha7%E$2v-g zqmrhM1)igkP*Ed6tCqF|0>;1qZUxQu#QHjr)hSOkJk-*-CO&48uWiT$Nf!fqVuv$D zQk@YRN@Z<9<1!%(40ij%$80q4CRX_e4`ek486^FgRFc(3myxtcj*^uN*H1F`9hBf^ zPfvM00mZlM?pl1jimHWX2!}$Zt$N1d#YiKe7T))@ju(8nTWTaUEi^Pz)V%Kz~-#UO%##of<<$ETBH^uZpP#fBZ0omc;|(DLN2S56Lux4CDT#(b$#FKzksY&ep9(B@>okxP|B11i%b zgb^aJ1QK)`-MTi`wk%&~zSsW%rz(`Rxj3VqS)@Rm^ibhyWNGs@R9+!#To67 zhRE{Lzn(7aDTKYOLIVU1SIEg4f@#<%isX_?DIP=NuCgwv|Wxciq>1x>nb<$wpb z4qKR?F|Sgi-df>X71xR>b*m5ubMW|Lv#ZI1)l^hVB(qC8tZwGQ$hXp}1*`_9H|xGF zS?3k>5mhu2KxK?OMIf^w?x*2}it0dQHXnu^bGU@`dWBaG7?f2Ba~$ffzJdtul=VuX zRhNBi%WYr*upZ0A1SlHZRPY>`X3e@ooJVlsM=G2vO2xN|eMV3W^RABm%z&ynyZNE#6wzHSKv}--- zYZ_>fw0~#ekb$`hXhBemmpW=Ni#d~T4wgGz(;i`T%#STpRyGU3d_ zg6SvWPGHMp`#m!$5(x+1*L}-g`}%Fu9eAEx;yNgfQ!Ma5H|-~w zxVM%w5oK1DWlI6oy5H9gTs2Q=dDi}^Ngori{O}zhD`Dlf8nQToP%*abK>BZwGFPN= z(vbc$cS>4#$9Tu)aI-?BMCA1(VE+IbF_Ya!`$oh2#{p=Uz@UR-*bpBol+!~Vnpnrr z9O`zB&HLh2G-Hy49*c-|mkV!PL_sX#vnpM4G4jFZK^zTE6${B{lH&HaOby5*L|G@3 z?k4Bd_81@?xeqHFyqo+m&=sm56sN>_c3nMM)lEYSR4j`pH*m$kDhR)&|)>JMr(*EuOQ)^ z&oZW^%qEgLXkxP>^7TBnO)5aR(z}}r{4nALJvzfpq2Z*#YvDtb!n z!ioVkB~;NgcG6Y01K@VX^?Y@lQpXvr&6uo=5mljAW+$)!Z-=48K@)AQIli}kKVpY7 zUhQ7tL$Nk{QV`TdmcrF2s;?_Fa$icQP)jwuy!vm7%Zjr6vY#bP&b7raxVocix}<_; z0x}PEx$WB#bB-*pj%vF3YT~6bG-#4EIw~27u+Zkpoe0<*4C2l+$as#PhMy;uC8>;) znZUs=$L^%g0Mb}7J|W$O`(bGL*(Ec-PMW_u-CG69zY0TRcA#lsgQ+*!SJsv5DCl!p zg=Y^fM7d;^VAVxKA+^e}2d2k=fa{A}*whu7btPU+m`#@qwrP@jdA;Nk^60mLPS&!J z-NEbWS#jL*aOVS3<&!jw@0m|Wts^4FBO8{u7Gd^`qvPms8UGb zo>)>uO-jhNE*LO7li{`c^f+Y=(brj z@;5xfi9H_mP_pRR%B*n8&Q|tSx95WKQ`Ddw$Qc14K`uT%ewg8s#a5MRBygggENvv6 zwE7F+!IHXqQrx;&$}+b4n^pG0^E~G2Mi*LnFA&WfQOC-OtV$`@*5>|L>lI~06-G5k z!4_aiCmb4Tf^@&TjV-uX?b80ZEWAIPd#riYMp;uG44@e5L?2{FPNMet;28%HxY!&* zy8VtzHD3wPlz7-lJgnl@(sdu@d^Yhy7vcQQ2?!E8pSH_~lu;VanW5=X)`lS1+X z4MeQ)fC+m&$WyhhJ9=Wqs8d}Ev{01w~thl`L(;^w0;$)xUWbB^Lbe(|{P>yEL_1rA#h z#;GN3LTZuD{Ixy4IEf2+{Z1Q-Y~w1OiF1EX13gur_$}ik#;!9^n|Jf~8%aH!pHmbK7BiVs9AG zW|Q$APH0htQ1c{~RFROX+-g#H9xbdbzWuO%il0>DK-%Y~_%>kB4@#P|NcKve6+XB< zo@bNgnL5QqH1zLK3}xbSjigwc5xBnJObg2*A|P%$ZR>^3F{*hpM~u4^gauLjBG*5T z7t5PPB`xRG^)O2$^)m>ernsVv5;f}tJl`EE6>re7J&qPKCe7!~a{8D-ik>FaBs&BK z%GNgi5oss?b!@h8s( zY=Nz+S?Y;HGgvvF4HG)5NV&Ue5~nZV?;+So-P${)lnYCd%ZZuBWDwc3G%vW0iy41F43G zw{kC}{00+zw;o=E{{S(~n?)K)BZ7T^V!eJ7$ry= zhBJ9HejKNsv6tTx>oHSxEIhB+?0$ITUI|uZwfkT%v$trTqLtW%)6Ew@Bl(OqR8ygi zOTWaFJAN1?P+c1fbU=A!)g@77eTT$#7}=@JNDFLSTm$8Yz5~eeYUHYddZ_9a=;j~@ zD%ab8Be=JwIB_0Zm#mUY9b|6I+l3pCOLq8RW!XS+B9C7}Xg1thH%c_XgRmn8DVUHh zPt4<#S$#{8VWyrzeTu|)!AeZCFmDK;swc}v4I9{YC{K;Ug2;`xBjJx2o$yjTgE(~u z+?aV?lzzDP`aPT*-kv4(X_R4rbU>snH5+Yni4RW9P@?Yp0qfrr;m9k|?<-NN_q|BN z9#!tt`BaqeB^i;f09uei9({3K<8M{jX(t3DZno|*m_0658LpKy0C@?C#$x&|%8@Jb z$EKXALN0u;T9Q2!k*{#2jx9>M8XBNdqLL{<{v-zqd|Q)K(a}j!LeC29!YWcopnKb!nf|cTe)2k>b z_ie0hZHR+0nu1%+l~hO+kW4PE-`3d2E+4as)eLbK6Vx^lb+7{vYSUDJ1AEvE0;J>o zfr~*p<}|Vdx#rR}zN$_o({W!6yoJ|0q7nh%NgT#+{{RpeBN#^nyW?=+k1$9hT68-t znf*>B#Cef^SPKnYH7GsSq8goDS}6nd_!EPaD9aj_QY<@+TppA%+6Yc=zA`&o0H*^% zus6OKb945G0O$Sdjjw!5X)=9(=w|at>To3nVH|m+`LSr{r;7&B8gROH&SGmWmpI%V;WT6H>KO z6S)@zDPhFC z6;F;@ieu8wN;4?}`avh|i+NAR@m0xDM!5|I9WpYcHI>e4LadAgZOgDk05CovNU^^A z;+r{%W5D{-t4k9P!Du5x388XaKtnjUPTGYvdCekme&wSQJCC; ztT$H{(n%+A)Z#Y~NGoGq5Y!VbMb#O6SJPv+pNAM_#jOnlkUDo>hY5!bH}wAiCkAn8<7LHn>R9`gMWssPeYa}s_LQ&qQdhQ79TT~kJ~)Vsjd-UJeeQ!c9h0*w zs+Hxzvt^lfR}xUbf|g3@QW@ZI$`FFccDUZbZRhKTNHaM_WRWbfy)b4{+v?P#dnmrc zxy5R8%+OS@p`v3PbSi48;3a}`yhS09fUPEm8(j4}n_$e`Ly+>MudU8trp;b3BBq{n za80^8jW;SuQ@Hzp<8pBP1u?D{r%>zq?eArUjl%Or-bK5uG}C7^tq&rRs%i^G%!5iB zFz(93Vl2Y|YbBPhu4yW&5VS>A#;@x24+uM2h=jq~bxsPY`VE>82hLtPZ0 zCoz?jx(2&)?n;oP=?qBRVpeU$sg`jqRU=l_Nfi`iD@iDjNESO84w4z)Q(V~nz)h}j z<_r4K)THUhhrQF7eo1a3+Q(alqz!sF?XCK!yueb>(k)$2GKwPM9p^%01oS$B>^gPn zf)v?xRF+{3j*YlrHa?*3io&xrn!dRh*Hla=jbxbxOT0yn_E10;0@nQS?B;3sdR3NJ zla{DPrsy!A#2BP=0I)V$Ghkg4^0=oNGP-#(^er0+$5L9y^R^++l01reU@<*|kJA;k zJnW8H&dN9Vd17x5=JL_#u2vyZxF+Ai%fIE0_~yCP=GSlGcfq&|1rg73Zb4yFU6#`u z+S695k@#Z1;w-l<8kxAOhLgR$^tnGEF}Jk(m!F7g*@h5wAChp5R$W_I)8;LzI3$jWVu3Yl zO;n*ibChnY@PE@~Bi3^Jc>KaYvTs z`JGioHfvP`GC46LWucnZ{o~C7{{SojrdBL04UQRdDprt>4aqkj_iPRG7=?sZ;No`S za;f2ebdES;&L$>U)=RYj1QL2%nn4!d4wM`+oLg6utJTXuGRT3QmLTG&sSHU4ycg4J zFPXld1EeLToEK-v2I%ZlQ08O9Z$yur}kyTG;kcmWhSz$jWr5uh*k#OPLY0s z{W@XzjVK&0fU2M?0pY(}+os>91Lqt?K}VX>&;_{0Mp<>@Pu(^9Hp}v=e8M)Q$nwf2 zbY_tC|S;A~0+e!j1WZiM#_#qOBa?Y((R@HP_6;dz?1l?}QFJ z+RcoEi>{=DCU==pxq^nU(r%Go125yw}xd#M4E~?BVpT%EVM_YTt+w;TqX^}WO zB4m-6we=S_`r%(D%ZQLMQ+|VNJZ3cD@Z2$5py`c_9Aw7wdKO+O?dKcyRR(zM7?REL zEKU~cBs|p~clqJdh-myy0^wGsjfBZ{>3nB6YHTeQ5lf9TYtRT=6TQYPP8kQ?QLF|3 z01PD2(6KT2dSb}o>N1p(i(70thHVtCCE6m;DJ#@;#$rS;uwIzVY5*x_CR&JYJTl0w z+Q$mqX0@amcEHT)D%ygJ98kjk zEB&?gZEykVHy&6PIpNKAKySCwm2kqIGZ9^io35p=%I2%go*0lkVmDfqWnykfBEWC8 zw>#nueqmbGi42*2KRZFNj%`;UT?xLXU|nEdd+O-Rt@ zNiAMeT%jXwlx?WKk`2$qn zGMBlM7+5g<^taU859--y)Qly8-2U>gH@AMn0dop`zFf|V)sZSVk~SsRVk||;^}Yv| z&Z54Hgoz4X8{x#AD&wc7jpU4nF+HtganOzT$1_D!O&Y#apJ$Y9eS{VAY5EdD#gSQ) zWz$HF98}XhrB>*xzl){EQ`grWZemmpa7>zvo4>#)8k=+HdhMyih}l?)q4(Q z#paq>2NTOKli?LK(aZRizgzdjcH%BNh_1R$8_Xg*Sgg=Xe~4nghAe5g5{~}>V?SZ&j}I6Gu&s;2o^i1Jo+M3}w2-!6i?_^TiF4EH2DO>bmxykhGj#!?jsPh5e_Lx4kNb zP@w<{0JrZwhUA}y82CRTn}=vC=UEzEGt#6|DAKGR7L=d{_EF3i_4C^kxR_c_7R(g_ z>56#oCc!jHtS^4v6ZOMnG=g3a%F?3x%oL2`;08YKdV2c&Fw@RxD~$w{d0U9Lbo=s3 zStN7NWJyId(bP9J9Bpcg%TM;;pfv9p?n#HSE0pkT^kFCgFqtuLMWqXa9T8)w>Q$>Wem{wEHtR;$e zjJ1l%8n_k!`Qp9JB+5o_BP?+c1a|@hW$Gbx)|xrn`?I% zk3&mX@eMR{-9?*Hf%)Pr6^5RcG%_J{L0}x4fIS8e(^BSg#;q8m3PHB1TJCLe`@Ta2 zcq~L~fgt^t3VIyEqB0?+9v3Q0x_~_U;I>Cgm{M~iH1Ibt0zcLVgpItu7~X~q#-2AH z>TX$y1P5zhe?fp5w-;AsS&5_M)5_s>UNA_p-_HR7^AgrkRgzj3;;km6&JP8)Ws^Mx zBvewgm6KG|^I9Ot5@!K`T^zezPmv>gVNWs4;LNhft8$FSUBpmDBxo8Ed^UuJ7kvbk zI=9_Vb8UELvpD1YmY;=Srl0n7nS)Q8JZF^~KovrbU^UJ45VjjuawWCIKsd#V^s=5oAoDq z{P)K%WmH+VVaF95Nt}Y&T}3IVhFO;U#fzC3T{gO?59B&u7p_MhTPw*AyXEx{5{V<2 zBDXdcCqn~m`VsLMBqm3Ems@#ulng&8Pk@B6nr76Izkd%sRXLL7^2t~jsU)8)SXC6w z7Ee;3ZdFua`YKpdi6f<^Q`oAH<&OGpz95&kmKukW-a#ea2k^6H$A=vUilXxxc~T(+ zXvO5+h!?QOVVBIgRTUz_`lX$vU=)%700Mlw;_2})ERL$GZL(jd&mN$;52^ZFb+*_D zQ)Uj@-lx_K99KOo)r&4{*jr_pJ&`NjR{{Rec zd@{~MX}gnOr{t*pS>tAf^Bs4xekMS9SzMBODFgMunLUwlo13mdFa-58L_fuktQZY? zu5W8v`(v5~k|knJ;2*t?9FdULdsh8kPwgH)tL6G1V|-*=$CRR5_^M<70Nilr!(Pd= zs%A#4N@&86ZOjM1rY_wvhTYBmT;tUdD+>YXh<7AL{{YB!R6rfg>`DGuC6aJ;ZdxW$B{|m^P(!z350|DMi55E(ZrJANfm^|Aj@y1%FX-5K zwP8LUhz{jB?2>u?Q=Zfb#;@R^`{{VKS%^;yl zDHv5FE{5>3`1cpGlh7WdUtn>CFm@hC2NG`247%Tzx7J4l&I=UmInKZ@Yd3zL38N_B znIol%a}3zj%3R4Mqp)W^d+%#?JK&P=W?rMiG@$v|V4hE#QPC6(;#he>hTf?Vbc3yhvDN546m2B)h^kj&6pih`fzSgkEktNo9}l6 z^ubuNT(&B47bJ+(>a#W_^C}#8Y19MPRF?dK#!iyUPb6hP)P-&wn_OGV0%jKu%ORK8 zRh>Mi_c?MIRSJu(F!>Yw@zzRs+94A}3}d2`YhpqI5HHKFHEloe2!5c<`kaM`5 zN)J9ol({Bsx|#3%PEYBLV&UACNWMvz+p`3}>4Fsvdk$hD2K%8m#>g0xX_o$a2p^sk z_;y_ej^?9tvRCdtDm^Ywmcoh?Dxm}c;#imYV1h#ui!4Z>b_y}z4lD~V)BN%1SuA{F z{&xQWJU0|9hmZLibg zd1$#Oa8^$>Bs8^=$xyIPDkIW)S{!sEO}#q#V$Z-jVAnT}r)|+;#f8C6tr*2x=*kr|29 zTV01keuHk-!c06P?=+!h%Ic4domXTd#BFPD_if)9_{6#SdS3qk%M&Kc zD`I3aRHn?p9Vg3u_P)m!1=XR^Tjd*t%Bq&CvnUXjgo}cXLDjL`+v+jiijJ}~&sgD^ zuW3ANrK~OGw`@s?YFZE@SLC}mSa{?zpbzH!2IwDGMt&ERuQIVY5^bu0$$b!*7%i}g`>|ib39*XR2Ev33irFgXngY_p9H&e~Y*9!9 zeTFQ0nh5#p2$M*al}Qo?Hn|?Q^TK{>kt^5F2kmObPD+g=t2K!uPr}MDNF-}bli->o zqsPL?YRZnoR54CVPnVC6!&qJbT>X{8q%TKk_|NTbSUghvZz`Hw6r zt?YwgU8QdNN!|n+eX0rI{firaT>)gQ#5RKMDj+Y z1Jo7({T>lf(WWJN3Er1R;Q+_Jkt)LO(RaM@rCJf zd4P{hON%SaICqMulA2b0wyH@0@F>x!>U2?S0d>>|aeHD<1<^*aXF{^3Dw(S)d9sM4 zD#04S4UXRd=Y!Jaxpb(o%RJx<81Gu-f)2!8j{dgqiWrQ5J-g}0qt=k+c+5faMSap> zY`KL}i|nCexBWQQo+)0O6JIo&k*P{=xgW!U^sr?m5(cfBMqmilT_JKl8ow+@uFJAn zWinLP$r}X#s#d&82W_=%aMPx4gn#=zUihV&%QSEPD5$4ZQ5wxsMxxremL~h$*kgKh zi{5}T%I%~Pu0!TW>3}peISnhc(nyS1hbi8qww18hHTT~8`r!3CP&A7)QN+w_11jqE z>+{8+A;df7)2{x@r5QyF?xj6IBF4w#j0l6GsQF_79+=0G6kN51uZ^-Bxk)TKLG6xA zVzs;*dShcEUfPBFZ;mZGs{{oudTuwkz5@5OtF@%A$jCYXJ_8$qKkQ-})kAxk;~Ock zb?C;*erI9lj)u0C5uNIwRZz^uq+0-{%uf9Q*!g3bD^!*qg(lz(bCOLxL)*LT7@cej@Kgfoo2omF!xW30ubbCl}lUzclt6^*>@wjxP@($uym z9twL(OLW@Z_CJm(Ov8pLbI)nnoh)-t8q@u{DiqKpc>)t+ErR!s_>$nq&5Mw3PAlB_AcW_}x9AaMM$B&S7-- zdP;(H*o3KVF&@2d*UJ*zO9vGu2i4MX2h?Mnz?Ip6?Y7%Q38KYc);zxQ#Ny@Rx5_Jj9S$~t^M3*cIhY#FU4Q<7KKQBdZUeEN@jSz=V? zjSv{fC;>t>KI>v{zf3Xz0QQ?t`(z7G1}F#*%M)r}jHnJxEnUG`WU=+H~nB z#MZWjKP&{Y0sJek>b2U;Lx|Ui)9Ll4_8$zECM%>Zr-P}I-g$!(K9S<^Vi_D^uH6n^OvJt9hWLf_PHF??l}meS zfyMs-;W*5_QK)I$kZ%(2@)-HHxBVn@nc#G$;oPih1xR`2eZERD4wwBS_=*Uli}p@Y z%R!}8Bbe9$w)(LL7auwuM2e-~q+&xTf!@BNsDddIOD3U;k2=aTN}qU&j=xMu&Ljo} zvWuRqO_$ZgKwOt~VFQFK!cS1L~Y%lGuhIvnym{pK8FowZFmrnq8| zFo#v{%u<{S5IPnc-x&O(h>CdyG_;SR(ZKRnA`o2SDD-N3zbM{Udi>g^o|iDnC3;?5 zsA=a}Z+qV17}$b0_>3B2A0q!2Dmu8Qx&j6**2{GRB44sWrgcY)MmfCg%GQjOuHKW|2wR zF!BMI4LbBpd3w5O2+&9!S5RxMwzuhtP*YXa#%W=K9|U*tN=3jRTc#pMPnlD|L4h0; z9*jczT$9vdeFT}jd4n`miLGH?WNy|PPfn)y+Y$m*#EUpx7%CPW^uH`g-7FNm&U2 zXn}9ImzV-c+pycF1um3Ayd=8qd&kw3v^)=$SJu_XOBtEs4DJ;~jm+@en+}*YTTNDK zE9#`Enb;*kf)E!-MW|qVUiJ&$wmvKW07z`#Fg$sh(tG5-=+&}6yK5ymilIYk>2bY{ zyzzDATwj|*?b9sEk?Uopo~JU)YMNlp4vDl>L=fKEfn{GzZAZz3VfoD4kFv{j^*Lx9 zO0{NrWN4&`BwP4Mxw-H9W1euU?&X=K7qA4Ou(=ywq^h3foeaI{e8xx8Jr3a7+g;;rePyiDEAZWMZwg z^_{oDX0D_SV^vN!=w)B$k5h+&6AKK3TCMxmB-2VIaADHze2-C(Ww~b(Pn70$oYjHl zggL5pM|5ifMy-a&Z#)&s=y+7sBykL`X&mT@M1n?UBo8ya@$P->mpqe*7d2ephcz6^ zwzg1n5EzLcQd;A!wzo~X<2ZYTvrM-;TI}CG%HE9EB(${WIEGJjj1A6`zyePDU#2iI zFaSvpIt{yaUWyrWv}iqq>6iOGt5Z{}g_K9FL}8;#Y0$c?3H~5)8mgZu$@2%Ite}pb zp;Qu{=vb)j(N5U9CE|`5ikF`G-d?d<`uXc`k6cz9SDbL(X~qpzN1xHil`zK~QPbW@ z=5@K!hy}?v>PQ`T#NzN!v7ymPob6T;cw9`>u{P;{ zo(cP3;v>U6CHqmSo0dY7bp9t^Dm`Fm4(6S!*MzYFxjPs^OVw%MD%|9ha`h6;}!SN6X}+;R=e# zYLdFTx~39ZWP8YyI=f$OyiH-{w`^QAdF52{@?*-gW47pHUk}FS-SM8*ItOHs0nw%P z>8d-9X4`cd@vfD+XM85;zV9_9;sKPTBr+)OHtl|%xPhB-7C{vp$@^NOc_i@19I(0Z zFtA^_uq2MVVp*(`jyIrzYAGZP(nL}S;|`>gqzAAzzn(P9;hLs`RZ1!9-QMpdV@G{M zW&no0yoj}qE@pF$Wd!vD_9Ut{Hn-+C-aS6(lo_QRMBu|a%5DHeSqUTiBwL`w>N(|z z1!&wxt80`X0o#6^Ff$^TCg=N;Rz)RbQ*#=UqcBNBV*@D9mkJI_voahq1kJ_EyKgHEf}YliSq)&IHE1jj{g8>IhZ$n z_t1RBv87iH(N)D!O(uVt2PcO&pHs&O}7?eqc

Gi8o#t}>4#^JxY7vXVRQf#B(yt1AM=$GEw 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 F|Je>+X$b%T literal 0 HcmV?d00001 diff --git a/media/deals/photos/1n84DNkitkat2_small.JPG b/media/deals/photos/1n84DNkitkat2_small.JPG new file mode 100644 index 0000000000000000000000000000000000000000..9f0d87c31c28d3da886124bfcc36b2142782962f GIT binary patch literal 10110 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/1n9bT1kitkat2_small.JPG b/media/deals/photos/1n9bT1kitkat2_small.JPG new file mode 100644 index 0000000000000000000000000000000000000000..9f0d87c31c28d3da886124bfcc36b2142782962f GIT binary patch literal 10110 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/1n9bTakitkat2_small.JPG b/media/deals/photos/1n9bTakitkat2_small.JPG new file mode 100644 index 0000000000000000000000000000000000000000..9f0d87c31c28d3da886124bfcc36b2142782962f GIT binary patch literal 10110 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/1n9bTdkitkat2_small.JPG b/media/deals/photos/1n9bTdkitkat2_small.JPG new file mode 100644 index 0000000000000000000000000000000000000000..9f0d87c31c28d3da886124bfcc36b2142782962f GIT binary patch literal 10110 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/1ne8LOjobdeals_logo.jpg b/media/deals/photos/1ne8LOjobdeals_logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..059163f85bf9814e7696798e7069858cf7be31dd GIT binary patch literal 17769 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 M#6DMYSpRPV0LNY1Z~y=R literal 0 HcmV?d00001 diff --git a/media/deals/photos/1ne8Lxashlierobweddingbands.jpg b/media/deals/photos/1ne8Lxashlierobweddingbands.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71cbd4ad5a8aedde29f2d8a9f021c9000207a8c5 GIT binary patch literal 28192 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Ee8kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7Ee8kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7EeFkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7EeFkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7EeFkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7EeFkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7EePkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7EePkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7EePkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7EePkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Ef8kitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7Ef8kitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Ef8kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7Ef8kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7EfGkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7EfGkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7EfGkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7EfGkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7EgIkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7EgIkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7EgIkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7EgIkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GKXkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7GKXkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GKXkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7GKXkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GLvkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7GLvkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GLvkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7GLvkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GLzkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7GLzkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GLzkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7GLzkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GO9kitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7GO9kitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GO9kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7GO9kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GRukitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7GRukitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GRukitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7GRukitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GS4kitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7GS4kitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GS4kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7GS4kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GSbkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7GSbkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GSbkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7GSbkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GSekitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7GSekitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GSekitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7GSekitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7GgHziggy_admin_thumbnail.jpg b/media/deals/photos/cache/1n7GgHziggy_admin_thumbnail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bfe37bc57aa4b940bbc0036292aaedb81733173 GIT binary patch literal 3193 zcmb7_cRbXOAICrE%BG0T2iPK*t3f%>qc^1REPW z8|w*nc6QDaCpdXT`FOawc}|@a<`ul()Rl+J>;B&ybpZVAKq`<82EhR)eh`=+bkqY#9Oq>D zC+)w00T2^23oF~Ph~NW2%>Q&uEMS)Z&42(VFh4U)l|{f9!zu{B60DXXByDnGL_MyU zP3A@Cw&(GdI0yiPj``Q|*bvOj07By`1l4t zm>)0%=w%C7b-Msx!tn15TIVA8LZ_SXh|j!gD7q#mL<=UB=JH;XM!Mmbf5`UdnON>7 z@y9~tIK~Z3Yyn~D*1UbEt86MmRLvOv(GVW<^2~FyrFRP39sA>MeC#T}yfiT7m`w9E zBZ6lnM?FJdf-$?U2kKTY{ok>v#5J~M^Mg)$8!kKvG+NlOe#Z~g^*++?@PSUO*GNd`VkTN#honzh#N?MJu*vIMJpa5+ zww3uXKq{+J4rlB;CHuIYh4j(|>21PIW47_D4-!Vg^&ovF=1KKuJ{`ubL!_TAE-z@b zMd{>5UR%GZGeF7fA|=2ja}(=OG|_Nq*-rCUOrtLA`sA=uZf4zuZ1cLi%^jCRTO3Qk ze9&-{DD%}Gn7$hS?HKNO^c=|p^Fb4=FyWl}rO`ahR?Cq8AxMgOdFU_Jy~J%Ze6u7l zdvj{U!1q_$3HtM~flu9`P^eY15{I~}_tizlenxW{2AbeIT|F_g80}SXd)ihexaZ)N zmWUQ2^j!3w@ps2qly}d|%EI8}?))x@JWKZhbo*l4J1%?DC_VgACZFwN8m1q>8SUM= z7r4`W!e(HoKHk2JNw2av=$?E?)8X0GTbQ1TwJ_~B4arWw(v%}}d%F@^m7V2+=BJOZ@PYvr4*8TuvF&4;-9KBTCv{u&TB_Gr8bqnl9-MVI(>Uf=ARl0}o zX=&vM*o97nNu9lsnWmBWNd|honTTGQYN2Y@J858mE!5s-70!&x*`VWFGS27T*usj` z%az*t=s9cylX@Fy`q@Lv#DZzdV%}q$Js-cEdMD90szxg$deEGm0(n};KE3NeziXXR z>oEokLg=sg*g0G!wI_DV2ZG79`&C%aahvb%Z{B{7Wl=%jP`mGkyMWIL|&^!yRZ(O&3(gb2VwCunQT_EM{AEe#Sf zdlFLpuDySMP7st=Bq35cRK|BL_ri=@onGkb#WRoj`#k6$f)SGbp8B6Q#bd_B5oY;Z z9=Mykj`(XNqrOz0`#&4{&QgSRqX$8?4t4R-EOp zIY{i;QZ0EOZY9kf)!VeESVp#$_tg8{iu>rqBCg()=ucUwoXaB0EDCyAUBZ%WNPR0B zHIy)HsBl3kF4<1VHsnAO_x*fr6$Jq_&rQ7?Xt41(vkc`PnN9CgYlXC^SrnfgeOD2$ z9llG$FY9GW0wC(okljm=`)THm7{{xraq*Tv!NxL()#wI>5BC}pw=2Y2K?xeAvxQZ6 zUF%rR#UedYE*F77MH)p>a(j&gr867|w4;i?fSrfF9b4ZG?3J4LJaLO7(oTny-@VhE zn@ghHKh1StiIl+UwLmD@hJ5|K&`!OK^nhu)fL+>Si_*N>q3=D>T1$-m8vo`5yPziJ zd!l%eR@*9fL$Ph6k67yv$}{qZ1w4M)m`vX@g{6NRAYiY?`{I+9la*WHc`?LFdTN8^2emK6!H{($pG7kdYliwSXSJXXfX9CR$W!W9=n=0HQ&stQO zwFdk1rUpN2n|$Co7`8L3xsxXi<41GKdD%4NU^raFcVO33b(YUo1beU^OK}aM9dbxDdP>{n(;IvAl!A+ zfh#Cfn?9SLU}P)+1A)6l^C z5`l(+QA9)P@jI9}|I;L$X?I=oV%>tcc27XU>N%(0^Qv#}lo(SH`NM}W@VguF2V#Z1etTGPdSj>H^3!!p za?-vdQPt_0leYbS6+t0HoXT3eQP?5XkG3c5G#xtr6>$G<@f6=S4`=(?qS)$Y^02$% zg7q0;mmGD%icC~x%F0CceMc7YhP?_(tlSxR;5!l$x0;+_xKJ;qOO7bra=Z{Wi<_cW zj`Qv$`0t)99ajBL?@uzvEv8>{35|y0hNPKws$=f$Ts#-T(Tj`wl*=L*^N`l}B()mX zsD!Ggwon;c<4;_?_bdE{l%td*uvk6Wp_sni56aJ1FgTnL~qX_9e7Jn++*iC}sNSr1#?9D-zR7<7%vs%-JNQp7R zHr;Gj7g)fZ#&$7$yLN;8M*IkZEy6lX zw_?qwkXtP9p|hLmm)d^8jM~X*CfSwFXtq~W3&+5Ggd!Ba6=P1j39xVyNDVphr!8czPL8q>I%Znl3L32w z7kd_}{VfIc9@4+MYGHKkUG?M8O~LM)e@d7t)PlY`F4MbsM`C69Q+)}(;s#8(Y8GMB zecmT&FquV~hsX~UP@8TxZ8!+BG0T2iPK*t3f%>qc^1REPW z8|w*nc6QDaCpdXT`FOawc}|@a<`ul()Rl+J>;B&ybpZVAKq`<82EhR)eh`=+bkqY#9Oq>D zC+)w00T2^23oF~Ph~NW2%>Q&uEMS)Z&42(VFh4U)l|{f9!zu{B60DXXByDnGL_MyU zP3A@Cw&(GdI0yiPj``Q|*bvOj07By`1l4t zm>)0%=w%C7b-Msx!tn15TIVA8LZ_SXh|j!gD7q#mL<=UB=JH;XM!Mmbf5`UdnON>7 z@y9~tIK~Z3Yyn~D*1UbEt86MmRLvOv(GVW<^2~FyrFRP39sA>MeC#T}yfiT7m`w9E zBZ6lnM?FJdf-$?U2kKTY{ok>v#5J~M^Mg)$8!kKvG+NlOe#Z~g^*++?@PSUO*GNd`VkTN#honzh#N?MJu*vIMJpa5+ zww3uXKq{+J4rlB;CHuIYh4j(|>21PIW47_D4-!Vg^&ovF=1KKuJ{`ubL!_TAE-z@b zMd{>5UR%GZGeF7fA|=2ja}(=OG|_Nq*-rCUOrtLA`sA=uZf4zuZ1cLi%^jCRTO3Qk ze9&-{DD%}Gn7$hS?HKNO^c=|p^Fb4=FyWl}rO`ahR?Cq8AxMgOdFU_Jy~J%Ze6u7l zdvj{U!1q_$3HtM~flu9`P^eY15{I~}_tizlenxW{2AbeIT|F_g80}SXd)ihexaZ)N zmWUQ2^j!3w@ps2qly}d|%EI8}?))x@JWKZhbo*l4J1%?DC_VgACZFwN8m1q>8SUM= z7r4`W!e(HoKHk2JNw2av=$?E?)8X0GTbQ1TwJ_~B4arWw(v%}}d%F@^m7V2+=BJOZ@PYvr4*8TuvF&4;-9KBTCv{u&TB_Gr8bqnl9-MVI(>Uf=ARl0}o zX=&vM*o97nNu9lsnWmBWNd|honTTGQYN2Y@J858mE!5s-70!&x*`VWFGS27T*usj` z%az*t=s9cylX@Fy`q@Lv#DZzdV%}q$Js-cEdMD90szxg$deEGm0(n};KE3NeziXXR z>oEokLg=sg*g0G!wI_DV2ZG79`&C%aahvb%Z{B{7Wl=%jP`mGkyMWIL|&^!yRZ(O&3(gb2VwCunQT_EM{AEe#Sf zdlFLpuDySMP7st=Bq35cRK|BL_ri=@onGkb#WRoj`#k6$f)SGbp8B6Q#bd_B5oY;Z z9=Mykj`(XNqrOz0`#&4{&QgSRqX$8?4t4R-EOp zIY{i;QZ0EOZY9kf)!VeESVp#$_tg8{iu>rqBCg()=ucUwoXaB0EDCyAUBZ%WNPR0B zHIy)HsBl3kF4<1VHsnAO_x*fr6$Jq_&rQ7?Xt41(vkc`PnN9CgYlXC^SrnfgeOD2$ z9llG$FY9GW0wC(okljm=`)THm7{{xraq*Tv!NxL()#wI>5BC}pw=2Y2K?xeAvxQZ6 zUF%rR#UedYE*F77MH)p>a(j&gr867|w4;i?fSrfF9b4ZG?3J4LJaLO7(oTny-@VhE zn@ghHKh1StiIl+UwLmD@hJ5|K&`!OK^nhu)fL+>Si_*N>q3=D>T1$-m8vo`5yPziJ zd!l%eR@*9fL$Ph6k67yv$}{qZ1w4M)m`vX@g{6NRAYiY?`{I+9la*WHc`?LFdTN8^2emK6!H{($pG7kdYliwSXSJXXfX9CR$W!W9=n=0HQ&stQO zwFdk1rUpN2n|$Co7`8L3xsxXi<41GKdD%4NU^raFcVO33b(YUo1beU^OK}aM9dbxDdP>{n(;IvAl!A+ zfh#Cfn?9SLU}P)+1A)6l^C z5`l(+QA9)P@jI9}|I;L$X?I=oV%>tcc27XU>N%(0^Qv#}lo(SH`NM}W@VguF2V#Z1etTGPdSj>H^3!!p za?-vdQPt_0leYbS6+t0HoXT3eQP?5XkG3c5G#xtr6>$G<@f6=S4`=(?qS)$Y^02$% zg7q0;mmGD%icC~x%F0CceMc7YhP?_(tlSxR;5!l$x0;+_xKJ;qOO7bra=Z{Wi<_cW zj`Qv$`0t)99ajBL?@uzvEv8>{35|y0hNPKws$=f$Ts#-T(Tj`wl*=L*^N`l}B()mX zsD!Ggwon;c<4;_?_bdE{l%td*uvk6Wp_sni56aJ1FgTnL~qX_9e7Jn++*iC}sNSr1#?9D-zR7<7%vs%-JNQp7R zHr;Gj7g)fZ#&$7$yLN;8M*IkZEy6lX zw_?qwkXtP9p|hLmm)d^8jM~X*CfSwFXtq~W3&+5Ggd!Ba6=P1j39xVyNDVphr!8czPL8q>I%Znl3L32w z7kd_}{VfIc9@4+MYGHKkUG?M8O~LM)e@d7t)PlY`F4MbsM`C69Q+)}(;s#8(Y8GMB zecmT&FquV~hsX~UP@8TxZ8!+BG0T2iPK*t3f%>qc^1REPW z8|w*nc6QDaCpdXT`FOawc}|@a<`ul()Rl+J>;B&ybpZVAKq`<82EhR)eh`=+bkqY#9Oq>D zC+)w00T2^23oF~Ph~NW2%>Q&uEMS)Z&42(VFh4U)l|{f9!zu{B60DXXByDnGL_MyU zP3A@Cw&(GdI0yiPj``Q|*bvOj07By`1l4t zm>)0%=w%C7b-Msx!tn15TIVA8LZ_SXh|j!gD7q#mL<=UB=JH;XM!Mmbf5`UdnON>7 z@y9~tIK~Z3Yyn~D*1UbEt86MmRLvOv(GVW<^2~FyrFRP39sA>MeC#T}yfiT7m`w9E zBZ6lnM?FJdf-$?U2kKTY{ok>v#5J~M^Mg)$8!kKvG+NlOe#Z~g^*++?@PSUO*GNd`VkTN#honzh#N?MJu*vIMJpa5+ zww3uXKq{+J4rlB;CHuIYh4j(|>21PIW47_D4-!Vg^&ovF=1KKuJ{`ubL!_TAE-z@b zMd{>5UR%GZGeF7fA|=2ja}(=OG|_Nq*-rCUOrtLA`sA=uZf4zuZ1cLi%^jCRTO3Qk ze9&-{DD%}Gn7$hS?HKNO^c=|p^Fb4=FyWl}rO`ahR?Cq8AxMgOdFU_Jy~J%Ze6u7l zdvj{U!1q_$3HtM~flu9`P^eY15{I~}_tizlenxW{2AbeIT|F_g80}SXd)ihexaZ)N zmWUQ2^j!3w@ps2qly}d|%EI8}?))x@JWKZhbo*l4J1%?DC_VgACZFwN8m1q>8SUM= z7r4`W!e(HoKHk2JNw2av=$?E?)8X0GTbQ1TwJ_~B4arWw(v%}}d%F@^m7V2+=BJOZ@PYvr4*8TuvF&4;-9KBTCv{u&TB_Gr8bqnl9-MVI(>Uf=ARl0}o zX=&vM*o97nNu9lsnWmBWNd|honTTGQYN2Y@J858mE!5s-70!&x*`VWFGS27T*usj` z%az*t=s9cylX@Fy`q@Lv#DZzdV%}q$Js-cEdMD90szxg$deEGm0(n};KE3NeziXXR z>oEokLg=sg*g0G!wI_DV2ZG79`&C%aahvb%Z{B{7Wl=%jP`mGkyMWIL|&^!yRZ(O&3(gb2VwCunQT_EM{AEe#Sf zdlFLpuDySMP7st=Bq35cRK|BL_ri=@onGkb#WRoj`#k6$f)SGbp8B6Q#bd_B5oY;Z z9=Mykj`(XNqrOz0`#&4{&QgSRqX$8?4t4R-EOp zIY{i;QZ0EOZY9kf)!VeESVp#$_tg8{iu>rqBCg()=ucUwoXaB0EDCyAUBZ%WNPR0B zHIy)HsBl3kF4<1VHsnAO_x*fr6$Jq_&rQ7?Xt41(vkc`PnN9CgYlXC^SrnfgeOD2$ z9llG$FY9GW0wC(okljm=`)THm7{{xraq*Tv!NxL()#wI>5BC}pw=2Y2K?xeAvxQZ6 zUF%rR#UedYE*F77MH)p>a(j&gr867|w4;i?fSrfF9b4ZG?3J4LJaLO7(oTny-@VhE zn@ghHKh1StiIl+UwLmD@hJ5|K&`!OK^nhu)fL+>Si_*N>q3=D>T1$-m8vo`5yPziJ zd!l%eR@*9fL$Ph6k67yv$}{qZ1w4M)m`vX@g{6NRAYiY?`{I+9la*WHc`?LFdTN8^2emK6!H{($pG7kdYliwSXSJXXfX9CR$W!W9=n=0HQ&stQO zwFdk1rUpN2n|$Co7`8L3xsxXi<41GKdD%4NU^raFcVO33b(YUo1beU^OK}aM9dbxDdP>{n(;IvAl!A+ zfh#Cfn?9SLU}P)+1A)6l^C z5`l(+QA9)P@jI9}|I;L$X?I=oV%>tcc27XU>N%(0^Qv#}lo(SH`NM}W@VguF2V#Z1etTGPdSj>H^3!!p za?-vdQPt_0leYbS6+t0HoXT3eQP?5XkG3c5G#xtr6>$G<@f6=S4`=(?qS)$Y^02$% zg7q0;mmGD%icC~x%F0CceMc7YhP?_(tlSxR;5!l$x0;+_xKJ;qOO7bra=Z{Wi<_cW zj`Qv$`0t)99ajBL?@uzvEv8>{35|y0hNPKws$=f$Ts#-T(Tj`wl*=L*^N`l}B()mX zsD!Ggwon;c<4;_?_bdE{l%td*uvk6Wp_sni56aJ1FgTnL~qX_9e7Jn++*iC}sNSr1#?9D-zR7<7%vs%-JNQp7R zHr;Gj7g)fZ#&$7$yLN;8M*IkZEy6lX zw_?qwkXtP9p|hLmm)d^8jM~X*CfSwFXtq~W3&+5Ggd!Ba6=P1j39xVyNDVphr!8czPL8q>I%Znl3L32w z7kd_}{VfIc9@4+MYGHKkUG?M8O~LM)e@d7t)PlY`F4MbsM`C69Q+)}(;s#8(Y8GMB zecmT&FquV~hsX~UP@8TxZ8!+BG0T2iPK*t3f%>qc^1REPW z8|w*nc6QDaCpdXT`FOawc}|@a<`ul()Rl+J>;B&ybpZVAKq`<82EhR)eh`=+bkqY#9Oq>D zC+)w00T2^23oF~Ph~NW2%>Q&uEMS)Z&42(VFh4U)l|{f9!zu{B60DXXByDnGL_MyU zP3A@Cw&(GdI0yiPj``Q|*bvOj07By`1l4t zm>)0%=w%C7b-Msx!tn15TIVA8LZ_SXh|j!gD7q#mL<=UB=JH;XM!Mmbf5`UdnON>7 z@y9~tIK~Z3Yyn~D*1UbEt86MmRLvOv(GVW<^2~FyrFRP39sA>MeC#T}yfiT7m`w9E zBZ6lnM?FJdf-$?U2kKTY{ok>v#5J~M^Mg)$8!kKvG+NlOe#Z~g^*++?@PSUO*GNd`VkTN#honzh#N?MJu*vIMJpa5+ zww3uXKq{+J4rlB;CHuIYh4j(|>21PIW47_D4-!Vg^&ovF=1KKuJ{`ubL!_TAE-z@b zMd{>5UR%GZGeF7fA|=2ja}(=OG|_Nq*-rCUOrtLA`sA=uZf4zuZ1cLi%^jCRTO3Qk ze9&-{DD%}Gn7$hS?HKNO^c=|p^Fb4=FyWl}rO`ahR?Cq8AxMgOdFU_Jy~J%Ze6u7l zdvj{U!1q_$3HtM~flu9`P^eY15{I~}_tizlenxW{2AbeIT|F_g80}SXd)ihexaZ)N zmWUQ2^j!3w@ps2qly}d|%EI8}?))x@JWKZhbo*l4J1%?DC_VgACZFwN8m1q>8SUM= z7r4`W!e(HoKHk2JNw2av=$?E?)8X0GTbQ1TwJ_~B4arWw(v%}}d%F@^m7V2+=BJOZ@PYvr4*8TuvF&4;-9KBTCv{u&TB_Gr8bqnl9-MVI(>Uf=ARl0}o zX=&vM*o97nNu9lsnWmBWNd|honTTGQYN2Y@J858mE!5s-70!&x*`VWFGS27T*usj` z%az*t=s9cylX@Fy`q@Lv#DZzdV%}q$Js-cEdMD90szxg$deEGm0(n};KE3NeziXXR z>oEokLg=sg*g0G!wI_DV2ZG79`&C%aahvb%Z{B{7Wl=%jP`mGkyMWIL|&^!yRZ(O&3(gb2VwCunQT_EM{AEe#Sf zdlFLpuDySMP7st=Bq35cRK|BL_ri=@onGkb#WRoj`#k6$f)SGbp8B6Q#bd_B5oY;Z z9=Mykj`(XNqrOz0`#&4{&QgSRqX$8?4t4R-EOp zIY{i;QZ0EOZY9kf)!VeESVp#$_tg8{iu>rqBCg()=ucUwoXaB0EDCyAUBZ%WNPR0B zHIy)HsBl3kF4<1VHsnAO_x*fr6$Jq_&rQ7?Xt41(vkc`PnN9CgYlXC^SrnfgeOD2$ z9llG$FY9GW0wC(okljm=`)THm7{{xraq*Tv!NxL()#wI>5BC}pw=2Y2K?xeAvxQZ6 zUF%rR#UedYE*F77MH)p>a(j&gr867|w4;i?fSrfF9b4ZG?3J4LJaLO7(oTny-@VhE zn@ghHKh1StiIl+UwLmD@hJ5|K&`!OK^nhu)fL+>Si_*N>q3=D>T1$-m8vo`5yPziJ zd!l%eR@*9fL$Ph6k67yv$}{qZ1w4M)m`vX@g{6NRAYiY?`{I+9la*WHc`?LFdTN8^2emK6!H{($pG7kdYliwSXSJXXfX9CR$W!W9=n=0HQ&stQO zwFdk1rUpN2n|$Co7`8L3xsxXi<41GKdD%4NU^raFcVO33b(YUo1beU^OK}aM9dbxDdP>{n(;IvAl!A+ zfh#Cfn?9SLU}P)+1A)6l^C z5`l(+QA9)P@jI9}|I;L$X?I=oV%>tcc27XU>N%(0^Qv#}lo(SH`NM}W@VguF2V#Z1etTGPdSj>H^3!!p za?-vdQPt_0leYbS6+t0HoXT3eQP?5XkG3c5G#xtr6>$G<@f6=S4`=(?qS)$Y^02$% zg7q0;mmGD%icC~x%F0CceMc7YhP?_(tlSxR;5!l$x0;+_xKJ;qOO7bra=Z{Wi<_cW zj`Qv$`0t)99ajBL?@uzvEv8>{35|y0hNPKws$=f$Ts#-T(Tj`wl*=L*^N`l}B()mX zsD!Ggwon;c<4;_?_bdE{l%td*uvk6Wp_sni56aJ1FgTnL~qX_9e7Jn++*iC}sNSr1#?9D-zR7<7%vs%-JNQp7R zHr;Gj7g)fZ#&$7$yLN;8M*IkZEy6lX zw_?qwkXtP9p|hLmm)d^8jM~X*CfSwFXtq~W3&+5Ggd!Ba6=P1j39xVyNDVphr!8czPL8q>I%Znl3L32w z7kd_}{VfIc9@4+MYGHKkUG?M8O~LM)e@d7t)PlY`F4MbsM`C69Q+)}(;s#8(Y8GMB zecmT&FquV~hsX~UP@8TxZ8!+BG0T2iPK*t3f%>qc^1REPW z8|w*nc6QDaCpdXT`FOawc}|@a<`ul()Rl+J>;B&ybpZVAKq`<82EhR)eh`=+bkqY#9Oq>D zC+)w00T2^23oF~Ph~NW2%>Q&uEMS)Z&42(VFh4U)l|{f9!zu{B60DXXByDnGL_MyU zP3A@Cw&(GdI0yiPj``Q|*bvOj07By`1l4t zm>)0%=w%C7b-Msx!tn15TIVA8LZ_SXh|j!gD7q#mL<=UB=JH;XM!Mmbf5`UdnON>7 z@y9~tIK~Z3Yyn~D*1UbEt86MmRLvOv(GVW<^2~FyrFRP39sA>MeC#T}yfiT7m`w9E zBZ6lnM?FJdf-$?U2kKTY{ok>v#5J~M^Mg)$8!kKvG+NlOe#Z~g^*++?@PSUO*GNd`VkTN#honzh#N?MJu*vIMJpa5+ zww3uXKq{+J4rlB;CHuIYh4j(|>21PIW47_D4-!Vg^&ovF=1KKuJ{`ubL!_TAE-z@b zMd{>5UR%GZGeF7fA|=2ja}(=OG|_Nq*-rCUOrtLA`sA=uZf4zuZ1cLi%^jCRTO3Qk ze9&-{DD%}Gn7$hS?HKNO^c=|p^Fb4=FyWl}rO`ahR?Cq8AxMgOdFU_Jy~J%Ze6u7l zdvj{U!1q_$3HtM~flu9`P^eY15{I~}_tizlenxW{2AbeIT|F_g80}SXd)ihexaZ)N zmWUQ2^j!3w@ps2qly}d|%EI8}?))x@JWKZhbo*l4J1%?DC_VgACZFwN8m1q>8SUM= z7r4`W!e(HoKHk2JNw2av=$?E?)8X0GTbQ1TwJ_~B4arWw(v%}}d%F@^m7V2+=BJOZ@PYvr4*8TuvF&4;-9KBTCv{u&TB_Gr8bqnl9-MVI(>Uf=ARl0}o zX=&vM*o97nNu9lsnWmBWNd|honTTGQYN2Y@J858mE!5s-70!&x*`VWFGS27T*usj` z%az*t=s9cylX@Fy`q@Lv#DZzdV%}q$Js-cEdMD90szxg$deEGm0(n};KE3NeziXXR z>oEokLg=sg*g0G!wI_DV2ZG79`&C%aahvb%Z{B{7Wl=%jP`mGkyMWIL|&^!yRZ(O&3(gb2VwCunQT_EM{AEe#Sf zdlFLpuDySMP7st=Bq35cRK|BL_ri=@onGkb#WRoj`#k6$f)SGbp8B6Q#bd_B5oY;Z z9=Mykj`(XNqrOz0`#&4{&QgSRqX$8?4t4R-EOp zIY{i;QZ0EOZY9kf)!VeESVp#$_tg8{iu>rqBCg()=ucUwoXaB0EDCyAUBZ%WNPR0B zHIy)HsBl3kF4<1VHsnAO_x*fr6$Jq_&rQ7?Xt41(vkc`PnN9CgYlXC^SrnfgeOD2$ z9llG$FY9GW0wC(okljm=`)THm7{{xraq*Tv!NxL()#wI>5BC}pw=2Y2K?xeAvxQZ6 zUF%rR#UedYE*F77MH)p>a(j&gr867|w4;i?fSrfF9b4ZG?3J4LJaLO7(oTny-@VhE zn@ghHKh1StiIl+UwLmD@hJ5|K&`!OK^nhu)fL+>Si_*N>q3=D>T1$-m8vo`5yPziJ zd!l%eR@*9fL$Ph6k67yv$}{qZ1w4M)m`vX@g{6NRAYiY?`{I+9la*WHc`?LFdTN8^2emK6!H{($pG7kdYliwSXSJXXfX9CR$W!W9=n=0HQ&stQO zwFdk1rUpN2n|$Co7`8L3xsxXi<41GKdD%4NU^raFcVO33b(YUo1beU^OK}aM9dbxDdP>{n(;IvAl!A+ zfh#Cfn?9SLU}P)+1A)6l^C z5`l(+QA9)P@jI9}|I;L$X?I=oV%>tcc27XU>N%(0^Qv#}lo(SH`NM}W@VguF2V#Z1etTGPdSj>H^3!!p za?-vdQPt_0leYbS6+t0HoXT3eQP?5XkG3c5G#xtr6>$G<@f6=S4`=(?qS)$Y^02$% zg7q0;mmGD%icC~x%F0CceMc7YhP?_(tlSxR;5!l$x0;+_xKJ;qOO7bra=Z{Wi<_cW zj`Qv$`0t)99ajBL?@uzvEv8>{35|y0hNPKws$=f$Ts#-T(Tj`wl*=L*^N`l}B()mX zsD!Ggwon;c<4;_?_bdE{l%td*uvk6Wp_sni56aJ1FgTnL~qX_9e7Jn++*iC}sNSr1#?9D-zR7<7%vs%-JNQp7R zHr;Gj7g)fZ#&$7$yLN;8M*IkZEy6lX zw_?qwkXtP9p|hLmm)d^8jM~X*CfSwFXtq~W3&+5Ggd!Ba6=P1j39xVyNDVphr!8czPL8q>I%Znl3L32w z7kd_}{VfIc9@4+MYGHKkUG?M8O~LM)e@d7t)PlY`F4MbsM`C69Q+)}(;s#8(Y8GMB zecmT&FquV~hsX~UP@8TxZ8!+BG0T2iPK*t3f%>qc^1REPW z8|w*nc6QDaCpdXT`FOawc}|@a<`ul()Rl+J>;B&ybpZVAKq`<82EhR)eh`=+bkqY#9Oq>D zC+)w00T2^23oF~Ph~NW2%>Q&uEMS)Z&42(VFh4U)l|{f9!zu{B60DXXByDnGL_MyU zP3A@Cw&(GdI0yiPj``Q|*bvOj07By`1l4t zm>)0%=w%C7b-Msx!tn15TIVA8LZ_SXh|j!gD7q#mL<=UB=JH;XM!Mmbf5`UdnON>7 z@y9~tIK~Z3Yyn~D*1UbEt86MmRLvOv(GVW<^2~FyrFRP39sA>MeC#T}yfiT7m`w9E zBZ6lnM?FJdf-$?U2kKTY{ok>v#5J~M^Mg)$8!kKvG+NlOe#Z~g^*++?@PSUO*GNd`VkTN#honzh#N?MJu*vIMJpa5+ zww3uXKq{+J4rlB;CHuIYh4j(|>21PIW47_D4-!Vg^&ovF=1KKuJ{`ubL!_TAE-z@b zMd{>5UR%GZGeF7fA|=2ja}(=OG|_Nq*-rCUOrtLA`sA=uZf4zuZ1cLi%^jCRTO3Qk ze9&-{DD%}Gn7$hS?HKNO^c=|p^Fb4=FyWl}rO`ahR?Cq8AxMgOdFU_Jy~J%Ze6u7l zdvj{U!1q_$3HtM~flu9`P^eY15{I~}_tizlenxW{2AbeIT|F_g80}SXd)ihexaZ)N zmWUQ2^j!3w@ps2qly}d|%EI8}?))x@JWKZhbo*l4J1%?DC_VgACZFwN8m1q>8SUM= z7r4`W!e(HoKHk2JNw2av=$?E?)8X0GTbQ1TwJ_~B4arWw(v%}}d%F@^m7V2+=BJOZ@PYvr4*8TuvF&4;-9KBTCv{u&TB_Gr8bqnl9-MVI(>Uf=ARl0}o zX=&vM*o97nNu9lsnWmBWNd|honTTGQYN2Y@J858mE!5s-70!&x*`VWFGS27T*usj` z%az*t=s9cylX@Fy`q@Lv#DZzdV%}q$Js-cEdMD90szxg$deEGm0(n};KE3NeziXXR z>oEokLg=sg*g0G!wI_DV2ZG79`&C%aahvb%Z{B{7Wl=%jP`mGkyMWIL|&^!yRZ(O&3(gb2VwCunQT_EM{AEe#Sf zdlFLpuDySMP7st=Bq35cRK|BL_ri=@onGkb#WRoj`#k6$f)SGbp8B6Q#bd_B5oY;Z z9=Mykj`(XNqrOz0`#&4{&QgSRqX$8?4t4R-EOp zIY{i;QZ0EOZY9kf)!VeESVp#$_tg8{iu>rqBCg()=ucUwoXaB0EDCyAUBZ%WNPR0B zHIy)HsBl3kF4<1VHsnAO_x*fr6$Jq_&rQ7?Xt41(vkc`PnN9CgYlXC^SrnfgeOD2$ z9llG$FY9GW0wC(okljm=`)THm7{{xraq*Tv!NxL()#wI>5BC}pw=2Y2K?xeAvxQZ6 zUF%rR#UedYE*F77MH)p>a(j&gr867|w4;i?fSrfF9b4ZG?3J4LJaLO7(oTny-@VhE zn@ghHKh1StiIl+UwLmD@hJ5|K&`!OK^nhu)fL+>Si_*N>q3=D>T1$-m8vo`5yPziJ zd!l%eR@*9fL$Ph6k67yv$}{qZ1w4M)m`vX@g{6NRAYiY?`{I+9la*WHc`?LFdTN8^2emK6!H{($pG7kdYliwSXSJXXfX9CR$W!W9=n=0HQ&stQO zwFdk1rUpN2n|$Co7`8L3xsxXi<41GKdD%4NU^raFcVO33b(YUo1beU^OK}aM9dbxDdP>{n(;IvAl!A+ zfh#Cfn?9SLU}P)+1A)6l^C z5`l(+QA9)P@jI9}|I;L$X?I=oV%>tcc27XU>N%(0^Qv#}lo(SH`NM}W@VguF2V#Z1etTGPdSj>H^3!!p za?-vdQPt_0leYbS6+t0HoXT3eQP?5XkG3c5G#xtr6>$G<@f6=S4`=(?qS)$Y^02$% zg7q0;mmGD%icC~x%F0CceMc7YhP?_(tlSxR;5!l$x0;+_xKJ;qOO7bra=Z{Wi<_cW zj`Qv$`0t)99ajBL?@uzvEv8>{35|y0hNPKws$=f$Ts#-T(Tj`wl*=L*^N`l}B()mX zsD!Ggwon;c<4;_?_bdE{l%td*uvk6Wp_sni56aJ1FgTnL~qX_9e7Jn++*iC}sNSr1#?9D-zR7<7%vs%-JNQp7R zHr;Gj7g)fZ#&$7$yLN;8M*IkZEy6lX zw_?qwkXtP9p|hLmm)d^8jM~X*CfSwFXtq~W3&+5Ggd!Ba6=P1j39xVyNDVphr!8czPL8q>I%Znl3L32w z7kd_}{VfIc9@4+MYGHKkUG?M8O~LM)e@d7t)PlY`F4MbsM`C69Q+)}(;s#8(Y8GMB zecmT&FquV~hsX~UP@8TxZ8!+{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Hu3kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7Hu3kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Hu7kitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7Hu7kitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Hu7kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7Hu7kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Hutkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7Hutkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Hutkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7Hutkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Hv4kitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7Hv4kitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Hv4kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7Hv4kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Hv7kitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n7Hv7kitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7Hv7kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7Hv7kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7J3EPhoto_091308_001_thumbnail.jpg b/media/deals/photos/cache/1n7J3EPhoto_091308_001_thumbnail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc85b598e1221ef08026a2acaa2373c910423991 GIT binary patch literal 4660 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7J3skitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7J3skitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7J3xkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n7J3xkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7J6Ghalloween2009025_thumbnail.JPG b/media/deals/photos/cache/1n7J6Ghalloween2009025_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..b2838996dba394d6473254b657acc77dbf4d97f9 GIT binary patch literal 5172 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 RKL9@bLkynWsp3C;{|`BGhj#z~ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7J6cP1010093_thumbnail.jpg b/media/deals/photos/cache/1n7J6cP1010093_thumbnail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f08de2aedaf9098c2b9c7800fc4df896c407afd9 GIT binary patch literal 5652 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 RKL9@bLkynWsp3C;{|`BGhj#z~ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7JaiLamborghini-Gallardo_Nera_2007_1600x1200_wallpaper_01_thumbnail.jpg b/media/deals/photos/cache/1n7JaiLamborghini-Gallardo_Nera_2007_1600x1200_wallpaper_01_thumbnail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e825ad6894fd15801fd8032e04b62374c61ba53 GIT binary patch literal 2889 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n7JgQPhoto_091308_001_thumbnail.jpg b/media/deals/photos/cache/1n7JgQPhoto_091308_001_thumbnail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc85b598e1221ef08026a2acaa2373c910423991 GIT binary patch literal 4660 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n836Kkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n836Kkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n836Kkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n836Kkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n838Bkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n838Bkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n838Bkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n838Bkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n838Dkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n838Dkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n838Dkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n838Dkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n838vkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n838vkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n838vkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n838vkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n838xkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n838xkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n838xkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n838xkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n838ykitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n838ykitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n838ykitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n838ykitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n8396kitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n8396kitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n8396kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n8396kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n839Bkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n839Bkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n839Bkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n839Bkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83aKkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83aKkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83aKkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83aKkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83aekitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83aekitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83aekitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83aekitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83aikitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83aikitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83aikitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83aikitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83amkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83amkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83amkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83amkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83aqkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83aqkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83aqkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83aqkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83azkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83azkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83azkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83azkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83fBkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83fBkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83fBkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83fBkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83fNkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83fNkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83fNkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83fNkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83fRkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83fRkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83fRkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83fRkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83fUkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83fUkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83fUkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83fUkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83fXkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83fXkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83fXkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83fXkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83g1kitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83g1kitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83g1kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83g1kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iEkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83iEkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iEkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83iEkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iGkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83iGkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iGkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83iGkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iJkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83iJkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iJkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83iJkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iLkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83iLkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iLkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83iLkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iNkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83iNkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iNkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83iNkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iQkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n83iQkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n83iQkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n83iQkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n84DNkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n84DNkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n84DNkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n84DNkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9Plbkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n9Plbkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9Plbkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n9Plbkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9Pldkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n9Pldkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9Pldkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n9Pldkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9Qnxkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n9Qnxkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9Qnxkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n9Qnxkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9QoDkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n9QoDkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9QoDkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n9QoDkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9QoLhalloween2009010_admin_thumbnail.JPG b/media/deals/photos/cache/1n9QoLhalloween2009010_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..76b014635c5c5f51b6e01db116f6678eb1de380f GIT binary patch literal 3682 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9bT1kitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n9bT1kitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9bTakitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n9bTakitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9bTakitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n9bTakitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9bTdkitkat2_small_admin_thumbnail.JPG b/media/deals/photos/cache/1n9bTdkitkat2_small_admin_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 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 literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1n9bTdkitkat2_small_thumbnail.JPG b/media/deals/photos/cache/1n9bTdkitkat2_small_thumbnail.JPG new file mode 100644 index 0000000000000000000000000000000000000000..ac11813d3942d3306f4309ae3a3d7d4bace6d3ec GIT binary patch literal 3211 zcmb7`XE@sn8^-@h>{YRjJrXlj6)VK5(KP6>i&CSaW?Mv2qcuvc#7NE79wn68s%Wj6 zrS>irX&tMmRY&pmyw`O;ydU5D`S^S8`?)_p=QHPD0Cq!+0R{kp008uRfb)4k4`8CF zXP~EJVqjokW@2Jy<7H=KWn~lM=7I9UMI^*wA}}$@i>S+zGD%1L+G5|h6Is^m*z)%nb3Oerw1ONaG z0sT|=Ux6V2h=z`q{x{TQ2f!c*7(zz_p@T5~vjF-{X`mcpv`8IJE|}SEUpfWd8hAvC zxT1MvK?k?qGChxlGrq8MbmzC74+Q*g^nd*{w7-!g6aa%kGypB_zh{3(L&Z3dI%W{x zn$ewzl#b=y^ErS80{Yz*0tK`I%16M49*!;)(v-oIAM;aL*alCmOT63f&By3n^pf3m zpS zLp08Ij!hSA^Gg2-K1f;MyZS?Ld3tyPCEeO&pxxt8D2y4$hod|*?39kWNM>KN;69#-Si|m+__Fb?FAEGKODf3 zH7Xu97)hG9xCS~dhK(TNe;x^vo=*`gCt7%Ju?W{+cE3?fn-uM5?NuwYFG_%gObU8R z!7@kK`#09stUu4lsLhMInUvTUpM8RDnnJ5S1sW2*jh6Kxd7M`iu){d`n-&j2HXqjs*$tHi#i$`iWV(*jni zZZ@d&SqZ++c5smrZ*KQaya!QlezrRK>%GFMaJG_~Cu_}xH}!0>Of2QnlheXCGO{_U z`*_X516DEYM;~?kp4$7HT|GrvLkPKJ_VJmjO{}EO z#K^Tp>>TyNpWGH%B%b>}49v3KxjTkJayH&OZMigm#}+aStidJDfw4^5al6A{QDJsw zFQwRg5^rZ9S!K8joK#D{nv47Olk9)zDp~~DoLN-_AZF(!NozjeMJ#WJ!(EihV9_J% zZ&KN*kM{(aG*uA2_Fd2oG4lLR^X(rh(sJBcQR~b&?U=KMtzW2}AHH$90xgYp4>P3d z%t!_^)+!<~uby#=Iw4DCO$;~Q&qnWCEcmMXB$Q! zM!+;3WgcH;&5|2sop848aOh@1=2u!ZxwPkK{pQ_+2AkmbVm6Z8eJd+)naLf?-7D4mP{Gs=Nyuv9c~QEJkF4%QkW2FCGo8MK#ddh+8s! zee>MwyZ6PXG|+YxcLp%I3>4l$;WS@QGROSg z>YNyr8tpx!L+<28J1O#zc9R|$qxMwR&rT7PRC^*}L15@DVQ$Rtz~I4qg&C%)U|Z3rq93^~7@PeoJw5n-V2T1(RPY{Gh%!e^RbX zVIZh)^|(CF^_$Jf^8&=vE;vp-GO+AUf2Zierk`=L-DM2h7t7H^N6#oMDK#~A*2K&t zQh3xzQN`y0_quyE2UlZPR#nlL(ic&_I_OA$vK26$;^sX3wU{+cwL_!g^%oVP3b&78 zhEF%k%GHy0r3;sP4zc{0xM^FN1;~L=Gt zE6kDshss+eo%6S3k>Bsr6_ol2RE1XXN!-AUG#<$>F6|t9yVMwjxf6KCDzc?l+wgy! z1JHysq(?_37D~+$&{l+oYa1SDAt~v3Y~7~=pIN&H^!keUmew^kzJ;Qx=Ro|mKsi0H z3B$z4lOC5wS$F)i1049;&7M;jr+i9uLCbfyK9#-B_7$iL5+^Nl2^*rB*0oS8altrZ z;Ed3)7cnR*Weow^D~}I}H>Z5y<|m)d?icXeaQAWL$QsX2k#N?g?L7~O9pAjHT%z^F znwky3gd#Wkv|yB=_d8o&muR#0xvNXt4*0iEp2h4d(e&J?*3jRiMSuqzlhJRc(S%1YNq=}lsh$yoM1(>BVAUVenu*-d=liAjX)NN(F4vVfLbSMu;Z5FmANv?U z2?SC;9#W~bsOsv9Vp}%7i&qN{dM<76Bo@gN8pgBaIhSoL%G7irs^FG9y>XbKWv_eR zp>H)SbC!|ZgX)f62M5ayuK<$Du0nhB{n13aN7}a5cRzpW=Ydb|uX=mi5`GME6t!^a zEc4BTm=#3lux9iBeDF|P5wNlLXoneL5SS~xG}dD6CyMT3p9l}rTfXz+az%9z50W@Y zcrTTNy1B;Kw})P`t}4fAe~B+wa>)N-?9|&|ar<;bLqQMfI-a31Xqc%8$8z&Z>{50%bQ$ zl)1iLVcUo=vG(qz`qI}ePEuGnPF9;pjPz(7*QG{*~mm^vu)mh{#J5{!O5co zF1k{lLlmZ)Sx2qKXVTN;eA2N}(Xuq`dD7o<@ov9WcbeNBR+^VFMBVg4F#E)gd&q0LwFYU4;{w zZ)xfsap#CHp7J?Y6KfhRja_wA1tJ+~s0WqlfuxxMmj*wP+~XnrUl(ooGu&?PUgKRUkaWeEs4p6yci-4)Bo zucJ!KK|&R%FKse-s}i@OUE<7R>8EpSoi-~n@Ct9y1MWfMVWr}qn%$M+Rbv`4vNqq{ zok`fDfW)iz4jjdyU2{!QO66iL&h0a1pfvS^g0x9TX+qqn!LT+ud@DJi5-Rbw3e_k<KTtH83-*E}>8y)E~5-H()U zAwN@nCdG`a;}OMq(8B_VsJ!^`mW64Dnvy9r!(d6^*xRhoKh|h@%qD`u*SBAhtne4U}BX*FK;954FLwPXGV_ literal 0 HcmV?d00001 diff --git a/media/deals/photos/cache/1ne8LOjobdeals_logo_admin_thumbnail.jpg b/media/deals/photos/cache/1ne8LOjobdeals_logo_admin_thumbnail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..866322222387be4224cb328c51fc63473bd2b9e5 GIT binary patch literal 2080 zcmb7=cR1UN8pnTGLKKNMswGtttr4+nCW6-L~0tsIM zasU7ZL-vaPS5O!r0s=$ed!`8z0E3_a6as^aia>sC>=^(Qh7yrh)ZTAy4?mzpy{QwP z`wT6E)3=C-e2mp|_${g~sbgvH`0(Bj{+A3upkSEDuT&gr4-DH&-oyPz;Jrf9`?aBp z)Nu0-`(x~KELdidSIYMCW|u)FZh zRXH2C(}&StHL7DUeXY*Au4QMdrF*$NcIoYEKQs-4|I3I*Blh+fM6mLKzqhL998!5+ z=tcg6WF(!(LUC`7Xin%mG?AbU1DUmn@r!4@ip9|tatVe8QzE`E`Y0K>Z-+36$kKIz z3*IpL(8Y$8?pY=$_J`hNdSZlo;fT;WGB0*myTZKSi*;iIIEuU{z zHTL=u4;C1TVr)z`xw*$Oyc0c2j4&nT?>h2^PYWc%4{&AqmL!tm% z5o*`zu=K6=b5mnhi`9!l%(<;cIcN_pJFTw4y6s)TWxw9p?z&Ey?~FUwYLz!#3GyAR z()Y0CBZTapN#6s4sM+&<3_-T^RF90B`>l}$JpPt@sWaiV-wy|BwS6=^DCYv`$R~IFi##QzN`;i&4M6rp@2eHofa1!D3 zybze3g!+aSKzgoxFr=^!s_3(GfJbE-e>U}n<3saWrh?qA;#M?zH*RtG_Uor~=(p-5 z=3m%ehi{~|9;8b?$I5zoPP8gF+Ah_HQ8_{SzVV9z>})YHmw4k)9?20_!4(1reI(tN zc3mUG+=?u94I`LscB@hiqHyaOvQPbWbB?JcL08PA;~ywv#8)jxOe9OP?L77TH3irU zt}L&2T7$3H{AW&T#_6O9IsYsL?7-q2B~$Y3&ZBVOg&MmF>)RZxjubr~!>Fyq3W3%O za_2re&+~W1t`M?%nHBRtnaj2{bIZ|ABi@4HRl25P*Otliwi|ra1!#JLwN>R`(Vb4) z_Lv%zgQ2=sdDl`t>Gh2rg?VlQ|2#?6nGnoZ=w`=!EVQ8|mUFzfRuPbFtS;@=x<@!M z`Df(WJguKMf;$mOHiEU052@|mIxdc>>;0KZNt?EMOSTbHr{q3tK1vtNdBg|Yk@&J~ zIO*5qRj$!CE4DbMf8%Oo8BwZ`wKzkmQKY9h$(FT$oM_0LoH`Zu2ti;ES#7k%4jdUw zOgZzAU~-yKeEr&sd=}kS$;K=zdf98!RG9gUVpyZ|1;9w)6g!PZ@4HgV`@@kT<{tD?pD8X zG|6qHhJ*H9%!(OEEzTAcEn0t3=`OQN=HDGYK1HHa)M_eAb63qSuXjuzvH041B6e+5 zAq68JAPvp3P+LPhAv+DLy&pVzk9iWQ%Zd$X*7$IuZ!I|-Z1b`{#w?vVHtNcS@CWd5 zeCx;`C4tU&2l3Shcda-axlKb4?zq=DvGF6SU;NH(+=ccX)l;?5rQw3^kLKw&Y$^iX zf86x8T;Kr& zFTZ1I)t*UHSE;es$(w$<^D6p4ydCJAX3EmFfPF>V!CGA}Pp!E${#{>xF)bzR#B#s9 zA;bSY&(w(WoB2rGyUoGad_d->DW#e|YI&#Ww2N&0OI{N5d@-DV0MjJ0G*i~qk}MTi zS2fmjY%QKlgqc*4BU+kHGh9Nx5Tq$;uVt&=tzjEM1d+~QC8{TY&!wQz=|@$^zHdPN cqst3aB~0tsIM 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 literal 0 HcmV?d00001 diff --git a/media/images/bg-add-nav-c.gif b/media/images/bg-add-nav-c.gif new file mode 100644 index 0000000000000000000000000000000000000000..dc0e0346bbfb35cb262e6311e0b4049c595f83e8 GIT binary patch literal 258 zcmZ?wbhEHbWMoiexXQr5%ErdT%*?{V!pX^{p`~ME?`&ah@9OF6&*;OwrTq{7R`CnhfG;^AXu>&VT`V`O5kZ)n0V zAZTW3BPk_q=jh5nOQ86Z1#G+yhy?kGfldAZvs=@G1}@3w;~O7ph_$#ZW=gEl>-RXm NNYaO)$w7d@8UPHoA2$F1 literal 0 HcmV?d00001 diff --git a/media/images/bg-add-nav-l.gif b/media/images/bg-add-nav-l.gif new file mode 100644 index 0000000000000000000000000000000000000000..0962603b43663983bd88af1aecb9b91cc8fea890 GIT binary patch literal 363 zcmZ?wbhEHbX(K5mZRhCf>gj7@ zW~HH}V_|JCC$GprOQ86Zg^>a16&;WzAU`p%bvX1Dc&w4=KhaTi(!^qZKxc{9-H7!! z8p=*@t=RvdzryF-jPo!0s?P4)alfFa#?Su7`-;Z8^WT5`Z(wd}ZeeI^?-1_l?osIL zpTII{@)W6Q(`Sgxnmvbg-uwlMoQsz%QRG;$a;2go_qz4#)^Kg!vU!an&(2*u+ZB2D YAK0tNcjU++MgEig$JYo5I5JoR02FOkx&QzG literal 0 HcmV?d00001 diff --git a/media/images/bg-add-nav-r.gif b/media/images/bg-add-nav-r.gif new file mode 100644 index 0000000000000000000000000000000000000000..4d6b5c608c43526b565e1ed02e142a5e51ea1667 GIT binary patch literal 363 zcmZ?wbhEHbX(K5mZRhCf>gj7@ zW~HH}V_|JCC$GprOQ86Zg^>a16&;WzAU`p%bvX1Dc&w4=KhaTi(!^qZKxc{9-H7!! z8p=*@t=RvdzryF-jPo!0s?P4)alfFa#?Su7`-;Z8^WT5`Z(wd}ZeeI^?-1_l?osIL zpTII{@)W6Q(`Sgxnmvbg-uwleixw|d)4xSB)ynFZU YR^&T$=zt>sasH!<0s^NtI5JoR02QQHwg3PC literal 0 HcmV?d00001 diff --git a/media/images/bg-blockquote.gif b/media/images/bg-blockquote.gif new file mode 100644 index 0000000000000000000000000000000000000000..b735ee013d8b4a5447f627b70817e04d26c42926 GIT binary patch literal 565 zcmc(c+e_177=XVyYuQXkY3IYVljd@BHn(ZkG@RJUYMbv>7ZTkDT_t$YFr*O_AqX8D z`>jpH=)}l^qB3(RMUiO~4lxY7Sp`L`^!?uVEB}g~Kj7hkr?JWFa<}FQqxb^Cu3>ou z6DfAaFf>YYQrRMiq~=LgYFMG6O+!}<|48-XGuxwh>It16Axjv$-_UrPgGp+AD0{}p z5tR-7vh6vIf8|?~Z2hMVWA6tVo@I9okKdP$7&@bP;U%4ZN&_kG9HldZbn_!$d_@CO zeBy!BCaAOr%ffi$JX$8<({`{mgrC8n5_ zY9FRMlYI3p{hC*oUlWnKHb$O4S=T3@&G5u`K6Xz!G<=ulb4hBxEjvf3DvItnS|eB; zNAdqCn#05dFE&t*#x6Yo0W1iSOWm2#51)3 literal 0 HcmV?d00001 diff --git a/media/images/bg-buy-block.gif b/media/images/bg-buy-block.gif new file mode 100644 index 0000000000000000000000000000000000000000..e3928a15c4cf136121b0a3b0589364d84d853961 GIT binary patch literal 1050 zcmbu)i!<8?0KoB|c{^4Y^=wfY5sz7uW7N7`DO%Cl=?JxXBo5hf(^-R-V_XSRLA|Bh zbSfefVR}U{i^pt7A`yv55E0~^NN7uStzG|yegA;Z-S=8-OxPvVK41$7`~kIEy}Z1v z(P(5cnL?oui^T$gK&e!&udi=!Z?CMZY;JDu?(PbO!i|j$KA*p{v%}-@Boc{8BwAct zTwPt=+S*!MTVt_U3kwTuHk-rYaJk&2rKP>SJ-J-2)oS&6y;LgQ-{05ibVj35rBWFT zhJ%BH!^1=1f9Lhe%me`ZfxvgtyC=Znl$mG~9oQOANq|OytN_SL#g*fWE{ze9-oq*0 z52|J>pl2b@(ZQ%g8oN318hK5S}kX=!LD z5=buiN_Y2)in7uYleQl)(aDoSh( z5&UxHAw2rrXr5#kBLe50XPjO{&(~3-6Vc%Xnl-=DzgkfJ6uR4FC*pURw;RpqyfjIPch9WW_0&Q8WL`tcZdbMHZ?=LK7D}i=>b860E<;v zglIj3q-Rcplb;NxcQ7z7XI{mvb27^bK@=oZyn-SAmd+-HsDf?1O`h5W}oD#Fy|?u}NpcTK{gmU8sdJE)N|lLXac0 zub$)tUEb1^bv>FYeQn&!?d{4iD`BZs{By;MR$tNGohsjrqB+N>Kf^@2kehHXmz*zbEx0)@ zsB`zx_w#;=pKv^pJii1+?Iq=g$3m(Ex59i{lX`o6+G>92^9lASw3fC1Xzfq!XhDX{ zyE<}Ce9406Di!5%nT?W6Y9mm|eGp$Ns0fyIE&t*_X$BsX>lg=y)o?79xJml2cuCrmh Nx7JPP)L>w+1^_CwG7SI# literal 0 HcmV?d00001 diff --git a/media/images/bg-content-box-b.png b/media/images/bg-content-box-b.png new file mode 100644 index 0000000000000000000000000000000000000000..5ce70cbae6788413c7309e55815ace22c6c83f84 GIT binary patch literal 3215 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 B0|Wp7 literal 0 HcmV?d00001 diff --git a/media/images/bg-content-box-t.png b/media/images/bg-content-box-t.png new file mode 100644 index 0000000000000000000000000000000000000000..72713fe658217bcafa1f9d2fab4b2afe62489e36 GIT binary patch literal 3191 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 d009600|46Zt$# literal 0 HcmV?d00001 diff --git a/media/images/bg-content-box2-b.png b/media/images/bg-content-box2-b.png new file mode 100644 index 0000000000000000000000000000000000000000..9b15844ebe0cc0f61c8e14288643958a62ea6af6 GIT binary patch literal 456 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 literal 0 HcmV?d00001 diff --git a/media/images/bg-discuss-t.png b/media/images/bg-discuss-t.png new file mode 100644 index 0000000000000000000000000000000000000000..0ebce0076ca3b58ad4a4f40c3564aff701389904 GIT binary patch literal 3116 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 literal 0 HcmV?d00001 diff --git a/media/images/bg-give-box-b.gif b/media/images/bg-give-box-b.gif new file mode 100644 index 0000000000000000000000000000000000000000..5a9adc5e145968ebab32db617a45457b751ffd09 GIT binary patch literal 136 zcmZ?wbhEHbe8|Acu$h73|Ns9#et-S+w8ht4*MLSon%Xz);Lp4ib?){2+(hUp# aA6W1~ok4=RcQ000G%Nkl+Oxg^0001UpZ4x>w{aVYqA=-opDB6&U(G8u zYfoK3#V8#_7tAe9$2lKBNS2gtY@jX9j%D|^x3~5=000000I;=lKeZtM00000Fp+M0 zDh&Vt0002f=nQEY(*OVf000ot8PY1I0RR9103f0>r1xH5Ur+yB_=AHQ00000KtR`s z-ki5>iRs&>-@YH~(r#W}UfK@<00000U;yLxAzwX!WpL5z)&+W~ATSeWk+p=GlxMuEZ#&vDraocaj z@n&oXj*0!@bNU+Rcs-}j8`tWe@kRSSqCF!3K>wk?YoGix-8kQkxHvyGw!QGK$0x6oab8?I@cdF2Jz2VPTY0?n%6w<{KL+B- zUGjx00o_GJi+Gmt+8!vRn-|RW*pex7id8YJ&-oMMr-)2~7XW~G&_ItFQSJx1ALIVi z+mCQ>zaBHTBD|g8&T|Wb+PH3PT3z}lgLywm{+;{V@olNb+QdCVI&#T)KGlG(=MN$} zS`smOpCI<*xCZTtK=!A}`q-=(e$oggdI10+(EFm_CI06aj|YwL?#B15@E+YaqFbz0 zL9Jt23~%>u@xJ7mKe;{+|4UY%ME@{-&J`t~%RSM03SIV%m^SX6w&Qq47_WL;^@GN6 zJnH{QBcgpj0D#_m`=&sg_a!mDKEnOUcIqo9-ClIBf7`gR24cG2GcBSz%1U8`w0he} z4d`53M5lam`JrODhTqEVhp;g{j)$Hi`_tp~_Y|jK`fCFK0EneAK0m^HxyBA~9p5vi z-bQRY(XEfoUnluz*ViJ{WV);p)1O84xbwgix*f!{_<%8aPjoobXg7-I#-a5!FXB8*ZM@-Y4t()#yE=eEXl9zX3PI?t(y z)*Q0ZRYborF{Meqt$H{b=9aY$0vN)n2c%>+kGIS zhbF-jC&=;0aZDHk0001lcV6R1_w3*n$Bb)AKn}uq z0RR91fbgCc-Lr$+J!XA%a$QYCv>nnqrtA4W`oss0$v|E_J&xuB0001hxMy^WR`Vv@ zI=*#8r!G3t`f6i8q;*U;@mBBhM1@(A9K`V<00000M0d=Xa2v5Lj>!S6-X`-NX)V+* zKK7zk1hNkR03ae-aslYQ|Fr1t?u1)Sw})a|(zgtYYn+fC59&!@+Z4|h$N&HU06=i( zxv|*Rtk2V$AJYC4eTqm100000#KhR{-tVN(`62BKe*_Nz0000Wwjci+lg`FHH7f%d k00000z+1^fH0>0B1Ml!FFOqr_9{>OV07*qoM6N<$f-6SKM*si- literal 0 HcmV?d00001 diff --git a/media/images/bg-header-main-t.gif b/media/images/bg-header-main-t.gif new file mode 100644 index 0000000000000000000000000000000000000000..0606cf95357ec3a5c50235f2e6af189eb81f2dc4 GIT binary patch literal 232 zcmVm1L!zOS!sERnW?$SNePJ{*(o|oT55WVnyOm&nX~!|8!J0YTWdS`8G5_R i+w1!a9GnWND{Op>oUFXeoTb(b9W6agT@4FR002AXTW#t9 literal 0 HcmV?d00001 diff --git a/media/images/bg-main.jpg b/media/images/bg-main.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1cee9e36809fc6965aaa0b5593c01c2fcf7ef47 GIT binary patch literal 27977 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 literal 0 HcmV?d00001 diff --git a/media/images/bg-navbar-c.gif b/media/images/bg-navbar-c.gif new file mode 100644 index 0000000000000000000000000000000000000000..c5e315243125e642e78d2dbf8412d0c310c2f5b9 GIT binary patch literal 263 zcmZ?wbhEHbWMoihxXQp_bmFh*rdNh1{zz?m%f9>}@0w?-`@V9ne5`-$x8Bj;3cEka zY=6(Q`YFrO2f`a)D)0TmwB(-7k)OIpewm#5r*Yt$!SO#5Ti)=meI~#2qw&dq%uDXG zE_PEL1+@k3+IOta%!w@TO=ZE7~MNdG!2~E`4TT*aBy>Eum%7meN?sp literal 0 HcmV?d00001 diff --git a/media/images/bg-navbar-l.png b/media/images/bg-navbar-l.png new file mode 100644 index 0000000000000000000000000000000000000000..925c759820c9a2ea37dc3ddc680987f80cdf748f GIT binary patch literal 305 zcmV-10nYx3P)Y`9VNTnK%0`CN)3%qzVAJ`~2_lyvUR;l^?qa z(Mw%t4-mW)2WG(3Qk(2l=i9`O)k<-3wsD9y6Egl8Q;Ua4e%1*q00000NkvXXu0mjf Dmr8=6 literal 0 HcmV?d00001 diff --git a/media/images/bg-navbar-r.png b/media/images/bg-navbar-r.png new file mode 100644 index 0000000000000000000000000000000000000000..84d1b72c72d8129bec1916ac6e266fbc9731bda7 GIT binary patch literal 311 zcmV-70m%M|P)gXBVx)5LBB?Q5hD?!LT1_FZM6?B};#GNn@aODkzz)Vu* zkBBmw^c2|Shi~`sS9L?T>BgK8Q3m?pZm?yh^ed+G#6mxb!D+H>vXaz}rb6Y6!DSjO z^}eN6G!dGen_*Bp|CE}Kkml#$d8Zbd#zWzfMqty5kSiNtACgc-_N-8)w5w^VTjok> zS<^(8H4+>@O+I&GS?o@%kl5cikEdJg;-qTwBE4&_;7!w%YNY$Baj&3X^;#~9!R1m7Jmim%9J}002ov JPDHLkV1l+ZkjVf5 literal 0 HcmV?d00001 diff --git a/media/images/bg-price-b.gif b/media/images/bg-price-b.gif new file mode 100644 index 0000000000000000000000000000000000000000..13bce68e51df9f9585cc5b71c2192545eb843364 GIT binary patch literal 1086 zcmV-E1i|}9Nk%w1Vcq~E0M!5h6r&Rnj}jH86cnEm5|k4arxX&E6BC>h6PFVbkP{P_ z6A_FO5sMNKh!PQr5)g(G5QP%-^z`xb@fC^}rq8D|n>BX0ckl7GiV^?-000000000000000000000000000000 z00000A^8LV00000EC2ui0Nwy2000L6z>{!DEE41ejE#wS4f^rxw7TUm@{kM%(=7Y&!9t#9!;9Ffzzl{t6t5zwd>cgW6PdRySDAy zxO2xQz`M8a-@tNG7S|l1vgA!U9l6Ddm(@R%zvxSZ1l^mRxq}<(FWFDJGU5 zRKUQQXr`&=nryb|=9_TFDd(JY)@kRRc;@+L1sc@g=bwNED(Iku7Ha6Bh$gD&qKr1` z=%bJts=)@4R%+>`m}aW!rk8GTK?x3oD(a}DmTKy$sHUpws;su^>Z`EED(kGLj&MN) z6f~gguDtf@>#x8DE9|hu7HjOW$R?}ovdjWYK?KlRK*O}uR%`9G*k-Hkw%m5>?YH2D zEAF`DmV2!Q&_XL)0S6P9>+ZYo#w+i<^oBbD2NI;4t_K}F;P1Zx2Q2Ww1Q%@Z!3Za; z@WKo??C`@7cL0LE6ibkS2pB-1@x~l??D5AShb;2QB$sUR$tb6+^2#P-Ktcxj>KgF(8T<041ejE#p000j{il$Dm3n3#Kp$P$jQpf%+1cv(9zP<)YZ!k64u(=+}+;a g;M@-s7v<*X=;`X~?CtLF@bU8V^!4`l?GPaVJDxbDKmY&$ literal 0 HcmV?d00001 diff --git a/media/images/bg-sb-box-b.png b/media/images/bg-sb-box-b.png new file mode 100644 index 0000000000000000000000000000000000000000..5f446135338e4bb8b4d8791c1e49eff23a73be00 GIT binary patch literal 3090 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 literal 0 HcmV?d00001 diff --git a/media/images/bg-sb-box-t.png b/media/images/bg-sb-box-t.png new file mode 100644 index 0000000000000000000000000000000000000000..454e5c14d6945302445761a213582d8d057ab836 GIT binary patch literal 3141 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 ZD_fR^5`h4l^*7d(oxZxFtAT~V8UWagJ5&Gw literal 0 HcmV?d00001 diff --git a/media/images/bg-world-txt-t.gif b/media/images/bg-world-txt-t.gif new file mode 100644 index 0000000000000000000000000000000000000000..9316acb2fa9cc688d3bc67ecf3600214d8f29663 GIT binary patch literal 126 zcmZ?wbhEHbyvoSRu!w=-|NsBrzkmPw_3NKMe}4V?_2tVK1~5?k$pWTzKqN>l1G6)S zf#O$#Q=Y5$TD(5H`+tH)UrOe@j8)T|3^W)vo-4_{U$O3e&3<9-`2`+2QvD~Ed^#9m YHUGkj5-(NLRX5g@oqjuyg_FS=00!kaaR2}S literal 0 HcmV?d00001 diff --git a/media/images/blue-pixel.png b/media/images/blue-pixel.png new file mode 100644 index 0000000000000000000000000000000000000000..e2a84ee24747e636ad12ce10a82c7e94923047c6 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx1SBVv2j2ryoCO|{#S9GG!XV7ZFl&wkP>{XE z)7O>#789?Sn%QHK>)Jpe*%H@?66gHf+|;}h2Ir#G#FEq$h4Rdj426)4R0VfW-+=ci ps(C<#Jf1F&Asp9}EB-#UXJB2!bYH@`{3=kK!PC{xWt~$(696bnC7b{N literal 0 HcmV?d00001 diff --git a/media/images/btn-buy-for-friend-b.gif b/media/images/btn-buy-for-friend-b.gif new file mode 100644 index 0000000000000000000000000000000000000000..6c3162e69c5dabc31b7cde5ea281d4966e5e055c GIT binary patch literal 264 zcmV+j0r&n#Nk%w1Vcq}<0K@aEn|sM6xM*yqgU?y1t_I*9>8gOGVzuh{Hz(`f)0Nv(KHE}sGnfcgL_nBVYtumCxz z)dC4+A@BSDDhn490(W;B6Al9ifQ^o02o??#7>1St3LFU@oSmMZprN9pq@|{(sHv)} OtgWaC6$*uhApkqU>5;<# literal 0 HcmV?d00001 diff --git a/media/images/btn-buy-for-friend-c.gif b/media/images/btn-buy-for-friend-c.gif new file mode 100644 index 0000000000000000000000000000000000000000..18f20d90e02548421010f35b811cbf89cfc3daa3 GIT binary patch literal 55 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 literal 0 HcmV?d00001 diff --git a/media/images/btn_xpressCheckout.gif b/media/images/btn_xpressCheckout.gif new file mode 100644 index 0000000000000000000000000000000000000000..3eb68d2fa33a1786301c97c25fbafc4afc0781b1 GIT binary patch literal 3091 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 literal 0 HcmV?d00001 diff --git a/media/images/bullet-fine-box-list.gif b/media/images/bullet-fine-box-list.gif new file mode 100644 index 0000000000000000000000000000000000000000..e361c5127f43e6b3e9681adddb19f03f25cd8d89 GIT binary patch literal 152 zcmZ?wbhEHbWMyDuI3mEXd-v`+bLJ)`C11UIH6|vut*!m!$&*o0(Rc6OO-V_;e*OB2 z6)S)K{MpdZ`1tYTkdROY5`p4R7DfgJ0R|nAK9HRZtfCJ-neec5E|IiheWG&w0Y?jy KBtudggEau6Kq@c* literal 0 HcmV?d00001 diff --git a/media/images/divider-add-nav.gif b/media/images/divider-add-nav.gif new file mode 100644 index 0000000000000000000000000000000000000000..db05ead2ee4cc1512ff54f9d4cbc11fa3fee7bb8 GIT binary patch literal 43 wcmZ?wbhEHbWMp7sXkcX6xpOB21B2pE7DfgJMg|=q8%QxRFfcK>a4}c|0I^vHGynhq literal 0 HcmV?d00001 diff --git a/media/images/divider-buy-details.gif b/media/images/divider-buy-details.gif new file mode 100644 index 0000000000000000000000000000000000000000..08b2debb1d3816a57dcba4b602f01b822fded07e GIT binary patch literal 54 zcmZ?wbhEHbjAUS9XkcUr2?=FjU{L(Y!pOkD$e;scGk|0mn0Q_KR-S&#zu0)wt?pDt G25SHoTMP&Q literal 0 HcmV?d00001 diff --git a/media/images/divider-fine-box.gif b/media/images/divider-fine-box.gif new file mode 100644 index 0000000000000000000000000000000000000000..19138d7ccf75ca2dd982d73f80a83b8379513f09 GIT binary patch literal 43 vcmZ?wbhEHbWMp7sXkcUr2?=FjU{L(Y!pOkD$e;sc11Tm31|}vKE(U7=k0J#I literal 0 HcmV?d00001 diff --git a/media/images/divider-main-nav.gif b/media/images/divider-main-nav.gif new file mode 100644 index 0000000000000000000000000000000000000000..2740460c168fe0cb8101093d1ed9b7ee77050c50 GIT binary patch literal 156 zcmZ?wbhEHbWMq(MIKsfN>&4H#um9|S`}e@xe_7Z6Zh!WD|C>KMU;M~B{dU{a@4H_9 z-2L*`wrAhBKl`!s#n0WZer*bKp^NSeHDS8G38+eK+Dl%9D04-Na3;+NC literal 0 HcmV?d00001 diff --git a/media/images/favicon.ico b/media/images/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..56902da50a7a90fe893717b259ffd621005410b7 GIT binary patch literal 1003 zcmZ?wbhEHb6krfw_|5{o?z-Nj0$-}P*G+r94Ngw1bz*S`WXCT@N|Y4h7jo8L{@@@dA7kJGom zox1hI^zHAaZ~r)Z*QYtVKg{0waqjL9b9Q~4x98)6y&o6t`@Hnfr)39UAHHY+Nd%0lGv*r7r0?~>C&sH9MedyBb zBbVPCyZZjrjSpvTy*qW|{pEX?bc-(O7hg3gyXM?*E2R5Y^n}|n6Ygcryq`1YUe2uh zh4UU1&wo_5=tJfy!-b2?f17Izq$MP;r!hXR~>q?`|O+J*S}wS^z7*6FK<75{rLIQ zyAMCU|M>m?|DXT=|Nj5~@Bjaw|Ni{^@dFrZ;Mf}_C<+0^pDc_F43imjK&F851Ovwj z24)T!j|~eBHnXZSzDiobKSRH6&!5B)10QKK&si}i7A!m@q}{2&`((4*xheb#9vvQy zhnS{1^t0qSeqQ3jBW;m#VaCBjoWi!fOa+#o+nl=v)$%x2JY3{F)uNRt$5Wa06sLqi z$eN0WjgAe@1x!x@l3W})c%;J=Bp4h$L`++l-V`>cFtIYTD5+>XQ0VBhn#lA(GkMvG zW>#Jm9SegN4kdS{&mEG^ZSDLD_Em2zlr)w(xRyQRS=6lBJx#k@Oflx{uC3XPjEoG{ E0EEPk1poj5 literal 0 HcmV?d00001 diff --git a/media/images/ico-business.gif b/media/images/ico-business.gif new file mode 100644 index 0000000000000000000000000000000000000000..115e94c01aa74a33d77eb3614788d0b52ef5d65f GIT binary patch literal 2340 zcmV+<3ETEZNk%w1VK4wF0Qdg@hCvp(g>9^JSJZ7mQIn#*tyktD3EKSk|YO z(xj89bV;0KOO8<_lv6U(rIU|MD1SjL;?abQNgaeg68Z7%gFX_PXHw(Ey1j{at#nf)w!VV+??r)p99`1ZAmOTm+Tkx?m;Rwr#XA-H=@XeSJ&St*A@ z7o=xPs%kpDf>(}BC51j3*Q%QP`S-n5+DYk)bggz0NRymS60lt?{tc*;JRzhtp6qH;tu!3s#?ds#ny@^C2kxwYz z!h4NHC8~U4g-kc$!LzuOQ`V@MRvZP(or{4=GQ*pNq;x&Jl3MH6(AmCw=FGy#mxI{6 ztuJjs}Z{`&TeOC_?BQI}##i9#m4hi;EfD1=29axe_kws(FyBY!&%sBu(> zM=*Id7=1kxyM}IrOEiK>GuW=5he8vZSUieHC4)Z_hE6w&Ng|L~M1w#Pt$Ap`qiC#i zT6i}RbT}4`OCYa#UWraQfjkg~KoNmG5weAEt8`hKS38(gHIP;|a4;2yK@)~R5{5t% zhd~pCK@x{S63MS}TObYGx0u_srQNrx-@BxNI~bpGUeTb9<;b(OglVX9V1+{zf=Vp- z>B7OEiuT~9;J&fPmV)Tav#Weis(WMo^3Q}k7PNnBw}NN1gl(a1R&g*Izl?Z-Q9O=U zJCIp0%a(MELMG0vZP=`wk4Pz(LJPHna+FLkwu*IvLKLG^9=d~V@7cui=HP}z6PaH< zuaHizWi7IBL5xlw>(j!th;HfH(1AV>I-wLDC!^kXG6;xVW)p#x7wnFn|~10HQi|5S?g1jGF;^E`thu zQlrL!8q4^(jF#-c(IP?zzBm!1!2>sC2xuk1po|w4V8e>_0*t{{0&v_sNY~{6%YsiH zl=1cL%!a#Xz76=s*X{J`h+s8VD>({Vb!{$JngKOKhL(qP`FGTA!UjE6uLE#XErXUvB(( z@i>Q~M_&#-d35L4kvCg&Vh%M-jlzfj=fek6fB@zLginvDz5Da+8va;dARl36ASo0@P- zl(pP4?6Ay6nW+h~ns7{!qo9e4ExK^x?Jc&dYOD#!ev&Dkx8RwJtFd01%aQ#YnTsu> zWWdBRRE&~lx42-MCKY7*V@s`lM){{dx8yQxrv4~=B*O~Fd(0e0l%UVSxafk5v#<8E zES`Ikt0=6?)~aZle`?wftp5Dr#T@Tc3UbD{2u#JAwxnAo6{fCS%f`-Xs;Z&}GhBp(Nsn1%aCCrYm3m^TIkMyuD^Wt^DE0Bno66 zN(rsx46e!Z3cIlo0A#KJ0FLBY>k<8IqmD9;3vw^~ya5CXTsq)`1?X@2#~&qF z(8e3!zj4n8IV_RGJEx$LjS~M9k$@U#Km!jTF^N%ppa2L=ARFjczZ^8sfe`$F4HAez z8~ouIu7Cs&c)^QB@Xvps;DHuKs0AKC;R+~3p#gF*KuEX{3aCKEDO^ZHHW(m<2C%_3 z@=$>a^p1lY_bHf6!hD#W4+;FN$ilJEm?R-qGqNT(k<5sOZ^(+`E{!zxA~30O#T z5hD=ABAW33gMRwcpEL+)KqWAZB&1*g1C@Y67b;L1D3k^s5Je^IiJBXDU==B_0}EJS z3RA$MqafWV3kE?_J}kl-=U9MBSE|xMh;*b27=$rWZ~;|Fvk9Vzz%&rRQv|f&r$B8% zPp2^rY@|R2E0}^(m#S2v_7nlrn8GxSAqtyT)B_i=Lj<8!d_q%hy?{G>`Dg3 zYN8UV;NJ_;<8Kt#27BS*)e#wvw&a%6JGHOE|~VTrey*bM9TzdTsE{!s0KD5 K@Q;820029?fj?US literal 0 HcmV?d00001 diff --git a/media/images/ico-clock.gif b/media/images/ico-clock.gif new file mode 100644 index 0000000000000000000000000000000000000000..a2fd41c7d85542a82ba966101b4d1dade1d84a98 GIT binary patch literal 2196 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 D$dB0s literal 0 HcmV?d00001 diff --git a/media/images/ico-email.gif b/media/images/ico-email.gif new file mode 100644 index 0000000000000000000000000000000000000000..b3dada1be7e5d2306e5e67c25f12ca7b7454a146 GIT binary patch literal 3255 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 literal 0 HcmV?d00001 diff --git a/media/images/ico-facebook.gif b/media/images/ico-facebook.gif new file mode 100644 index 0000000000000000000000000000000000000000..befb1ff3606ff19fd2c76cad6d6243f05be6204e GIT binary patch literal 2897 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 literal 0 HcmV?d00001 diff --git a/media/images/ico-twitter.gif b/media/images/ico-twitter.gif new file mode 100644 index 0000000000000000000000000000000000000000..d89bed603e127e34ba523cb8455781e776e957c1 GIT binary patch literal 2982 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 literal 0 HcmV?d00001 diff --git a/media/images/img1.jpg b/media/images/img1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be9a593250f604efb5e864777c5fc3b2f9206338 GIT binary patch literal 46841 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 literal 0 HcmV?d00001 diff --git a/media/images/img2.png b/media/images/img2.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f7f130b8455f2bbbb2aa7689a36cb0f977eb78 GIT binary patch literal 7135 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 V*;r;a1~dQw002ovPDHLkV1j(E)AIlT literal 0 HcmV?d00001 diff --git a/media/images/img3.png b/media/images/img3.png new file mode 100644 index 0000000000000000000000000000000000000000..851144ea2b7266e1db29ec159fb13dd315722589 GIT binary patch literal 2064 zcmV+r2=DiaP)LqZ6;iefJ2V@?P9;NT#-(ChU&wWHJ1 zQ<|NfrKzbY8W|a(iHQlCoSfv~oNGMCJx*_{lGiY;t*x1mt6-a^Nv-Pe@R0KPJdKWy zI*?;yW1Ke!*LaR|?qyHQ2Xc9NnfP&`@$qrABGWW6Jw1(Lv3POE{(~;=`(!eSg@pxp zyz7*o|IEaX0IXLHZ{YVQ0*`+91aO*}NlF0;;(%TW}TrP)L zxC`AOf~i#@41!nKh)2Tc>&ZX?VB5TX&SB|wxa>N5LXaLGZb@%PpofNr@Y%;7AshS= znp%P46(AB2rUu2$zgCzULg=tf6=c=%V%m!j-+vFo!^53{cDY>0PrU>6=buoip2IB! zNEi@qKU@wpKxD&~HQUmhEfVkv+2v@$I13}!=)jVCbcGE^sE z$r^`{b*1|zLa{Vh9fMYN6D7}0Xr>LJ{vjdDa9|sy=c5BI=L*pDD$4%bj)!&W+oMub zQ7Bh%R&AiFhe4rx=zsbZ+{QE5-Uxu_dl~`|b=bnfZ_x*U+KZ>ZK1NT}k91EIv2d_8 z=s#&Km)$0oAPoO=v7KWSa!zD|l>{lA1pN`3U9`{@D`DfK#4>We3==?_FTHE zyQ!`o1!V`49qHHKDc5v=Q?4%gZ~llGm)~zNEA9gh*n3!)pdP=&cr?J#>@(8s6*73u zcSzxeQ&f{rD2MOy#5AZl!Md(xEH3fv-$T5k(ZLXR-)@nmDcG{efr)g6!+G6Pp!ahT zJ43jc7wCvUWMQ3!_t2_^#kMsdfjF5Q;(U6fdOmpy_6~JtB*lrm%6Y4M7$V%wE8Tl9 z(2MF`s@%d_2j>L9d2t*67X^T7T?1ZcxC#KOO^r?~>*9-wob~EfVw3%p*BgOm`_Q|())JhJMYU2eChkQ&%x`a-R$==}YYVh(rJl7 z+$d1j1vjzpqjVkPK@^>+mjM~p7&(igtaf`5*>vze(dq!uD(c9~EHa-XO*13_MtK_N zu&B?|OV`CJ_S1%8*@D@DE$KSXMlfBwTj=w%Qyh;x7H$aV806#JP4f(S@H7=r;Bb7P z@B$qNijv0`NfYQZtl;`h=rh@1fa9UV3pwLY+v8VtR?pHf6h*I^*9Pk(`2iyS6_+fc z;HLk=VXFunlwFO(}-nKj&#{e{!V&90;Nl*O->o4R38B#Y{)oo81#x4Fi97wmG}hE zl7f<0!-IL68n^WxS@*0EM%Y$KMAnFW%X?0MejuT@h7fDj*sAzuqIY#sywi{!;ezR!Nr zFvdAt!yL@T8mvW(b^xB>o9fdYk5r%TPA32!2D}V-8l8(&PzT?xbhmWLYc`uR((T}d ziK2))3E%@>;Fs`B>$H@oQOmMyxto^U6^<#6WBLzZUvX;*JiteIje#E}_{keDNe)d) uZ%LWyr$0uaPZ+!N*kIC literal 0 HcmV?d00001 diff --git a/media/images/lock-icon.png b/media/images/lock-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a19a07f6229b9e716f0a6184ae655f4814280003 GIT binary patch literal 3470 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 literal 0 HcmV?d00001 diff --git a/media/images/logo.gif b/media/images/logo.gif new file mode 100644 index 0000000000000000000000000000000000000000..0252f2089775f5cb2e37ba282119ead87d4c37aa GIT binary patch literal 11554 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 H4cPo2bd(lH literal 0 HcmV?d00001 diff --git a/media/images/logo2.gif b/media/images/logo2.gif new file mode 100644 index 0000000000000000000000000000000000000000..84c9448f5e2fc3c7ea0e9c77058284c356260f8a GIT binary patch literal 1652 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 JaUcS#{}0d+K6C&8 literal 0 HcmV?d00001 diff --git a/media/images/logo4.gif b/media/images/logo4.gif new file mode 100644 index 0000000000000000000000000000000000000000..ec80dae82997c4e7038d9cabb2b90472845e903c GIT binary patch literal 2426 zcmV-=35E7YNk%w1VMPEQ0QUd@@Ke6-X1n&tU3+gwOA3 z!=9d>?>DH~+1c$#uJAdj?lq_F?d|&D@$|CZ_tNR{T*E>`L+w7Q>FVnH<@57n%;eZM@bLTW_3cx*?^(6@&ggM+a*2tF{QUgxDxxebEHX1Q_V)JgNV@mU>+MLk z?q0mi&CT_=-tm6L^rzPCMY55SlJln3?=7VI`ug#S$$fo(BO@gAy5Z2#(e6F1t*)+Y zZEcm6mF*^>y}iBm!QzdMj_zHy`Q7mJYS823LN{p~@m?@+w{{Ql}PruMt#%goI5 zuG;dA%k3R%=;-h7@7LGZ)Y{hT?Cf4%U+X!j{Qv)lhluS=ugJ*A+}zyz z`}_P^-zoYkP9 zq3}(+pP!%ich~Zw)bB;P-{9c-=JczqtRNsD)YR1d_WSjj+$JX|C@CrHETngMc^iR< z9v=Vz0RR90A^8LV00000EC2ui07U>E000R80RIUbNU)&6g9s5?n{wz~!iNweN=(RV zfT?sYCTiTsQ6MXM22y40NV4QXCn{bDF-hRnD+2!r6+tub6^KQS2ogX80t6w08H#{# zI8ex%H9!A3Vs(Q+iWIMM3cTSm#neSbbP)96z`>kOGYnkNLV$%a0|rop`&X{e89!(p zym%$>-IR7{XMFm1PZwXLwa7YhoN>)NhdeMyZ{OA7fJ2L1 zFd7eh4e&r8n+$XS3seyC04h{Saoqp{40H`2f$<>K2nmcbN*Dh$1IZH;{PV&W!>~}u zAP{U)P9SJFkRbuz*+B$MLKySF1zP>n3InKA@{cB`7?8vm3}AwaCxrMR#{+SkVJ0g9 z@BzmPcW?qz0u@w1Bqxw;L(dJTz|#RCDA-YpF&#vT$pglekR=f}{NsU_7icD?9eqeq z#4xCxg2x$kpfbxpY!Cr~91KYRA{iQYz_HDOA`no32C_`@k2E#_pa2_iz@q{Z<<(*t z1Q5j0hXa-}pk=0;e(C9$a!4@+DiBzblMAS*Di8sh0CB+=?MUdzH6qv`O9f6eqJaiK z2&7;IFBHqdKX*XDfHyi&074N(P%y%!)N*<)15vhO2P#+m!^$ZS>p?)6fOPQ1BSlCv z5TLR|V@?`rU?b230F2Vc3T>?P$$kNNERa>+NsFnb3Jc_LwsYQ^FIbo(1lb}@!$d;?95UI%_e0}5;4Faguw^MFhP(nA8?QbK}^&z!a&Ic zaXu2XB=b)VvFNgXK{YhcfcOKYFOV9sr~yHcK!a&CfFQBh0WSRE4|H(gAG9#SDj2wg z7z{)h@u0;(?!g5M=70<0kO3DMs0v;X#0=wLAUeb_5F@yQ1IjRgKa_BSfn?zb+&BU< z1VV{7_(K@Zn1?X`Fn|ac{O|-;m>>-VLI+&_Q+tFu^&NUF(W!9oNuumuCzfR}!92tUwxI>sr_$5KAG0A`6W0M2f04^*bkSw&I z1@mCUKU(1b4{a0#944SALBL>4S_WYt1kGhR335&{D8UUFAP6Pe`A!@RB%1>LM-KAP z0`X15AJo9#IQkJvf&5{X7BGP;20{Zyj?*9RKpz*};EHojb0F0`W<@VL&w(I72GEFO zKHOjeP!vR#W*A5VRzb*rxN!jjNklwc>PTGNQ6PR?WieMNMr~m7zKtREbJbVDF zZ&U{uXkdh31jDO;$UzKJ=+9en@d(;jLO=X*gqPyt4Pv+lH2krOU;Kj!=cEQ1WT3|| ze9<2!6v#eIuuXw*zzZ$#qCm*VK!1z_9RJY8Ic0c`x++B-3-m__C^3#=yfg$PkfA^5 zU{Qfr1c4eRkYPXOalb#fp&Ie*$3p)BhI!;676hrm2cqzSgDR5}A1LWS@(~4H2*ec{ sbR;G70bL{*n2q7nYBN7k*I|fs<_5c6? literal 0 HcmV?d00001 diff --git a/media/images/map.png b/media/images/map.png new file mode 100644 index 0000000000000000000000000000000000000000..208406a146f15a903613c0924ed8d211919a3fc1 GIT binary patch literal 65653 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¿)I9Z0e7?6)9esh*^O@nU!ZM1B@W~KGE~~&Zjc+^0ZWja zp5LiYJwjAt!vy@&+F8oj6K6PybgHNM_5|L+Mkh~@m^0nk+v#Z*;5fSrYP+)ad7~l? zkA1W1450O`sS;oeL85U?6niESL0RZx4M9`+WWB+c)q9Bm?+phyaSo375NOV(E2OD2 zaL{TEBoBBNduE9T)E|>2FLf`8@9qu{B`RFqjw^S}DIB$=pniY5OFF%T6Y0#kKsQ~t;d!Gb*;H3YS5Mj3)EHf75L9@9Vn{NvrbKmPnvTY@KrTU_b*%A+EO zgh1CQvQD%j?(OzFF(!uHjUy&kNWw%Coo6p107Zp6adx*TByMkS9}Q!OhucB3y*;HP z02UMo+1xe$T(Yhw$s=JkCM5DB$bXW-Of8wBDw`IQ`hmDFxX)g9XbeGn2+YQN;==w( zy}HHCs@RLUhg&C}8{d!jDr*k_03ZNKL_t*Py_*n2(D>@|F#K*J zg5xX$A&?fC&JjOxNrwi3@Sf8BTdS6_2|w|^FwJ^0Gw}P|BUdu041y#58wlVagVq?n z-^RP0-RW=}vh(~{%Mk$UL}86G?hKTMptKc6=;H>+2pN!T#jqGTQ|+hmR?uies-`vs zwY89!6+{6P)Wr)30~nvrQ(5N1)IY(nVFlp<_{pWw!gztH)&_Kffxd?uZ*~nqQ%@zO zl17M9Ji_Qs?*$FPG_^+HWmNFKz65pVS!nNBQv$4(K8u4!vm;x_9?UN#>1&3OC85pt z|6d{iLxwos>$DoJVSIORf$Qq#=4K4V5m!ckAPB%0H3UgHPbT4<6>v8AugDSSN(tE7 z6Y5Tf7=myiaPXJl_*+}m=&}L^Kq&x^|5Yl(%6y3U#2j!0nY6*D^PQ!A0I5!uHzG)T z?}l^Jj$J8m`lf24ni~<6&z<=oi*dpwN`O_Af5tu2IQTG6zLCcKAusm$KR^JnI@^$i zVqZh2Xh@hlMEwCuUKC=CfdfpUM-ar%aGn*(;4HNwkSY3(qAXGtL6o_@TT%aza|`;! z4VCE8RV9LT^RxK&y+#1DN(>6@rQY-d3K~`Nx~wj zS-LPl>V$J@2-1#mV|5WWlqiGBpd9J~Cf~n*ANLOqrcblG|1~P~d+o;F-}wGsqtOZm zhFe@89$r7i!(pr#hQR)7m7Vka6wmVK+3fjwcJow~k7KSO3t_h<3t=uEd234nbFo&d zQULbzCq#hL&Fa(IX|+HFdxBETQ(e^g)K|2X#`{qSM^tSUdefBy%}#>FwX6)n(

m~Ct5x-vj@Q``wU7b5 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 Hy0FvUp7mhS)B&_>&&u@DHi1vXV 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 literal 0 HcmV?d00001 diff --git a/media/images/none.gif b/media/images/none.gif new file mode 100644 index 0000000000000000000000000000000000000000..a4fe485428893c1ba613cd86894287037b5e4319 GIT binary patch literal 821 zcmZ?wbhEHb zT!5*|?GK}zlnMie-n{z{hT=$;rU?ky$+qqbpGZvC_U+C1&iA733kq?-q4CHnBA3kE astJWEqtqebP|XTcn2Prc4vQz30suSWax&ro literal 0 HcmV?d00001 diff --git a/media/images/progressbg_black.gif b/media/images/progressbg_black.gif new file mode 100644 index 0000000000000000000000000000000000000000..74fd1f9b3e052e2ca18058526c39f6eaef580cba GIT binary patch literal 1626 zcmZ?wbhEHb{J_A&(9XcX%*^cP=jZS5KWEOIsZ*!+_xJbq_I7u7Po6xvt*x!5rlz8z zqNJpxtgNh|p`od%simc*s;a84uI|&PPaPc{A3uIfN=iydNQjM%jgODd%*;$nOG{5r zPf1CMh=_=aihB3%-TU|Nqobqm-@kwF-n}bVu3Wx+`ND+@=g*&K7zLvtFwh~O19AW; zFR*j`V_@Wv@z}87U^9oXR?LYF3lFz5DtXQE*tqCuw*)hXz=S}h<9!PDO?xyhJz`*D z4O(VWut2qOI!B0{$ASb#W;WiUS0x`FFt*GWkh>7GVDmxWIW~>o{;X7R3Y^O$!xGE2 zW!c5m?n{|?xfGc$uC^@nda-j$I@9_@X`hJG+t%LRUhw$TT<`7c?(VMOl(=zv(^Ez+ z)_`?6KN~d8Ei#|{Pv!T4mx&vAmrRO{u~_?biJiK1T}`Ob;|2cRNy~11T^2Z}B6xM& z*CcuP@U=g>N5ZM( z98XO4{d0SF-`>Bu_McUQ?(C+o7Z$Cay|*u7P0;2Y7oUIeF+2F_aKB{FS6)TOnlC~c zqEl)=t$cd7kwZ;GJb=$cqcL72V8Vg?Igw^z`NDPucLOi6M%>SzPmaB8WhqTXBHCGO?JoqBI#G|eBVX^Ka zj+=FR|BB4-cvr|8TafA5@OXN{y0n9=5-AfJS*3CoJY$n7xX{QhU-N)*PT{#q$JyCM z8ywk-E?KJ2Enj!?*}TG2kr@lcpX^-5T5v8iV{YfGndJrM*oLi{Ib!fRl z3&X1wOQvP5TDho8>eb5StGrgN{l-8QXmriN1DRn$(WUcyk>e=jGJ1cdzed|0k z=eHi}Y+O{ul)Yl9e2Rj`yc)LK&o@*&JGo+hU)6@3*^}Pw)Lbs-arz*~i$&f}yI!rc zZrc53nK#p(kDI*L@A`VrI)BgaYuW4fGu*D$-~WHn>g+9-|DDp@R5;6e#jLAgvvf8d z?aF?;_0p!7uV%0&F4){+iX5-{rS(P3m*4tN-o%)USoX0Uz*qCoZ;!28)r=_D=;|B%iXp0TKlh^ zMTe@p4wNoDlGU@EHO;z8<51l6xjDx()1$x5&pW;Ijne}4FTGCp8`$4%f6(wh*5aXt zL|xOvE@i!n$1U!4KORkBKeyw_MDxBw&U4D&{d~T_+2xXlWMRmq7fbw0etE23elO60 G!5RRh`|ElD literal 0 HcmV?d00001 diff --git a/media/images/progressbg_green.gif b/media/images/progressbg_green.gif new file mode 100644 index 0000000000000000000000000000000000000000..f3f3bf681141982dc72429b21b4c8af7dbfd2b70 GIT binary patch literal 1308 zcmZ?wbhEHb{J_A&(9Xb+l$vz#b;JHwRXbng?Rb&B?RnasS0x*s#jbelz3h?O(udAV z9y+ak61L%K)Yq?HH$P8Y{Uo6GmT=cio{6`mr`}bWa!0ZCI#bJahEJb9wclWS_Uzf+ zyLWHhy2UUGMnhmIgn$mnk)XW5&hd|dkweB~!-9j&9Ku>LCpIiR+%BN(HOFIP(jf*W zwhS4E28YIeHYceEFFrCfv2cm4h}qfT*gV}pdWOr%qNS&2=%+7Rb5kh&++^$Qdq+5@ zr2Ege3b%?lwPoeyib#-+FZ^@S*8xJ(IGrLXtbE9F|#f27UKe5 ze|J*~xABYU9Yq^o-95d1ef*l(y>+$)4F@6)^1Qisbmol}Ub}dutlM;c>fAZiotzZ* zYy0Ns=NHVbt9AIH+I(O!zd^woA*M@L*Tg;!Ia}5EX2zD}{nu=zw_Ut&pqYDq)d3S` zHUT*fwcK6ba%Y~ceBSf!N9D&8=L&-4Me zP3E%uP5-?5zPkJV`T6-R96~G>jI5#}84p;*Vir7T;&w}T(9B_^v9Ot6Ok!aRZ&*fR zlZ2K>Vyk%455*RlvKI<$8p~EZ>eAWv;!(H3F^$JPCf76^*(4(j9yO{aX*9Npw!BcD z;NcrZz&%;MSPv^WQ~ z{>*hd6K7|Xy-1r7pts`*Tg9`L&*#;Ad-;5R1Dn>11ubG#YLk*?Sw3g!Jms0P*jb5d y`I5e%sLV#0lvOX6%_)2Ja`}Qbtye3SOv_s3x?NSD+|H4{TcmQQK=FDE)AcBZPoF;Bh+}*9?AhJB zcW>Rg#V`s+LtrR`fDXu!puE7&@sEL#L&jsnf`iQ*!dfvWHY_~cE}-l+$75sCAqFP4 z3>k+8hsJ(3C#eT7J~A}1aEYym+1cROJl#NghReyKrKe};r!QM`Qz-r1Wb5pEM>waX z`_H!uw~9EmW##4N0gJundTm{Gb#(-9$(J7+4>YqgyG{CYqhZ;_g%)Q&xkv}E4VbTg zcT){F>Okb+!c!2O@x`_~7tAX8S&wrq>5&iEggpEB^fJ^sDeq z=Cb=u|GfIXy8Hh5`S~pzLM#@HtfC?r4_L%v7CdO;c1w8B%weRlu$f;>Vqpt!SVm%# zgqBBQt9a56#TJ>e7Yb||%T_$<(%JUnQMbV{jmJGE*EAg2BqIzSHL50QG`5MhyilIt zcNYT3{5OtVk=^HHaIplm6UjSaxxt#o13T(!py3=Ih_x zl)`QNB6>&B##eVwZ(kq3CU$R~Z9&6j7-=kQ<`8D%fhCIsm1c*0ikY~}NLHQ!!7pWncy^ wFDNRrQ6^>8%Vl%QUcFqtpiS%5iY3#sR=KWNw(8ZYHQQdjTFuPH%EDj`0N~Rv?EnA( literal 0 HcmV?d00001 diff --git a/media/images/progressbg_yellow.gif b/media/images/progressbg_yellow.gif new file mode 100644 index 0000000000000000000000000000000000000000..fdb0dfc981cbbfbca4e80f4ff5ccfac247b3be91 GIT binary patch literal 1308 zcmZ?wbhEHb{J_A&(9Xb+nws?bX~U~0RWBaqy?B`Y{6X5Q$0g71#Xi36{phCK!yC>I zZ#X@<6ZZ6O)Yq?HpFc=^awp){dEuMqcy3>izI$2a&Lzd`r?arL;I#qs z_3v&<;WmB|y`yO3tGlPSua937ySL7^py5EoL7q4Fj?TQX!fO|=ly#fVPn|obx|5T_ zer@0U{QQF1b+ryZRGSYh<~JxYCWcA!n-^-^|#Oy#Jc5^tOu^4m5MmuR37D z%qAemp_aSrTkg!WmCt+L{iytS;#^_y^UPZ7^A8^!{>N-&c3vKR-Xeg+qwNf{|5JB;x^#Sj>V4P26q?51KiQG!{1Vi%BeO;SI}3 zY?9FONNg2P`k~k&Q}#lEO=H=LM_oGGUOehHIHvKq$K;xZBb#J|!J|giB#p*4(Uup= z6P&z$EN*i(s!-{$)$&Z4>=(A+;FOTC%%@W$(pEm57E|`}>GXuO1rH{vlvzBRoEGPx z)}Ogh1UM^qIruAyYl4)71Tvsex^=j3cZLeOfW@ck$VXy`OH^w~^ literal 0 HcmV?d00001 diff --git a/media/images/securepaypal.jpg b/media/images/securepaypal.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5060803dea1a9b1d4d8ca4f075972e964401cb17 GIT binary patch literal 2413 zcmds#c~sKd7RP@Gq&ZvzameT@CXpgN#YEFIheR=F(NeNfF{h+N99CLpC0R=xQ1qHs zPMD}TBQ)L2a4hXQmP2Zp4R+PE^5)31d+V*Y?)~fi`}SGqth3HO`?L4=oGp1SnEsj5q9ROdt2zRyqm9+wrH#Sh@Rr6neRF*b#>8>2 zxs9zo$sS8^@pLAVE$!@Wzd=Cq3JNeq7zz$Y+3v>dw*8+?(geU{05mWF25A9OFc269 zl8AwA00;nY$OHYQ1Xo5GC?Qlm z12cza3H+pudl;tVo+cG(s zJL(Qm`K*)E@2)q;^L~T|J$;{@ZCQWdUPl_xoL&GovUlr_xJ!8jsz5DX_75!G+n=;& zC8cpXPl4xitwR>9d3;uj*Ie{*)**lEi|2#gRaZtaoq6g*13hM!mJaEM+-DtWbNBW+ zQQ6qbzIfX*F)3b@)?IRhQ8aS$jsfj#OF8AaPIyDu@t+~9<>CA3)$pUOjZqBemlot7 zuyO-No;}TAr&Dsjl{&#e@K73gF76|i8{QY2>XWhajg6uzVyq%W8w()Qa)yzi`MO%< ziS9Rl#}r^3_zV1cZRP7&cbptQo# zSmdhidc*CQn!0^IO8pOqz)5xSZ%_J%6hSAaB)gqX)nBPbyCo~?5u=XD`M*mH1ZV)AF@bzy>`Jt00+_)9%wHIqH^V~Cg%=+wbE{1xG zr*7jUz$4?eBHoRGDeQ@nnJ(&W^a9^aJe?Bo$#u2-?THok_^M&Tu&#ePXA3#qA?AXe z?1cNI+4Z0H75g*C>#1latM>z8;t4qrW~Jl&a*;@C`bujdE0?6X2u78)rk>=mh%@s= z=Q+24xXw0^=+s_*-MyuHppr@H>?TLq-T%5eUF^MH_1g59ur_6se^nR^Wu75cl)8_u zhmPIssr3!p7c?d~y64W+uZ|78vZ1x~YDUJ=bXtKCt+z{!Q_^`E>3ASkzS?)NndJVo z@1-b6gLSyLrvLCvO|z7G2uj9&0#K9U4=$6)ce4)ulx$|v*;jppiWgt-Dw|nj8=iMw z4LbexP|B4HLuUxtC3#enN1G$`7E(p_(y4|I-rr3M7A)ZkL@KWA8hr$D-YvIr)=QgR z%Pwq@GavN!$)et4!UYjt3-vdbZ++sMcBtlh``PV~wIK~^xZ@MtL!+?Dx{+SBzj(Zw z#lBj9SlzHgOR&vZ3IF2K)16E~V#L5(3i8OI-n7TjVf(HP_k&t<^50&(vP^!)m$xV) z-^$F)M|~+d$4nWTtf?vCeL4PC?rf+=hEWUi0rt~Oae`^IP$`28FBH?2GU2Y3dW02^ zp6#zSVl<&V6v?dq-l}oDt;4Go!=<{nFN&RXQc8c@c3mFFrC-(2#X`VkuCgQJSvQQz zL5U8FAyE$34zgzE7RCc|Ti+ZrdK`Z-DufRMIajKwU_1%ZZ!6E%+Wzh7PGTOLk-K6(DWxqOqYJEMpP06^YZ6^Ce z=dldNRZcNyiW>PfQCJsqT$_G%=_NIEGCGugqrv(1*b_cFRlK#Tcul3$Zs07a1nsS@ ztT4e6drouU(^(}`v_)as{m(&HvbkP=e9p<{;D>*yx{rdZ4kMoKOZot?JIgGNo;4aVY@l zm^RiBWk?fxs`; zYhg1mFWb%sALuYOgec?rWWs La=0)$K{E7jb%;q+ literal 0 HcmV?d00001 diff --git a/media/images/signin-button.gif b/media/images/signin-button.gif new file mode 100644 index 0000000000000000000000000000000000000000..5dcefb580a49b48fe7091fa1d3ed9cc0f07b4538 GIT binary patch literal 577 zcmZ?wbhEHbtYENVIKlt||NsAg`tHuW{Z&g2H?Ka?v+>N-eOH#9zPsbb(^L0fUEXnF z?$Mj;FFic?>D${kpPu~u{SBxdtdA%{@h1x-1A`!g4oEe~P6pQh2`X$Une#GMt;>16 zZ-dsk!rc26?=Drn|L+i_;-MoIet2;ar;pM63oA;z)<&(rv8L?w+p7H!HdOfN%|8EP zOV!!D-S@3LnhjPc%c;5D-KcZrAtPU1X$v!xY87*hS93#WYblFBaBo2gGp7oFGuM>* zf>Jg$-cnwb&Td8~wo)GcQf`$}R=!TQcCD#PW^guhq^)7**`cvQg=s?bM#hQLTUM&? z+B|_Lm1_b!@8phZmF8u$H*DH4nS1HZ`Ma6to|vD)Iic)M7vp;7(~KX!KmNja{m=`x z2{%G}T?{gkrEILk56rL&R*~sQezq>wQREVv15d&_c`5eY9CKc6%T_*`y4h=A1dqiA zKQ$p)!K#~IH@Tc?yDK+s!jAqV#;I!~*cN1No;{;}hS!SODQD#DYBkvZ*oc|99-C!; zoTtnD!GRNX_g}?!S%rp%_PmS{`zoOpV-poGuE=X@s2bW3c3G`8v!rLvS~edkYq2$q z{+k>=E)ul}(T(5M5c1)R)J!fGCw<|WYh<1>TxYs%;h(u7G&$qqis038XLoIVeSJgn t>3P1px4pf+qxki`v%9yyzki_Fg0n7}rBK?qO+J63&Cep0lg**Qp7pGq8iL1|F}3_BG7260vnEEzrlTPS^DL`9W;Yj_WW zGK5N93uulLbfqboF`hG=nj&PZEucxFq-_rd4h9kmx&s0WIuF64M+(AF0Lc~r1py8S z374G%4q02y&pamFJLD-IB^RCIEB}T!UD=fr(=`ujVDSH+F%w3eA?hQkcZ@$s+VPF8G3a8#6 zy66MZgdOxCSvZ9N#FcL> zP6^=Z)eD{>ym&N&WYMBRWI))0i=LRzKWeWqL;*&$hitq+`-aQO0( zMrgqd`9?F1I$CG}lWs4q>SH$^TGkd+VrmwNX^RfzG<3kQ6A{uwm2YmK=nA_Eg3=ID zelz!_FHM#5Lp7Q^c$0u5A!0v)dJ~nPlqA6aY!V#cpGu9fbj<}EO;A#Or`6Cv4hss^ zL?6M>;++FG7+A`B+^OK+fAGm8VIC6HCP8!@ohSzY0dc}#ip-JtTpbN$7}NvM3~&Gd zh1G~)E*QCx22LC9;0z3QeRClvTTIhkf#LuFWOGlUGGi?7;enYQ4RVIP#bixcPW$Ll}9unfckeUCLVo zII9I%IXl?c)%ZFXIQ^TM8N=eLCJV5Hu(HhIXP&OZTA|JDE0D>?md|~rC9HRCejfW7 zMkd`$YTO4-hFo^%XHbjax6iLgV)o}*$;Xwi6H-&fuQoA+*J`fw$M|RKG#sWJ2wUXm zu}opsmIQ5xB#!cv5cbUdi5P|4XFZpI+Xk8STR4 z@MXag`C8?!y)_pWJa+e2yu3B!E3bsFUEvmvgabK3hSMIibWHrn(I~652!#&CQII3rw8AJF&-&yX@E( zmj%i9r$jRF-2Cb4!@0+CdrFhQw|mjC9lx9=d|noEevQ;&K7;2gt~6>+J|ns#_(5m< zyroumD}ogmeBA}CCMF)0y0LUuuascJn*O8b4&0tM?M({jowrAgjI8DVWLyY(U3!?w zV0!MGjDFYVG;@3Z94_IG2^~L$s-DO)DjomBcJyyUO`QF7jx@>$lTZ~(XGkE7=Jr6qp5Yu%nO~;O0&!(s**Z9lByS3 zRxHdcQ%vFy*y;PCfq{43gQLNwy-V)|*C%XwXt^&}@m_9xgy;=XvAzlyiC-ta_9O&a z?Km&X^P=@u5<`lFM^XQjM;`7x0tbAid=y!HxBF5@IH#@Xsl$h?GHnldrE_o{?~;2w z_bS5#o5EzzSnka4(zYv7Ke84_n@B7$SL1Oy%8>R((_J^SN` qrsovNzlqh!6q%m3@YP9!<2uItqVX{&8CMH^T+?E4p2wAg!5RQJM4>$Z literal 0 HcmV?d00001 diff --git a/media/images/text-the-world.gif b/media/images/text-the-world.gif new file mode 100644 index 0000000000000000000000000000000000000000..e08907b45dfa4ffda5ee7877714a402bdfc4c7d9 GIT binary patch literal 1774 zcma*g|3A}-1Hke3zA{GJ5))k;8ml#%q!qDSTfWnlJT@2kvgFH^WMpIc?+0f9Cot-Tbi6SB*Vq#)CIy!hf9`JvM z{{#gA00toaE&hH2FoV)T$|t&MVo8#f2Ny_BQnnf5UV7?#gTr97tI$cPsS`Z<3vFB2 zXfe?eRtRr$y||_Y7T!+ylPfc2nk=*#(|nm$e!FCB=UQXG_Pt>$Dw9LB1EXOX5Zx&`xUV89=K?5!-0y6 zM|^jgnfse#zp5{qU?Bzm41i`z)^x0@m)wc*AIE^k+35k^lE#a5>dgoB`x+G+UZzrv zZx+lHb<+J&IMo-ECI0JM2SI6`&pmZ2Dw;IhV|%kc#5PJXxL}=P3$DoMqwRqm1?cNd z`ZbH8C;{riO`(FlQvdMU-r(eNTCA#bu!`OEI`<)_1&#`W@J1Gp*(_?6;am1cN43{0 z&u4|+ku-~U$%KB5ttqz1HR1s$raaCv@J& z+@wyml<7eCDf9h2>tyR`hs*|m(N4>8AzA4nv;m{mUxgEV?kc{1v1=|Gp(&voAq}r{ zy-P5gPW?yS%uDRzC~s&C3;)AxiNt}zQF)4K19BQSPg!&VW~;BxoAG6fY#v_E4GcvQ zRdBo0oYNu>tzc6Pb`M{u=gR!pJ9ngU<$MdWelqZYPOr|X$IxTJ(dnO=jWz#Pav6b@ zReo_mn^dnY#W>90sAZ<42i>_pn2Yf`v|D}yUsVC+8Q9JhsxP{FwbnI<1_`Eod<){# zEn_VyZOQc|Gcx8oOi$!$?K_w9#K3tdT~>W&yBOB`^rS4%=I8m8{9epf%v|?AtU9Zw zIOT}Yy?@acI^=Lx@(m{SXl^T(?^{XjFmB6yV_ZXtcj*O1dVs0>c?sZJ3CA_!2v(|U z!V<(C)l%g5kJ>~Ap?&M0Ku%z2;AD@MjG7kAABR~{AgR>#B&X#|y}C35v~t+lu>|$8Vu3 z%l&uwjt{!r5s=kb@a}%g(c4+Mrk{(z&_Wy1B4U9Xx&G`!?k6rI@^`)mN^JUbAC)mbsWdhRY<{NYH=O)mSCPD2F<9=@Eq+0_W%ZLJSt0$PO_7Sp!AT94s}QuYvUI`N$`v3wyP;zO=OS_Da6eo@3y9ekVVS$dq_RSa z`&n1Ah=^zC8%=ZeLKEAd0nS3J0PW56#i{1k51%pLK2N}%&W MpGXJH7y#h@KhT`}IRF3v literal 0 HcmV?d00001 diff --git a/media/index.html b/media/index.html new file mode 100644 index 0000000..1ad2c03 --- /dev/null +++ b/media/index.html @@ -0,0 +1,232 @@ + + + + + jsProgressBarHandler Demo | Javascript Progress/Percentage Bar + + + + + + + + + + + + + + + +

+ +

Looking for the ajax demo?

+ +

jsProgressBarHandler 0.3.3 | Javascript Progress/Percentage Bar

+ +
+ +

1. Automatically created Progress Bars (Default Styling)

+ Program Efficiency
+ 15% + + + + + + + « Select Options +

+ + + Website Projects Progress
+ 35% + + + + + + + « Select Options +

+ + Weight Loss Progress
+ 50% + + + + + + + « Select Options +

+ + Upload Progress Bar
+ 80% + + + + + + + « Select Options +

+ +

2. Manually created Progress Bars (Custom Styling)

+ + Custom Progress Bar (without text, without animation)
+ 50% + + + + + + + « Select Options +

+ + Multi Color Bar
+ [ Loading Progress Bar ] + + + + + + + « Select Options +

+ + + +
+ +

This page is a testpage of jsProgressBarHandler - see http://www.bram.us/projects/js_bramus/jsprogressbarhandler/ for details

+ +
+ + + + + + + + + diff --git a/media/js/FeatureLoader.js b/media/js/FeatureLoader.js new file mode 100644 index 0000000..05dc774 --- /dev/null +++ b/media/js/FeatureLoader.js @@ -0,0 +1,24 @@ +/* HTTP Host: static.ak.connect.facebook.com */ +/* Generated: February 16th 2010 7:44:48 PM PDT */ +/* Machine: 10.27.43.122 */ +/* Source: Local/Global Cache */ +/* Location: JIT Construction: v219690 */ +/* Locale: en_US */ +/* Components: js/connect/core/FB/monitorWrapper.js:r218840,js/connect/core/FB/prelude.js:r218840,js/connect/core/FB/log.js:r218840,js/connect/core/FB/class.js:r218840,js/connect/core/FB/Type.js:r218840,js/connect/core/FB/HiddenContainer.js:r218840,js/connect/core/FB/HiddenContainerLoad.js:r218840,js/connect/core/FB/Delegate.js:r218840,js/connect/core/FB/Loader.js:r218840,js/connect/core/FB/Bootstrap.js:r218840,js/api_lib/v0.4/XdCommReceiver.js:r218840 */ + +if (!window.FB) {FB = {};} if(!FB.dynData) { FB.dynData = {"site_vars":{"canvas_client_compute_content_size_method":1,"use_postMessage":1,"use_xdProxy":0,"use_ui_server":1,"monitor_usage_regex":"somethingtoputhere.com|huffingtonpost.com|lala.com","monitor_usage_rate":0.05,"enable_custom_href":0},"resources":{"base_url_format":"http:\/\/{0}.connect.facebook.com\/","base_cdn_url":"http:\/\/static.ak.fbcdn.net\/","api_channel":210036,"api_server":210036,"www_channel":210036,"xd_proxy":205601,"xd_comm_swf_url":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/z332D\/hash\/f4ua3qt1.swf","share_button":"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/zAB5S\/hash\/4273uaqa.gif","login_img_dark_small_short":"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/zF1W2\/hash\/a969rwcd.gif","login_img_dark_medium_short":"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/zEF9L\/hash\/156b4b3s.gif","login_img_dark_medium_long":"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/zBIU2\/hash\/85b5jlja.gif","login_img_dark_large_short":"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/z1UX3\/hash\/a22m3ibb.gif","login_img_dark_large_long":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/z7SXD\/hash\/8mzymam2.gif","login_img_light_small_short":"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/zDGBW\/hash\/8t35mjql.gif","login_img_light_medium_short":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/z38X1\/hash\/6ad3z8m6.gif","login_img_light_medium_long":"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/zB6N8\/hash\/4li2k73z.gif","login_img_light_large_short":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/zA114\/hash\/7e3mp7ee.gif","login_img_light_large_long":"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/z4Z4Q\/hash\/8rc0izvz.gif","login_img_white_small_short":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/z900E\/hash\/di0gkqrt.gif","login_img_white_medium_short":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/z10GM\/hash\/cdozw38w.gif","login_img_white_medium_long":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/zBT3E\/hash\/338d3m67.gif","login_img_white_large_short":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/zCOUP\/hash\/8yzn0wu3.gif","login_img_white_large_long":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/zC6AR\/hash\/5pwowlag.gif","logout_img_small":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/z2Y31\/hash\/cxrz4k7j.gif","logout_img_medium":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/zAD8D\/hash\/4lsqsd7l.gif","logout_img_large":"http:\/\/b.static.ak.fbcdn.net\/rsrc.php\/zB36N\/hash\/4515xk7j.gif"}};} if (!FB.locale) {FB.locale = "en_US";} if (!FB.localeIsRTL) {FB.localeIsRTL = false;} + + +if(!window.FB)FB={};if(!FB.Monitor)FB.Monitor={wrapObject:function(a,b,f){if(typeof(a)!="object")return a;if(!FB.Monitor.loggingEnabled())return a;if(b=='FB.Debug'||b=='FB.HiddenContainer'||b=='FB.XdComm.Server'||b.indexOf('FBIntern')==0)return a;for(var d in a){var c=a[d];if(!a.hasOwnProperty(d)||typeof(c)!='function'||c.wrapped)continue;var e={containerName:b,functionName:d};a[d]=FB.Monitor._monitorWrapper(c,a,f,e);a[d].wrapped=true;}return a;},disableLogging:function(){FB.Monitor.loggingEnabledCache=false;},loggingEnabled:function(){if(FB.Monitor.loggingEnabledCache===null){var c=FB.dynData&&FB.dynData.site_vars&&FB.dynData.site_vars.monitor_usage_regex;if(!c){FB.Monitor.loggingEnabledCache=false;}else{var a=new RegExp(c);var b=FB.dynData.site_vars.monitor_usage_rate;FB.Monitor.loggingEnabledCache=a.test(document.domain)?(Math.random()/b)<1:false;}}return FB.Monitor.loggingEnabledCache;},externalCallback:function(a){if(typeof(a)!='function')return a;return function(){var d=FB.Monitor.internalCallStackDepth;FB.Monitor.internalCallStackDepth=0;var b=Array.prototype.slice.call(arguments);var c=a.apply(this,b);FB.Monitor.internalCallStackDepth=d;return c;};},_monitorWrapper:function(b,a,d,c){return function(){var e=Array.prototype.slice.call(arguments);context=d?this:(a||window);c=c||{containerName:'unknown',functionName:'unknown'};if(FB.Monitor.internalCallStackDepth==0)if(c.functionName.substr(0,1)!='_')FB.Monitor.logFunction(c,e);++FB.Monitor.internalCallStackDepth;var f=b.apply(context,e);--FB.Monitor.internalCallStackDepth;return f;};},logFunction:function(e,c){var b=[];for(var d=0;d=b&&window.console)(console[c]||console.log).apply(console,a);}});FB.provide('FB.Log',{debug:FB.bind(FB.Log._helper,FB.Log,'debug',FB.Log.Level.DEBUG),info:FB.bind(FB.Log._helper,FB.Log,'info',FB.Log.Level.INFO),warn:FB.bind(FB.Log._helper,FB.Log,'warn',FB.Log.Level.WARNING),error:FB.bind(FB.Log._helper,FB.Log,'error',FB.Log.Level.ERROR)},true); +(function(){var b=false,a=/xyz/.test(function(){xyz;})?/\b_super\b/:/.*/;FB.Class=function(){};FB.Class.extend=function(e){var d=this.prototype;b=true;var f=new this();b=false;FB.forEach(e,function(h,g){f[g]=typeof h==="function"&&typeof d[g]==="function"&&a.test(h)?(function(j,i){return function(){var l=this._super;this._super=d[j];var k=i.apply(this,arguments);this._super=l;return k;};})(g,h):h;});var c=function(){if(!b){var g;if(this instanceof c){g=this;}else{b=true;g=new c();b=false;}if(g.init)g.init.apply(g,arguments);return g;}};c.prototype=f;c.constructor=c;c.extend=FB.Class.extend;return c;};})(); +if(!window.FB)FB={};if(!FB.Type){FB.Type={createNamespace:function(b){var d=window;var c=b.split('.');for(var a=0;a0){var ns=fullName.substring(0,i);this.createNamespace(ns);objName=fullName.substring(i+1);scope=eval(ns);}else objName=fullName;scope[objName]=value;},getObj:function(b){var d=window;var c=b.split('.');for(var a=0;a=0&&window.attachEvent;if((!b||document.readyState=='completed')&&document.body){a=document.createElement('div');a.id="FB_HiddenContainer";a.style.position="absolute";a.style.top="-10000px";a.style.width="0px";a.style.height="0px";document.body.appendChild(a);}}catch(e){a=null;}if(!a)document.write('
'+'
');}},get:function(){return FB.$('FB_HiddenContainer');}}); +FB.provide('FB.HiddenContainerLoader',{_onLoad:function(){FB.HiddenContainer.get();}}); +FB.subclass('FB.Delegate','FB.Class',{});FB.provide('FB.Delegate',{Null:function(){},_create:function(b){var a=function(){if(b.length==2){return b[1].apply(b[0],arguments);}else{var d=b.slice();for(var c=0;c=0;},_detectDocumentNamespaces:function(){if(document.namespaces&&!document.namespaces.item['fb'])document.namespaces.add('fb');},createDefaultXdChannelUrl:function(){var a=location.protocol+'//'+location.hostname+location.pathname+location.search;if(location.search||location.search.length>0){a+='&';}else a+='?';a+='fbc_channel=1';return a;},_onCompLoaded:function(){var b=0;var a=FB.Bootstrap._featureReqQueue.length;for(b=0;b0){d=i.substring(e+1);}else{e=i.indexOf('fb_login&');if(e>0){d=i.substring(e+9);}else return;}var a='debug=1&';if(d.indexOf(a)==0)d=d.substring(a.length);var h;var c=null;try{var f=window.parent;if(d.indexOf('fname=')==0){var g=d.indexOf('&');var b=d.substr(6,g-6);if(b=="_opener"){f=f.opener;}else if(b=="_oparen"){f=f.opener.parent;}else if(b!="_parent")f=f.frames[b];h=d.substr(g+1);}else{f=f.parent;h=d;}c=f.FB.XdComm.Server.singleton.onReceiverLoaded;}catch(e){if(e.number==-2146828218)return;}if(c){f.FB.XdComm.Server.singleton.onReceiverLoaded(h);if(FBIntern.XdReceiver.timerId!=-1){window.clearInterval(FBIntern.XdReceiver.timerId);FBIntern.XdReceiver.timerId=-1;}}else if(FBIntern.XdReceiver.timerId==-1)try{FBIntern.XdReceiver.timerId=window.setInterval(FBIntern.XdReceiver.dispatchMessage,FBIntern.XdReceiver.delay);}catch(e){}}};if(!(window.FB&&FB.Bootstrap&&!FB.Bootstrap.isXdChannel))try{FBIntern.XdReceiver.dispatchMessage();}catch(e){}}(function(){var c=document.getElementsByTagName('script');var d=c[c.length-1];if(d!=undefined){var a=d.getAttribute('fb-api-key');var b=d.getAttribute('fb-xd-receiver');if(a!=null)window.setTimeout(function(){FB.init(a,b);},0);}})(); + +if (FB && FB.Loader) { FB.Loader.onScriptLoaded(["FB.monitor-wrapper","FB.Prelude","FB.Log","FB.Class","FB.Type","FB.HiddenContainer","FB.HiddenContainerLoader","FB.Delegate","FB.Loader","FB.Bootstrap","XdCommReceiver"]); } \ No newline at end of file diff --git a/media/js/cd-led.png b/media/js/cd-led.png new file mode 100644 index 0000000000000000000000000000000000000000..02c7a9d8769848cd3b036a4a558d42acab0a389a GIT binary patch literal 339 zcmeAS@N?(olHy`uVBq!ia0vp^O+YNl!3HF|63l=Uqm-wMV@SoVx3hTp4jFK?T6(>& zKbhI1SIX#heDdEPn;z`?vE)MSNiAoWl!X_ceBHQ5f1CUNyO*P~U+*;c7XNB~srK07 z%DpyWe_Qg*?56N-JQpQ5Yro%emLZB`IqX>t(YU~*L8U};nkXz>(K`?p;#)cwQ@ zqtX_ize>UGC$30;yDBJhv18H1b2fU*tgH7O_?^b0#J7@p?sNaOcN(9$9w`^EzgYV3 zr5xj59=ojbg`xG!Z|Vr4n!CG+p~Anf?tcHf<`t*58`;I!Gi@klyUW=d#Wzp$Py!qmwZJ literal 0 HcmV?d00001 diff --git a/media/js/countdownBasics.html b/media/js/countdownBasics.html new file mode 100644 index 0000000..8790aa2 --- /dev/null +++ b/media/js/countdownBasics.html @@ -0,0 +1,33 @@ + + + + +jQuery Countdown + + + + + + +

jQuery Countdown Basics

+

This page demonstrates the very basics of the + jQuery Countdown plugin. + It contains the minimum requirements for using the plugin and + can be used as the basis for your own experimentation.

+

For more detail see the documentation reference page.

+

Counting down to 26 January 2010.

+
+ + diff --git a/media/js/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png b/media/js/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png new file mode 100644 index 0000000000000000000000000000000000000000..954e22dbd99e8c6dd7091335599abf2d10bf8003 GIT binary patch literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NU1|)m_?Z^dEr#)R9Ln2z=UU%d=WFXS=@V?HT z#xG*`>Yvsgk=}99w^d^D^d*@m74oMo<%#FcopJf?u00-~YVKV2wzrI*_R6;UORMea zBFVSEnN~eiVA6V&z`E)YLz5Aok^D)In}Yn=OzDpgR5Wv0XfT8pOkmV{sKAJ-PO9#T zZK}IXj&Q-V!U)!LcB_3K0&C*{ literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png b/media/js/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png new file mode 100644 index 0000000000000000000000000000000000000000..64ece5707d91a6edf9fad4bfcce0c4dbcafcf58d GIT binary patch literal 251 zcmVbvPcjKS|RKP(6sDcCAB(_QB%0978a<$Ah$!b|E zwn;|HO0i8cQj@~)s!ajF0S002ovPDHLkV1oEp BYH0uf literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png b/media/js/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png new file mode 100644 index 0000000000000000000000000000000000000000..abdc01082bf3534eafecc5819d28c9574d44ea89 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^8bF-F!3HG1q!d*FsY*{5$B>N1x91EQ4=4yQY-ImG zFPf9b{J;c_6SHRK%WcbN_hZpM=(Ry;4Rxv2@@2Y=$K57eF$X$=!PC{xWt~$(69B)$ BI)4BF literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png b/media/js/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png new file mode 100644 index 0000000000000000000000000000000000000000..9b383f4d2eab09c0f2a739d6b232c32934bc620b GIT binary patch literal 104 zcmeAS@N?(olHy`uVBq!ia0vp^j6gJjgAK^akKnour1U*q978O6-yYw{%b*}|_(02F z@qbE9)0CJMo;*v*PWv`Vh2h6EmG8IS-Cm{3U~` zFlmZ}YMcJY=eo?o%*@I?2`NblNeMudl#t?{+tN>ySr~=F{k$>;_x^_y?afmf9pRKH0)6?eSP?3s5hEr>mdKI;Vst E0O;M1& literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png b/media/js/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png new file mode 100644 index 0000000000000000000000000000000000000000..39d5824d6af5456f1e89fc7847ea3599ea5fd815 GIT binary patch literal 3762 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 literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png b/media/js/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png new file mode 100644 index 0000000000000000000000000000000000000000..f1273672d253263b7564e9e21d69d7d9d0b337d9 GIT binary patch literal 90 zcmeAS@N?(olHy`uVBq!ia0vp^j6j^i!3HGVb)pi0l%l7LV~E7mxPQ=F85a&M@g_{ d|GeK{$Y5lo%PMu^>wln`44$rjF6*2UngE4^EGqy2 literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/images/ui-icons_222222_256x240.png b/media/js/css/ui-lightness/images/ui-icons_222222_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..ee039dc096a38a3753f92519546eee94bcfbeffa GIT binary patch literal 4369 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 literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/images/ui-icons_228ef1_256x240.png b/media/js/css/ui-lightness/images/ui-icons_228ef1_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..10e3631dcab364a0a1ab81862d678fd032908dd7 GIT binary patch literal 4369 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 literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/images/ui-icons_ef8c08_256x240.png b/media/js/css/ui-lightness/images/ui-icons_ef8c08_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..35bb8efa9c87eed9615e64354e12d3578c604823 GIT binary patch literal 4369 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 literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/images/ui-icons_ffd27a_256x240.png b/media/js/css/ui-lightness/images/ui-icons_ffd27a_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..baebb63e3fc8fbba697afca858abb3f55bd0f08e GIT binary patch literal 4369 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 literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/images/ui-icons_ffffff_256x240.png b/media/js/css/ui-lightness/images/ui-icons_ffffff_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..bef5178a9054c16582876bac57017f783272e750 GIT binary patch literal 4369 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 l!Q;r%?Y*7ztoF~2ao>D^xRgPV&GAM literal 0 HcmV?d00001 diff --git a/media/js/css/ui-lightness/jquery-ui-1.7.2.custom.css b/media/js/css/ui-lightness/jquery-ui-1.7.2.custom.css new file mode 100644 index 0000000..9d7aa08 --- /dev/null +++ b/media/js/css/ui-lightness/jquery-ui-1.7.2.custom.css @@ -0,0 +1,406 @@ +/* +* jQuery UI CSS Framework +* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) +* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. +*/ + +/* Layout helpers +----------------------------------*/ +.ui-helper-hidden { display: none; } +.ui-helper-hidden-accessible { position: absolute; left: -99999999px; } +.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } +.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } +.ui-helper-clearfix { display: inline-block; } +/* required comment for clearfix to work in Opera \*/ +* html .ui-helper-clearfix { height:1%; } +.ui-helper-clearfix { display:block; } +/* end clearfix */ +.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } + + +/* Interaction Cues +----------------------------------*/ +.ui-state-disabled { cursor: default !important; } + + +/* Icons +----------------------------------*/ + +/* states and images */ +.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } + + +/* Misc visuals +----------------------------------*/ + +/* Overlays */ +.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } + + + +/* +* jQuery UI CSS Framework +* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) +* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. +* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS,%20Tahoma,%20Verdana,%20Arial,%20sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=03_highlight_soft.png&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=02_glass.png&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=08_diagonals_thick.png&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=08_diagonals_thick.png&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=01_flat.png&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px +*/ + + +/* Component containers +----------------------------------*/ +.ui-widget { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1.1em; } +.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1em; } +.ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; color: #333333; } +.ui-widget-content a { color: #333333; } +.ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; } +.ui-widget-header a { color: #ffffff; } + +/* Interaction states +----------------------------------*/ +.ui-state-default, .ui-widget-content .ui-state-default { border: 1px solid #cccccc; background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #1c94c4; outline: none; } +.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #1c94c4; text-decoration: none; outline: none; } +.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus { border: 1px solid #fbcb09; background: #fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #c77405; outline: none; } +.ui-state-hover a, .ui-state-hover a:hover { color: #c77405; text-decoration: none; outline: none; } +.ui-state-active, .ui-widget-content .ui-state-active { border: 1px solid #fbd850; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #eb8f00; outline: none; } +.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #eb8f00; outline: none; text-decoration: none; } + +/* Interaction Cues +----------------------------------*/ +.ui-state-highlight, .ui-widget-content .ui-state-highlight {border: 1px solid #fed22f; background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x; color: #363636; } +.ui-state-highlight a, .ui-widget-content .ui-state-highlight a { color: #363636; } +.ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat; color: #ffffff; } +.ui-state-error a, .ui-widget-content .ui-state-error a { color: #ffffff; } +.ui-state-error-text, .ui-widget-content .ui-state-error-text { color: #ffffff; } +.ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } +.ui-priority-primary, .ui-widget-content .ui-priority-primary { font-weight: bold; } +.ui-priority-secondary, .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } + +/* Icons +----------------------------------*/ + +/* states and images */ +.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); } +.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); } +.ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); } +.ui-state-default .ui-icon { background-image: url(images/ui-icons_ef8c08_256x240.png); } +.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); } +.ui-state-active .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); } +.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_228ef1_256x240.png); } +.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffd27a_256x240.png); } + +/* positioning */ +.ui-icon-carat-1-n { background-position: 0 0; } +.ui-icon-carat-1-ne { background-position: -16px 0; } +.ui-icon-carat-1-e { background-position: -32px 0; } +.ui-icon-carat-1-se { background-position: -48px 0; } +.ui-icon-carat-1-s { background-position: -64px 0; } +.ui-icon-carat-1-sw { background-position: -80px 0; } +.ui-icon-carat-1-w { background-position: -96px 0; } +.ui-icon-carat-1-nw { background-position: -112px 0; } +.ui-icon-carat-2-n-s { background-position: -128px 0; } +.ui-icon-carat-2-e-w { background-position: -144px 0; } +.ui-icon-triangle-1-n { background-position: 0 -16px; } +.ui-icon-triangle-1-ne { background-position: -16px -16px; } +.ui-icon-triangle-1-e { background-position: -32px -16px; } +.ui-icon-triangle-1-se { background-position: -48px -16px; } +.ui-icon-triangle-1-s { background-position: -64px -16px; } +.ui-icon-triangle-1-sw { background-position: -80px -16px; } +.ui-icon-triangle-1-w { background-position: -96px -16px; } +.ui-icon-triangle-1-nw { background-position: -112px -16px; } +.ui-icon-triangle-2-n-s { background-position: -128px -16px; } +.ui-icon-triangle-2-e-w { background-position: -144px -16px; } +.ui-icon-arrow-1-n { background-position: 0 -32px; } +.ui-icon-arrow-1-ne { background-position: -16px -32px; } +.ui-icon-arrow-1-e { background-position: -32px -32px; } +.ui-icon-arrow-1-se { background-position: -48px -32px; } +.ui-icon-arrow-1-s { background-position: -64px -32px; } +.ui-icon-arrow-1-sw { background-position: -80px -32px; } +.ui-icon-arrow-1-w { background-position: -96px -32px; } +.ui-icon-arrow-1-nw { background-position: -112px -32px; } +.ui-icon-arrow-2-n-s { background-position: -128px -32px; } +.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } +.ui-icon-arrow-2-e-w { background-position: -160px -32px; } +.ui-icon-arrow-2-se-nw { background-position: -176px -32px; } +.ui-icon-arrowstop-1-n { background-position: -192px -32px; } +.ui-icon-arrowstop-1-e { background-position: -208px -32px; } +.ui-icon-arrowstop-1-s { background-position: -224px -32px; } +.ui-icon-arrowstop-1-w { background-position: -240px -32px; } +.ui-icon-arrowthick-1-n { background-position: 0 -48px; } +.ui-icon-arrowthick-1-ne { background-position: -16px -48px; } +.ui-icon-arrowthick-1-e { background-position: -32px -48px; } +.ui-icon-arrowthick-1-se { background-position: -48px -48px; } +.ui-icon-arrowthick-1-s { background-position: -64px -48px; } +.ui-icon-arrowthick-1-sw { background-position: -80px -48px; } +.ui-icon-arrowthick-1-w { background-position: -96px -48px; } +.ui-icon-arrowthick-1-nw { background-position: -112px -48px; } +.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } +.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } +.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } +.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } +.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } +.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } +.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } +.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } +.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } +.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } +.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } +.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } +.ui-icon-arrowreturn-1-w { background-position: -64px -64px; } +.ui-icon-arrowreturn-1-n { background-position: -80px -64px; } +.ui-icon-arrowreturn-1-e { background-position: -96px -64px; } +.ui-icon-arrowreturn-1-s { background-position: -112px -64px; } +.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } +.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } +.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } +.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } +.ui-icon-arrow-4 { background-position: 0 -80px; } +.ui-icon-arrow-4-diag { background-position: -16px -80px; } +.ui-icon-extlink { background-position: -32px -80px; } +.ui-icon-newwin { background-position: -48px -80px; } +.ui-icon-refresh { background-position: -64px -80px; } +.ui-icon-shuffle { background-position: -80px -80px; } +.ui-icon-transfer-e-w { background-position: -96px -80px; } +.ui-icon-transferthick-e-w { background-position: -112px -80px; } +.ui-icon-folder-collapsed { background-position: 0 -96px; } +.ui-icon-folder-open { background-position: -16px -96px; } +.ui-icon-document { background-position: -32px -96px; } +.ui-icon-document-b { background-position: -48px -96px; } +.ui-icon-note { background-position: -64px -96px; } +.ui-icon-mail-closed { background-position: -80px -96px; } +.ui-icon-mail-open { background-position: -96px -96px; } +.ui-icon-suitcase { background-position: -112px -96px; } +.ui-icon-comment { background-position: -128px -96px; } +.ui-icon-person { background-position: -144px -96px; } +.ui-icon-print { background-position: -160px -96px; } +.ui-icon-trash { background-position: -176px -96px; } +.ui-icon-locked { background-position: -192px -96px; } +.ui-icon-unlocked { background-position: -208px -96px; } +.ui-icon-bookmark { background-position: -224px -96px; } +.ui-icon-tag { background-position: -240px -96px; } +.ui-icon-home { background-position: 0 -112px; } +.ui-icon-flag { background-position: -16px -112px; } +.ui-icon-calendar { background-position: -32px -112px; } +.ui-icon-cart { background-position: -48px -112px; } +.ui-icon-pencil { background-position: -64px -112px; } +.ui-icon-clock { background-position: -80px -112px; } +.ui-icon-disk { background-position: -96px -112px; } +.ui-icon-calculator { background-position: -112px -112px; } +.ui-icon-zoomin { background-position: -128px -112px; } +.ui-icon-zoomout { background-position: -144px -112px; } +.ui-icon-search { background-position: -160px -112px; } +.ui-icon-wrench { background-position: -176px -112px; } +.ui-icon-gear { background-position: -192px -112px; } +.ui-icon-heart { background-position: -208px -112px; } +.ui-icon-star { background-position: -224px -112px; } +.ui-icon-link { background-position: -240px -112px; } +.ui-icon-cancel { background-position: 0 -128px; } +.ui-icon-plus { background-position: -16px -128px; } +.ui-icon-plusthick { background-position: -32px -128px; } +.ui-icon-minus { background-position: -48px -128px; } +.ui-icon-minusthick { background-position: -64px -128px; } +.ui-icon-close { background-position: -80px -128px; } +.ui-icon-closethick { background-position: -96px -128px; } +.ui-icon-key { background-position: -112px -128px; } +.ui-icon-lightbulb { background-position: -128px -128px; } +.ui-icon-scissors { background-position: -144px -128px; } +.ui-icon-clipboard { background-position: -160px -128px; } +.ui-icon-copy { background-position: -176px -128px; } +.ui-icon-contact { background-position: -192px -128px; } +.ui-icon-image { background-position: -208px -128px; } +.ui-icon-video { background-position: -224px -128px; } +.ui-icon-script { background-position: -240px -128px; } +.ui-icon-alert { background-position: 0 -144px; } +.ui-icon-info { background-position: -16px -144px; } +.ui-icon-notice { background-position: -32px -144px; } +.ui-icon-help { background-position: -48px -144px; } +.ui-icon-check { background-position: -64px -144px; } +.ui-icon-bullet { background-position: -80px -144px; } +.ui-icon-radio-off { background-position: -96px -144px; } +.ui-icon-radio-on { background-position: -112px -144px; } +.ui-icon-pin-w { background-position: -128px -144px; } +.ui-icon-pin-s { background-position: -144px -144px; } +.ui-icon-play { background-position: 0 -160px; } +.ui-icon-pause { background-position: -16px -160px; } +.ui-icon-seek-next { background-position: -32px -160px; } +.ui-icon-seek-prev { background-position: -48px -160px; } +.ui-icon-seek-end { background-position: -64px -160px; } +.ui-icon-seek-first { background-position: -80px -160px; } +.ui-icon-stop { background-position: -96px -160px; } +.ui-icon-eject { background-position: -112px -160px; } +.ui-icon-volume-off { background-position: -128px -160px; } +.ui-icon-volume-on { background-position: -144px -160px; } +.ui-icon-power { background-position: 0 -176px; } +.ui-icon-signal-diag { background-position: -16px -176px; } +.ui-icon-signal { background-position: -32px -176px; } +.ui-icon-battery-0 { background-position: -48px -176px; } +.ui-icon-battery-1 { background-position: -64px -176px; } +.ui-icon-battery-2 { background-position: -80px -176px; } +.ui-icon-battery-3 { background-position: -96px -176px; } +.ui-icon-circle-plus { background-position: 0 -192px; } +.ui-icon-circle-minus { background-position: -16px -192px; } +.ui-icon-circle-close { background-position: -32px -192px; } +.ui-icon-circle-triangle-e { background-position: -48px -192px; } +.ui-icon-circle-triangle-s { background-position: -64px -192px; } +.ui-icon-circle-triangle-w { background-position: -80px -192px; } +.ui-icon-circle-triangle-n { background-position: -96px -192px; } +.ui-icon-circle-arrow-e { background-position: -112px -192px; } +.ui-icon-circle-arrow-s { background-position: -128px -192px; } +.ui-icon-circle-arrow-w { background-position: -144px -192px; } +.ui-icon-circle-arrow-n { background-position: -160px -192px; } +.ui-icon-circle-zoomin { background-position: -176px -192px; } +.ui-icon-circle-zoomout { background-position: -192px -192px; } +.ui-icon-circle-check { background-position: -208px -192px; } +.ui-icon-circlesmall-plus { background-position: 0 -208px; } +.ui-icon-circlesmall-minus { background-position: -16px -208px; } +.ui-icon-circlesmall-close { background-position: -32px -208px; } +.ui-icon-squaresmall-plus { background-position: -48px -208px; } +.ui-icon-squaresmall-minus { background-position: -64px -208px; } +.ui-icon-squaresmall-close { background-position: -80px -208px; } +.ui-icon-grip-dotted-vertical { background-position: 0 -224px; } +.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } +.ui-icon-grip-solid-vertical { background-position: -32px -224px; } +.ui-icon-grip-solid-horizontal { background-position: -48px -224px; } +.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } +.ui-icon-grip-diagonal-se { background-position: -80px -224px; } + + +/* Misc visuals +----------------------------------*/ + +/* Corner radius */ +.ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; } +.ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; } +.ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; } +.ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; } +.ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; } +.ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; } +.ui-corner-right { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; } +.ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; } +.ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; } + +/* Overlays */ +.ui-widget-overlay { background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); } +.ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -webkit-border-radius: 5px; }/* Accordion +----------------------------------*/ +.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } +.ui-accordion .ui-accordion-li-fix { display: inline; } +.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } +.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; } +.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } +.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; } +.ui-accordion .ui-accordion-content-active { display: block; }/* Datepicker +----------------------------------*/ +.ui-datepicker { width: 17em; padding: .2em .2em 0; } +.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } +.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } +.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } +.ui-datepicker .ui-datepicker-prev { left:2px; } +.ui-datepicker .ui-datepicker-next { right:2px; } +.ui-datepicker .ui-datepicker-prev-hover { left:1px; } +.ui-datepicker .ui-datepicker-next-hover { right:1px; } +.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } +.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } +.ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; } +.ui-datepicker select.ui-datepicker-month-year {width: 100%;} +.ui-datepicker select.ui-datepicker-month, +.ui-datepicker select.ui-datepicker-year { width: 49%;} +.ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; } +.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } +.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } +.ui-datepicker td { border: 0; padding: 1px; } +.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } +.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } +.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } +.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } + +/* with multiple calendars */ +.ui-datepicker.ui-datepicker-multi { width:auto; } +.ui-datepicker-multi .ui-datepicker-group { float:left; } +.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } +.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } +.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } +.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } +.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } +.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } +.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } +.ui-datepicker-row-break { clear:both; width:100%; } + +/* RTL support */ +.ui-datepicker-rtl { direction: rtl; } +.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } +.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } +.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } +.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } +.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } +.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } +.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } +.ui-datepicker-rtl .ui-datepicker-group { float:right; } +.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } +.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } + +/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ +.ui-datepicker-cover { + display: none; /*sorry for IE5*/ + display/**/: block; /*sorry for IE5*/ + position: absolute; /*must have*/ + z-index: -1; /*must have*/ + filter: mask(); /*must have*/ + top: -4px; /*must have*/ + left: -4px; /*must have*/ + width: 200px; /*must have*/ + height: 200px; /*must have*/ +}/* Dialog +----------------------------------*/ +.ui-dialog { position: relative; padding: .2em; width: 300px; } +.ui-dialog .ui-dialog-titlebar { padding: .5em .3em .3em 1em; position: relative; } +.ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; } +.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } +.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } +.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } +.ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } +.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } +.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; } +.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } +.ui-draggable .ui-dialog-titlebar { cursor: move; } +/* Progressbar +----------------------------------*/ +.ui-progressbar { height:2em; text-align: left; } +.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/* Resizable +----------------------------------*/ +.ui-resizable { position: relative;} +.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;} +.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } +.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; } +.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; } +.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; } +.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; } +.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } +.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } +.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } +.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Slider +----------------------------------*/ +.ui-slider { position: relative; text-align: left; } +.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } +.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; } + +.ui-slider-horizontal { height: .8em; } +.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } +.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } +.ui-slider-horizontal .ui-slider-range-min { left: 0; } +.ui-slider-horizontal .ui-slider-range-max { right: 0; } + +.ui-slider-vertical { width: .8em; height: 100px; } +.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } +.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } +.ui-slider-vertical .ui-slider-range-min { bottom: 0; } +.ui-slider-vertical .ui-slider-range-max { top: 0; }/* Tabs +----------------------------------*/ +.ui-tabs { padding: .2em; zoom: 1; } +.ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; } +.ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; } +.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; } +.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; } +.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } +.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ +.ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; } +.ui-tabs .ui-tabs-hide { display: none !important; } diff --git a/media/js/development-bundle/AUTHORS.txt b/media/js/development-bundle/AUTHORS.txt new file mode 100644 index 0000000..637175b --- /dev/null +++ b/media/js/development-bundle/AUTHORS.txt @@ -0,0 +1,30 @@ +jQuery UI Authors (http://ui.jquery.com/about) + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +and logs, available at http://jquery-ui.googlecode.com/svn/ + +Brandon Aaron +Paul Bakaus (paulbakaus.com) +David Bolter +Rich Caloggero +Chi Cheng (cloudream@gmail.com) +Colin Clark (http://colin.atrc.utoronto.ca/) +Michelle D'Souza +Aaron Eisenberger (aaronchi@gmail.com) +Ariel Flesler +Bohdan Ganicky +Scott González +Marc Grabanski (m@marcgrabanski.com) +Klaus Hartl (stilbuero.de) +Scott Jehl +Cody Lindley +Eduardo Lundgren (eduardolundgren@gmail.com) +Todd Parker +John Resig +Patty Toland +Ca-Phun Ung (yelotofu.com) +Keith Wood (kbwood@virginbroadband.com.au) +Maggie Costello Wachs +Richard D. Worth (rdworth.org) +Jörn Zaefferer (bassistance.de) diff --git a/media/js/development-bundle/GPL-LICENSE.txt b/media/js/development-bundle/GPL-LICENSE.txt new file mode 100644 index 0000000..11dddd0 --- /dev/null +++ b/media/js/development-bundle/GPL-LICENSE.txt @@ -0,0 +1,278 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. diff --git a/media/js/development-bundle/MIT-LICENSE.txt b/media/js/development-bundle/MIT-LICENSE.txt new file mode 100644 index 0000000..f0f2ba9 --- /dev/null +++ b/media/js/development-bundle/MIT-LICENSE.txt @@ -0,0 +1,25 @@ +Copyright (c) 2009 Paul Bakaus, http://jqueryui.com/ + +This software consists of voluntary contributions made by many +individuals (AUTHORS.txt, http://jqueryui.com/about) For exact +contribution history, see the revision history and logs, available +at http://jquery-ui.googlecode.com/svn/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/media/js/development-bundle/demos/accordion/collapsible.html b/media/js/development-bundle/demos/accordion/collapsible.html new file mode 100644 index 0000000..381d5fe --- /dev/null +++ b/media/js/development-bundle/demos/accordion/collapsible.html @@ -0,0 +1,58 @@ + + + + jQuery UI Accordion - Collapse content + + + + + + + + + +
+ +
+

Section 1

+
+

Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.

+
+

Section 2

+
+

Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In suscipit faucibus urna.

+
+

Section 3

+
+

Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.

+
    +
  • List item one
  • +
  • List item two
  • +
  • List item three
  • +
+
+

Section 4

+
+

Cras dictum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia mauris vel est.

Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.

+
+
+ +
+ + + +
+ +

By default, accordions always keep one section open. To allow for all sections to be be collapsible, set the collapsible option to true. Click on the currently open section to collapse its content pane.

+ + +
+ + + diff --git a/media/js/development-bundle/demos/accordion/custom-icons.html b/media/js/development-bundle/demos/accordion/custom-icons.html new file mode 100644 index 0000000..777fa52 --- /dev/null +++ b/media/js/development-bundle/demos/accordion/custom-icons.html @@ -0,0 +1,60 @@ + + + + jQuery UI Accordion - Customize icons + + + + + + + + + +
+ +
+

Section 1

+
+

Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.

+
+

Section 2

+
+

Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In suscipit faucibus urna.

+
+

Section 3

+
+

Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.

+
    +
  • List item one
  • +
  • List item two
  • +
  • List item three
  • +
+
+

Section 4

+
+

Cras dictum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia mauris vel est.

Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.

+
+
+ +
+ + + +
+ +

Customize the header icons with the icons option, which accepts classes for the header's default and selected (open) state. Use any class from the UI CSS framework, or create custom classes with background images.

+ +
+ + + diff --git a/media/js/development-bundle/demos/accordion/default.html b/media/js/development-bundle/demos/accordion/default.html new file mode 100644 index 0000000..9493b26 --- /dev/null +++ b/media/js/development-bundle/demos/accordion/default.html @@ -0,0 +1,83 @@ + + + + jQuery UI Accordion - Default functionality + + + + + + + + + +
+ +
+

Section 1

+
+

+ Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer + ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit + amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut + odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate. +

+
+

Section 2

+
+

+ Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet + purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor + velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In + suscipit faucibus urna. +

+
+

Section 3

+
+

+ Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. + Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero + ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis + lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui. +

+
    +
  • List item one
  • +
  • List item two
  • +
  • List item three
  • +
+
+

Section 4

+
+

+ Cras dictum. Pellentesque habitant morbi tristique senectus et netus + et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in + faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia + mauris vel est. +

+

+ Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus. + Class aptent taciti sociosqu ad litora torquent per conubia nostra, per + inceptos himenaeos. +

+
+
+ +
+ +
+

+Click headers to expand/collapse content that is broken into logical sections, much like tabs. +Optionally, toggle sections open/closed on mouseover. +

+

+The underlying HTML markup is a series of headers (H3 tags) and content divs so the content is +usable without JavaScript. +

+
+ + + diff --git a/media/js/development-bundle/demos/accordion/fillspace.html b/media/js/development-bundle/demos/accordion/fillspace.html new file mode 100644 index 0000000..3523d00 --- /dev/null +++ b/media/js/development-bundle/demos/accordion/fillspace.html @@ -0,0 +1,76 @@ + + + + jQuery UI Accordion - Fill space + + + + + + + + + + +
+ +

Resize the outer container:

+ +
+ +
+

Section 1

+
+

Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.

+
+

Section 2

+
+

Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In suscipit faucibus urna.

+
+

Section 3

+
+

Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.

+
    +
  • List item one
  • +
  • List item two
  • +
  • List item three
  • +
+
+

Section 4

+
+

Cras dictum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia mauris vel est.

Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.

+
+
+ + +
+ +
I'm another panel
+ +
+ + + +
+ +

Because the accordion is comprised of block-level elements, by default its width fills the available horizontal space. To fill the vertical space allocated by its container, set the boolean fillSpace option to true, and the script will automatically set the dimensions of the accordion to the height of its parent container. The accordion will also resize with its container if the container is resizable.

+ +
+ + + + diff --git a/media/js/development-bundle/demos/accordion/index.html b/media/js/development-bundle/demos/accordion/index.html new file mode 100644 index 0000000..f09fcf6 --- /dev/null +++ b/media/js/development-bundle/demos/accordion/index.html @@ -0,0 +1,20 @@ + + + + jQuery UI Accordion Demos + + + + + + diff --git a/media/js/development-bundle/demos/accordion/mouseover.html b/media/js/development-bundle/demos/accordion/mouseover.html new file mode 100644 index 0000000..2181649 --- /dev/null +++ b/media/js/development-bundle/demos/accordion/mouseover.html @@ -0,0 +1,57 @@ + + + + jQuery UI Accordion - Open on mouseover + + + + + + + + + +
+ +
+

Section 1

+
+

Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.

+
+

Section 2

+
+

Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In suscipit faucibus urna.

+
+

Section 3

+
+

Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.

+
    +
  • List item one
  • +
  • List item two
  • +
  • List item three
  • +
+
+

Section 4

+
+

Cras dictum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia mauris vel est.

Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.

+
+
+ +
+ + + +
+ +

Toggle sections open/closed on mouseover with the event option. The default value for event is "click."

+ +
+ + + diff --git a/media/js/development-bundle/demos/accordion/no-auto-height.html b/media/js/development-bundle/demos/accordion/no-auto-height.html new file mode 100644 index 0000000..49b7c3b --- /dev/null +++ b/media/js/development-bundle/demos/accordion/no-auto-height.html @@ -0,0 +1,57 @@ + + + + jQuery UI Accordion - No Auto Height + + + + + + + + + +
+ +
+

Section 1

+
+

Mauris mauris ante, blandit et, ultrices a, susceros. Nam mi. Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.

+
+

Section 2

+
+

Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In suscipit faucibus urna.

+
+

Section 3

+
+

Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.

+
    +
  • List item
  • +
  • List item
  • +
  • List item
  • +
  • List item
  • +
  • List item
  • +
  • List item
  • +
  • List item
  • +
+
+
+ +
+ + + +
+ +

Setting autoHeight: false allows to accordion panels to keep their native height.

+ +
+ + + diff --git a/media/js/development-bundle/demos/addClass/default.html b/media/js/development-bundle/demos/addClass/default.html new file mode 100644 index 0000000..eae24b9 --- /dev/null +++ b/media/js/development-bundle/demos/addClass/default.html @@ -0,0 +1,51 @@ + + + + jQuery UI Effects - addClass Demo + + + + + + + + + +
+ +
+
+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. +
+
+ +Run Effect + +
+ +
+ +

This demo adds a class which animates: text-indent, letter-spacing, width, height, padding, margin, and font-size.

+ +
+ + + diff --git a/media/js/development-bundle/demos/addClass/index.html b/media/js/development-bundle/demos/addClass/index.html new file mode 100644 index 0000000..4b9471d --- /dev/null +++ b/media/js/development-bundle/demos/addClass/index.html @@ -0,0 +1,17 @@ + + + + jQuery UI Effects Demos + + + + +
+

Examples

+ +
+ + + diff --git a/media/js/development-bundle/demos/animate/default.html b/media/js/development-bundle/demos/animate/default.html new file mode 100644 index 0000000..a01f08a --- /dev/null +++ b/media/js/development-bundle/demos/animate/default.html @@ -0,0 +1,52 @@ + + + + jQuery UI Effects - Animate Demo + + + + + + + + + +
+ +
+
+

Animate

+

+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi. +

+
+
+ +Toggle Effect + +
+ +
+ +

Click the button above to preview the effect.

+ +
+ + + diff --git a/media/js/development-bundle/demos/animate/index.html b/media/js/development-bundle/demos/animate/index.html new file mode 100644 index 0000000..4b9471d --- /dev/null +++ b/media/js/development-bundle/demos/animate/index.html @@ -0,0 +1,17 @@ + + + + jQuery UI Effects Demos + + + + +
+

Examples

+ +
+ + + diff --git a/media/js/development-bundle/demos/datepicker/alt-field.html b/media/js/development-bundle/demos/datepicker/alt-field.html new file mode 100644 index 0000000..372e2bf --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/alt-field.html @@ -0,0 +1,31 @@ + + + + jQuery UI Datepicker - Populate alternate field + + + + + + + + + +
+ +

Date:  

+ +
+ +
+ +

Populate an alternate field with its own date format whenever a date is selected using the altField and altFormat options. This feature could be used to present a human-friendly date for user selection, while passing a more computer-friendly date through for further processing.

+ +
+ + + diff --git a/media/js/development-bundle/demos/datepicker/buttonbar.html b/media/js/development-bundle/demos/datepicker/buttonbar.html new file mode 100644 index 0000000..eeea08a --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/buttonbar.html @@ -0,0 +1,33 @@ + + + + jQuery UI Datepicker - Display button bar + + + + + + + + + +
+ +

Date:

+ +
+ +
+ +

Display a button for selecting Today's date and a Done button for closing the calendar with the boolean showButtonPanel option. Each button is enabled by default when the bar is displayed, but can be turned off with additional options. Button text is customizable.

+ +
+ + + diff --git a/media/js/development-bundle/demos/datepicker/date-formats.html b/media/js/development-bundle/demos/datepicker/date-formats.html new file mode 100644 index 0000000..a8712ec --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/date-formats.html @@ -0,0 +1,43 @@ + + + + jQuery UI Datepicker - Format date + + + + + + + + + +
+ +

Date:

+ +

Format options:
+ +

+ +
+ +
+ +

Display date feedback in a variety of ways. Choose a date format from the dropdown, then click on the input and select a date to see it in that format.

+ +
+ + + diff --git a/media/js/development-bundle/demos/datepicker/default.html b/media/js/development-bundle/demos/datepicker/default.html new file mode 100644 index 0000000..368e0bc --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/default.html @@ -0,0 +1,31 @@ + + + + jQuery UI Datepicker - Default functionality + + + + + + + + + +
+ +

Date:

+ +
+ +
+ +

The datepicker is tied to a standard form input field. Focus on the input (click, or use the tab key) to open an interactive calendar in a small overlay. Choose a date, click elsewhere on the page (blur the input), or hit the Esc key to close. If a date is chosen, feedback is shown as the input's value.

+ +
+ + + diff --git a/media/js/development-bundle/demos/datepicker/dropdown-month-year.html b/media/js/development-bundle/demos/datepicker/dropdown-month-year.html new file mode 100644 index 0000000..c169310 --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/dropdown-month-year.html @@ -0,0 +1,34 @@ + + + + jQuery UI Datepicker - Display month & year menus + + + + + + + + + +
+ +

Date:

+ +
+ +
+ +

Show month and year dropdowns in place of the static month/year header to facilitate navigation through large timeframes. Add the boolean changeMonth and changeYear options.

+ +
+ + + diff --git a/media/js/development-bundle/demos/datepicker/icon-trigger.html b/media/js/development-bundle/demos/datepicker/icon-trigger.html new file mode 100644 index 0000000..5b4de4a --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/icon-trigger.html @@ -0,0 +1,31 @@ + + + + jQuery UI Datepicker - Icon trigger + + + + + + + + + +
+ +

Date:

+ +
+ +
+ +

Click the icon next to the input field to show the datepicker. Set the datepicker to open on focus (default behavior), on icon click, or both.

+ +
+ + + diff --git a/media/js/development-bundle/demos/datepicker/images/calendar.gif b/media/js/development-bundle/demos/datepicker/images/calendar.gif new file mode 100644 index 0000000000000000000000000000000000000000..d0abaa7c0b892e781b6f553453a0027efea014b9 GIT binary patch literal 269 zcmZ?wbhEHb6kyoJ#dt% zaYstuiRe5}O|8;NEA%ba6j)5k7TbN(gNwC&D)Y{1Cu2PhDy(ymnp7_1Ai(k{X>FbJ zg$yQ1aX#U+v{)u7c4kS5=DdO;0Y*k<=8BdGnYaWYcOkak83LIJ0`39}`h<8zSFc^O QT3n!+Z|k=0I}{nL0T`orxBvhE literal 0 HcmV?d00001 diff --git a/media/js/development-bundle/demos/datepicker/index.html b/media/js/development-bundle/demos/datepicker/index.html new file mode 100644 index 0000000..dfe22db --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/index.html @@ -0,0 +1,26 @@ + + + + jQuery UI Datepicker Demos + + + + + + + + diff --git a/media/js/development-bundle/demos/datepicker/inline.html b/media/js/development-bundle/demos/datepicker/inline.html new file mode 100644 index 0000000..2d5ad75 --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/inline.html @@ -0,0 +1,31 @@ + + + + jQuery UI Datepicker - Display inline + + + + + + + + + +
+ +Date:
+ +
+ +
+ +

Display the datepicker embedded in the page instead of in an overlay. Simply call .datepicker() on a div instead of an input.

+ +
+ + + diff --git a/media/js/development-bundle/demos/datepicker/localization.html b/media/js/development-bundle/demos/datepicker/localization.html new file mode 100644 index 0000000..39bc660 --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/localization.html @@ -0,0 +1,120 @@ + + + + jQuery UI Datepicker - Localize calendar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +

Date:   +

+ +
+ +
+ +

Localize the datepicker calendar language and format (English / Western formatting is the default). The datepicker includes built-in support for languages that read right-to-left, such as Arabic and Hebrew.

+ +
+ + + diff --git a/media/js/development-bundle/demos/datepicker/min-max.html b/media/js/development-bundle/demos/datepicker/min-max.html new file mode 100644 index 0000000..06a1776 --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/min-max.html @@ -0,0 +1,31 @@ + + + + jQuery UI Datepicker - Restrict date range + + + + + + + + + +
+ +

Date:

+ +
+ +
+ +

Restrict the range of selectable dates with the minDate and maxDate options. Set the beginning and end dates as actual dates (new Date(2009, 1 - 1, 26)), as a numeric offset from today (-20), or as a string of periods and units ('+1M +10D'). For the last, use 'D' for days, 'W' for weeks, 'M' for months, or 'Y' for years.

+ +
+ + + diff --git a/media/js/development-bundle/demos/datepicker/multiple-calendars.html b/media/js/development-bundle/demos/datepicker/multiple-calendars.html new file mode 100644 index 0000000..86e55a0 --- /dev/null +++ b/media/js/development-bundle/demos/datepicker/multiple-calendars.html @@ -0,0 +1,34 @@ + + + + jQuery UI Datepicker - Display multiple months + + + + + + + + + +
+ +

Date:

+ +
+ +
+ +

Set the numberOfMonths option to an integer of 2 or more to show multiple months in a single datepicker.

+ +
+ + + diff --git a/media/js/development-bundle/demos/demos.css b/media/js/development-bundle/demos/demos.css new file mode 100644 index 0000000..2d2ce1f --- /dev/null +++ b/media/js/development-bundle/demos/demos.css @@ -0,0 +1,334 @@ +body { + font-size: 62.5%; +} + +table { + font-size: 1em; +} + +/* Site + -------------------------------- */ + +body { + font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; +} + +/* Layout + -------------------------------- */ + +.layout-grid { + width: 960px; +} + +.layout-grid td { + vertical-align: top; +} + +.layout-grid td.left-nav { + width: 140px; +} + +.layout-grid td.normal { + border-left: 1px solid #eee; + padding: 20px 24px; + font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; +} + +.layout-grid td.demos { + background: url('/images/demos_bg.jpg') no-repeat; + height: 337px; + overflow: hidden; +} + +/* Normal + -------------------------------- */ + +.normal h3, +.normal h4 { + margin: 0; + font-weight: normal; +} + +.normal h3 { + padding: 0 0 9px; + font-size: 1.8em; +} + +.normal h4 { + padding-bottom: 21px; + border-bottom: 1px dashed #999; + font-size: 1.2em; + font-weight: bold; +} + +.normal p { + font-size: 1.2em; +} + +/* Demos */ + +.demos-nav, .demos-nav dt, .demos-nav dd, .demos-nav ul, .demos-nav li { + margin: 0; + padding: 0 +} + +.demos-nav { + float: left; + width: 170px; + font-size: 1.3em; +} + +.demos-nav dt, +.demos-nav h4 { + margin: 0; + padding: 0; + font: normal 1.1em "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; + color: #e87b10; +} + +.demos-nav dt, +.demos-nav h4 { + margin-top: 1.5em; + margin-bottom: 0; + padding-left: 8px; + padding-bottom:5px; + line-height: 1.2em; + border-bottom: 1px solid #F4F4F4; +} + +.demos-nav dd a, +.demos-nav li a { + border-bottom: 1px solid #F4F4F4; + display:block; + padding: 4px 3px 4px 8px; + font-size: 90%; + text-decoration: none; + color: #555 ; + margin:2px 0; + height:13px; +} + +.demos-nav dd a:hover, +.demos-nav dd a:focus, +.demos-nav dd a:hover, +.demos-nav dd a:focus { + background: #f3f3f3; + color:#000; + -moz-border-radius: 5px; -webkit-border-radius: 5px; +} + .demos-nav dd a.selected { + background: #555; + color:#ffffff; + -moz-border-radius: 5px; -webkit-border-radius: 5px; +} + + +/* new styles for demo pages, added by Filament 12.29.08 +eventually we should convert the font sizes to ems -- using px for now to minimize style conflicts +*/ + +.normal h3.demo-header { font-size:32px; padding:0 0 5px; border-bottom:1px solid #eee; text-transform: capitalize; } +.normal h4.demo-subheader { font-size:10px; text-transform: uppercase; color:#999; padding:8px 0 3px; border:0; margin:0; } +.normal a:link, +.normal a:visited { color:#1b75bb; text-decoration:none; } +.normal a:hover, +.normal a:active { color:#0b559b; } + +#demo-config { padding:20px 0 0; } + +#demo-frame { float:left; width:540px; height:380px; border:1px solid #ddd; overflow: auto; position: relative; } +#demo-frame h3, #demo-frame h4 { padding: 0; font-weight: bold; font-size: 1em; } + +#demo-config-menu { float:right; width:180px; } +#demo-config-menu h4 { font-size:13px; color:#666; font-weight:normal; border:0; padding-left:18px; } + +#demo-config-menu ul { list-style: none; padding: 0; margin: 0; } + +#demo-config-menu li { font-size:12px; padding:0 0 0 10px; margin:3px 0; zoom: 1; } + +#demo-config-menu li a:link, +#demo-config-menu li a:visited { display:block; padding:1px 8px 4px; border-bottom:1px dotted #b3b3b3; } +* html #demo-config-menu li a:link, +* html #demo-config-menu li a:visited { padding:1px 8px 2px; } +#demo-config-menu li a:hover, +#demo-config-menu li a:active { background-color:#f6f6f6; } + +#demo-config-menu li.demo-config-on { background: url(images/demo-config-on-tile.gif) repeat-x left center; } + +#demo-config-menu li.demo-config-on a:link, +#demo-config-menu li.demo-config-on a:visited, +#demo-config-menu li.demo-config-on a:hover, +#demo-config-menu li.demo-config-on a:active { background: url(images/demo-config-on.gif) no-repeat left; padding-left:18px; color:#fff; border:0; margin-left:-10px; margin-top: 0px; margin-bottom: 0px; } + +#demo-source, #demo-notes { + clear: both; + padding: 20px 0 0; + font-size: 1.3em; +} + +#demo-notes { width:520px; color:#333; font-size: 1em; } +#demo-notes p code, .demo-description p code { padding: 0; font-weight: bold; } +#demo-source pre, #demo-source code { padding: 0; } +code, pre { padding:8px 0 8px 20px ; font-size: 1.2em; line-height:130%; } + +#demo-source a:link, +#demo-source a:visited, +#demo-source a:hover, +#demo-source a:active { font-size:12px; padding-left:13px; background-position: left center; background-repeat: no-repeat; } + +#demo-source a.source-open:link, +#demo-source a.source-open:visited, +#demo-source a.source-open:hover, +#demo-source a.source-open:active { background-image: url(images/demo-spindown-open.gif); } + +#demo-source a.source-closed:link, +#demo-source a.source-closed:visited, +#demo-source a.source-closed:hover, +#demo-source a.source-closed:active { background-image: url(images/demo-spindown-closed.gif); } + +div.demo { + padding:12px; + font-family: "Trebuchet MS", "Arial", "Helvetica", "Verdana", "sans-serif"; +} + +div.demo h3.docs { clear:left; font-size:12px; font-weight:normal; padding:0 0 1em; margin:0; } + +div.demo-description { + clear:both; + padding:12px; + font-family: "Trebuchet MS", "Arial", "Helvetica", "Verdana", "sans-serif"; + font-size: 1.3em; + line-height: 1.4em; +} + +.ui-draggable, .ui-droppable { + background-position: top left; +} + +.left-nav .demos-nav { + padding-right: 10px; +} + +#demo-link { font-size:11px; padding-top: 6px; clear: both; overflow: hidden; } +#demo-link a span.ui-icon { float:left; margin-right:3px; } + +/* Component containers +----------------------------------*/ +#widget-docs .ui-widget { font-family: Trebuchet MS,Verdana,Arial,sans-serif; font-size: 1em; } +#widget-docs .ui-widget input, #widget-docs .ui-widget select, #widget-docs .ui-widget textarea, #widget-docs .ui-widget button { font-family: Trebuchet MS,Verdana,Arial,sans-serif; font-size: 1em; } +#widget-docs .ui-widget-header { border: 1px solid #ffffff; background: #464646 url(images/464646_40x100_textures_01_flat_100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; } +#widget-docs .ui-widget-header a { color: #ffffff; } +#widget-docs .ui-widget-content { border: 1px solid #ffffff; background: #ffffff url(images/ffffff_40x100_textures_01_flat_75.png) 50% 50% repeat-x; color: #222222; } +#widget-docs .ui-widget-content a { color: #222222; } + +/* Interaction states +----------------------------------*/ +#widget-docs .ui-state-default, #widget-docs .ui-widget-content #widget-docs .ui-state-default { border: 1px solid #666666; background: #555555 url(images/555555_40x100_textures_03_highlight_soft_75.png) 50% 50% repeat-x; font-weight: normal; color: #ffffff; outline: none; } +#widget-docs .ui-state-default a { color: #ffffff; text-decoration: none; outline: none; } +#widget-docs .ui-state-hover, #widget-docs .ui-widget-content #widget-docs .ui-state-hover, #widget-docs .ui-state-focus, #widget-docs .ui-widget-content #widget-docs .ui-state-focus { border: 1px solid #666666; background: #444444 url(images/444444_40x100_textures_03_highlight_soft_60.png) 50% 50% repeat-x; font-weight: normal; color: #ffffff; outline: none; } +#widget-docs .ui-state-hover a { color: #ffffff; text-decoration: none; outline: none; } +#widget-docs .ui-state-active, #widget-docs .ui-widget-content #widget-docs .ui-state-active { border: 1px solid #666666; background: #ffffff url(images/ffffff_40x100_textures_01_flat_65.png) 50% 50% repeat-x; font-weight: normal; color: #F6921E; outline: none; } +#widget-docs .ui-state-active a { color: #F6921E; outline: none; text-decoration: none; } + +/* Interaction Cues +----------------------------------*/ +#widget-docs .ui-state-highlight, #widget-docs .ui-widget-content #widget-docs .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee url(images/fbf9ee_40x100_textures_02_glass_55.png) 50% 50% repeat-x; color: #363636; } +#widget-docs .ui-state-error, #widget-docs .ui-widget-content #widget-docs .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(images/fef1ec_40x100_textures_05_inset_soft_95.png) 50% bottom repeat-x; color: #cd0a0a; } +#widget-docs .ui-state-error-text, #widget-docs .ui-widget-content #widget-docs .ui-state-error-text { color: #cd0a0a; } +#widget-docs .ui-state-disabled, #widget-docs .ui-widget-content #widget-docs .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } +#widget-docs .ui-priority-primary, #widget-docs .ui-widget-content #widget-docs .ui-priority-primary { font-weight: bold; } +#widget-docs .ui-priority-secondary, #widget-docs .ui-widget-content #widget-docs .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } + +/* Icons +----------------------------------*/ + +/* states and images */ +#demo-frame-wrapper .ui-icon, #widget-docs .ui-icon { width: 16px; height: 16px; background-image: url(images/222222_256x240_icons_icons.png); } +#widget-docs .ui-widget-content .ui-icon {background-image: url(images/222222_256x240_icons_icons.png); } +#widget-docs .ui-widget-header .ui-icon {background-image: url(images/222222_256x240_icons_icons.png); } +#widget-docs .ui-state-default .ui-icon { background-image: url(images/888888_256x240_icons_icons.png); } +#widget-docs .ui-state-hover .ui-icon, #widget-docs .ui-state-focus .ui-icon {background-image: url(images/454545_256x240_icons_icons.png); } +#widget-docs .ui-state-active .ui-icon {background-image: url(images/454545_256x240_icons_icons.png); } +#widget-docs .ui-state-highlight .ui-icon {background-image: url(images/2e83ff_256x240_icons_icons.png); } +#widget-docs .ui-state-error .ui-icon, #widget-docs .ui-state-error-text .ui-icon {background-image: url(images/cd0a0a_256x240_icons_icons.png); } + + +/* Misc visuals +----------------------------------*/ + +/* Corner radius */ +#widget-docs .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; } +#widget-docs .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; } +#widget-docs .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; } +#widget-docs .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; } +#widget-docs .ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; } +#widget-docs .ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; } +#widget-docs .ui-corner-right { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; } +#widget-docs .ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; } +#widget-docs .ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; } + +/* Overlays */ +#widget-docs .ui-widget-overlay { background: #aaaaaa url(images/aaaaaa_40x100_textures_01_flat_0.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); } +#widget-docs .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/aaaaaa_40x100_textures_01_flat_0.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; } + +/* +----------------------------------*/ + +#widget-docs { margin:20px 0 0; border: none; } + +#widget-docs h2, #widget-docs h3, #widget-docs h4, #widget-docs p, #widget-docs ul, #widget-docs code { margin:0; padding:0; } +#widget-docs code { display:block; color:#444; font-size:.9em; margin:0 0 1em; } +#widget-docs code strong { color:#000; } +#widget-docs p { margin:0 3em 1.2em 0; } +#widget-docs p.intro { font-size:13px; color:#666; line-height:1.3; } +#widget-docs ul { list-style-type: none; } + +#widget-docs h2 { font-size:16px; margin:1.2em 0 .5em; } +#widget-docs h3 { font-size:14px; color:#e6820E; margin:1.5em 0 .5em; } +.normal #widget-docs h4 { font-size:12px; color:#000; border:0; margin:0 0 .5em; } + +#docs-overview-main { width:400px; } +#docs-overview-sidebar { float:right; width:200px; } +#docs-overview-sidebar a span { color:#666; } +#widget-docs #docs-overview-main p { margin-right:0; } +#widget-docs #docs-overview-sidebar h4 { padding-left:0; } + +.docs-list-header { float:left; width:100%; margin:10px 0 0; border-bottom:1px solid #eee; } +#widget-docs .docs-list-header h2 { float:left; margin:0; } +#widget-docs .docs-list-header p { float:right; margin:5px 0; font-size:11px; } + +.docs-list { float:left; width:100%; padding:0 0 10px; } +.docs-list .param-header { float:left; clear:left; width:100%; padding:8px 0; border-top:1px solid #eee; } +#widget-docs .param-header h3, #widget-docs .param-header p { margin:0; float:left; } +#widget-docs .param-header h3 { width:50%; } +#widget-docs .param-header h3 span { background: url(images/demo-spindown-closed.gif) no-repeat left; padding-left:13px; } +#widget-docs .param-open .param-header h3 span { background: url(images/demo-spindown-open.gif) no-repeat left; } +#widget-docs .param-header p { width:24%; } +#widget-docs .param-header p.param-type span { background: url(images/icon-docs-info.gif) no-repeat left; cursor:pointer; border-bottom:1px dashed #ccc; padding-left:15px; } + +.param-details { padding-left:13px; } +.param-args { margin:0 0 1.5em; border-top:1px dotted #ccc;} +.param-args td { padding:3px 30px 3px 5px; border-bottom:1px dotted #ccc; } + + +/* overrides for ui-tab styles */ +#widget-docs ul.ui-tabs-nav { padding:0 0 0 8px; } +#widget-docs .ui-tabs-nav li { margin:5px 5px 0 0; } + +#widget-docs .ui-tabs-nav li a:link, +#widget-docs .ui-tabs-nav li a:visited, +#widget-docs .ui-tabs-nav li a:hover, +#widget-docs .ui-tabs-nav li a:active { font-size:14px; padding:4px 1.2em 3px; color:#fff; } + +#widget-docs .ui-tabs-nav li.ui-tabs-selected a:link, +#widget-docs .ui-tabs-nav li.ui-tabs-selected a:visited, +#widget-docs .ui-tabs-nav li.ui-tabs-selected a:hover, +#widget-docs .ui-tabs-nav li.ui-tabs-selected a:active { color:#e6820E; } + +#widget-docs .ui-tabs-panel { padding:20px 9px; font-size:12px; line-height:1.4; color:#000; } + +#widget-docs .ui-widget-content a:link, +#widget-docs .ui-widget-content a:visited { color:#1b75bb; text-decoration:none; } +#widget-docs .ui-widget-content a:hover, +#widget-docs .ui-widget-content a:active { color:#0b559b; } + diff --git a/media/js/development-bundle/demos/dialog/default.html b/media/js/development-bundle/demos/dialog/default.html new file mode 100644 index 0000000..9d65926 --- /dev/null +++ b/media/js/development-bundle/demos/dialog/default.html @@ -0,0 +1,51 @@ + + + + jQuery UI Dialog - Default functionality + + + + + + + + + + + + +
+ +
+

This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.

+
+ + +
+

Sed vel diam id libero rutrum convallis. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.

+
+
+ checkbox
+ radio
+

+
+
+
+ +
+ +
+ +

The basic dialog window is an overlay positioned within the viewport and is protected from page content (like select elements) shining through with an iframe. It has a title bar and a content area, and can be moved, resized and closed with the 'x' icon by default.

+ +
+ + + diff --git a/media/js/development-bundle/demos/dialog/index.html b/media/js/development-bundle/demos/dialog/index.html new file mode 100644 index 0000000..bed31ab --- /dev/null +++ b/media/js/development-bundle/demos/dialog/index.html @@ -0,0 +1,21 @@ + + + + jQuery UI Dialog Demos + + + + + + + + diff --git a/media/js/development-bundle/demos/dialog/modal-confirmation.html b/media/js/development-bundle/demos/dialog/modal-confirmation.html new file mode 100644 index 0000000..f46fb19 --- /dev/null +++ b/media/js/development-bundle/demos/dialog/modal-confirmation.html @@ -0,0 +1,67 @@ + + + + jQuery UI Dialog - Modal confirmation + + + + + + + + + + + + +
+ +
+

These items will be permanently deleted and cannot be recovered. Are you sure?

+
+ + +
+

Sed vel diam id libero rutrum convallis. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.

+
+
+ checkbox
+ radio
+

+
+
+
+ +
+ +
+ +

Confirm an action that may be destructive or important. Set the modal option to true, and specify primary and secondary user actions with the buttons option.

+ +
+ + + diff --git a/media/js/development-bundle/demos/dialog/modal-form.html b/media/js/development-bundle/demos/dialog/modal-form.html new file mode 100644 index 0000000..68a3648 --- /dev/null +++ b/media/js/development-bundle/demos/dialog/modal-form.html @@ -0,0 +1,178 @@ + + + + jQuery UI Dialog - Modal form + + + + + + + + + + + + + + + +
+ +
+

All form fields are required.

+ +
+
+ + + + + + +
+
+
+ + +
+ +

Existing Users:

+ + + + + + + + + + + + + + + + + +
NameEmailPassword
John Doejohn.doe@example.comjohndoe1
+
+ + +
+ +
+ +

Use a modal dialog to require that the user enter data during a multi-step process. Embed form markup in the content area, set the modal option to true, and specify primary and secondary user actions with the buttons option.

+ +
+ + + diff --git a/media/js/development-bundle/demos/dialog/modal-message.html b/media/js/development-bundle/demos/dialog/modal-message.html new file mode 100644 index 0000000..df60a5e --- /dev/null +++ b/media/js/development-bundle/demos/dialog/modal-message.html @@ -0,0 +1,64 @@ + + + + jQuery UI Dialog - Modal message + + + + + + + + + + + + +
+ +
+

+ + Your files have downloaded successfully into the My Downloads folder. +

+

+ Currently using 36% of your storage space. +

+
+ + +
+

Sed vel diam id libero rutrum convallis. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.

+
+
+ checkbox
+ radio
+

+
+
+
+ +
+ +
+ +

Use a modal dialog to explicitly acknowledge information or an action before continuing their work. Set the modal option to true, and specify a primary action (Ok) with the buttons option.

+ +
+ + + diff --git a/media/js/development-bundle/demos/dialog/modal.html b/media/js/development-bundle/demos/dialog/modal.html new file mode 100644 index 0000000..dab3ea5 --- /dev/null +++ b/media/js/development-bundle/demos/dialog/modal.html @@ -0,0 +1,55 @@ + + + + jQuery UI Dialog - Basic modal + + + + + + + + + + + + + +
+ +
+

Adding the modal overlay screen makes the dialog look more prominent because it dims out the page content.

+
+ + +
+

Sed vel diam id libero rutrum convallis. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.

+
+
+ checkbox
+ radio
+

+
+
+
+ +
+ +
+ +

A modal dialog prevents the user from interacting with the rest of the page until it is closed. To add a semi-transparent layer that dims out the page content behind the dialog, set the background color and opacity of the overlay option.

+ +
+ + + diff --git a/media/js/development-bundle/demos/draggable/constrain-movement.html b/media/js/development-bundle/demos/draggable/constrain-movement.html new file mode 100644 index 0000000..73496bb --- /dev/null +++ b/media/js/development-bundle/demos/draggable/constrain-movement.html @@ -0,0 +1,67 @@ + + + + jQuery UI Draggable - Constrain movement + + + + + + + + + +
+ +

Constrain movement along an axis:

+ +
+

I can be dragged only vertically

+
+ +
+

I can be dragged only horizontally

+
+ +

Or to within another DOM element:

+
+
+

I'm contained within the box

+
+ +
+

I'm contained within the box's parent

+
+ +
+

I'm contained within my parent

+
+
+ +
+ +
+ +

+Constrain the movement of each draggable by defining the boundaries of the draggable area. Set the axis option to limit the draggable's path to the x- or y-axis, or use the containment option to specify a parent DOM element or a jQuery selector, like 'document.' +

+ +
+ + diff --git a/media/js/development-bundle/demos/draggable/cursor-style.html b/media/js/development-bundle/demos/draggable/cursor-style.html new file mode 100644 index 0000000..14b3b29 --- /dev/null +++ b/media/js/development-bundle/demos/draggable/cursor-style.html @@ -0,0 +1,46 @@ + + + + jQuery UI Draggable - Cursor style + + + + + + + + + +
+ +
+

I will always stick to the center (relative to the mouse)

+
+ +
+

My cursor is at left -5 and top -5

+
+ +
+

My cursor position is only controlled for the 'bottom' value

+
+ +
+ +
+ +

+Position the cursor while dragging the object. By default the cursor appears in the center of the dragged object; use the cursorAt option to specify another location relative to the draggable (specify a pixel value from the top, right, bottom, and/or left). Customize the cursor's appearance by supplying the cursor option with a valid CSS cursor value: default, move, pointer, crosshair, etc. +

+ +
+ + diff --git a/media/js/development-bundle/demos/draggable/default.html b/media/js/development-bundle/demos/draggable/default.html new file mode 100644 index 0000000..344accc --- /dev/null +++ b/media/js/development-bundle/demos/draggable/default.html @@ -0,0 +1,38 @@ + + + + jQuery UI Draggable - Default functionality + + + + + + + + + + +
+ +
+

Drag me around

+
+ +
+ +
+ +

+Enable draggable functionality on any DOM element. Move the draggable object by clicking on it with the mouse and dragging it anywhere within the viewport. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/draggable/delay-start.html b/media/js/development-bundle/demos/draggable/delay-start.html new file mode 100644 index 0000000..6f49d17 --- /dev/null +++ b/media/js/development-bundle/demos/draggable/delay-start.html @@ -0,0 +1,42 @@ + + + + jQuery UI Draggable - Delay start + + + + + + + + + +
+ +
+

Only if you drag me by 20 pixels, the dragging will start

+
+ +
+

Regardless of the distance, you have to drag and wait for 1000ms before dragging starts

+
+ +
+ +
+ +

+Delay the start of dragging for a number of milliseconds with the delay option; prevent dragging until the cursor is held down and dragged a specifed number of pixels with the distance option. +

+ +
+ + diff --git a/media/js/development-bundle/demos/draggable/events.html b/media/js/development-bundle/demos/draggable/events.html new file mode 100644 index 0000000..ca13a9f --- /dev/null +++ b/media/js/development-bundle/demos/draggable/events.html @@ -0,0 +1,74 @@ + + + + jQuery UI Draggable - Events + + + + + + + + + + +
+ +
+ +

Drag me to trigger the chain of events.

+ +
    +
  • "start" invoked 0x
  • +
  • "drag" invoked 0x
  • +
  • "stop" invoked 0x
  • +
+
+ +
+ +
+ +

+Layer functionality onto the draggable using the start, drag, and stop events. Start is fired at the start of the drag; drag during the drag; and stop when dragging stops. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/draggable/handle.html b/media/js/development-bundle/demos/draggable/handle.html new file mode 100644 index 0000000..8433a1e --- /dev/null +++ b/media/js/development-bundle/demos/draggable/handle.html @@ -0,0 +1,45 @@ + + + + jQuery UI Draggable - Handles + + + + + + + + + +
+ +
+

I can be dragged only by this handle

+
+ +
+

You can drag me around…

+

…but you can't drag me by this handle.

+
+ + + +
+ +
+ +

Allow dragging only when the cursor is over a specific part of the draggable. Use the handle option to specify the jQuery selector of an element (or group of elements) used to drag the object.

+

Or prevent dragging when the cursor is over a specific element (or group of elements) within the draggable. Use the cancel option to specify a jQuery selector over which to "cancel" draggable functionality.

+ +
+ + diff --git a/media/js/development-bundle/demos/draggable/index.html b/media/js/development-bundle/demos/draggable/index.html new file mode 100644 index 0000000..ba15243 --- /dev/null +++ b/media/js/development-bundle/demos/draggable/index.html @@ -0,0 +1,27 @@ + + + + jQuery UI Draggable Demos + + + + + + + + diff --git a/media/js/development-bundle/demos/draggable/revert.html b/media/js/development-bundle/demos/draggable/revert.html new file mode 100644 index 0000000..8433640 --- /dev/null +++ b/media/js/development-bundle/demos/draggable/revert.html @@ -0,0 +1,41 @@ + + + + jQuery UI Draggable - Revert position + + + + + + + + + +
+ +
+

Revert the original

+
+ +
+

Revert the helper

+
+ +
+ +
+ +

+Return the draggable (or it's helper) to its original location when dragging stops with the boolean revert option. +

+ +
+ + diff --git a/media/js/development-bundle/demos/draggable/scroll.html b/media/js/development-bundle/demos/draggable/scroll.html new file mode 100644 index 0000000..201ce9c --- /dev/null +++ b/media/js/development-bundle/demos/draggable/scroll.html @@ -0,0 +1,48 @@ + + + + jQuery UI Draggable - Auto-scroll + + + + + + + + + +
+ +
+

Scroll set to true, default settings

+
+ +
+

scrollSensitivity set to 100

+
+ +
+

scrollSpeed set to 100

+
+ +
+ +
+ +
+ +

+Automatically scroll the document when the draggable is moved beyond the viewport. Set the scroll option to true to enable auto-scrolling, and fine-tune when scrolling is triggered and its speed with the scrollSensitivity and scrollSpeed options. +

+ +
+ + diff --git a/media/js/development-bundle/demos/draggable/snap-to.html b/media/js/development-bundle/demos/draggable/snap-to.html new file mode 100644 index 0000000..43c0585 --- /dev/null +++ b/media/js/development-bundle/demos/draggable/snap-to.html @@ -0,0 +1,67 @@ + + + + jQuery UI Draggable - Snap to element or grid + + + + + + + + + +
+ +
+

I'm a snap target

+
+ +
+ +
+

Default (snap: true), snaps to all other draggable elements

+
+ +
+

I only snap to the big box

+
+ +
+

I only snap to the outer edges of the big box

+
+ +
+

I snap to a 20 x 20 grid

+
+ +
+

I snap to a 80 x 80 grid

+
+ +
+ +
+ +

Snap the draggable to the inner or outer boundaries of a DOM element. Use the snap, snapMode (inner, outer, both), and snapTolerance (distance in pixels the draggable must be from the element when snapping is invoked) options.

+ +

Or snap the draggable to a grid. Set the dimensions of grid cells (height and width in pixels) with the grid option.

+ +
+ + + + + diff --git a/media/js/development-bundle/demos/draggable/sortable.html b/media/js/development-bundle/demos/draggable/sortable.html new file mode 100644 index 0000000..6f15be4 --- /dev/null +++ b/media/js/development-bundle/demos/draggable/sortable.html @@ -0,0 +1,54 @@ + + + + jQuery UI Draggable + Sortable + + + + + + + + + + +
+ +
    +
  • Drag me down
  • +
+ +
    +
  • Item 1
  • +
  • Item 2
  • +
  • Item 3
  • +
  • Item 4
  • +
  • Item 5
  • +
+ +
+ +
+ +

+Draggables are built to interact seamlessly with sortables. +

+ +
+ + diff --git a/media/js/development-bundle/demos/draggable/visual-feedback.html b/media/js/development-bundle/demos/draggable/visual-feedback.html new file mode 100644 index 0000000..25c42fd --- /dev/null +++ b/media/js/development-bundle/demos/draggable/visual-feedback.html @@ -0,0 +1,73 @@ + + + + jQuery UI Draggable - Visual feedback + + + + + + + + + +
+ +

With helpers:

+ +
+

Original

+
+ +
+

Semi-transparent clone

+
+ +
+

Custom helper (in combination with cursorAt)

+
+ +

Stacked:

+
+
+

We are draggables..

+
+ +
+

..whose z-indexes are controlled automatically..

+
+ +
+

..with the stack option.

+
+
+ +
+ +
+ +

Provide feedback to users as they drag an object in the form of a helper. The helper option accepts the values 'original' (the draggable object moves with the cursor), 'clone' (a duplicate of the draggable moves with the cursor), or a function that returns a DOM element (that element is shown near the cursor during drag). Control the helper's transparency with the opacity option.

+ +

To clarify which draggable is in play, bring the draggable in motion to front. Use the zIndex option to set a higher z-index for the helper, if in play, or use the stack option to ensure that the last item dragged will appear on top of others in the same group on drag stop.

+ +
+ + diff --git a/media/js/development-bundle/demos/droppable/accepted-elements.html b/media/js/development-bundle/demos/droppable/accepted-elements.html new file mode 100644 index 0000000..3a12baa --- /dev/null +++ b/media/js/development-bundle/demos/droppable/accepted-elements.html @@ -0,0 +1,55 @@ + + + + jQuery UI Droppable - Accept Demo + + + + + + + + + + +
+ +
+

I'm draggable but can't be dropped

+
+ +
+

Drag me to my target

+
+ +
+

accept: '#draggable'

+
+ +
+ +
+ +

Specify using the accept option which element (or group of elements) is accepted by the target droppable.

+ +
+ + diff --git a/media/js/development-bundle/demos/droppable/default.html b/media/js/development-bundle/demos/droppable/default.html new file mode 100644 index 0000000..03fdace --- /dev/null +++ b/media/js/development-bundle/demos/droppable/default.html @@ -0,0 +1,46 @@ + + + + jQuery UI Droppable - Default Demo + + + + + + + + + + +
+ +
+

Drag me to my target

+
+ +
+

Drop here

+
+ +
+ +
+ +

Enable any DOM element to be droppable, a target for draggable elements.

+ +
+ + diff --git a/media/js/development-bundle/demos/droppable/images/high_tatras.jpg b/media/js/development-bundle/demos/droppable/images/high_tatras.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2365c29ede251db5e33bfb69ad05637a10e783e GIT binary patch literal 23627 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 U4Z!~ORotR5+75BB`Kl5B*V-5uH=6dBxQkQRz- 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 literal 0 HcmV?d00001 diff --git a/media/js/development-bundle/demos/droppable/images/high_tatras2_min.jpg b/media/js/development-bundle/demos/droppable/images/high_tatras2_min.jpg new file mode 100644 index 0000000000000000000000000000000000000000..493e0824ae33927c1f6337ea2cb4f8f3b71a4631 GIT binary patch literal 2164 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%0DD9x=PC9RV841(* z6}1UlOV=2ZmVEYecRP_%=H#f0$4B<65@8K5S$?=>*7@!3yPXFTegK*b+^bnuEHah< z(K;@HI6^WpQVzm=`9eJw*rMmPlJ1_y@YW-iMdE(^V!h!m?LeUkmt#sXE8>f_fl3s( zME4}E2!%)s8XKCPBMv7TRvxfCcx4H;s)r}b@bX1QnJ|aZmEA7O>5*qrr>~=h(CNoM z-`MCU8=PUC>4wiroSDRKYfKDtVFY@z!}a**F0xbF(nRom5qC%UQ(I!+Z4FetQq&ZG z<_cC3kW8Y92Z}idi0$HRYOWnPr4xUY^Eg#uY3IWa zhcV2>8D|u$o_nzShMH#3`Wd?a_2)-v63xWs7F-_W%%Od|qy`oa2rb9D^x5`&C$`=~ z9JMG|10?8l-0iSWoeqE{UGY;wF`QZReIVjmLZ<4^HZe9;xuH&ySlbklIoMYOIDrED z6cmBW9xuO$T3`%RB4C|aiTr{ZJUM16j>ux3s^K#rZwBLXo%QXWYzxO3J5q#b`QQ%P z4ubu`NFh~}p=Pl|L)%HE9BXgSMi&4LiwE8@SZB#;&L5jCEk^-#6_>Lp>D38g|5P&F zcC?0_Jh&?kcasz-li^ftuvakMPZr*VeopO7fBB(OoF>hp3+q@tFJ^P0$?Md8KWBOsE9PbYR|M;SZ1(R8z|F;WOe?P}P zF8I0?(o+$=dWgY?5w!HB>dW4EMyO$bo8h0-1JW?aO5oPMOL$=C%~b?&0Ix9ylAc`dQtl@F&xi7q_FS-NN-wtcyn^<6kd|vnImtk%?@Pt{rmQvUi@0S zygLi+@4wum{D3CXnWbdT5_EfK> zd!}H(P}=@91>K|eLm+J`n>#8jNj^WJ?l&}sJ;CjV>1LUZr#C0`(y7&hQ^&Hs(8e0# zd=pPt*7%{cv$K!_I_&HNVdcO{w6in6C68A&ON|ylpba+lv$v`IHvx2dw{^nmZ2*zT z!-xz^+MxfBe(@R7a?IxQhmmnQmsw(Fcrw(|dGc12=2f`vcnNnOD=p&m^}=GS+@iWP1Z0@4HrbtE>`n8A<1n8#*rqKdOB z+L_hC!1qTacA0tw!2<3gm>!@U={==B;a!#18}7=Ji7$VGT-Eg)J_`E!tMeOM;b5}m zYg++>@65mcP{u*f$o|P=ubs3Pp zHf_|gm8x*wMs&YR-V>ta5xR|(2xcmkhZ$YNz{8-^F4N@N`}k=7{nbYiI9v)uxf!N` ztn{8KJI5N#VSdHaR3|GWB_R4*Q_b>cQHnTMV~_gAr`+(TDK;*(>Q5Fbq*|_@cQs&^ zxs7r++`wYnS}^zivjglj7&DOv23w(Jdd}pyV9dR*RDrWBQuumTwPf&(r3a|(BgsQf zN)gy5ciV7v1~N{APYZtb6`R}^xkDbI3y{TxUEKcw7zSNIvbU$C66GhK*F5PPgG{+q zeB}X01q%`g5#u^ak2zu8-49{-)E+)y@<{z_^6IlSZ(#1vXy66(?t-m8uk9Ho;z27rlk~zjw7UZpz&f&tdEJj;MeLvg@{1n^=()cjFBh!=ri-HJ#Am+aegIfae$>=(4`u#5qo6FdNKnMCIrTCW z`u)Wm?DJ`+`8x z#tBWyN=;zKazWi#bSDEk7coKY7%na?dGj*lwVV|D$~VaZ8jYojEhpW;!tnWwskBkb z&vciY_EF})fpyLw+V$HBKWsBkQWK?r!AQg~#BHy;XIMyL$dIicab18q2<|77<IkB{d(`pSU8Vn*rxe-M;uO4#TlY1#Th^HoQe+bf1f_PDRONMgB`0q zOe>Wz2*__fJ4evx%2+b6BAw&!_M6oMF7ovUC=opy{tFhKRX{Gz;3=EQw1wZzb#h`n zNP-ujjnaDMVG=1W%_}|FJWBz4#*6D}7c%yieHEQKW(M-Q{84}?Oy$v*uH0>>p4=9D zvR`dxi`e`76iJ&XSDTnTr|ItIwzfN8x0`E|ZW1*< zO;BIXrx8AV=6jju3#yeNT_qlf;QMtkAuMEX<1M<)BlVk7_;{6sUc=UIq zd;m}M zN;E8ArJhMU=9fhnnIEk>k)JjpCZX;3;~8a>xb?5uiOUgUsCdqw2ui=EXm%53N-XLY zyCc7+l;NDO7olN#!U&Y|KjJ1e1qGdrd=c@}?{)Dm=SeVO$L6?8{Q$%ZZolkYlA#t3)~n}@71^#DXybrm zsClu=R3%ftg@QD2j`rK`1zPVPMx-^ri5{6QbWEL_lLnyZ@}sO09fr;FHd^40l{2i}+|El`6s&i(X6)VLJVkICM_pvjt9ga=7(Px(!n%b$>@cRm0lw z!ez#*W5FZuj0gz!2#rJh21~J_msK5&2wh)jA~SH>Xe!sYAybe~LiyVmPw}R7=?;?` z0Em!K5;os&@P?r=Uu@XnDD-!i)=`My3J15(3k_i%(>hpT z_+QpiEfVH5Anr!X7a0_O^lA{DCi?0N;c0r^asD$3=ZfIw&SRH@K6p2tB0G%BW}DtBDfEY@{mfIpPd2(MKzujA_ho6AwXx9* ziQgt-UpX&~N)&wc(|NO-?@Oj~s46#q?T$ly{3&nX*^620PBoC?M~P99mG;GTpJtv7 zaPcM*V^=&8NypNJAmW!W5$)?+z0Le7@#UF#PCTO7MVb zOnnf1-5sO_%30VswUrS1msBbG{u+LgZti+?2&_h+;O8{!-~UZ_XxkhugePc#rRSCP zt158<)y`Y_>-Hnz-b0csfvuC&L%+y|akAU@RGcTPFQyuo?F4B3f4<|EN$yN%RbIOcYQfTy=2M&M=c=*a+q@qf?0emT+Io zc_p@gDv84H(B%xB&UD!j#$@ev_-?`e5=(MhmO4t=y1b?QUWx8E|J<7~eo2`w7GVUn zpfS9;Yew(;iy;;UNd>$t=c7Z$q+ucbn8tj4=_{Vtl=;3|w_ED=o7<86nb0~wJZrec z3U8T^zsAKfjof?7sxo?PZfq3#mQ@P^L|Qu%TpXY zO~Ibk#?eyabZu2R09K_H{uYz^UJx!9YkcvQH^?hdH+0{e^BnIda&r{I-^{IZ8oh7!}~>s#~@s1iafqF)6c}zXOe*KP#|@k5TRB3wE?8N=N|3z9e|TG zssA@7V;(tJ{dnf+4)u)6!)}-d^i?{8VrklXEVFwJdFka87p&MG0Yw8yMDmU~+Ch#% zEi>BioK7e9U?9+;R9#mh>ZD>N!_y+e&=*wvn*c3JJjG)S7Q#j2>W0>^DM*BieD z_#~~Mxk#hvWpRf9lpG9$2u=sQ_c5AOlj%Lm<5BGflxceQv znM>zz^9_2=q&rcI*lHgs-fuK$EY&PQbnvuyA;rJEquXn2syu!@V3f{L%+(-9_RJqD z$$V*hI9t=__M{yr)1F#SMM)Em;u<;VQRFpMl%X7$g8pX0xwtG3md4;yQ_ zYO(zR2%9E;tRbcQnMO{Vo{7^Ky#|8-l{AQ9auupWhngBgS0`*s-SO%e)w}I8DsJom zk5p@oWE}Ot?``sgxP?LSI{=o?6Y%N7{sEt?y!y4p*xZp4RchK!D96OQnGT{kyc#y6 z6}dmKcXaF>lv$w1P2kRP-5b?C|0b!-%_~GJ?9O+^itQK7)=a$_cFX(J&y*u^gLzqc zosh7NT9$w)W|0(+`|Nq)+i?Yw>r}){lZJXSBy#shxRHFpKZ=_I>CxM*wMUBC(yv3D zcuT>q5+>TED|Z}kXHMRHS|7-TD?DF2T~4CM3+F@_ZE3aVF1b*L!VO@#LO0Y*B27Rt zS)MUiWzhT6M8m6J;*r7>#vAbg#LoP`8&y!~E%fbsn(ZwLNJ2wsTw&eSrtR1|ooji> z6no)kj`M*2(>{b@dc9a~Dx(JL_B$MKU$kOhM|MVAmZP5Jt<)^l zx=^pB`P$=hp9h&HRjMF0r2UtLz0g`onuRb;vvZUvJDAoFc|M`wiDgEM8K6{4`iqJk zUn>!08aao*D!X{DsM#a4V;?;F{Hdc>jOdD{jXn&PSm>xDKT0M%|E60hc1~yy^a1#ZjbS|vv=8F zEYjmuI@f-MS*FzK7xDeWf_zftr|1F7`h5Zw7D@pi29{_vs&Dx8Pp~)-fZz#AgPnO7F z38`PX0t`$#ztv!j=BQExO=yb}hW-k)kbDYz-4&#T6R6qhhL+J$LVD}R?F#}{PQr&Y z#$`~_A&#~LV0c0hzy8f|(cIA;Ys7&V(JHdHk0BcfrZXi(hF`WmPq|Xd=;hUjt@4Vf zOq@FWRpywvS^@JsT(&{f)MR6@C%RPebw4MPCLq~FTx=|09ioz-r+aL$^Yxz;-Y02ENwCxbL=g6 z^a?CV`6WEjZ%Mrb`1GR)$XG~6Qg0BoDKqRJzL@NBhh8ZO3h;^7hnlbvt&fz|d}~Hn`{b*G)TJWLW++ z&r2N{jzr0(ZqBj^VuYNW2U!Bc*P7YCKr4!%Ie!bnw`0$Jv@=CT*0QE&lSxLoTrWSG z7$RT$K9$9l*Ei=!8d;ZEOA~R^^jQirY_+M*u5yJkYd(oc^nm=uY~e5Iv!rTHMK$c+IYk>b_g|=FuA~3+sK$ z=K}TE`krOF6WaA9HOM7c`nqbIsnlbI@|5Tl98#dYEnPaS}`^*@l)LR zf+tL0q zX8~-GqKxb1tC)P4_}=g6y`v=euicm=oH|JZ6>WX33SfPv|7+>_2u($kwe}lCBXW=6 zQ%pBFHA<<}au-u_tc2nQV|E%${tc4>qheT`cS^H59VWumu&6DM9r9)RNs>uHCXv_x_glqtq7s$3NkMHZlT zfA*}2-#)`j+k|?AZn3@2+t$oHLcGZ>Id^0#nyA#rsZ!G4{jik^Zz=I{> z7vPF(xP8ehlr~ORqxJB|l+0W5`|(~ndwm1rZ^wWlT82#olt>xktbWW;S>*7wtZZ=Z zRg(qBG;*HotUam9h6l}-f&A=n1rrr3hqo3D_K85ARVj4iH(^LTDIzc5OZ~`Hb82k@ zC&y_u<7xr{=)pY)Qw`{M4VskdyEIE|_G@=y6!`F(wXH-@tY|<&eu-(L%E)+#6aNsO zjxV2e)YEWYolB%nNcehk?lGG&c}prZYkRLId-S(B#(8~?O~!Gi`69#zABQitz3AM= z@Oo7Zjw7QgG{iaue98d-VDi0b3d6|~cQWO~JRRc@=>%iQ-d}fvIR`}30f!OaD84qw z59d5NQty1OxJCx0d0YeKu=dhwFVX_Ov!;s9>z983m{Ih^MCHZvMU<6M8+{M`eHyGF zCHjni0=+*|2}l5)jL8g?R8N5W0lUkJ&Yf;(v=RY-tY18Du9LUha83N;;-kqk5&Nta zWJaoK1i&s3dh=9p^XK$T2*xOb({_r2%eiwyAFwL2l&ZM2J$v%dTvow3Hh#8hRLP=%>>$(|=S@2>qd zu~y2pMjh!n!bE(FLk`Z&uxIk6K>s3q)+3mA0R?vV$biVr$KOE4=34>P!4f z*;w!e#QO}$zo??X!{wp;Vz>y0Y2*z=jKxcIk~k}5aQ&2P+N$T$?`oee2y8SFdOQxb zcJBsU1u0ZVl;N-xt}Wn+hNl#DL^m@0$g14q3d+75s;=LxR;zG)W7$`i_|6o z{}V!l$#U9%`W8674CXO~ly1}P3L|y10ndh&D7q>jELRXjQ`)S;Iig^A$&X3bcsPj1 zhTcEt_q5KemcmV@G;?l?V9IGsD#<^^tt(OwV>6^f;TDcRAGU$czlZ2>emUs0MsJz~eziPvpv6YKr?m-f01Sy7bE>$+q$cL8BM1Wnwk zz(dGmHAq1X3tSHfG|uDo>vX{jPZGKqmv?w?-{dGs48Nk8<83FGsI&32=Ja?$q|VhS zW#$eQjdvHKNTqnM-`kXK)#1GMqoB?^X*xEdPr@}_(+$d`XY^U(xXQ7m5-9=UxUC7p z=Us|WJef6&SNR&T^`C%T!ZaD725hkEp-`@G{NHe6@gH;2Z?AhR+wb2p*~W{FKLFHX z6uekrl531!&q-I$eoOapeRuc~nmQc32J6YGggFeZ8kf!>tIKTXA`-wAt3d(V;s;=m zg;B|`>G|KQ&>PP-#<>oWVWN;UQ}d5qEi7=iR!v{wv&Cv3zk-?yJv*O$ygL^WLyHg( z@%Nqo3B@5g-X~ESyc^XJsRP}wvBaiLC_zsY_cqoZB%eo z2{IBW+5UJ6hnY8dX&REJozx2A{%btPcw|xQ+y^HfiE`2ISs3qQ*|^J@ib96e{{Z9h z?}*C9Byp0=g_oQ3*dJWus-y)0MZQ|T`Fhy;CW=Y5^E1U0OCp{uSX1tMV{`aEt&y5Q zfCFc1U462>FK5lWUriB6A5T7>IU-ZJ8ikMW3)vVcu|u4w^Z+B z5()OoYrHyLEJM$r37~8+_n>g~y4qwX8CJ8w?oYY+!CRG83U>7cvSTq+F(4w*VRk>R zRTWEaB-)NH&p!VEt{XLN9e>@9*7-j5{{VPWX}UF&TekHWU59>hKpv6*0FOc5&P0VVkBlVW0e6m$>jaVcOYke7*CZqCsR1x7c}xpEVZip3hsY=u~Bq@1*#0=xBS1)d|L-0*Xgw24MVhXzxz^! z9PI;wYq&phFBS2Lbo%cQeP))-a;lbMrFS(^HSNI8&kV~px%%p9=jGBm$g94=JXt=G z^YNRZr_-)oDhHP@4I52Ud*5E08wXH}GqmzaFGsdEAuN!jUhN3Lh$BB$0_EvvJg(PGDQ+v9EAld@=?Xp zdvpGD#^mt{W0&zLq{w-yHOF2D^TXcG6YNt{scm+z@e&iwx~}io;>#nFuC$`ckVSF* z{xUbax=weE^0d2WYn$6sYY-4_)3DjNDkPVm2zk z*Q9ZFa4e1fvpQnBBnuyx>uu7gM zJ!k}qQU~FG+?SdFbRX9`NS-o8%F25RBNjN=d)eJCqI--;w5!6G75n?+I;r4bJn_o`Oc8oB0xf|i}yd*5D(3flx?Ceo3X!aoyArp3jVN0)nZ8J04D-V zRYh+90QlGQ&W~cEZXr(V+7EwxTMjO$1p#ac-diZLjZC{X0waCI-xc-lFq`ZQOb!Ep zqKUSnLXGj2QpF;0ESn)oJ^Ekigx}B}rJNAR`;@h@UMr9D^~a*}Muk{Jr)r7>UUc|3 zz7I@xQ#Xjjs1&`Hp}-U~RxdS)2;r%#cgOj7zmuV zwxPW3IEcR68{<>k{Np^U#YtDyC_Yw|v*LbTx<>OL~1o|+C z!y{>~%Mw68Ii?uvwd;L{rtp|R8_%GcRZ&9mri)8a>C!RevvVt{4P^3u-q`(N%yiOi z2At`3XtdHZfOgDdqDkw?tW!^-LFPrPkU|05K-)3nD##&ubUJwDVG$D{9cqu?9D_o# zK&tvhWFx1TRFVBMCwu`9gz2PE79*y0G)?XtcK7?@v*|{bbu&n1h;|D^k8h6ocZsnF zi&LYIP?JFmF40t6fG>~mVPu{bW9OE0bQ#F>kETCp0GnKkBJE+dfAPG{)y*vOZVJU% z*(6o{yJEIb#M(BIv=Rv=eb3H7MQ0|376!)yk9@~$MFbRf2Ejb@{PMAdJ5$y+Qvh$1 zi)TfWglq*a-WS*oGOrMM7>01FYx33o@^(psY%uLqEmzvFFSP(7LZzK-i{*uW*t?)P zQC?`#OSFLW2cYkknjJZREz$Ysi|4Sf=atM3D;)7|jy=l23gpZ$4!#K7la{>DdJK_gNs99qgh@)>!fKPINo)k|S z>6SSb)DB4Ce0yh4@$tUYGIYQ0__U7*q(mpwFM~j4yMYqY^Hj749eJ$J&v%)(^b&6H zh;4%&MUM1vUKa2V6V#+mL6ufQpmDf$udx~3hFZoZr~ON5p%RGv##R)y*7)i7#QZNy z9$k)GK$7*p0mT8Y8^D~ye~Cf0qOlPI&A=tPYll?ET!6q1JVgU zzG;`2adRF(T~dh0l()DJ6mn0{XHHm6!vRB;{HFSGo@Iz3uUOM;%E6E2b*@_PoPWc- zBU>(&b+BpOg9h45fGgY#+nb5#&Vx?+WN9XcV=$^j>+@KBPlwB?(0QT*By?$+Xojwz zzwMdMZrW?(1`h(&P8M0e*pHyzDE^t~w0aF5nll|$4q1u*S*CYzrW)*YF)IR_2yQ{? ze>u(-&*fSN*c^;;s}?OFcU5BJa{vWd>+RPym%?J?EQ~9IXaGO1Z6RBsA@Hc<^)mu! z^&DlkrkGSu0x0aj5`TPs7WPNQbs?cvhtj~+f_co}Fq6Y{2a(@0%5IvZx~&j*9&G;r zoMxtuV$i8>3XP;?$pso+Q><22>-HIyCZXgd%K$E`CoO==ZYR`w-S)|WM_fjXyiAs`1ZxZ#-xqqzDKrK5HV3%qXn1+CW*gOd-H?x zcgP;D&7L?M`({&y6O^!FwPQwN8*>0C0!O}G6^!F=MM8G=9@q_Yp(ZMVmKAkS7zG#b zNx{jwq$*o=ZWsJCdVO$du0Os~DT>OmH=&KPr|arJ zZrNG}N%CUyfD}jyOFNAVKR-(Gj#|dw*D0gX zeg{m-Bvz36nO3O}w;gi)ll$#nK9taDV$?pXQ2Ta5E5(pga>OR?WjcswNvckpn z`57`IOCs-v*zl!OX(R2Aumq4Q?paZ{eDyy}96E0@H<6-}DATwW-=;{ldGtC>zLsTb zv%U85`hP46>E%Q|poYN&8w7tNhPm7u7f{f&N{sg*;*<_gzE*D!RD*lEs8c{5xKK%L zq$Da8?Z4v&<=Rj8BvQR-9LCUz8_(c*N=F-4j2t>Srg9cds=a6v`(Y=w8=7LtBE%9j zRoJG9vVOT`kR5FVJ4mgJI@enM*tPYRH%?@E8R+h9d6EW`eK4Xd*BH3cEV}ju3`SVxDq3Z>plA+w8CGXaWJ7Hh zQ@`AC&rGd;q%_q83K})_5{gLX?+YZ`UC|A$&IdeKVTHu)*ogjM5wH}iWvB(`x@6YwfLdzf#MC_=9ZodBak6Pg5OKJ`5Q@m}j zpPXi0VAJW_ZqQWn)w;OjjOy@X{c;PZg1)9GiIrT)ce8`Pa}n%0$F%0LZ<$Ey58 znAleRyKLWK&ENFQW?5aY)v{w)^i`yRAu*G*Z8gtRi)j2?!}J-ZWS%kIe-W0Cm?_IMkX>#%melHwwjT{~x^LYhe zV#R&y>(m^_*XieNM7k!^$j(J1On1@ZsPxRT$5&&p^uOuZLj$OAgmqLP{`u+CS3Ejc zwBgvIC`BOiUneumJ8q!I9T#%NiC&#OuK_9w^<9s*Ig;F(dQ-vNdM|vo(HwN(xg8eq z5c)NaA?L`o^!^{e_RS&UF>L`hxIGPsDiF|j;oo1dDB`23_aufky z%NAK{np$Q{tba3clIx%*$L)Z9T%(nS>|cI<*O=Vulsdgx6v`AH!9cv1nn(3D^zL$P zx3qx8{{ZAc?rSd;j*2g71ob16if|fwDAIHcG*J`>)OohZ)<-E&nt1jvGyo#U^v;Pl ziARK!Py(40?O^l(?tT9Nd?c)4N07N<01A3l^~|j5GESOFg2r5?*&2ZFW4Zat8AqDs z)C7okzE8dyo8SwlmMu)q@qk@d@|EM~8if@lbXGC$>H)9-=Yf-VIHKQ#;xfLrPg1I& zCY$==@yjB~sF9*_E0znz{{T$VNzgPYwF65i8;}>=r}B@B9dK=>X=M!?6avFLHS`zL z6uJmgs(H$+Y~}bAF6-%zN#R~EK8XO)&ZBn4-# zzGWuWcvHcALszc+QPd>@RH@iPiyVRa3|CX&(|Crc9WRp}n@zSL>^UWR^yG`qi)J{+ zbDG%kCRrkQlrNfnA-FqO`+VfZ92$Kuk)>5Jt$?BIdz(2vPm1x!o!4u1TA(~8Frr&) z{vyYy1K9RIT-1+AAA#tWH`S|1j74;|mmimln;tuf|-u zWo5lR^Aig^Pa;w_(|u2D7ndw!^MHPN%)LxTy7e%?uxIEA z9_OYZP=}J|YXsncYYPm)CEp?=5BMCZ+D=L0@dQv2qebcv*Ex0Zs7nyY)xj2fW|PP? z@DeI{khH{rY@cE5F~lJfdZDWN<=OB;gG>kvsv{w5iYz|(q@EKRD2_=q>XIKy?4nP{JmS&png0Mx z#Wc+(rT+liDgabatUmnr%?&SxY4oZFn@1m}$Sk{!p1huM+eDM-J}0QuuAO#7^1oj| z-S+s*uMhtK<|BpFMFbBknHot><3@lRN5IAH#;NO`4C;oaNQ6)S0OV593+Yxp`kEiT zWawh?6h(x1bZRUA0OJ7^4{h9YkKc4j>OPY};sQohIt?Q=gDR(YUcYNG9@i zVSPlJx^nabA9k~y6s;;(rn~%Q$+5Ia6mfx0(5bKkHG+Ha5A(x91gh{O0%If9+>dXJ z(nR!`8aP8)4C2Taf46KDRQ~|(Y;n_u;Nr8D3k=Z5{^b^8+*MZ|;|H$s7M;~(@|T+Q zd*#lw3yoZKv4$2JimBv$k({!Jl!Rul{I8F;O`7DkHZ2Qr32D(^hl0BV_7Q5QqoGV;aY$|NkLb=W`S&K@{Y2nM5By+i*1^~ArK zhq?B}g#A1Ct4##7vFVip)%uCbNjo@XNrEdHV50Bu*B|~FcPjLaDYAOv+K5P(das~W zklltWu-ydxx7;R zuvvo=$MW6R(<8Mi%%BPt@6R|nkh+=x_ZVn_4^MB$71Op?RP!51h)DaK z0p;3>9rE!)%8sjU^Z-yY`i^}xTf$y_Fk5A+;0nL5zG!$CfkGq?Bkc=hhORj0>-5Q) zZhEws>$bcwX;MS@hE0}sASZWTroWamrV^0J4D$IZO#;7~{fW!QNzmnGhF2?k&h zJRgovz8s%O^HhaitAEVpn0ly_S`i)D<3qx3A#dm3CrcilGGWppsB>;tu=&Zf^s!+c zpdxUD;dNTn(dn9J(<`F!N+{(LH0CXA15&Xfr81Omr?&^T8aTfV8;v|-HuW$JcMGq6 z!wIX&QC?qKltE@XW*@?Mq5I(DNhRD?g}12iYvT$ai=vHA=eGDKjJ$(lgBS_{v&U>S zdsUp@etTpECzFUSwBDOMf5$Dns334X?(u-m)&!DC`NBo{eIu>`GR+>HH%b2hyz|!@W!Zn)JQfw!w#rFRIyxi4jH2S6nWGq0TM2g3R{=BCv z%Nt+esiIKP`HUNaSlAhg=w+Ay%&~?Zkb3d_vTW5FWDu2K;^U$EjyhsB6jXeZ!R_sxBDbMKdWqmL%&%mlBinOp@9uJ{pkJsC z1)AtEkgCQ7jyi4R^(}XWiZHzMv4AvtW%}?TOf)7JA#PvPugbku*atU+L`0X%m< z)8{7)cXl$SVDPOh1AQHr_p8SrTRI){7Yic#2P{{Y$@=w~Xk-Kiaj{<&$PO;(ZNkxRzw zOb2n75Eq1K{Do~km=Ysk%+A-ik>BaZ?V4JLFrnV0n!7=c3Q|{b63YZd)rTt|Q+@gG zi=PpFE}YI(MF!w0!Lmi4^w$ za&VVq*FNVNRa!+sxtIadlUONrDufmcZ?cQYw?`mHT33aHeO%=w*Uv-&8quH!KYW{# zyNR?KCU%C8JTpgt<_v(E{S%YXt(&=vcf%PY2$3;vwatSLK|-z)77)$Bj-HuI+r zocaF%$qtI@Lx98B=2o{u6UrHuC}LXmC>xmjVU*cpL7BAi4=ywXs)ISq;~Xr`^1Ueh zpbPy6OpC6XO{mQfqia=FeC0?+wv1Ws2Q~G^VK}QLR3Sr@jGq|G=7alXXRuiFHYJd=5#00Vbl(yt;yt3@Lqr;BJ(dA_(+jbleG z%L+f|>y@G@sF8}P*i2*6!sw3Ioeri+5TsEwj=T-MG3YC)S-g^Fh2q;p?jJdws7V$u zjHOh5TOBd$McR@FU-ySK+PYw3)9PiEfF&IAHj|l1E?*j&9X_SqL@H2^;v%axm7h%( z*{0nf^)c#xfc}}L62$LfEbSp7lsyXz)MRd9$xbW36mpHiNH+q+u^p6=`{W~^!~~^L z*;Tjk*Qxv9Yf3!DG9W3(z$Y!FnV^Z|8fRr@vqsHi>z$4oP%<=uV$<_hOA6XPett4t z^-noSpivpH%t!=r!LOfewD7cZm>HRXRjtg;>7WK2c!r8+F|5fW1>LnxoN|jl8Ii^` z#80c0LOh(OBnCVxi~j&P_QUHM2NzqUUA~yX;1l|M;-@x6paqz$Wt4X!iTh#W(oDx{ z#G|+*-b{+MGYNFgsk|9mk180;6MYHx9dW4qK4eln#8cPN(3Y4>SnFNbBCo1MkxhSqpnl;a6x26iNR8{O&m;M-nADX6DGgFX@M<+b>h1*x&7o z7r`R15e73T1Q)P9T!Mac3psBu4V^NN4{DK7QOE&-@0x1Biy6_66Ha`&y8~B0l^Fr4 zkHzPn@eOm&BCjK7NLb4T! zFK+I~j{WjwAt4e(vK1$9AaU*fR%tphWQeYl%@?*od@1(n^N7W#XHwDIfV-%2K>+LqQf)VMT`ve4olc%D{dlSHw&&%K>ZbMmUNtqA6H^wA4Z9+yXMMI8sZg zQCC;g0f2DS>a}NQ;r7DZ7Gq8;*nfO(Jwy;Hrqe)GQ7w$S27PNz;yGb;KrTD0bA3;+ z#kD$wwn?I4#RFrn&Q02;gIyk-wo507M2WZ%p=_Uw($;vKa!ghvQ~v<_LfIbmidl@| z8vPT)RYbx^o<~!`-^EwPTgSXZO{UVckSfUk0F-Q_&-Tq>R(^|Dt)39?qYxqLS-SlN zU+aXMQ9D@cWDqM7w;NhbCXx*ancL1{w#uE&bgzGmS3;VZBi*gi{u~fWmXeKj;B@=t zd`|f|TTek+XxQzl9mmc!1iEcJZ0ws_>veK*L3SLI%4dj0NdOFG4P5&H^VcOF55x^e ztr(zMB#IY&kA87ekS%ykew)cVn$K1C?mptiS52f?K}h0Q)SIvXKTJ73hFDNYTrVWq zyedWqbMzQ!mRQg};)I&&Pfw;1T?byjT&PJ{;tW_QQ+7?C-!t`oB4tpT230$T>0Iyy z^Fz6;F9Jc48&Inxj`i4G57Q2-OSBV1rYR28t^1sxS7xuM#znO#tfuA!_Z_n#{{Yys z4Y+SfG)K;3l;y5HB2?9DHn*1ETAxz`?T$<0r^DPtiRQ($6}INRiN`OmG_uuj*2?jT zB!)taMYRDy`+NOy4Nz8@sdg_>VJ{O)fmEgOhBs&Yp1d7 zeeeM^@|84P?*9Ofe~h2QxLDoR(YOIfCi~=SvLzO ZuQ^F!d0rL#DBx`-HU(tIIq16W|Je#Xip2l` literal 0 HcmV?d00001 diff --git a/media/js/development-bundle/demos/droppable/images/high_tatras3_min.jpg b/media/js/development-bundle/demos/droppable/images/high_tatras3_min.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4aa96b01ef519d4802393ddf6b8da68de5e6af1d GIT binary patch literal 1901 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 Y@k!vm(pJ*3bWm3TRsqL<^yFmvU)sBcv;Y7A literal 0 HcmV?d00001 diff --git a/media/js/development-bundle/demos/droppable/images/high_tatras_min.jpg b/media/js/development-bundle/demos/droppable/images/high_tatras_min.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51e0cdedff38e1f0fac3bb961acb04830fe49857 GIT binary patch literal 2147 zcmb7qg4R%c3xIiQH)wW)a!zdH?C}_jCR_=X=iio+ILlCIIQ9c8+!c2m}Hgb^;KM05$*u z27|+(2sj*$L?XmdvXUqX36vs6W|yprlA5ZDlCrWo)=*nr(?CmES?7SR!G0qX6B9M< zgBIq5!-mEtgnyQRkVqs-0;M1+sX)+B)*$@fh*|+OV&|lD5Re7{MuQ+|kmwDt2LQle z2nhHM6b2Flz!3P3Xd(@OK@bR73<`!q|JMToLjW-}6r*9}Dx+!b50fQCU(D~5!yc*o z4tFbUn_S+RQUdLa@BIIpom318z;-k(^p4#>{I&#v(GU%ck(jlNrk1NeLBs=4JK|0e z4OjtgW~Xo6^r|%7{k|sOu2YQsus^J-Lz13E z_w4>NyT)rL-%Qfa_aL;VS4eQF2$e2Do#%MnwVMz9`Ajfwa6=tK2WK zHNAwf9_>w!6sVkC_&n7%+o`}?VL~ICw*GK^5?ar2bSg`DX^y+hu3Y$$QuuxSt49y@ z;LoHb&e5V?g-szUP*-4>rkJSQlGyD$@zlOD_u<$g zNAe?cHz4waeFMcalvgS2?r9f2ulc@gov9SvFdl2Ma@Zc5-v&Do5rE{JNL_vlP&EB} zM-%z|W$p#khNC2k?HXpm{o1vd!?+1@U@m*Rg5K`F`_WB~VL#JRqONt0YRUenx@KM4 zbzKcwdd2$%>(g}6VOzIk)Gn)WMpij1JgLYEW0#S?t1D=$oaNHBd6JUn0<*3c)@lyy z69MEj@2G_XD}9Yu)B>uwsl{~Xv_f&UsdoPPLG*gV4;_$3S=7A;F6yWZM!^f6b_6%G zQ7mF&>H)G6of_KGS5qBs91y{*gINB>xFrHgZ6fcU7}wUZNxsn{=rYxv|NEnze&?31 z*P;jjRq6synj~;XY9WJFV#cBLf`&h`Zv33}usmpLGbdX5Ug_YY!z67+EctW3AT;1Qk3UAqt~q%ks90)jqjKZ4lg+tHbo|goqC~em z!BHE_NQTotoN7$2IWOPoo>2s*Xj^2cvb-u#0;y!)-tgoyk5zPIg3Z(eT^qNi)N9#N z!ye`ki>4kli0fl6Uh2z$Ww;J8!Zyf$cK#XqltuQ@W3Pe=(^X%ONhrR~D#&9}9$0^1 zbTIgnG?&MeS>yebupGzN-?;^L==A^M zQp?h8lX)8(8=B^kKMJHoI>#2rb7a3LMwq|sEG7;QN?N^nhL5`qH|R@X-&d|@5Ycj9 zL7+}CvNUo&ox9|oKit=cOpc==)ciY#sYb$0LFFe**pHNSni$MoWvyRix=^q*_8BTKT;oK1a14 z*7Zexll`M3VOJG)pUO(oy{I&+&_Plm`f+gJyH{9M5inN`3DHCu;Yy!G8_xA&-SfOg zRZB>CN%FA?|8+%A^I!T@@!kq-?7hABUmu^Wb8G$?{ZUEf(2?L}{28arE1;Jzw{i)3 zsySaMw|R@by1k<*mrNvS?6JE_<+$ zRhiiSI;a>r*W3szG0#GIOU-8l1O jLAx4LA{|d4VOJrD%y;E?O{+GXB3dCOEc{ + + + jQuery UI Droppable Demos + + + + + + + + diff --git a/media/js/development-bundle/demos/droppable/photo-manager.html b/media/js/development-bundle/demos/droppable/photo-manager.html new file mode 100644 index 0000000..868085a --- /dev/null +++ b/media/js/development-bundle/demos/droppable/photo-manager.html @@ -0,0 +1,164 @@ + + + + jQuery UI Droppable - Simple photo manager + + + + + + + + + + + + +
+ + + +
+

Trash Trash

+
+ +
+ +
+ +

You can delete an image either by dragging it to the Trash or by clicking the trash icon.

+

You can "recycle" an image by dragging it back to the gallery or by clicking the recycle icon.

+

You can view larger image by clicking the zoom icon. jQuery UI dialog widget is used for the modal window.

+ +
+ + diff --git a/media/js/development-bundle/demos/droppable/propagation.html b/media/js/development-bundle/demos/droppable/propagation.html new file mode 100644 index 0000000..e9c5026 --- /dev/null +++ b/media/js/development-bundle/demos/droppable/propagation.html @@ -0,0 +1,71 @@ + + + + jQuery UI Droppable - Prevent propagation + + + + + + + + + + +
+ +
+

Drag me to my target

+
+ +
+

Outer droppable

+
+

Inner droppable (not greedy)

+
+
+ +
+

Outer droppable

+
+

Inner droppable (greedy)

+
+
+ +
+ +
+ +

When working with nested droppables — for example, you may have an editable directory structure displayed as a tree, with folder and document nodes — the greedy option set to true prevents event propagation when a draggable is dropped on a child node (droppable).

+ +
+ + diff --git a/media/js/development-bundle/demos/droppable/revert.html b/media/js/development-bundle/demos/droppable/revert.html new file mode 100644 index 0000000..01fea57 --- /dev/null +++ b/media/js/development-bundle/demos/droppable/revert.html @@ -0,0 +1,55 @@ + + + + jQuery UI Droppable - Revert draggable position + + + + + + + + + + +
+ +
+

I revert when I'm dropped

+
+ +
+

I revert when I'm not dropped

+
+ +
+

Drop me here

+
+ +
+ +
+ +

Return the draggable (or it's helper) to its original location when dragging stops with the boolean revert option set on the draggable.

+ +
+ + diff --git a/media/js/development-bundle/demos/droppable/visual-feedback.html b/media/js/development-bundle/demos/droppable/visual-feedback.html new file mode 100644 index 0000000..8f7e929 --- /dev/null +++ b/media/js/development-bundle/demos/droppable/visual-feedback.html @@ -0,0 +1,70 @@ + + + + jQuery UI Droppable - Visual feedback + + + + + + + + + + +
+ +

Feedback on hover:

+ +
+

Drag me to my target

+
+ +
+

Drop here

+
+ +

Feedback on activating draggable:

+ +
+

Drag me to my target

+
+ +
+

Drop here

+
+ + + +
+ +
+ +

Change the droppable's appearance on hover, or when the droppable is active (an acceptable draggable is dropped on it). Use the hoverClass or activeClass options to specify respective classes.

+ +
+ + diff --git a/media/js/development-bundle/demos/effect/default.html b/media/js/development-bundle/demos/effect/default.html new file mode 100644 index 0000000..4187080 --- /dev/null +++ b/media/js/development-bundle/demos/effect/default.html @@ -0,0 +1,104 @@ + + + + jQuery UI Effects - Effect Demo + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Effect

+

+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi. +

+
+
+ + + +Run Effect + + +
+ +
+ +

Click the button above to show the effect.

+ +
+ + + diff --git a/media/js/development-bundle/demos/effect/index.html b/media/js/development-bundle/demos/effect/index.html new file mode 100644 index 0000000..fbd0597 --- /dev/null +++ b/media/js/development-bundle/demos/effect/index.html @@ -0,0 +1,17 @@ + + + + jQuery UI Effect Demos + + + + +
+

Examples

+ +
+ + + diff --git a/media/js/development-bundle/demos/hide/default.html b/media/js/development-bundle/demos/hide/default.html new file mode 100644 index 0000000..a4a5ff2 --- /dev/null +++ b/media/js/development-bundle/demos/hide/default.html @@ -0,0 +1,105 @@ + + + + jQuery UI Effects - Hide Demo + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Hide

+

+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi. +

+
+
+ + + +Run Effect + + +
+ +
+ +

Click the button above to preview the effect.

+ +
+ + + diff --git a/media/js/development-bundle/demos/hide/index.html b/media/js/development-bundle/demos/hide/index.html new file mode 100644 index 0000000..4b9471d --- /dev/null +++ b/media/js/development-bundle/demos/hide/index.html @@ -0,0 +1,17 @@ + + + + jQuery UI Effects Demos + + + + +
+

Examples

+ +
+ + + diff --git a/media/js/development-bundle/demos/images/calendar.gif b/media/js/development-bundle/demos/images/calendar.gif new file mode 100644 index 0000000000000000000000000000000000000000..d0abaa7c0b892e781b6f553453a0027efea014b9 GIT binary patch literal 269 zcmZ?wbhEHb6kyoJ#dt% zaYstuiRe5}O|8;NEA%ba6j)5k7TbN(gNwC&D)Y{1Cu2PhDy(ymnp7_1Ai(k{X>FbJ zg$yQ1aX#U+v{)u7c4kS5=DdO;0Y*k<=8BdGnYaWYcOkak83LIJ0`39}`h<8zSFc^O QT3n!+Z|k=0I}{nL0T`orxBvhE literal 0 HcmV?d00001 diff --git a/media/js/development-bundle/demos/images/demo-config-on-tile.gif b/media/js/development-bundle/demos/images/demo-config-on-tile.gif new file mode 100644 index 0000000000000000000000000000000000000000..359da95a77a5a289d8a633b03d1c462d16b9c558 GIT binary patch literal 180 zcmZ?wbhEHbWMW8RIKsg2W3kbX1$y77DSw}({(Xk(&lMIwmzw;Tr~7lY&9Ak#-=-@5 zTyFMbk-^VZR^R7pf1j=SZL<8Yb@mKI1I3>#V6{3R5@aU>t6_plUrOe@j8*H_%v9mH rWa7F}r;U+;N0_C(`S8aI9yXRHhXnx+^De9?@md?T{>B><76xkoA)Gl& literal 0 HcmV?d00001 diff --git a/media/js/development-bundle/demos/images/demo-config-on.gif b/media/js/development-bundle/demos/images/demo-config-on.gif new file mode 100644 index 0000000000000000000000000000000000000000..9fcec1ac1b18fe0f81f5f19b9179f0d0691d9777 GIT binary patch literal 343 zcmZ?wbhEHb>eYpL{LbHGGZvI$i{rBbBpL$N^wzAW3n{YU=MdO?c zXHu`kEUtnb6Rud^c&pi#e&D^a0aIfWlPW`7dz&C*cTcybv^>kC$xdR*Y%^v!OUZD~ l<8;vwckkZ&_wRdqduwZJ|NsBb ufC?0UvM@3*a53nBgh6I7u!ssUx`uikzEFMiq4*)e#;GFgtr?*#4Aua7yd%B< literal 0 HcmV?d00001 diff --git a/media/js/development-bundle/demos/images/demo-spindown-open.gif b/media/js/development-bundle/demos/images/demo-spindown-open.gif new file mode 100644 index 0000000000000000000000000000000000000000..e1c60aa558ebc4701d66d89c893b9185d92926ae GIT binary patch literal 105 zcmZ?wbhEHbWM^Pw*v!Rn?%cV3`}VC{w{G6Nd9AIj%a$#>ckkZ&_wRdqduwZJ|NsBb vfC?0UvM@3*a53nBgh6I7u!spPwVb$6c!g7Y5WAt|d?6L5pNhxD85yhrk)R_C literal 0 HcmV?d00001 diff --git a/media/js/development-bundle/demos/images/icon-docs-info.gif b/media/js/development-bundle/demos/images/icon-docs-info.gif new file mode 100644 index 0000000000000000000000000000000000000000..6b0464e011124fc006425aa596f528bf35b7ebeb GIT binary patch literal 214 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 + + + + jQuery UI Demos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
Interactions
+
Draggable
+
Droppable
+
Resizable
+
Selectable
+
Sortable
+
Widgets
+
Accordion
+
Datepicker
+
Dialog
+
Progressbar
+
Slider
+
Tabs
+
Effects
+
Add Class
+
Remove Class
+
Animate
+
Effect
+
Hide
+
Show
+
Switch Class
+
Toggle
+
Toggle Class
+
About jQuery UI
+
Getting Started
+
Upgrade Guide
+
Changelog
+
Roadmap
+
Subversion Access
+
UI Developer Guidelines
+
Theming
+
Theming jQuery UI
+
jQuery UI CSS Framework
+
ThemeRoller application
+
Theme Switcher Widget
+ +
+
+ +
+ +

Instructions

+

+ These demos showcase some common uses of each jQuery UI plugin. Simply copy and paste code from the demos to get started. Have fun playing with them. +

+ +
+ +
+ + diff --git a/media/js/development-bundle/demos/progressbar/animated.html b/media/js/development-bundle/demos/progressbar/animated.html new file mode 100644 index 0000000..db013d9 --- /dev/null +++ b/media/js/development-bundle/demos/progressbar/animated.html @@ -0,0 +1,42 @@ + + + + jQuery UI Progressbar - Animated + + + + + + + + + + +
+ +
+ +
+ +
+ +

+This progressbar has an animated fill by setting the +background-image +on the +.ui-progressbar-value +element, using css. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/progressbar/default.html b/media/js/development-bundle/demos/progressbar/default.html new file mode 100644 index 0000000..a06e6bf --- /dev/null +++ b/media/js/development-bundle/demos/progressbar/default.html @@ -0,0 +1,37 @@ + + + + jQuery UI Progressbar - Default functionality + + + + + + + + + +
+ +
+ +
+ + + +
+ +

Default determinate progress bar.

+ +
+ + + + + diff --git a/media/js/development-bundle/demos/progressbar/images/pbar-ani.gif b/media/js/development-bundle/demos/progressbar/images/pbar-ani.gif new file mode 100644 index 0000000000000000000000000000000000000000..0dfd45b885a2dd69a4c16febc5e886300cdb08e0 GIT binary patch literal 304064 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 + + + jQuery UI Progressbar Demos + + + + + + + + diff --git a/media/js/development-bundle/demos/progressbar/resize.html b/media/js/development-bundle/demos/progressbar/resize.html new file mode 100644 index 0000000..d1c53af --- /dev/null +++ b/media/js/development-bundle/demos/progressbar/resize.html @@ -0,0 +1,37 @@ + + + + jQuery UI Progressbar - Resizable + + + + + + + + + + +
+ +
+
+
+ +
+ +
+ +

The progress bar's widths are specified in percentages for flexible sizing so it will resize to fit its container. Try resizing the height and width of this bar to see how it maintains the correct proportions. (This is not necessarily a real-world example, but it's a good illustration of how flexibly all the plugins are coded.)

+ +
+ + + diff --git a/media/js/development-bundle/demos/removeClass/default.html b/media/js/development-bundle/demos/removeClass/default.html new file mode 100644 index 0000000..83a8b89 --- /dev/null +++ b/media/js/development-bundle/demos/removeClass/default.html @@ -0,0 +1,51 @@ + + + + jQuery UI Effects - removeClass Demo + + + + + + + + + +
+ +
+
+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. +
+
+ +Run Effect + +
+ +
+ +

Click the button above to preview the effect.

+ +
+ + + diff --git a/media/js/development-bundle/demos/removeClass/index.html b/media/js/development-bundle/demos/removeClass/index.html new file mode 100644 index 0000000..4b9471d --- /dev/null +++ b/media/js/development-bundle/demos/removeClass/index.html @@ -0,0 +1,17 @@ + + + + jQuery UI Effects Demos + + + + +
+

Examples

+ +
+ + + diff --git a/media/js/development-bundle/demos/resizable/animate.html b/media/js/development-bundle/demos/resizable/animate.html new file mode 100644 index 0000000..9af1548 --- /dev/null +++ b/media/js/development-bundle/demos/resizable/animate.html @@ -0,0 +1,38 @@ + + + + jQuery UI Resizable - Animate + + + + + + + + + +
+ +
+

Animate

+
+ +
+ +
+ +

Animate the resize action using the animate option (boolean). When this option is set to true, drag the outline to the desired location; the element animates to that size on drag stop.

+ +
+ + diff --git a/media/js/development-bundle/demos/resizable/aspect-ratio.html b/media/js/development-bundle/demos/resizable/aspect-ratio.html new file mode 100644 index 0000000..56edad4 --- /dev/null +++ b/media/js/development-bundle/demos/resizable/aspect-ratio.html @@ -0,0 +1,37 @@ + + + + jQuery UI Resizable - Preserve aspect ratio + + + + + + + + + +
+ +
+

Preserve aspect ratio

+
+ +
+ +
+ +

Maintain the existing aspect ratio or set a new one to constrain the proportions on resize. Set the aspectRatio option to true, and optionally pass in a new ratio (i.e., 4/3)

+ +
+ + diff --git a/media/js/development-bundle/demos/resizable/constrain-area.html b/media/js/development-bundle/demos/resizable/constrain-area.html new file mode 100644 index 0000000..e1a9122 --- /dev/null +++ b/media/js/development-bundle/demos/resizable/constrain-area.html @@ -0,0 +1,42 @@ + + + + jQuery UI Resizable - Constrain resize area + + + + + + + + + +
+ +
+

Containment

+
+

Resizable

+
+
+ +
+ +
+ +

Define the boundaries of the resizable area. Use the containment option to specify a parent DOM element or a jQuery selector, like 'document.'

+ +
+ + diff --git a/media/js/development-bundle/demos/resizable/default.html b/media/js/development-bundle/demos/resizable/default.html new file mode 100644 index 0000000..0b77b34 --- /dev/null +++ b/media/js/development-bundle/demos/resizable/default.html @@ -0,0 +1,35 @@ + + + + jQuery UI Resizable - Default functionality + + + + + + + + + +
+ +
+

Resizable

+
+ +
+ +
+ +

Enable any DOM element to be resizable. With the cursor grab the right or bottom border and drag to the desired width or height.

+ +
+ + diff --git a/media/js/development-bundle/demos/resizable/delay-start.html b/media/js/development-bundle/demos/resizable/delay-start.html new file mode 100644 index 0000000..df20f8e --- /dev/null +++ b/media/js/development-bundle/demos/resizable/delay-start.html @@ -0,0 +1,49 @@ + + + + jQuery UI Resizable - Delay start + + + + + + + + + +
+ +

Time delay (ms):

+
+

Time

+
+ +

Distance delay (px):

+
+

Distance

+
+ + + +
+ +
+ +

Delay the start of resizng for a number of milliseconds with the delay option; prevent resizing until the cursor is held down and dragged a specifed number of pixels with the distance option.

+ +
+ + diff --git a/media/js/development-bundle/demos/resizable/index.html b/media/js/development-bundle/demos/resizable/index.html new file mode 100644 index 0000000..561b5bf --- /dev/null +++ b/media/js/development-bundle/demos/resizable/index.html @@ -0,0 +1,25 @@ + + + + jQuery UI Resizable Demos + + + + + + + + diff --git a/media/js/development-bundle/demos/resizable/max-min.html b/media/js/development-bundle/demos/resizable/max-min.html new file mode 100644 index 0000000..d29e4d7 --- /dev/null +++ b/media/js/development-bundle/demos/resizable/max-min.html @@ -0,0 +1,40 @@ + + + + jQuery UI Resizable - Maximum / minimum size + + + + + + + + + +
+ +
+

Resize larger / smaller

+
+ +
+ +
+ +

Limit the resizable element to a maximum or minimum height or width using the maxHeight, maxWidth, minHeight, and minWidth options.

+ +
+ + diff --git a/media/js/development-bundle/demos/resizable/snap-to-grid.html b/media/js/development-bundle/demos/resizable/snap-to-grid.html new file mode 100644 index 0000000..f2adcc6 --- /dev/null +++ b/media/js/development-bundle/demos/resizable/snap-to-grid.html @@ -0,0 +1,37 @@ + + + + jQuery UI Resizable - Snap to grid + + + + + + + + + +
+ +
+

Grid

+
+ +
+ +
+ +

Snap the resizable element to a grid. Set the dimensions of grid cells (height and width in pixels) with the grid option.

+ +
+ + diff --git a/media/js/development-bundle/demos/resizable/synchronous-resize.html b/media/js/development-bundle/demos/resizable/synchronous-resize.html new file mode 100644 index 0000000..bd5de82 --- /dev/null +++ b/media/js/development-bundle/demos/resizable/synchronous-resize.html @@ -0,0 +1,44 @@ + + + + jQuery UI Resizable - Synchronous resize + + + + + + + + + +
+ +
+

Resize

+
+ +
+

will also resize

+
+ +
+ +
+ +

Resize multiple elements simultaneously by clicking and dragging the sides of one. Pass a shared selector into the alsoResize option.

+ +
+ + diff --git a/media/js/development-bundle/demos/resizable/visual-feedback.html b/media/js/development-bundle/demos/resizable/visual-feedback.html new file mode 100644 index 0000000..c3edf9a --- /dev/null +++ b/media/js/development-bundle/demos/resizable/visual-feedback.html @@ -0,0 +1,38 @@ + + + + jQuery UI Resizable - Visual feedback + + + + + + + + + +
+ +
+

Ghost

+
+ +
+ +
+ +

Instead of showing the actual element during resize, set the ghost option to true to show a semi-transparent part of the element.

+ +
+ + diff --git a/media/js/development-bundle/demos/selectable/default.html b/media/js/development-bundle/demos/selectable/default.html new file mode 100644 index 0000000..6a81f2b --- /dev/null +++ b/media/js/development-bundle/demos/selectable/default.html @@ -0,0 +1,45 @@ + + + + jQuery UI Selectable - Default functionality + + + + + + + + + + +
+ +
    +
  1. Item 1
  2. +
  3. Item 2
  4. +
  5. Item 3
  6. +
  7. Item 4
  8. +
  9. Item 5
  10. +
  11. Item 6
  12. +
  13. Item 7
  14. +
+ +
+ +
+ +

Enable a DOM element (or group of elements) to be selectable. Draw a box with your cursor to select items. Hold down the Ctrl key to make multiple non-adjacent selections.

+ +
+ + diff --git a/media/js/development-bundle/demos/selectable/display-grid.html b/media/js/development-bundle/demos/selectable/display-grid.html new file mode 100644 index 0000000..3843c77 --- /dev/null +++ b/media/js/development-bundle/demos/selectable/display-grid.html @@ -0,0 +1,50 @@ + + + + jQuery UI Selectable - Display as grid + + + + + + + + + + +
+ +
    +
  1. 1
  2. +
  3. 2
  4. +
  5. 3
  6. +
  7. 4
  8. +
  9. 5
  10. +
  11. 6
  12. +
  13. 7
  14. +
  15. 8
  16. +
  17. 9
  18. +
  19. 10
  20. +
  21. 11
  22. +
  23. 12
  24. +
+ +
+ +
+ +

To arrange selectable items as a grid, give them identical dimensions and float them using CSS.

+ +
+ + diff --git a/media/js/development-bundle/demos/selectable/index.html b/media/js/development-bundle/demos/selectable/index.html new file mode 100644 index 0000000..8429802 --- /dev/null +++ b/media/js/development-bundle/demos/selectable/index.html @@ -0,0 +1,19 @@ + + + + jQuery UI Selectable Demos + + + + + + + + diff --git a/media/js/development-bundle/demos/selectable/serialize.html b/media/js/development-bundle/demos/selectable/serialize.html new file mode 100644 index 0000000..0e201fa --- /dev/null +++ b/media/js/development-bundle/demos/selectable/serialize.html @@ -0,0 +1,56 @@ + + + + jQuery UI Selectable - Serialize + + + + + + + + + + +
+ +

+You've selected: none. +

+ +
    +
  1. Item 1
  2. +
  3. Item 2
  4. +
  5. Item 3
  6. +
  7. Item 4
  8. +
  9. Item 5
  10. +
  11. Item 6
  12. +
+ +
+ +
+ +

Write a function that fires on the stop event to collect the index values of selected items. Present values as feedback, or pass as a data string.

+ +
+ + diff --git a/media/js/development-bundle/demos/show/default.html b/media/js/development-bundle/demos/show/default.html new file mode 100644 index 0000000..7c70526 --- /dev/null +++ b/media/js/development-bundle/demos/show/default.html @@ -0,0 +1,106 @@ + + + + jQuery UI Effects - Show Demo + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Show

+

+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi. +

+
+
+ + + +Run Effect + + +
+ +
+ +

Click the button above to preview the effect.

+ +
+ + + diff --git a/media/js/development-bundle/demos/show/index.html b/media/js/development-bundle/demos/show/index.html new file mode 100644 index 0000000..4b9471d --- /dev/null +++ b/media/js/development-bundle/demos/show/index.html @@ -0,0 +1,17 @@ + + + + jQuery UI Effects Demos + + + + +
+

Examples

+ +
+ + + diff --git a/media/js/development-bundle/demos/slider/colorpicker.html b/media/js/development-bundle/demos/slider/colorpicker.html new file mode 100644 index 0000000..0f7c264 --- /dev/null +++ b/media/js/development-bundle/demos/slider/colorpicker.html @@ -0,0 +1,92 @@ + + + + jQuery UI Slider - Colorpicker + + + + + + + + + + +
+ +

+ +Simple Colorpicker +

+ +
+
+
+ +
+ +
+ +
+ +

Combine three sliders to create a simple RGB colorpicker.

+ +
+ + + diff --git a/media/js/development-bundle/demos/slider/default.html b/media/js/development-bundle/demos/slider/default.html new file mode 100644 index 0000000..da92869 --- /dev/null +++ b/media/js/development-bundle/demos/slider/default.html @@ -0,0 +1,34 @@ + + + + jQuery UI Slider - Default functionality + + + + + + + + + + +
+ +
+ +
+ +
+ +

The basic slider is horizontal and has a single handle that can be moved with the mouse or by using the arrow keys.

+ +
+ + + diff --git a/media/js/development-bundle/demos/slider/index.html b/media/js/development-bundle/demos/slider/index.html new file mode 100644 index 0000000..9a010a5 --- /dev/null +++ b/media/js/development-bundle/demos/slider/index.html @@ -0,0 +1,25 @@ + + + + jQuery UI Slider Demos + + + + + + + + diff --git a/media/js/development-bundle/demos/slider/multiple-vertical.html b/media/js/development-bundle/demos/slider/multiple-vertical.html new file mode 100644 index 0000000..48258cc --- /dev/null +++ b/media/js/development-bundle/demos/slider/multiple-vertical.html @@ -0,0 +1,76 @@ + + + + jQuery UI Slider - Multiple sliders + + + + + + + + + + +
+ +

+ +Master volume +

+ +
+ +

+ +Graphic EQ +

+ +
+ 88 + 77 + 55 + 33 + 40 + 45 + 70 +
+ +
+ +
+ +

Combine horizontal and vertical sliders, each with their own options, to create the UI for a music player.

+ +
+ + + diff --git a/media/js/development-bundle/demos/slider/range-vertical.html b/media/js/development-bundle/demos/slider/range-vertical.html new file mode 100644 index 0000000..ad59511 --- /dev/null +++ b/media/js/development-bundle/demos/slider/range-vertical.html @@ -0,0 +1,47 @@ + + + + jQuery UI Slider - Vertical range slider + + + + + + + + + + +
+ +

+ + +

+ +
+ +
+ +
+ +

Change the orientation of the range slider to vertical. Assign a height value via .height() or by setting the height through CSS, and set the orientation option to "vertical."

+ +
+ + + diff --git a/media/js/development-bundle/demos/slider/range.html b/media/js/development-bundle/demos/slider/range.html new file mode 100644 index 0000000..7c595e0 --- /dev/null +++ b/media/js/development-bundle/demos/slider/range.html @@ -0,0 +1,48 @@ + + + + jQuery UI Slider - Range slider + + + + + + + + + + +
+ +

+ + +

+ +
+ +
+ +
+ +

Set the range option to true to capture a range of values with two drag handles. The space between the handles is filled with a different background color to indicate those values are selected.

+ +
+ + + diff --git a/media/js/development-bundle/demos/slider/rangemax.html b/media/js/development-bundle/demos/slider/rangemax.html new file mode 100644 index 0000000..db266db --- /dev/null +++ b/media/js/development-bundle/demos/slider/rangemax.html @@ -0,0 +1,47 @@ + + + + jQuery UI Slider - Range with fixed maximum + + + + + + + + + + +
+ +

+Minimum number of bedrooms: + +

+
+ +
+ +
+ +

Fix the maximum value of the range slider so that the user can only select a minimum. Set the range option to "max."

+ +
+ + + diff --git a/media/js/development-bundle/demos/slider/rangemin.html b/media/js/development-bundle/demos/slider/rangemin.html new file mode 100644 index 0000000..4eebade --- /dev/null +++ b/media/js/development-bundle/demos/slider/rangemin.html @@ -0,0 +1,48 @@ + + + + jQuery UI Slider - Range with fixed minimum + + + + + + + + + + +
+ +

+ + +

+ +
+ +
+ +
+ +

Fix the minimum value of the range slider so that the user can only select a maximum. Set the range option to "min."

+ +
+ + + diff --git a/media/js/development-bundle/demos/slider/slider-vertical.html b/media/js/development-bundle/demos/slider/slider-vertical.html new file mode 100644 index 0000000..7731a4b --- /dev/null +++ b/media/js/development-bundle/demos/slider/slider-vertical.html @@ -0,0 +1,49 @@ + + + + jQuery UI Slider - Vertical slider + + + + + + + + + + +
+ +

+ + +

+ +
+ +
+ +
+ +

Change the orientation of the slider to vertical. Assign a height value via .height() or by setting the height through CSS, and set the orientation option to "vertical."

+ +
+ + + diff --git a/media/js/development-bundle/demos/slider/steps.html b/media/js/development-bundle/demos/slider/steps.html new file mode 100644 index 0000000..f29b734 --- /dev/null +++ b/media/js/development-bundle/demos/slider/steps.html @@ -0,0 +1,48 @@ + + + + jQuery UI Slider - Snap to increments + + + + + + + + + + +
+ +

+ + +

+ +
+ +
+ +
+ +

Increment slider values with the step option set to an integer, commonly a dividend of the slider's maximum value. The default increment is 1.

+ +
+ + + diff --git a/media/js/development-bundle/demos/sortable/connect-lists-through-tabs.html b/media/js/development-bundle/demos/sortable/connect-lists-through-tabs.html new file mode 100644 index 0000000..481c506 --- /dev/null +++ b/media/js/development-bundle/demos/sortable/connect-lists-through-tabs.html @@ -0,0 +1,76 @@ + + + + jQuery UI Sortable - Connect lists with Tabs + + + + + + + + + + + +
+ +
+ +
+
    +
  • Item 1
  • +
  • Item 2
  • +
  • Item 3
  • +
  • Item 4
  • +
  • Item 5
  • +
+
+
+
    +
  • Item 1
  • +
  • Item 2
  • +
  • Item 3
  • +
  • Item 4
  • +
  • Item 5
  • +
+
+
+ +
+ +
+ +

+ Sort items from one list into another and vice versa, by dropping the list item on the appropriate tab above. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/sortable/connect-lists.html b/media/js/development-bundle/demos/sortable/connect-lists.html new file mode 100644 index 0000000..639f0e9 --- /dev/null +++ b/media/js/development-bundle/demos/sortable/connect-lists.html @@ -0,0 +1,55 @@ + + + + jQuery UI Sortable - Connect lists + + + + + + + + + +
+ +
    +
  • Item 1
  • +
  • Item 2
  • +
  • Item 3
  • +
  • Item 4
  • +
  • Item 5
  • +
+ +
    +
  • Item 1
  • +
  • Item 2
  • +
  • Item 3
  • +
  • Item 4
  • +
  • Item 5
  • +
+ +
+ +
+ +

+ Sort items from one list into another and vice versa, by passing a selector into + the connectWith option. The simplest way to do this is to + group all related lists with a CSS class, and then pass that class into the + sortable function (i.e., connectWith: '.myclass'). +

+ +
+ + + diff --git a/media/js/development-bundle/demos/sortable/default.html b/media/js/development-bundle/demos/sortable/default.html new file mode 100644 index 0000000..6df9ec1 --- /dev/null +++ b/media/js/development-bundle/demos/sortable/default.html @@ -0,0 +1,48 @@ + + + + jQuery UI Sortable - Default functionality + + + + + + + + + +
+ +
    +
  • Item 1
  • +
  • Item 2
  • +
  • Item 3
  • +
  • Item 4
  • +
  • Item 5
  • +
  • Item 6
  • +
  • Item 7
  • +
+ +
+ +
+ +

+ Enable a group of DOM elements to be sortable. Click on and drag an + element to a new spot within the list, and the other items will adjust to + fit. By default, sortable items share draggable properties. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/sortable/delay-start.html b/media/js/development-bundle/demos/sortable/delay-start.html new file mode 100644 index 0000000..636b743 --- /dev/null +++ b/media/js/development-bundle/demos/sortable/delay-start.html @@ -0,0 +1,64 @@ + + + + jQuery UI Sortable - Delay start + + + + + + + + + +
+ +

Time delay of 300ms:

+ +
    +
  • Item 1
  • +
  • Item 2
  • +
  • Item 3
  • +
  • Item 4
  • +
+ +

Distance delay of 15px:

+ +
    +
  • Item 1
  • +
  • Item 2
  • +
  • Item 3
  • +
  • Item 4
  • +
+ +
+ +
+ +

+ Prevent accidental sorting either by delay (time) or distance. Set a number of + milliseconds the element needs to be dragged before sorting starts + with the delay option. Set a distance in pixels the element + needs to be dragged before sorting starts with the distance + option. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/sortable/display-grid.html b/media/js/development-bundle/demos/sortable/display-grid.html new file mode 100644 index 0000000..e10cd99 --- /dev/null +++ b/media/js/development-bundle/demos/sortable/display-grid.html @@ -0,0 +1,51 @@ + + + + jQuery UI Sortable - Display as grid + + + + + + + + + +
+ +
    +
  • 1
  • +
  • 2
  • +
  • 3
  • +
  • 4
  • +
  • 5
  • +
  • 6
  • +
  • 7
  • +
  • 8
  • +
  • 9
  • +
  • 10
  • +
  • 11
  • +
  • 12
  • +
+ +
+ +
+ +

+ To arrange sortable items as a grid, give them identical dimensions and + float them using CSS. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/sortable/empty-lists.html b/media/js/development-bundle/demos/sortable/empty-lists.html new file mode 100644 index 0000000..1886b8e --- /dev/null +++ b/media/js/development-bundle/demos/sortable/empty-lists.html @@ -0,0 +1,66 @@ + + + + jQuery UI Sortable - Handle empty lists + + + + + + + + + +
+ +
    +
  • Can be dropped..
  • +
  • ..on an empty list
  • +
  • Item 3
  • +
  • Item 4
  • +
  • Item 5
  • +
+ +
    +
  • Cannot be dropped..
  • +
  • ..on an empty list
  • +
  • Item 3
  • +
  • Item 4
  • +
  • Item 5
  • +
+ +
    +
+ +
+ +
+ +
+ +

+ Prevent all items in a list from being dropped into a separate, empty list + using the dropOnEmpty option set to false. By default, + sortable items can be dropped on empty lists. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/sortable/index.html b/media/js/development-bundle/demos/sortable/index.html new file mode 100644 index 0000000..b77f223 --- /dev/null +++ b/media/js/development-bundle/demos/sortable/index.html @@ -0,0 +1,25 @@ + + + + jQuery UI Sortable Demos + + + + + + + + diff --git a/media/js/development-bundle/demos/sortable/items.html b/media/js/development-bundle/demos/sortable/items.html new file mode 100644 index 0000000..093631f --- /dev/null +++ b/media/js/development-bundle/demos/sortable/items.html @@ -0,0 +1,68 @@ + + + + jQuery UI Sortable - Include / exclude items + + + + + + + + + +
+ +

Specify which items are sortable:

+ +
    +
  • Item 1
  • +
  • (I'm not sortable or a drop target)
  • +
  • (I'm not sortable or a drop target)
  • +
  • Item 4
  • +
+ +

Cancel sorting (but keep as drop targets):

+ +
    +
  • Item 1
  • +
  • (I'm not sortable)
  • +
  • (I'm not sortable)
  • +
  • Item 4
  • +
+ +
+ +
+ +

+ Specify which items are eligible to sort by passing a jQuery selector into + the items option. Items excluded from this option are not + sortable, nor are they valid targets for sortable items. +

+ +

+ To only prevent sorting on certain items, pass a jQuery selector into the + cancel option. Cancelled items remain valid sort targets for + others. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/sortable/placeholder.html b/media/js/development-bundle/demos/sortable/placeholder.html new file mode 100644 index 0000000..565eb0b --- /dev/null +++ b/media/js/development-bundle/demos/sortable/placeholder.html @@ -0,0 +1,53 @@ + + + + jQuery UI Sortable - Drop placeholder + + + + + + + + + +
+ +
    +
  • Item 1
  • +
  • Item 2
  • +
  • Item 3
  • +
  • Item 4
  • +
  • Item 5
  • +
  • Item 6
  • +
  • Item 7
  • +
+ +
+ +
+ +

+ When dragging a sortable item to a new location, other items will make room + for the that item by shifting to allow white space between them. Pass a + class into the placeholder option to style that space to + be visible. Use the boolean forcePlaceholderSize option + to set dimensions on the placeholder. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/sortable/portlets.html b/media/js/development-bundle/demos/sortable/portlets.html new file mode 100644 index 0000000..5430989 --- /dev/null +++ b/media/js/development-bundle/demos/sortable/portlets.html @@ -0,0 +1,93 @@ + + + + jQuery UI Sortable - Portlets + + + + + + + + + +
+ +
+ +
+
Feeds
+
Lorem ipsum dolor sit amet, consectetuer adipiscing elit
+
+ +
+
News
+
Lorem ipsum dolor sit amet, consectetuer adipiscing elit
+
+ +
+ +
+ +
+
Shopping
+
Lorem ipsum dolor sit amet, consectetuer adipiscing elit
+
+ +
+ +
+ +
+
Links
+
Lorem ipsum dolor sit amet, consectetuer adipiscing elit
+
+ +
+
Images
+
Lorem ipsum dolor sit amet, consectetuer adipiscing elit
+
+ +
+ +
+ +
+ +

+ Enable portlets (styled divs) as sortables and use the connectWith + option to allow sorting between columns. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/switchClass/default.html b/media/js/development-bundle/demos/switchClass/default.html new file mode 100644 index 0000000..09b48c9 --- /dev/null +++ b/media/js/development-bundle/demos/switchClass/default.html @@ -0,0 +1,47 @@ + + + + jQuery UI Effects - switchClass Demo + + + + + + + + + +
+ + +
+
+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. +
+
+Run Effect + +
+ +
+ +

Click the button above to preview the effect.

+ +
+ + + diff --git a/media/js/development-bundle/demos/switchClass/index.html b/media/js/development-bundle/demos/switchClass/index.html new file mode 100644 index 0000000..4b9471d --- /dev/null +++ b/media/js/development-bundle/demos/switchClass/index.html @@ -0,0 +1,17 @@ + + + + jQuery UI Effects Demos + + + + +
+

Examples

+ +
+ + + diff --git a/media/js/development-bundle/demos/tabs/ajax.html b/media/js/development-bundle/demos/tabs/ajax.html new file mode 100644 index 0000000..ecbc2c5 --- /dev/null +++ b/media/js/development-bundle/demos/tabs/ajax.html @@ -0,0 +1,40 @@ + + + + jQuery UI Tabs - Content via Ajax + + + + + + + + + +
+ +
+ +
+

Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.

+
+
+ +
+ +
+ +

Fetch external content via Ajax for the tabs by setting an href value in the tab links. While the Ajax request is waiting for a response, the tab label changes to say "Loading...", then returns to the normal label once loaded.

+ +
+ + + diff --git a/media/js/development-bundle/demos/tabs/ajax/content1.html b/media/js/development-bundle/demos/tabs/ajax/content1.html new file mode 100644 index 0000000..759bf13 --- /dev/null +++ b/media/js/development-bundle/demos/tabs/ajax/content1.html @@ -0,0 +1,4 @@ +

This content was loaded via ajax. +

Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.

+

Mauris vitae ante. Curabitur augue. Nulla purus nibh, lobortis ut, feugiat at, aliquam id, purus. Sed venenatis, lorem venenatis volutpat commodo, purus quam lacinia justo, mattis interdum pede pede a odio. Fusce nibh. Morbi nisl mauris, dapibus in, tristique eget, accumsan et, pede. Donec mauris risus, pulvinar ut, faucibus eu, mollis in, nunc. In augue massa, commodo a, cursus vehicula, varius eu, dui. Suspendisse sodales suscipit lorem. Morbi malesuada, eros quis condimentum dignissim, lectus nibh tristique urna, non bibendum diam massa vel risus. Morbi suscipit. Proin egestas, eros at scelerisque scelerisque, dolor lacus fringilla lacus, ut ullamcorper mi magna at quam. Aliquam sed elit. Aliquam turpis purus, congue quis, iaculis id, ullamcorper sit amet, justo. Maecenas sed mauris. Proin magna justo, interdum in, tincidunt eu, viverra eu, turpis. Suspendisse mollis. In magna. Phasellus pellentesque, urna pellentesque convallis pellentesque, augue sem blandit pede, at rhoncus libero nisl a odio.

+

Sed vitae nibh non magna semper tempor. Duis dolor. Nam congue laoreet arcu. Fusce lobortis enim quis ligula. Maecenas commodo odio id mi. Maecenas scelerisque tellus eu odio. Etiam dolor purus, lacinia a, imperdiet in, aliquam et, eros. In pellentesque. Nullam ac massa. Integer et turpis. Ut quam augue, congue non, imperdiet id, eleifend ac, nisi. Etiam ac arcu. Cras iaculis accumsan erat. Nullam vulputate sapien nec nisi pretium rhoncus. Aliquam a nibh. Vivamus est ante, fermentum a, tincidunt ut, imperdiet nec, velit. Aenean non tortor. Sed nec mauris eget tellus condimentum rutrum.

\ No newline at end of file diff --git a/media/js/development-bundle/demos/tabs/ajax/content2.html b/media/js/development-bundle/demos/tabs/ajax/content2.html new file mode 100644 index 0000000..759bf13 --- /dev/null +++ b/media/js/development-bundle/demos/tabs/ajax/content2.html @@ -0,0 +1,4 @@ +

This content was loaded via ajax. +

Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.

+

Mauris vitae ante. Curabitur augue. Nulla purus nibh, lobortis ut, feugiat at, aliquam id, purus. Sed venenatis, lorem venenatis volutpat commodo, purus quam lacinia justo, mattis interdum pede pede a odio. Fusce nibh. Morbi nisl mauris, dapibus in, tristique eget, accumsan et, pede. Donec mauris risus, pulvinar ut, faucibus eu, mollis in, nunc. In augue massa, commodo a, cursus vehicula, varius eu, dui. Suspendisse sodales suscipit lorem. Morbi malesuada, eros quis condimentum dignissim, lectus nibh tristique urna, non bibendum diam massa vel risus. Morbi suscipit. Proin egestas, eros at scelerisque scelerisque, dolor lacus fringilla lacus, ut ullamcorper mi magna at quam. Aliquam sed elit. Aliquam turpis purus, congue quis, iaculis id, ullamcorper sit amet, justo. Maecenas sed mauris. Proin magna justo, interdum in, tincidunt eu, viverra eu, turpis. Suspendisse mollis. In magna. Phasellus pellentesque, urna pellentesque convallis pellentesque, augue sem blandit pede, at rhoncus libero nisl a odio.

+

Sed vitae nibh non magna semper tempor. Duis dolor. Nam congue laoreet arcu. Fusce lobortis enim quis ligula. Maecenas commodo odio id mi. Maecenas scelerisque tellus eu odio. Etiam dolor purus, lacinia a, imperdiet in, aliquam et, eros. In pellentesque. Nullam ac massa. Integer et turpis. Ut quam augue, congue non, imperdiet id, eleifend ac, nisi. Etiam ac arcu. Cras iaculis accumsan erat. Nullam vulputate sapien nec nisi pretium rhoncus. Aliquam a nibh. Vivamus est ante, fermentum a, tincidunt ut, imperdiet nec, velit. Aenean non tortor. Sed nec mauris eget tellus condimentum rutrum.

\ No newline at end of file diff --git a/media/js/development-bundle/demos/tabs/collapsible.html b/media/js/development-bundle/demos/tabs/collapsible.html new file mode 100644 index 0000000..eab85af --- /dev/null +++ b/media/js/development-bundle/demos/tabs/collapsible.html @@ -0,0 +1,54 @@ + + + + jQuery UI Tabs - Collapse content + + + + + + + + + +
+ +
+ +
+

Click this tab again to close the content pane.

+

Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.

+
+
+

Click this tab again to close the content pane.

+

Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.

+
+
+

Click this tab again to close the content pane.

+

Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.

+
+
+ +
+ +
+ +

Click the selected tab to toggle its content closed/open. To enable this functionality, set the collapsible option to true.

+ +
collapsible: true
+
+ +
+ + + diff --git a/media/js/development-bundle/demos/tabs/default.html b/media/js/development-bundle/demos/tabs/default.html new file mode 100644 index 0000000..6048bc9 --- /dev/null +++ b/media/js/development-bundle/demos/tabs/default.html @@ -0,0 +1,47 @@ + + + + jQuery UI Tabs - Default functionality + + + + + + + + + +
+ +
+ +
+

Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.

+
+
+

Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.

+
+
+

Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.

+

Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.

+
+
+ +
+ +
+ +

Click tabs to swap between content that is broken into logical sections.

+ +
+ + + diff --git a/media/js/development-bundle/demos/tabs/index.html b/media/js/development-bundle/demos/tabs/index.html new file mode 100644 index 0000000..903e9f3 --- /dev/null +++ b/media/js/development-bundle/demos/tabs/index.html @@ -0,0 +1,21 @@ + + + + jQuery UI Tabs Demos + + + + + + + + diff --git a/media/js/development-bundle/demos/tabs/mouseover.html b/media/js/development-bundle/demos/tabs/mouseover.html new file mode 100644 index 0000000..3232e1f --- /dev/null +++ b/media/js/development-bundle/demos/tabs/mouseover.html @@ -0,0 +1,52 @@ + + + + jQuery UI Tabs - Open on mouseover + + + + + + + + + +
+ +
+ +
+

Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.

+
+
+

Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.

+
+
+

Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.

+

Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.

+
+
+ +
+ +
+ +

Toggle sections open/closed on mouseover with the event option. The default value for event is "click."

+ +
event: 'mouseover'
+
+ +
+ + + diff --git a/media/js/development-bundle/demos/tabs/sortable.html b/media/js/development-bundle/demos/tabs/sortable.html new file mode 100644 index 0000000..1b0d458 --- /dev/null +++ b/media/js/development-bundle/demos/tabs/sortable.html @@ -0,0 +1,62 @@ + + + + jQuery UI Tabs - Sortable + + + + + + + + + + +
+ +
+ +
+

Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.

+
+
+

Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.

+
+
+

Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.

+

Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.

+
+
+ +
+ +
+ +

+Drag the tabs above to re-order them. +

+ +

+Making tabs sortable is as simple as calling + +.sortable() + +on the + +.ui-tabs-nav + +element. +

+ +
+ + + diff --git a/media/js/development-bundle/demos/tabs/vertical.html b/media/js/development-bundle/demos/tabs/vertical.html new file mode 100644 index 0000000..56001c3 --- /dev/null +++ b/media/js/development-bundle/demos/tabs/vertical.html @@ -0,0 +1,62 @@ + + + + jQuery UI Tabs - Vertical Tabs functionality + + + + + + + + + + +
+ +
+ +
+

Content heading 1

+

Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.

+
+
+

Content heading 2

+

Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.

+
+
+

Content heading 3

+

Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.

+

Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.

+
+
+ +
+ +
+ +

Click tabs to swap between content that is broken into logical sections.

+ +
+ + + diff --git a/media/js/development-bundle/demos/toggle/default.html b/media/js/development-bundle/demos/toggle/default.html new file mode 100644 index 0000000..ffb464b --- /dev/null +++ b/media/js/development-bundle/demos/toggle/default.html @@ -0,0 +1,94 @@ + + + + jQuery UI Effects - Toggle Demo + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Toggle

+

+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi. +

+
+
+ + + +Run Effect +
+ +
+ +

Click the button above to preview the effect.

+ +
+ + + diff --git a/media/js/development-bundle/demos/toggle/index.html b/media/js/development-bundle/demos/toggle/index.html new file mode 100644 index 0000000..4b9471d --- /dev/null +++ b/media/js/development-bundle/demos/toggle/index.html @@ -0,0 +1,17 @@ + + + + jQuery UI Effects Demos + + + + +
+

Examples

+ +
+ + + diff --git a/media/js/development-bundle/demos/toggleClass/default.html b/media/js/development-bundle/demos/toggleClass/default.html new file mode 100644 index 0000000..8faa159 --- /dev/null +++ b/media/js/development-bundle/demos/toggleClass/default.html @@ -0,0 +1,45 @@ + + + + jQuery UI Effects - toggleClass Demo + + + + + + + + + +
+ +
+
+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. +
+
+ +Run Effect + +
+ +
+ +

Click the button above to preview the effect.

+ +
+ + + diff --git a/media/js/development-bundle/demos/toggleClass/index.html b/media/js/development-bundle/demos/toggleClass/index.html new file mode 100644 index 0000000..4b9471d --- /dev/null +++ b/media/js/development-bundle/demos/toggleClass/index.html @@ -0,0 +1,17 @@ + + + + jQuery UI Effects Demos + + + + +
+

Examples

+ +
+ + + diff --git a/media/js/development-bundle/docs/accordion.html b/media/js/development-bundle/docs/accordion.html new file mode 100644 index 0000000..bf89bc3 --- /dev/null +++ b/media/js/development-bundle/docs/accordion.html @@ -0,0 +1,869 @@ + + +
+

jQuery UI Accordion

+
+

Overview

+
+

Make the selected elements Accordion widgets. Semantic requirements:

+

The markup of your accordion container needs pairs of headers and content panels. By default, the header elements are anchors, assuming the following structure:

+
<div id="accordion">
+    <a href="#">First header</a>
+    <div>First content</div>
+    <a href="#">Second header</a>
+    <div>Second content</div>
+</div>
+

If you use a different element for the header, specify the header-option with an appropriate selector, eg. header: 'h3'. The content element must be always next to its header.

+

If you have links inside the accordion content and use a-elements as headers, add a class to them and use that as the header, eg. header: 'a.header'.

+

Use activate(Number) to change the active content programmatically.

+

NOTE: If you want multiple sections open at once, don't use an accordion

+

An accordion doesn't allow more than one content panel to be open at the same time, and it takes a lot of effort to do that. If you are looking for a widget that allows more than one content panel to be open, don't use this. Usually it can be written with a few lines of jQuery instead, something like this:

+
jQuery(document).ready(function(){
+	$('.accordion .head').click(function() {
+		$(this).next().toggle();
+		return false;
+	}).next().hide();
+});
+

Or animated:

+
jQuery(document).ready(function(){
+	$('.accordion .head').click(function() {
+		$(this).next().toggle('slow');
+		return false;
+	}).next().hide();
+});
+
+
+

Dependencies

+
    +
  • UI Core
  • +
  • UI Effects Core (Optional - only for non-default animations)
  • +
+
+
+

Example

+
+ +

+A simple jQuery UI Accordion.
+

+
$("#accordion").accordion();
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.accordion.js"></script>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#accordion").accordion();
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div id="accordion">
+	<h3><a href="#">Section 1</a></h3>
+	<div>
+		<p>
+		Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer
+		ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit
+		amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut
+		odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.
+		</p>
+	</div>
+	<h3><a href="#">Section 2</a></h3>
+	<div>
+		<p>
+		Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet
+		purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor
+		velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In
+		suscipit faucibus urna.
+		</p>
+	</div>
+	<h3><a href="#">Section 3</a></h3>
+	<div>
+		<p>
+		Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis.
+		Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero
+		ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis
+		lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.
+		</p>
+		<ul>
+			<li>List item one</li>
+			<li>List item two</li>
+			<li>List item three</li>
+		</ul>
+	</div>
+	<h3><a href="#">Section 4</a></h3>
+	<div>
+		<p>
+		Cras dictum. Pellentesque habitant morbi tristique senectus et netus
+		et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in
+		faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia
+		mauris vel est.
+		</p>
+		<p>
+		Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus.
+		Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
+		inceptos himenaeos.
+		</p>
+	</div>
+</div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    active

    +
    +
    Type:
    +
    Selector, Element, jQuery, Boolean, Number
    + +
    Default:
    +
    first child
    + +
    +
    +
    +

    Selector for the active element. Set to false to display none at start. Needs collapsible: true.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the active option specified. +
    +
    +
    $('.selector').accordion({ active: 2 });
    +
    + + +
    + Get or set the active option, after init. +
    +
    +
    //getter
    +var active = $('.selector').accordion('option', 'active');
    +//setter
    +$('.selector').accordion('option', 'active', 2);
    +
    + +
    +
    +
  • + + +
  • +
    +

    animated

    +
    +
    Type:
    +
    Boolean, String
    + +
    Default:
    +
    'slide'
    + +
    +
    +
    +

    Choose your favorite animation, or disable them (set to false). In addition to the default, 'bounceslide' and all defined easing methods are supported ('bounceslide' requires UI Effects Core).

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the animated option specified. +
    +
    +
    $('.selector').accordion({ animated: 'bounceslide' });
    +
    + + +
    + Get or set the animated option, after init. +
    +
    +
    //getter
    +var animated = $('.selector').accordion('option', 'animated');
    +//setter
    +$('.selector').accordion('option', 'animated', 'bounceslide');
    +
    + +
    +
    +
  • + + +
  • +
    +

    autoHeight

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    If set, the highest content part is used as height reference for all other parts. Provides more consistent animations.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the autoHeight option specified. +
    +
    +
    $('.selector').accordion({ autoHeight: false });
    +
    + + +
    + Get or set the autoHeight option, after init. +
    +
    +
    //getter
    +var autoHeight = $('.selector').accordion('option', 'autoHeight');
    +//setter
    +$('.selector').accordion('option', 'autoHeight', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    clearStyle

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set, clears height and overflow styles after finishing animations. This enables accordions to work with dynamic content. Won't work together with autoHeight.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the clearStyle option specified. +
    +
    +
    $('.selector').accordion({ clearStyle: true });
    +
    + + +
    + Get or set the clearStyle option, after init. +
    +
    +
    //getter
    +var clearStyle = $('.selector').accordion('option', 'clearStyle');
    +//setter
    +$('.selector').accordion('option', 'clearStyle', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    collapsible

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Whether all the sections can be closed at once. Allows collapsing the active section by the triggering event (click is the default).

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the collapsible option specified. +
    +
    +
    $('.selector').accordion({ collapsible: true });
    +
    + + +
    + Get or set the collapsible option, after init. +
    +
    +
    //getter
    +var collapsible = $('.selector').accordion('option', 'collapsible');
    +//setter
    +$('.selector').accordion('option', 'collapsible', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    event

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'click'
    + +
    +
    +
    +

    The event on which to trigger the accordion.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the event option specified. +
    +
    +
    $('.selector').accordion({ event: 'mouseover' });
    +
    + + +
    + Get or set the event option, after init. +
    +
    +
    //getter
    +var event = $('.selector').accordion('option', 'event');
    +//setter
    +$('.selector').accordion('option', 'event', 'mouseover');
    +
    + +
    +
    +
  • + + +
  • +
    +

    fillSpace

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set, the accordion completely fills the height of the parent element. Overrides autoheight.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the fillSpace option specified. +
    +
    +
    $('.selector').accordion({ fillSpace: true });
    +
    + + +
    + Get or set the fillSpace option, after init. +
    +
    +
    //getter
    +var fillSpace = $('.selector').accordion('option', 'fillSpace');
    +//setter
    +$('.selector').accordion('option', 'fillSpace', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    header

    +
    +
    Type:
    +
    Selector, jQuery
    + +
    Default:
    +
    '> li > :first-child,> :not(li):even'
    + +
    +
    +
    +

    Selector for the header element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the header option specified. +
    +
    +
    $('.selector').accordion({ header: 'h3' });
    +
    + + +
    + Get or set the header option, after init. +
    +
    +
    //getter
    +var header = $('.selector').accordion('option', 'header');
    +//setter
    +$('.selector').accordion('option', 'header', 'h3');
    +
    + +
    +
    +
  • + + +
  • +
    +

    icons

    +
    +
    Type:
    +
    Object
    + +
    Default:
    +
    { 'header': 'ui-icon-triangle-1-e', 'headerSelected': 'ui-icon-triangle-1-s' }
    + +
    +
    +
    +

    Icons to use for headers. Icons may be specified for 'header' and 'headerSelected', and we recommend using the icons native to the jQuery UI CSS Framework manipulated by jQuery UI ThemeRoller

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the icons option specified. +
    +
    +
    $('.selector').accordion({ icons: { 'header': 'ui-icon-plus', 'headerSelected': 'ui-icon-minus' } });
    +
    + + +
    + Get or set the icons option, after init. +
    +
    +
    //getter
    +var icons = $('.selector').accordion('option', 'icons');
    +//setter
    +$('.selector').accordion('option', 'icons', { 'header': 'ui-icon-plus', 'headerSelected': 'ui-icon-minus' });
    +
    + +
    +
    +
  • + + +
  • +
    +

    navigation

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set, looks for the anchor that matches location.href and activates it. Great for href-based state-saving. Use navigationFilter to implement your own matcher.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the navigation option specified. +
    +
    +
    $('.selector').accordion({ navigation: true });
    +
    + + +
    + Get or set the navigation option, after init. +
    +
    +
    //getter
    +var navigation = $('.selector').accordion('option', 'navigation');
    +//setter
    +$('.selector').accordion('option', 'navigation', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    navigationFilter

    +
    +
    Type:
    +
    Function
    + +
    Default:
    +
    + +
    +
    +
    +

    Overwrite the default location.href-matching with your own matcher.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a accordion with the navigationFilter option specified. +
    +
    +
    $('.selector').accordion({ navigationFilter: function(){ ... } });
    +
    + + +
    + Get or set the navigationFilter option, after init. +
    +
    +
    //getter
    +var navigationFilter = $('.selector').accordion('option', 'navigationFilter');
    +//setter
    +$('.selector').accordion('option', 'navigationFilter', function(){ ... });
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    change

    +
    +
    Type:
    +
    accordionchange
    +
    +
    +
    +

    This event is triggered every time the accordion changes. If the accordion is animated, the event will be triggered upon completion of the animation; otherwise, it is triggered immediately. +

    +
    $('.ui-accordion').bind('accordionchange', function(event, ui) {
    +  ui.newHeader // jQuery object, activated header
    +  ui.oldHeader // jQuery object, previous header
    +  ui.newContent // jQuery object, activated content
    +  ui.oldContent // jQuery object, previous content
    +});

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the change event as an init option. +
    +
    +
    $('.selector').accordion({
    +   change: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the change event by type: accordionchange. +
    +
    +
    $('.selector').bind('accordionchange', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +

    +

  • +
    +

    changestart

    +
    +
    Type:
    +
    accordionchangestart
    +
    +
    +
    +

    This event is triggered every time the accordion starts to change. +

    +
    $('.ui-accordion').bind('accordionchangestart', function(event, ui) {
    +  ui.newHeader // jQuery object, activated header
    +  ui.oldHeader // jQuery object, previous header
    +  ui.newContent // jQuery object, activated content
    +  ui.oldContent // jQuery object, previous content
    +});

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the changestart event as an init option. +
    +
    +
    $('.selector').accordion({
    +   changestart: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the changestart event by type: accordionchangestart. +
    +
    +
    $('.selector').bind('accordionchangestart', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .accordion( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the accordion functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + +

    +

  • +
    +

    disable

    +
    +
    Signature:
    +
    .accordion( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the accordion.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .accordion( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the accordion.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .accordion( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any accordion option. If no value is specified, will act as a getter.

    +
    +
  • + + +
  • +
    +

    activate

    +
    +
    Signature:
    +
    .accordion( 'activate' + +, index + + + + + +)
    +
    +
    +
    +

    Activate a content part of the Accordion programmatically. The index can be a zero-indexed number to match the position of the header to close or a Selector matching an element. Pass false to close all (only possible with collapsible:true).

    +
    +
  • + +
+
+
+

Theming

+

The jQuery UI Accordion plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.accordion.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <div class="ui-accordion ui-widget ui-helper-reset">
+  <h3 class="ui-accordion-header ui-helper-reset ui-state-active ui-corner-top">
+    <span class="ui-icon ui-icon-triangle-1-s"/>
+    <a href="#">Section 1</a>
+  </h3>
+  <div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active">
+    Section 1 content
+  </div>
+  <h3 class="ui-accordion-header ui-helper-reset ui-state-default ui-corner-all">
+    <span class="ui-icon ui-icon-triangle-1-e"/>
+    <a href="#">Section 2</a>
+  </h3>
+  <div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom">
+    Section 2 content
+  </div>
+  <h3 class="ui-accordion-header ui-helper-reset ui-state-default ui-corner-all">
+    <span class="ui-icon ui-icon-triangle-1-e"/>
+    <a href="#">Section 3</a>
+  </h3>
+  <div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom">
+    Section 3 content
+  </div>
+</div>
+

+ + Note: This is a sample of markup generated by the accordion plugin, not markup you should use to create a accordion. The only markup needed for that is
<div>
+   <h3><a href="#">Section 1</a></h3>
+   <div>
+      Section 1 content
+   </div>
+   <h3><a href="#">Section 2</a></h3>
+   <div>
+      Section 2 content
+   </div>
+   <h3><a href="#">Section 3</a></h3>
+   <div>
+      Section 3 content
+   </div>
+</div>. +
+

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/addClass.html b/media/js/development-bundle/docs/addClass.html new file mode 100644 index 0000000..e0e2a1d --- /dev/null +++ b/media/js/development-bundle/docs/addClass.html @@ -0,0 +1,108 @@ + + +
+

jQuery UI addClass

+
+

Overview

+
+

addClass( class, [duration] )

+

Adds the specified class to each of the set of matched elements with an optional transition between the states.

+
+
+

Dependencies

+
    +
  • Effects Core
  • +
+
+
+

Example

+
+ +

+Adds the class 'selected' to the matched elements with a one second transition.
+

+
$("p").click(function () {
+      $(this).addClass("selected", 1000);
+    });
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
+<style type="text/css">
+  p { cursor: pointer; font-size: 1.2em; }
+  .selected { color:red; }
+</style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("p").click(function () {
+      $(this).addClass("selected", 1000);
+    });
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  <p>Click me to add a 'selected' class.</p>
+<p>Click me to add a 'selected' class.</p>
+<p>Click me to add a 'selected' class.</p>
+</body>
+</html>
+
+

+

+
+
+
+

Arguments

+
    + +
  • +
    +

    class

    +
    +
    Type:
    +
    String
    + +
    +
    +
    +

    One CSS class to add to the elements.

    +
    +
  • + + +
  • +
    +

    duration

    +
    +
    Type:
    +
    String, Number
    + +
    Optional
    + +
    +
    +
    +

    A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).

    +
    +
  • + +
+
+
+ +

+ + diff --git a/media/js/development-bundle/docs/animate.html b/media/js/development-bundle/docs/animate.html new file mode 100644 index 0000000..9c365a4 --- /dev/null +++ b/media/js/development-bundle/docs/animate.html @@ -0,0 +1,78 @@ +

« Back to the jQuery UI Docs +

The jQuery UI effects core extends the animate function to be able to animate colors as well. It's heavily used by the class transition feature and it's able to color animate the following properties: +

+
  • backgroundColor +
  • borderBottomColor +
  • borderLeftColor +
  • borderRightColor +
  • borderTopColor +
  • color +
  • outlineColor +
+

with one of the following combinations: +

+
  • hex (#FF0000) +
  • rgb (rgb(255,255,255)) +
  • names ("black") +
+


+

+
NameType
Example: +
+ +
+A simple color animation.
+

+
$(".block").toggle(function() {
+    $(this).animate({ backgroundColor: "black" }, 1000);
+},function() {
+    $(this).animate({ backgroundColor: "#68BFEF" }, 500);
+});
+
+
+

+

+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
+                    "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+  <script src="http://code.jquery.com/jquery-latest.js"></script>
+  
+  <script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
+
+  <script>
+  $(document).ready(function(){
+    $(".block").toggle(function() {
+    $(this).animate({ backgroundColor: "black" }, 1000);
+},function() {
+    $(this).animate({ backgroundColor: "#68BFEF" }, 500);
+});
+
+  });
+  </script>
+  <style>
+  .block { 
+    color: white;
+    background-color: #68BFEF;
+    width: 150px; 
+    height: 70px;
+    margin: 10px; 
+  }
+  </style>
+</head>
+<body>
+  <div class="block"> Click me</div>
+</body>
+</html>
+
+

+

+

NameType
+

+ + diff --git a/media/js/development-bundle/docs/datepicker.html b/media/js/development-bundle/docs/datepicker.html new file mode 100644 index 0000000..f0772b2 --- /dev/null +++ b/media/js/development-bundle/docs/datepicker.html @@ -0,0 +1,2150 @@ + + +
+

jQuery UI Datepicker

+
+

Overview

+
+

The jQuery UI Datepicker is a highly configurable plugin that adds datepicker functionality to your pages. You can customize the date format and language, restrict the selectable date ranges and add in buttons and other navigation options easily.

+

By default, the datepicker calendar opens in a small overlay onFocus and closes automatically onBlur or when a date if selected. For an inline calendar, simply attach the datepicker to a div or span. +

You can use keyboard shortcuts to drive the datepicker: +

+
    +
  • page up/down - previous/next month
  • +
  • ctrl+page up/down - previous/next year
  • +
  • ctrl+home - current month or open when closed
  • +
  • ctrl+left/right - previous/next day
  • +
  • ctrl+up/down - previous/next week
  • +
  • enter - accept the selected date
  • +
  • ctrl+end - close and erase the date
  • +
  • escape - close the datepicker without selection
  • +
+

Utility functions

+ +
+
+

Dependencies

+
    +
  • UI Core
  • +
+
+
+

Example

+
+ +

+A simple jQuery UI Datepicker.
+

+
$("#datepicker").datepicker();
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.datepicker.js"></script>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#datepicker").datepicker();
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div type="text" id="datepicker"></div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    altField

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    ''
    + +
    +
    +
    +

    The jQuery selector for another field that is to be updated with the selected date from the datepicker. Use the altFormat setting below to change the format of the date within this field. Leave as blank for no alternate field.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the altField option specified. +
    +
    +
    $('.selector').datepicker({ altField: '#actualDate' });
    +
    + + +
    + Get or set the altField option, after init. +
    +
    +
    //getter
    +var altField = $('.selector').datepicker('option', 'altField');
    +//setter
    +$('.selector').datepicker('option', 'altField', '#actualDate');
    +
    + +
    +
    +
  • + + +
  • +
    +

    altFormat

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    ''
    + +
    +
    +
    +

    The dateFormat to be used for the altField option. This allows one date format to be shown to the user for selection purposes, while a different format is actually sent behind the scenes. For a full list of the possible formats see the formatDate function

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the altFormat option specified. +
    +
    +
    $('.selector').datepicker({ altFormat: 'yy-mm-dd' });
    +
    + + +
    + Get or set the altFormat option, after init. +
    +
    +
    //getter
    +var altFormat = $('.selector').datepicker('option', 'altFormat');
    +//setter
    +$('.selector').datepicker('option', 'altFormat', 'yy-mm-dd');
    +
    + +
    +
    +
  • + + +
  • +
    +

    appendText

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    ''
    + +
    +
    +
    +

    The text to display after each date field, e.g. to show the required format.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the appendText option specified. +
    +
    +
    $('.selector').datepicker({ appendText: '(yyyy-mm-dd)' });
    +
    + + +
    + Get or set the appendText option, after init. +
    +
    +
    //getter
    +var appendText = $('.selector').datepicker('option', 'appendText');
    +//setter
    +$('.selector').datepicker('option', 'appendText', '(yyyy-mm-dd)');
    +
    + +
    +
    +
  • + + +
  • +
    +

    buttonImage

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    ''
    + +
    +
    +
    +

    The URL for the popup button image. If set, button text becomes the alt value and is not directly displayed.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the buttonImage option specified. +
    +
    +
    $('.selector').datepicker({ buttonImage: '/images/datepicker.gif' });
    +
    + + +
    + Get or set the buttonImage option, after init. +
    +
    +
    //getter
    +var buttonImage = $('.selector').datepicker('option', 'buttonImage');
    +//setter
    +$('.selector').datepicker('option', 'buttonImage', '/images/datepicker.gif');
    +
    + +
    +
    +
  • + + +
  • +
    +

    buttonImageOnly

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Set to true to place an image after the field to use as the trigger without it appearing on a button.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the buttonImageOnly option specified. +
    +
    +
    $('.selector').datepicker({ buttonImageOnly: true });
    +
    + + +
    + Get or set the buttonImageOnly option, after init. +
    +
    +
    //getter
    +var buttonImageOnly = $('.selector').datepicker('option', 'buttonImageOnly');
    +//setter
    +$('.selector').datepicker('option', 'buttonImageOnly', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    buttonText

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    '...'
    + +
    +
    +
    +

    The text to display on the trigger button. Use in conjunction with showOn equal to 'button' or 'both'.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the buttonText option specified. +
    +
    +
    $('.selector').datepicker({ buttonText: 'Choose' });
    +
    + + +
    + Get or set the buttonText option, after init. +
    +
    +
    //getter
    +var buttonText = $('.selector').datepicker('option', 'buttonText');
    +//setter
    +$('.selector').datepicker('option', 'buttonText', 'Choose');
    +
    + +
    +
    +
  • + + +
  • +
    +

    changeMonth

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Allows you to change the month by selecting from a drop-down list. You can enable this feature by setting the attribute to true.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the changeMonth option specified. +
    +
    +
    $('.selector').datepicker({ changeMonth: true });
    +
    + + +
    + Get or set the changeMonth option, after init. +
    +
    +
    //getter
    +var changeMonth = $('.selector').datepicker('option', 'changeMonth');
    +//setter
    +$('.selector').datepicker('option', 'changeMonth', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    changeYear

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Allows you to change the year by selecting from a drop-down list. You can enable this feature by setting the attribute to true.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the changeYear option specified. +
    +
    +
    $('.selector').datepicker({ changeYear: true });
    +
    + + +
    + Get or set the changeYear option, after init. +
    +
    +
    //getter
    +var changeYear = $('.selector').datepicker('option', 'changeYear');
    +//setter
    +$('.selector').datepicker('option', 'changeYear', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    closeText

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'Done'
    + +
    +
    +
    +

    The text to display for the close link. This attribute is one of the regionalisation attributes. Use the showButtonPanel to display this button.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the closeText option specified. +
    +
    +
    $('.selector').datepicker({ closeText: 'X' });
    +
    + + +
    + Get or set the closeText option, after init. +
    +
    +
    //getter
    +var closeText = $('.selector').datepicker('option', 'closeText');
    +//setter
    +$('.selector').datepicker('option', 'closeText', 'X');
    +
    + +
    +
    +
  • + + +
  • +
    +

    constrainInput

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    True if the input field is constrained to the current date format.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the constrainInput option specified. +
    +
    +
    $('.selector').datepicker({ constrainInput: false });
    +
    + + +
    + Get or set the constrainInput option, after init. +
    +
    +
    //getter
    +var constrainInput = $('.selector').datepicker('option', 'constrainInput');
    +//setter
    +$('.selector').datepicker('option', 'constrainInput', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    currentText

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'Today'
    + +
    +
    +
    +

    The text to display for the current day link. This attribute is one of the regionalisation attributes. Use the showButtonPanel to display this button.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the currentText option specified. +
    +
    +
    $('.selector').datepicker({ currentText: 'Now' });
    +
    + + +
    + Get or set the currentText option, after init. +
    +
    +
    //getter
    +var currentText = $('.selector').datepicker('option', 'currentText');
    +//setter
    +$('.selector').datepicker('option', 'currentText', 'Now');
    +
    + +
    +
    +
  • + + +
  • +
    +

    dateFormat

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'mm/dd/yy'
    + +
    +
    +
    +

    The format for parsed and displayed dates. This attribute is one of the regionalisation attributes. For a full list of the possible formats see the formatDate function.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the dateFormat option specified. +
    +
    +
    $('.selector').datepicker({ dateFormat: 'yy-mm-dd' });
    +
    + + +
    + Get or set the dateFormat option, after init. +
    +
    +
    //getter
    +var dateFormat = $('.selector').datepicker('option', 'dateFormat');
    +//setter
    +$('.selector').datepicker('option', 'dateFormat', 'yy-mm-dd');
    +
    + +
    +
    +
  • + + +
  • +
    +

    dayNames

    +
    +
    Type:
    +
    Array
    + +
    Default:
    +
    ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']
    + +
    +
    +
    +

    The list of long day names, starting from Sunday, for use as requested via the dateFormat setting. They also appear as popup hints when hovering over the corresponding column headings. This attribute is one of the regionalisation attributes.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the dayNames option specified. +
    +
    +
    $('.selector').datepicker({ dayNames: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'] });
    +
    + + +
    + Get or set the dayNames option, after init. +
    +
    +
    //getter
    +var dayNames = $('.selector').datepicker('option', 'dayNames');
    +//setter
    +$('.selector').datepicker('option', 'dayNames', ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi']);
    +
    + +
    +
    +
  • + + +
  • +
    +

    dayNamesMin

    +
    +
    Type:
    +
    Array
    + +
    Default:
    +
    ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa']
    + +
    +
    +
    +

    The list of minimised day names, starting from Sunday, for use as column headers within the datepicker. This attribute is one of the regionalisation attributes.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the dayNamesMin option specified. +
    +
    +
    $('.selector').datepicker({ dayNamesMin: ['Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa'] });
    +
    + + +
    + Get or set the dayNamesMin option, after init. +
    +
    +
    //getter
    +var dayNamesMin = $('.selector').datepicker('option', 'dayNamesMin');
    +//setter
    +$('.selector').datepicker('option', 'dayNamesMin', ['Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa']);
    +
    + +
    +
    +
  • + + +
  • +
    +

    dayNamesShort

    +
    +
    Type:
    +
    Array
    + +
    Default:
    +
    ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    + +
    +
    +
    +

    The list of abbreviated day names, starting from Sunday, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the dayNamesShort option specified. +
    +
    +
    $('.selector').datepicker({ dayNamesShort: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'] });
    +
    + + +
    + Get or set the dayNamesShort option, after init. +
    +
    +
    //getter
    +var dayNamesShort = $('.selector').datepicker('option', 'dayNamesShort');
    +//setter
    +$('.selector').datepicker('option', 'dayNamesShort', ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam']);
    +
    + +
    +
    +
  • + + +
  • +
    +

    defaultDate

    +
    +
    Type:
    +
    Date, Number, String
    + +
    Default:
    +
    null
    + +
    +
    +
    +

    Set the date to highlight on first opening if the field is blank. Specify either an actual date via a Date object, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +7d'), or null for today.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the defaultDate option specified. +
    +
    +
    $('.selector').datepicker({ defaultDate: +7 });
    +
    + + +
    + Get or set the defaultDate option, after init. +
    +
    +
    //getter
    +var defaultDate = $('.selector').datepicker('option', 'defaultDate');
    +//setter
    +$('.selector').datepicker('option', 'defaultDate', +7);
    +
    + +
    +
    +
  • + + +
  • +
    +

    duration

    +
    +
    Type:
    +
    String, Number
    + +
    Default:
    +
    'normal'
    + +
    +
    +
    +

    Control the speed at which the datepicker appears, it may be a time in milliseconds, a string representing one of the three predefined speeds ("slow", "normal", "fast"), or '' for immediately.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the duration option specified. +
    +
    +
    $('.selector').datepicker({ duration: 'slow' });
    +
    + + +
    + Get or set the duration option, after init. +
    +
    +
    //getter
    +var duration = $('.selector').datepicker('option', 'duration');
    +//setter
    +$('.selector').datepicker('option', 'duration', 'slow');
    +
    + +
    +
    +
  • + + +
  • +
    +

    firstDay

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    Set the first day of the week: Sunday is 0, Monday is 1, ... This attribute is one of the regionalisation attributes.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the firstDay option specified. +
    +
    +
    $('.selector').datepicker({ firstDay: 1 });
    +
    + + +
    + Get or set the firstDay option, after init. +
    +
    +
    //getter
    +var firstDay = $('.selector').datepicker('option', 'firstDay');
    +//setter
    +$('.selector').datepicker('option', 'firstDay', 1);
    +
    + +
    +
    +
  • + + +
  • +
    +

    gotoCurrent

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If true, the current day link moves to the currently selected date instead of today.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the gotoCurrent option specified. +
    +
    +
    $('.selector').datepicker({ gotoCurrent: true });
    +
    + + +
    + Get or set the gotoCurrent option, after init. +
    +
    +
    //getter
    +var gotoCurrent = $('.selector').datepicker('option', 'gotoCurrent');
    +//setter
    +$('.selector').datepicker('option', 'gotoCurrent', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    hideIfNoPrevNext

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Normally the previous and next links are disabled when not applicable (see minDate/maxDate). You can hide them altogether by setting this attribute to true.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the hideIfNoPrevNext option specified. +
    +
    +
    $('.selector').datepicker({ hideIfNoPrevNext: true });
    +
    + + +
    + Get or set the hideIfNoPrevNext option, after init. +
    +
    +
    //getter
    +var hideIfNoPrevNext = $('.selector').datepicker('option', 'hideIfNoPrevNext');
    +//setter
    +$('.selector').datepicker('option', 'hideIfNoPrevNext', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    isRTL

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    True if the current language is drawn from right to left. This attribute is one of the regionalisation attributes.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the isRTL option specified. +
    +
    +
    $('.selector').datepicker({ isRTL: true });
    +
    + + +
    + Get or set the isRTL option, after init. +
    +
    +
    //getter
    +var isRTL = $('.selector').datepicker('option', 'isRTL');
    +//setter
    +$('.selector').datepicker('option', 'isRTL', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    maxDate

    +
    +
    Type:
    +
    Date, Number, String
    + +
    Default:
    +
    null
    + +
    +
    +
    +

    Set a maximum selectable date via a Date object, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +1w'), or null for no limit.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the maxDate option specified. +
    +
    +
    $('.selector').datepicker({ maxDate: '+1m +1w' });
    +
    + + +
    + Get or set the maxDate option, after init. +
    +
    +
    //getter
    +var maxDate = $('.selector').datepicker('option', 'maxDate');
    +//setter
    +$('.selector').datepicker('option', 'maxDate', '+1m +1w');
    +
    + +
    +
    +
  • + + +
  • +
    +

    minDate

    +
    +
    Type:
    +
    Date, Number, String
    + +
    Default:
    +
    null
    + +
    +
    +
    +

    Set a minimum selectable date via a Date object, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '-1y -1m'), or null for no limit.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the minDate option specified. +
    +
    +
    $('.selector').datepicker({ minDate: new Date(2007, 1 - 1, 1) });
    +
    + + +
    + Get or set the minDate option, after init. +
    +
    +
    //getter
    +var minDate = $('.selector').datepicker('option', 'minDate');
    +//setter
    +$('.selector').datepicker('option', 'minDate', new Date(2007, 1 - 1, 1));
    +
    + +
    +
    +
  • + + +
  • +
    +

    monthNames

    +
    +
    Type:
    +
    Array
    + +
    Default:
    +
    ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']
    + +
    +
    +
    +

    The list of full month names, as used in the month header on each datepicker and as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the monthNames option specified. +
    +
    +
    $('.selector').datepicker({ monthNames: ['Januar','Februar','Marts','April','Maj','Juni','Juli','August','September','Oktober','November','December'] });
    +
    + + +
    + Get or set the monthNames option, after init. +
    +
    +
    //getter
    +var monthNames = $('.selector').datepicker('option', 'monthNames');
    +//setter
    +$('.selector').datepicker('option', 'monthNames', ['Januar','Februar','Marts','April','Maj','Juni','Juli','August','September','Oktober','November','December']);
    +
    + +
    +
    +
  • + + +
  • +
    +

    monthNamesShort

    +
    +
    Type:
    +
    Array
    + +
    Default:
    +
    ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    + +
    +
    +
    +

    The list of abbreviated month names, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the monthNamesShort option specified. +
    +
    +
    $('.selector').datepicker({ monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun','Jul','Aug','Sep','Okt','Nov','Dec'] });
    +
    + + +
    + Get or set the monthNamesShort option, after init. +
    +
    +
    //getter
    +var monthNamesShort = $('.selector').datepicker('option', 'monthNamesShort');
    +//setter
    +$('.selector').datepicker('option', 'monthNamesShort', ['Jan','Feb','Mar','Apr','Maj','Jun','Jul','Aug','Sep','Okt','Nov','Dec']);
    +
    + +
    +
    +
  • + + +
  • +
    +

    navigationAsDateFormat

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    When true the formatDate function is applied to the prevText, nextText, and currentText values before display, allowing them to display the target month names for example.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the navigationAsDateFormat option specified. +
    +
    +
    $('.selector').datepicker({ navigationAsDateFormat: true });
    +
    + + +
    + Get or set the navigationAsDateFormat option, after init. +
    +
    +
    //getter
    +var navigationAsDateFormat = $('.selector').datepicker('option', 'navigationAsDateFormat');
    +//setter
    +$('.selector').datepicker('option', 'navigationAsDateFormat', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    nextText

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'Next'
    + +
    +
    +
    +

    The text to display for the next month link. This attribute is one of the regionalisation attributes. With the standard ThemeRoller styling, this value is replaced by an icon.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the nextText option specified. +
    +
    +
    $('.selector').datepicker({ nextText: 'Later' });
    +
    + + +
    + Get or set the nextText option, after init. +
    +
    +
    //getter
    +var nextText = $('.selector').datepicker('option', 'nextText');
    +//setter
    +$('.selector').datepicker('option', 'nextText', 'Later');
    +
    + +
    +
    +
  • + + +
  • +
    +

    numberOfMonths

    +
    +
    Type:
    +
    Number, Array
    + +
    Default:
    +
    1
    + +
    +
    +
    +

    Set how many months to show at once. The value can be a straight integer, or can be a two-element array to define the number of rows and columns to display.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the numberOfMonths option specified. +
    +
    +
    $('.selector').datepicker({ numberOfMonths: [2, 3] });
    +
    + + +
    + Get or set the numberOfMonths option, after init. +
    +
    +
    //getter
    +var numberOfMonths = $('.selector').datepicker('option', 'numberOfMonths');
    +//setter
    +$('.selector').datepicker('option', 'numberOfMonths', [2, 3]);
    +
    + +
    +
    +
  • + + +
  • +
    +

    prevText

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'Prev'
    + +
    +
    +
    +

    The text to display for the previous month link. This attribute is one of the regionalisation attributes. With the standard ThemeRoller styling, this value is replaced by an icon.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the prevText option specified. +
    +
    +
    $('.selector').datepicker({ prevText: 'Earlier' });
    +
    + + +
    + Get or set the prevText option, after init. +
    +
    +
    //getter
    +var prevText = $('.selector').datepicker('option', 'prevText');
    +//setter
    +$('.selector').datepicker('option', 'prevText', 'Earlier');
    +
    + +
    +
    +
  • + + +
  • +
    +

    shortYearCutoff

    +
    +
    Type:
    +
    String, Number
    + +
    Default:
    +
    '+10'
    + +
    +
    +
    +

    Set the cutoff year for determining the century for a date (used in conjunction with dateFormat 'y'). If a numeric value (0-99) is provided then this value is used directly. If a string value is provided then it is converted to a number and added to the current year. Once the cutoff year is calculated, any dates entered with a year value less than or equal to it are considered to be in the current century, while those greater than it are deemed to be in the previous century.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the shortYearCutoff option specified. +
    +
    +
    $('.selector').datepicker({ shortYearCutoff: 50 });
    +
    + + +
    + Get or set the shortYearCutoff option, after init. +
    +
    +
    //getter
    +var shortYearCutoff = $('.selector').datepicker('option', 'shortYearCutoff');
    +//setter
    +$('.selector').datepicker('option', 'shortYearCutoff', 50);
    +
    + +
    +
    +
  • + + +
  • +
    +

    showAnim

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'show'
    + +
    +
    +
    +

    Set the name of the animation used to show/hide the datepicker. Use 'show' (the default), 'slideDown', 'fadeIn', or any of the show/hide jQuery UI effects.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the showAnim option specified. +
    +
    +
    $('.selector').datepicker({ showAnim: 'fold' });
    +
    + + +
    + Get or set the showAnim option, after init. +
    +
    +
    //getter
    +var showAnim = $('.selector').datepicker('option', 'showAnim');
    +//setter
    +$('.selector').datepicker('option', 'showAnim', 'fold');
    +
    + +
    +
    +
  • + + +
  • +
    +

    showButtonPanel

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Whether to show the button panel.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the showButtonPanel option specified. +
    +
    +
    $('.selector').datepicker({ showButtonPanel: true });
    +
    + + +
    + Get or set the showButtonPanel option, after init. +
    +
    +
    //getter
    +var showButtonPanel = $('.selector').datepicker('option', 'showButtonPanel');
    +//setter
    +$('.selector').datepicker('option', 'showButtonPanel', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    showCurrentAtPos

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    Specify where in a multi-month display the current month shows, starting from 0 at the top/left.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the showCurrentAtPos option specified. +
    +
    +
    $('.selector').datepicker({ showCurrentAtPos: 3 });
    +
    + + +
    + Get or set the showCurrentAtPos option, after init. +
    +
    +
    //getter
    +var showCurrentAtPos = $('.selector').datepicker('option', 'showCurrentAtPos');
    +//setter
    +$('.selector').datepicker('option', 'showCurrentAtPos', 3);
    +
    + +
    +
    +
  • + + +
  • +
    +

    showMonthAfterYear

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Whether to show the month after the year in the header.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the showMonthAfterYear option specified. +
    +
    +
    $('.selector').datepicker({ showMonthAfterYear: true });
    +
    + + +
    + Get or set the showMonthAfterYear option, after init. +
    +
    +
    //getter
    +var showMonthAfterYear = $('.selector').datepicker('option', 'showMonthAfterYear');
    +//setter
    +$('.selector').datepicker('option', 'showMonthAfterYear', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    showOn

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'focus'
    + +
    +
    +
    +

    Have the datepicker appear automatically when the field receives focus ('focus'), appear only when a button is clicked ('button'), or appear when either event takes place ('both').

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the showOn option specified. +
    +
    +
    $('.selector').datepicker({ showOn: 'both' });
    +
    + + +
    + Get or set the showOn option, after init. +
    +
    +
    //getter
    +var showOn = $('.selector').datepicker('option', 'showOn');
    +//setter
    +$('.selector').datepicker('option', 'showOn', 'both');
    +
    + +
    +
    +
  • + + +
  • +
    +

    showOptions

    +
    +
    Type:
    +
    Options
    + +
    Default:
    +
    {}
    + +
    +
    +
    +

    If using one of the jQuery UI effects for showAnim, you can provide additional settings for that animation via this option.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the showOptions option specified. +
    +
    +
    $('.selector').datepicker({ showOptions: {direction: 'up' });
    +
    + + +
    + Get or set the showOptions option, after init. +
    +
    +
    //getter
    +var showOptions = $('.selector').datepicker('option', 'showOptions');
    +//setter
    +$('.selector').datepicker('option', 'showOptions', {direction: 'up');
    +
    + +
    +
    +
  • + + +
  • +
    +

    showOtherMonths

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Display dates in other months (non-selectable) at the start or end of the current month.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the showOtherMonths option specified. +
    +
    +
    $('.selector').datepicker({ showOtherMonths: true });
    +
    + + +
    + Get or set the showOtherMonths option, after init. +
    +
    +
    //getter
    +var showOtherMonths = $('.selector').datepicker('option', 'showOtherMonths');
    +//setter
    +$('.selector').datepicker('option', 'showOtherMonths', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    stepMonths

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    1
    + +
    +
    +
    +

    Set how many months to move when clicking the Previous/Next links.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the stepMonths option specified. +
    +
    +
    $('.selector').datepicker({ stepMonths: 3 });
    +
    + + +
    + Get or set the stepMonths option, after init. +
    +
    +
    //getter
    +var stepMonths = $('.selector').datepicker('option', 'stepMonths');
    +//setter
    +$('.selector').datepicker('option', 'stepMonths', 3);
    +
    + +
    +
    +
  • + + +
  • +
    +

    yearRange

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    '-10:+10'
    + +
    +
    +
    +

    Control the range of years displayed in the year drop-down: either relative to current year (-nn:+nn) or absolute (nnnn:nnnn).

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a datepicker with the yearRange option specified. +
    +
    +
    $('.selector').datepicker({ yearRange: '2000:2010' });
    +
    + + +
    + Get or set the yearRange option, after init. +
    +
    +
    //getter
    +var yearRange = $('.selector').datepicker('option', 'yearRange');
    +//setter
    +$('.selector').datepicker('option', 'yearRange', '2000:2010');
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    beforeShow

    +
    +
    +
    function(input)
    +
    +
    +
    +

    Can be a function that takes an input field and current datepicker instance and returns an options object to update the datepicker with. It is called just before the datepicker is displayed.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the beforeShow event as an init option. +
    +
    +
    $('.selector').datepicker({
    +   beforeShow: function(input) { ... }
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    beforeShowDay

    +
    +
    +
    function(date)
    +
    +
    +
    +

    The function takes a date as a parameter and must return an array with [0] equal to true/false indicating whether or not this date is selectable, [1] equal to a CSS class name(s) or '' for the default presentation and [2] an optional popup tooltip for this date. It is called for each day in the datepicker before is it displayed.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the beforeShowDay event as an init option. +
    +
    +
    $('.selector').datepicker({
    +   beforeShowDay: function(date) { ... }
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    onChangeMonthYear

    +
    +
    +
    function(year, month, inst)
    +
    +
    +
    +

    Allows you to define your own event when the datepicker moves to a new month and/or year. The function receives the selected year, month (1-12), and the datepicker instance as parameters. this refers to the associated input field.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the onChangeMonthYear event as an init option. +
    +
    +
    $('.selector').datepicker({
    +   onChangeMonthYear: function(year, month, inst) { ... }
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    onClose

    +
    +
    +
    function(dateText, inst)
    +
    +
    +
    +

    Allows you to define your own event when the datepicker is closed, whether or not a date is selected. The function receives the selected date as text and the datepicker instance as parameters. this refers to the associated input field.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the onClose event as an init option. +
    +
    +
    $('.selector').datepicker({
    +   onClose: function(dateText, inst) { ... }
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    onSelect

    +
    +
    +
    function(dateText, inst)
    +
    +
    +
    +

    Allows you to define your own event when the datepicker is selected. The function receives the selected date as text and the datepicker instance as parameters. this refers to the associated input field.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the onSelect event as an init option. +
    +
    +
    $('.selector').datepicker({
    +   onSelect: function(dateText, inst) { ... }
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .datepicker( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the datepicker functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .datepicker( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the datepicker.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .datepicker( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the datepicker.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .datepicker( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any datepicker option. If no value is specified, will act as a getter.

    +
    +
  • + + +
  • +
    +

    dialog

    +
    +
    Signature:
    +
    .datepicker( 'dialog' + +, dateText + +, [onSelect] + +, [settings] + +, [pos] )
    +
    +
    +
    +

    Open a datepicker in a "dialog" box. +

    dateText: the initial date for the date picker. +

    onSelect: A callback function when a date is selected. The function receives the date text and date picker instance as parameters. +

    settings: The new settings for the date picker. +

    pos: The position of the top/left of the dialog as [x, y] or a MouseEvent that contains the coordinates. If not specified the dialog is centered on the screen.

    +
    +
  • + + +
  • +
    +

    isDisabled

    +
    +
    Signature:
    +
    .datepicker( 'isDisabled' + + + + + + + +)
    +
    +
    +
    +

    Determine whether a date picker has been disabled.

    +
    +
  • + + +
  • +
    +

    hide

    +
    +
    Signature:
    +
    .datepicker( 'hide' + +, [speed] + + + + + +)
    +
    +
    +
    +

    Close a previously opened date picker. +

    speed: The speed at which to close the date picker.

    +
    +
  • + + +
  • +
    +

    show

    +
    +
    Signature:
    +
    .datepicker( 'show' + + + + + + + +)
    +
    +
    +
    +

    Call up a previously attached date picker.

    +
    +
  • + + +
  • +
    +

    getDate

    +
    +
    Signature:
    +
    .datepicker( 'getDate' + + + + + + + +)
    +
    +
    +
    +

    Returns the current date for the datepicker.

    +
    +
  • + + +
  • +
    +

    setDate

    +
    +
    Signature:
    +
    .datepicker( 'setDate' + +, date + + + + + +)
    +
    +
    +
    +

    Sets the current date for the datepicker. The new date may also be a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +7d'), or null for today.

    +
    +
  • + +
+
+
+

Theming

+

The jQuery UI Datepicker plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.datepicker.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <div id="ui-datepicker-div" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-helper-hidden-accessible">
+   <div class="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all">
+      <a class="ui-datepicker-prev ui-corner-all">title="Prev"><span class="ui-icon ui-icon-circle-triangle-w">Prev</span></a>
+      <a class="ui-datepicker-next ui-corner-all" title="Next"><span class="ui-icon ui-icon-circle-triangle-e">Next</span></a>
+      <div class="ui-datepicker-title">
+         <span class="ui-datepicker-month">January</span><span class="ui-datepicker-year">2009</span>
+      </div>
+   </div>
+   <table class="ui-datepicker-calendar">
+      <thead>
+      <tr>
+         <th class="ui-datepicker-week-end"><span title="Sunday">Su</span></th>
+         ...
+      </tr>
+      </thead>
+      <tbody><tr>
+         <td class="ui-datepicker-week-end ui-datepicker-other-month "> 1 </td>
+         ...
+      </tr>
+      </tbody>
+   </table>
+   <div class="ui-datepicker-buttonpane ui-widget-content">
+      <button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all">Today</button>
+      <button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all">Done</button>
+   </div>
+</div>
+

+ + Note: This is a sample of markup generated by the datepicker plugin, not markup you should use to create a datepicker. The only markup needed for that is <input type="text" /> or <div></div>. + +

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/dialog.html b/media/js/development-bundle/docs/dialog.html new file mode 100644 index 0000000..b763298 --- /dev/null +++ b/media/js/development-bundle/docs/dialog.html @@ -0,0 +1,1520 @@ +

+

+
+

jQuery UI Dialog

+
+

Overview

+
+ A dialog is a floating window that contains a title bar and a content area. The dialog window can be moved, resized and closed with the 'x' icon by default. +

If the content length exceeds the maximum height, a scrollbar will automatically appear. +

A bottom button bar and semi-transparent modal overlay layer are common options that can be added. +

+A call to $(foo).dialog() initializes a dialog. If you want a click to open a dialog, use $(foo).dialog('open'), but if the dialog hasn't been destroyed, the $(foo).dialog() init call is only required once, not on each click. +
+
+

Dependencies

+
    +
  • UI Core
  • +
  • UI Draggable (Optional)
  • +
  • UI Resizable (Optional)
  • +
+
+
+

Example

+
+ +

+A simple jQuery UI Dialog.
+

+
$("#dialog").dialog();
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.draggable.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.resizable.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.dialog.js"></script>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#dialog").dialog();
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div id="dialog" title="Dialog Title">I'm in a dialog</div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    autoOpen

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    When autoOpen is true the dialog will open automatically when dialog is called. If false it will stay hidden until .dialog("open") is called on it.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the autoOpen option specified. +
    +
    +
    $('.selector').dialog({ autoOpen: false });
    +
    + + +
    + Get or set the autoOpen option, after init. +
    +
    +
    //getter
    +var autoOpen = $('.selector').dialog('option', 'autoOpen');
    +//setter
    +$('.selector').dialog('option', 'autoOpen', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    bgiframe

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    When true, the bgiframe plugin will be used, to fix the issue in IE6 where select boxes show on top of other elements, regardless of zIndex. Requires including the bgiframe plugin. Future versions may not require a separate plugin.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the bgiframe option specified. +
    +
    +
    $('.selector').dialog({ bgiframe: true });
    +
    + + +
    + Get or set the bgiframe option, after init. +
    +
    +
    //getter
    +var bgiframe = $('.selector').dialog('option', 'bgiframe');
    +//setter
    +$('.selector').dialog('option', 'bgiframe', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    buttons

    +
    +
    Type:
    +
    Object
    + +
    Default:
    +
    { }
    + +
    +
    +
    +

    Specifies which buttons should be displayed on the dialog. The property key is the text of the button. The value is the callback function for when the button is clicked. The context of the callback is the dialog element; if you need access to the button, it is available as the target of the event object. +

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the buttons option specified. +
    +
    +
    $('.selector').dialog({ buttons: { "Ok": function() { $(this).dialog("close"); } } });
    +
    + + +
    + Get or set the buttons option, after init. +
    +
    +
    //getter
    +var buttons = $('.selector').dialog('option', 'buttons');
    +//setter
    +$('.selector').dialog('option', 'buttons', { "Ok": function() { $(this).dialog("close"); } });
    +
    + +
    +
    +
  • + + +
  • +
    +

    closeOnEscape

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    Specifies whether the dialog should close when it has focus and the user presses the esacpe (ESC) key.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the closeOnEscape option specified. +
    +
    +
    $('.selector').dialog({ closeOnEscape: false });
    +
    + + +
    + Get or set the closeOnEscape option, after init. +
    +
    +
    //getter
    +var closeOnEscape = $('.selector').dialog('option', 'closeOnEscape');
    +//setter
    +$('.selector').dialog('option', 'closeOnEscape', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    dialogClass

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    ''
    + +
    +
    +
    +

    The specified class name(s) will be added to the dialog, for additional theming.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the dialogClass option specified. +
    +
    +
    $('.selector').dialog({ dialogClass: 'alert' });
    +
    + + +
    + Get or set the dialogClass option, after init. +
    +
    +
    //getter
    +var dialogClass = $('.selector').dialog('option', 'dialogClass');
    +//setter
    +$('.selector').dialog('option', 'dialogClass', 'alert');
    +
    + +
    +
    +
  • + + +
  • +
    +

    draggable

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    If set to true, the dialog will be draggable will be draggable by the titlebar.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the draggable option specified. +
    +
    +
    $('.selector').dialog({ draggable: false });
    +
    + + +
    + Get or set the draggable option, after init. +
    +
    +
    //getter
    +var draggable = $('.selector').dialog('option', 'draggable');
    +//setter
    +$('.selector').dialog('option', 'draggable', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    height

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    'auto'
    + +
    +
    +
    +

    The height of the dialog, in pixels.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the height option specified. +
    +
    +
    $('.selector').dialog({ height: 530 });
    +
    + + +
    + Get or set the height option, after init. +
    +
    +
    //getter
    +var height = $('.selector').dialog('option', 'height');
    +//setter
    +$('.selector').dialog('option', 'height', 530);
    +
    + +
    +
    +
  • + + +
  • +
    +

    hide

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    null
    + +
    +
    +
    +

    The effect to be used when the dialog is closed.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the hide option specified. +
    +
    +
    $('.selector').dialog({ hide: 'slide' });
    +
    + + +
    + Get or set the hide option, after init. +
    +
    +
    //getter
    +var hide = $('.selector').dialog('option', 'hide');
    +//setter
    +$('.selector').dialog('option', 'hide', 'slide');
    +
    + +
    +
    +
  • + + +
  • +
    +

    maxHeight

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    The maximum height to which the dialog can be resized, in pixels.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the maxHeight option specified. +
    +
    +
    $('.selector').dialog({ maxHeight: 400 });
    +
    + + +
    + Get or set the maxHeight option, after init. +
    +
    +
    //getter
    +var maxHeight = $('.selector').dialog('option', 'maxHeight');
    +//setter
    +$('.selector').dialog('option', 'maxHeight', 400);
    +
    + +
    +
    +
  • + + +
  • +
    +

    maxWidth

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    The maximum width to which the dialog can be resized, in pixels.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the maxWidth option specified. +
    +
    +
    $('.selector').dialog({ maxWidth: 600 });
    +
    + + +
    + Get or set the maxWidth option, after init. +
    +
    +
    //getter
    +var maxWidth = $('.selector').dialog('option', 'maxWidth');
    +//setter
    +$('.selector').dialog('option', 'maxWidth', 600);
    +
    + +
    +
    +
  • + + +
  • +
    +

    minHeight

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    150
    + +
    +
    +
    +

    The minimum height to which the dialog can be resized, in pixels.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the minHeight option specified. +
    +
    +
    $('.selector').dialog({ minHeight: 300 });
    +
    + + +
    + Get or set the minHeight option, after init. +
    +
    +
    //getter
    +var minHeight = $('.selector').dialog('option', 'minHeight');
    +//setter
    +$('.selector').dialog('option', 'minHeight', 300);
    +
    + +
    +
    +
  • + + +
  • +
    +

    minWidth

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    150
    + +
    +
    +
    +

    The minimum width to which the dialog can be resized, in pixels.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the minWidth option specified. +
    +
    +
    $('.selector').dialog({ minWidth: 400 });
    +
    + + +
    + Get or set the minWidth option, after init. +
    +
    +
    //getter
    +var minWidth = $('.selector').dialog('option', 'minWidth');
    +//setter
    +$('.selector').dialog('option', 'minWidth', 400);
    +
    + +
    +
    +
  • + + +
  • +
    +

    modal

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set to true, the dialog will have modal behavior; other items on the page will be disabled (i.e. cannot be interacted with). Modal dialogs create an overlay below the dialog but above other page elements.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the modal option specified. +
    +
    +
    $('.selector').dialog({ modal: true });
    +
    + + +
    + Get or set the modal option, after init. +
    +
    +
    //getter
    +var modal = $('.selector').dialog('option', 'modal');
    +//setter
    +$('.selector').dialog('option', 'modal', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    position

    +
    +
    Type:
    +
    String, Array
    + +
    Default:
    +
    'center'
    + +
    +
    +
    +

    Specifies where the dialog should be displayed. Possible values: 'center', 'left', 'right', 'top', 'bottom', or an array containing a coordinate pair (in pixel offset from top left of viewport) or the possible string values (e.g. ['right','top'] for top right corner).

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the position option specified. +
    +
    +
    $('.selector').dialog({ position: 'top' });
    +
    + + +
    + Get or set the position option, after init. +
    +
    +
    //getter
    +var position = $('.selector').dialog('option', 'position');
    +//setter
    +$('.selector').dialog('option', 'position', 'top');
    +
    + +
    +
    +
  • + + +
  • +
    +

    resizable

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    If set to true, the dialog will be resizeable.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the resizable option specified. +
    +
    +
    $('.selector').dialog({ resizable: false });
    +
    + + +
    + Get or set the resizable option, after init. +
    +
    +
    //getter
    +var resizable = $('.selector').dialog('option', 'resizable');
    +//setter
    +$('.selector').dialog('option', 'resizable', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    show

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    null
    + +
    +
    +
    +

    The effect to be used when the dialog is opened.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the show option specified. +
    +
    +
    $('.selector').dialog({ show: 'slide' });
    +
    + + +
    + Get or set the show option, after init. +
    +
    +
    //getter
    +var show = $('.selector').dialog('option', 'show');
    +//setter
    +$('.selector').dialog('option', 'show', 'slide');
    +
    + +
    +
    +
  • + + +
  • +
    +

    stack

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    Specifies whether the dialog will stack on top of other dialogs. This will cause the dialog to move to the front of other dialogs when it gains focus.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the stack option specified. +
    +
    +
    $('.selector').dialog({ stack: false });
    +
    + + +
    + Get or set the stack option, after init. +
    +
    +
    //getter
    +var stack = $('.selector').dialog('option', 'stack');
    +//setter
    +$('.selector').dialog('option', 'stack', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    title

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    ''
    + +
    +
    +
    +

    Specifies the title of the dialog. The title can also be specified by the title attribute on the dialog source element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the title option specified. +
    +
    +
    $('.selector').dialog({ title: 'Dialog Title' });
    +
    + + +
    + Get or set the title option, after init. +
    +
    +
    //getter
    +var title = $('.selector').dialog('option', 'title');
    +//setter
    +$('.selector').dialog('option', 'title', 'Dialog Title');
    +
    + +
    +
    +
  • + + +
  • +
    +

    width

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    300
    + +
    +
    +
    +

    The width of the dialog, in pixels.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the width option specified. +
    +
    +
    $('.selector').dialog({ width: 460 });
    +
    + + +
    + Get or set the width option, after init. +
    +
    +
    //getter
    +var width = $('.selector').dialog('option', 'width');
    +//setter
    +$('.selector').dialog('option', 'width', 460);
    +
    + +
    +
    +
  • + + +
  • +
    +

    zIndex

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    1000
    + +
    +
    +
    +

    The starting z-index for the dialog.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a dialog with the zIndex option specified. +
    +
    +
    $('.selector').dialog({ zIndex: 3999 });
    +
    + + +
    + Get or set the zIndex option, after init. +
    +
    +
    //getter
    +var zIndex = $('.selector').dialog('option', 'zIndex');
    +//setter
    +$('.selector').dialog('option', 'zIndex', 3999);
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    beforeclose

    +
    +
    Type:
    +
    dialogbeforeclose
    +
    +
    +
    +

    This event is triggered when a dialog attempts to close. If the beforeclose event handler (callback function) returns false, the close will be prevented.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the beforeclose event as an init option. +
    +
    +
    $('.selector').dialog({
    +   beforeclose: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the beforeclose event by type: dialogbeforeclose. +
    +
    +
    $('.selector').bind('dialogbeforeclose', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    open

    +
    +
    Type:
    +
    dialogopen
    +
    +
    +
    +

    This event is triggered when dialog is opened.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the open event as an init option. +
    +
    +
    $('.selector').dialog({
    +   open: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the open event by type: dialogopen. +
    +
    +
    $('.selector').bind('dialogopen', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    focus

    +
    +
    Type:
    +
    dialogfocus
    +
    +
    +
    +

    This event is triggered when the dialog gains focus.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the focus event as an init option. +
    +
    +
    $('.selector').dialog({
    +   focus: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the focus event by type: dialogfocus. +
    +
    +
    $('.selector').bind('dialogfocus', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    dragStart

    +
    +
    Type:
    +
    dragStart
    +
    +
    +
    +

    This event is triggered at the beginning of the dialog being dragged.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the dragStart event as an init option. +
    +
    +
    $('.selector').dialog({
    +   dragStart: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the dragStart event by type: dragStart. +
    +
    +
    $('.selector').bind('dragStart', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    drag

    +
    +
    Type:
    +
    drag
    +
    +
    +
    +

    This event is triggered when the dialog is dragged.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the drag event as an init option. +
    +
    +
    $('.selector').dialog({
    +   drag: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the drag event by type: drag. +
    +
    +
    $('.selector').bind('drag', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    dragStop

    +
    +
    Type:
    +
    dragStop
    +
    +
    +
    +

    This event is triggered after the dialog has been dragged.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the dragStop event as an init option. +
    +
    +
    $('.selector').dialog({
    +   dragStop: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the dragStop event by type: dragStop. +
    +
    +
    $('.selector').bind('dragStop', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    resizeStart

    +
    +
    Type:
    +
    resizeStart
    +
    +
    +
    +

    This event is triggered at the beginning of the dialog being resized.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the resizeStart event as an init option. +
    +
    +
    $('.selector').dialog({
    +   resizeStart: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the resizeStart event by type: resizeStart. +
    +
    +
    $('.selector').bind('resizeStart', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    resize

    +
    +
    Type:
    +
    resize
    +
    +
    +
    +

    This event is triggered when the dialog is resized.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the resize event as an init option. +
    +
    +
    $('.selector').dialog({
    +   resize: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the resize event by type: resize. +
    +
    +
    $('.selector').bind('resize', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    resizeStop

    +
    +
    Type:
    +
    resizeStop
    +
    +
    +
    +

    This event is triggered after the dialog has been resized.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the resizeStop event as an init option. +
    +
    +
    $('.selector').dialog({
    +   resizeStop: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the resizeStop event by type: resizeStop. +
    +
    +
    $('.selector').bind('resizeStop', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    close

    +
    +
    Type:
    +
    dialogclose
    +
    +
    +
    +

    This event is triggered when the dialog is closed.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the close event as an init option. +
    +
    +
    $('.selector').dialog({
    +   close: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the close event by type: dialogclose. +
    +
    +
    $('.selector').bind('dialogclose', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .dialog( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the dialog functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .dialog( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the dialog.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .dialog( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the dialog.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .dialog( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any dialog option. If no value is specified, will act as a getter.

    +
    +
  • + + +
  • +
    +

    close

    +
    +
    Signature:
    +
    .dialog( 'close' + + + + + + + +)
    +
    +
    +
    +

    Close the dialog.

    +
    +
  • + + +
  • +
    +

    isOpen

    +
    +
    Signature:
    +
    .dialog( 'isOpen' + + + + + + + +)
    +
    +
    +
    +

    Returns true if the dialog is currently open.

    +
    +
  • + + +
  • +
    +

    moveToTop

    +
    +
    Signature:
    +
    .dialog( 'moveToTop' + + + + + + + +)
    +
    +
    +
    +

    Move the dialog to the top of the dialogs stack.

    +
    +
  • + + +
  • +
    +

    open

    +
    +
    Signature:
    +
    .dialog( 'open' + + + + + + + +)
    +
    +
    +
    +

    Open the dialog.

    +
    +
  • + +
+
+
+

Theming

+

The jQuery UI Dialog plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.dialog.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <div class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-draggable ui-resizable">
+   <div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix">
+      <span id="ui-dialog-title-dialog" class="ui-dialog-title">Dialog title</span>
+      <a class="ui-dialog-titlebar-close ui-corner-all" href="#"><span class="ui-icon ui-icon-closethick">close</span></a>
+   </div>
+   <div style="height: 200px; min-height: 109px; width: auto;" class="ui-dialog-content ui-widget-content" id="dialog">
+      <p>Dialog content goes here.</p>
+   </div>
+</div>
+

+ + Note: This is a sample of markup generated by the dialog plugin, not markup you should use to create a dialog. The only markup needed for that is <div></div>. + +

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/draggable.html b/media/js/development-bundle/docs/draggable.html new file mode 100644 index 0000000..8e45fc2 --- /dev/null +++ b/media/js/development-bundle/docs/draggable.html @@ -0,0 +1,1448 @@ + + +
+

jQuery UI Draggable

+
+

Overview

+
+

The jQuery UI Draggable plugin makes selected elements draggable by mouse.

+

Draggable elements gets a class of ui-draggable. During drag the element also gets a class of ui-draggable-dragging. If you want not just drag, but drag-and-drop, see the jQuery UI Droppable plugin, which provides a drop target for draggables.

+

All callbacks (start, stop, drag) receive two arguments: The original browser event and a prepared ui object, view below for a documentation of this object (if you name your second argument 'ui'):

+
    +
  • ui.helper - the jQuery object representing the helper that's being dragged
  • +
  • ui.position - current position of the helper as { top, left } object, relative to the offset element
  • +
  • ui.offset - current absolute position of the helper as { top, left } object, relative to page
  • +
+
+
+

Dependencies

+
    +
  • UI Core
  • +
+
+
+

Example

+
+ +

+Initialize a draggable with default options.
+

+
$("#draggable").draggable();
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.draggable.js"></script>
+  <style type="text/css">
+    #draggable { width: 100px; height: 70px; background: silver; }
+  </style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#draggable").draggable();
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div id="draggable">Drag me</div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    addClasses

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    If set to false, will prevent the ui-draggable class from being added. This may be desired as a performance optimization when calling .draggable() init on many hundreds of elements.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the addClasses option specified. +
    +
    +
    $('.selector').draggable({ addClasses: false });
    +
    + + +
    + Get or set the addClasses option, after init. +
    +
    +
    //getter
    +var addClasses = $('.selector').draggable('option', 'addClasses');
    +//setter
    +$('.selector').draggable('option', 'addClasses', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    appendTo

    +
    +
    Type:
    +
    Element, Selector
    + +
    Default:
    +
    'parent'
    + +
    +
    +
    +

    The element passed to or selected by the appendTo option will be used as the draggable helper's container during dragging. By default, the helper is appended to the same container as the draggable.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the appendTo option specified. +
    +
    +
    $('.selector').draggable({ appendTo: 'body' });
    +
    + + +
    + Get or set the appendTo option, after init. +
    +
    +
    //getter
    +var appendTo = $('.selector').draggable('option', 'appendTo');
    +//setter
    +$('.selector').draggable('option', 'appendTo', 'body');
    +
    + +
    +
    +
  • + + +
  • +
    +

    axis

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Constrains dragging to either the horizontal (x) or vertical (y) axis. Possible values: 'x', 'y'.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the axis option specified. +
    +
    +
    $('.selector').draggable({ axis: 'x' });
    +
    + + +
    + Get or set the axis option, after init. +
    +
    +
    //getter
    +var axis = $('.selector').draggable('option', 'axis');
    +//setter
    +$('.selector').draggable('option', 'axis', 'x');
    +
    + +
    +
    +
  • + + +
  • +
    +

    cancel

    +
    +
    Type:
    +
    Selector
    + +
    Default:
    +
    ':input,option'
    + +
    +
    +
    +

    Prevents dragging from starting on specified elements.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the cancel option specified. +
    +
    +
    $('.selector').draggable({ cancel: 'button' });
    +
    + + +
    + Get or set the cancel option, after init. +
    +
    +
    //getter
    +var cancel = $('.selector').draggable('option', 'cancel');
    +//setter
    +$('.selector').draggable('option', 'cancel', 'button');
    +
    + +
    +
    +
  • + + +
  • +
    +

    connectToSortable

    +
    +
    Type:
    +
    Selector
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Allows the draggable to be dropped onto the specified sortables. If this option is used (helper must be set to 'clone' in order to work flawlessly), a draggable can be dropped onto a sortable list and then becomes part of it. +

    Note: Specifying this option as an array of selectors has been removed.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the connectToSortable option specified. +
    +
    +
    $('.selector').draggable({ connectToSortable: 'ul#myList' });
    +
    + + +
    + Get or set the connectToSortable option, after init. +
    +
    +
    //getter
    +var connectToSortable = $('.selector').draggable('option', 'connectToSortable');
    +//setter
    +$('.selector').draggable('option', 'connectToSortable', 'ul#myList');
    +
    + +
    +
    +
  • + + +
  • +
    +

    containment

    +
    +
    Type:
    +
    Selector, Element, String, Array
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Constrains dragging to within the bounds of the specified element or region. Possible string values: 'parent', 'document', 'window', [x1, y1, x2, y2].

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the containment option specified. +
    +
    +
    $('.selector').draggable({ containment: 'parent' });
    +
    + + +
    + Get or set the containment option, after init. +
    +
    +
    //getter
    +var containment = $('.selector').draggable('option', 'containment');
    +//setter
    +$('.selector').draggable('option', 'containment', 'parent');
    +
    + +
    +
    +
  • + + +
  • +
    +

    cursor

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'auto'
    + +
    +
    +
    +

    The css cursor during the drag operation.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the cursor option specified. +
    +
    +
    $('.selector').draggable({ cursor: 'crosshair' });
    +
    + + +
    + Get or set the cursor option, after init. +
    +
    +
    //getter
    +var cursor = $('.selector').draggable('option', 'cursor');
    +//setter
    +$('.selector').draggable('option', 'cursor', 'crosshair');
    +
    + +
    +
    +
  • + + +
  • +
    +

    cursorAt

    +
    +
    Type:
    +
    Object
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Moves the dragging helper so the cursor always appears to drag from the same position. Coordinates can be given as a hash using a combination of one or two keys: { top, left, right, bottom }.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the cursorAt option specified. +
    +
    +
    $('.selector').draggable({ cursorAt: { left: 5 } });
    +
    + + +
    + Get or set the cursorAt option, after init. +
    +
    +
    //getter
    +var cursorAt = $('.selector').draggable('option', 'cursorAt');
    +//setter
    +$('.selector').draggable('option', 'cursorAt', { left: 5 });
    +
    + +
    +
    +
  • + + +
  • +
    +

    delay

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    Time in milliseconds after mousedown until dragging should start. This option can be used to prevent unwanted drags when clicking on an element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the delay option specified. +
    +
    +
    $('.selector').draggable({ delay: 500 });
    +
    + + +
    + Get or set the delay option, after init. +
    +
    +
    //getter
    +var delay = $('.selector').draggable('option', 'delay');
    +//setter
    +$('.selector').draggable('option', 'delay', 500);
    +
    + +
    +
    +
  • + + +
  • +
    +

    distance

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    1
    + +
    +
    +
    +

    Distance in pixels after mousedown the mouse must move before dragging should start. This option can be used to prevent unwanted drags when clicking on an element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the distance option specified. +
    +
    +
    $('.selector').draggable({ distance: 30 });
    +
    + + +
    + Get or set the distance option, after init. +
    +
    +
    //getter
    +var distance = $('.selector').draggable('option', 'distance');
    +//setter
    +$('.selector').draggable('option', 'distance', 30);
    +
    + +
    +
    +
  • + + +
  • +
    +

    grid

    +
    +
    Type:
    +
    Array
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Snaps the dragging helper to a grid, every x and y pixels. Array values: [x, y]

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the grid option specified. +
    +
    +
    $('.selector').draggable({ grid: [50, 20] });
    +
    + + +
    + Get or set the grid option, after init. +
    +
    +
    //getter
    +var grid = $('.selector').draggable('option', 'grid');
    +//setter
    +$('.selector').draggable('option', 'grid', [50, 20]);
    +
    + +
    +
    +
  • + + +
  • +
    +

    handle

    +
    +
    Type:
    +
    Element, Selector
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If specified, restricts drag start click to the specified element(s).

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the handle option specified. +
    +
    +
    $('.selector').draggable({ handle: 'h2' });
    +
    + + +
    + Get or set the handle option, after init. +
    +
    +
    //getter
    +var handle = $('.selector').draggable('option', 'handle');
    +//setter
    +$('.selector').draggable('option', 'handle', 'h2');
    +
    + +
    +
    +
  • + + +
  • +
    +

    helper

    +
    +
    Type:
    +
    String, Function
    + +
    Default:
    +
    'original'
    + +
    +
    +
    +

    Allows for a helper element to be used for dragging display. Possible values: 'original', 'clone', Function. If a function is specified, it must return a DOMElement.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the helper option specified. +
    +
    +
    $('.selector').draggable({ helper: 'clone' });
    +
    + + +
    + Get or set the helper option, after init. +
    +
    +
    //getter
    +var helper = $('.selector').draggable('option', 'helper');
    +//setter
    +$('.selector').draggable('option', 'helper', 'clone');
    +
    + +
    +
    +
  • + + +
  • +
    +

    iframeFix

    +
    +
    Type:
    +
    Boolean, Selector
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Prevent iframes from capturing the mousemove events during a drag. Useful in combination with cursorAt, or in any case, if the mouse cursor is not over the helper. If set to true, transparent overlays will be placed over all iframes on the page. If a selector is supplied, the matched iframes will have an overlay placed over them.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the iframeFix option specified. +
    +
    +
    $('.selector').draggable({ iframeFix: true });
    +
    + + +
    + Get or set the iframeFix option, after init. +
    +
    +
    //getter
    +var iframeFix = $('.selector').draggable('option', 'iframeFix');
    +//setter
    +$('.selector').draggable('option', 'iframeFix', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    opacity

    +
    +
    Type:
    +
    Float
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Opacity for the helper while being dragged.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the opacity option specified. +
    +
    +
    $('.selector').draggable({ opacity: 0.35 });
    +
    + + +
    + Get or set the opacity option, after init. +
    +
    +
    //getter
    +var opacity = $('.selector').draggable('option', 'opacity');
    +//setter
    +$('.selector').draggable('option', 'opacity', 0.35);
    +
    + +
    +
    +
  • + + +
  • +
    +

    refreshPositions

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set to true, all droppable positions are calculated on every mousemove. Caution: This solves issues on highly dynamic pages, but dramatically decreases performance.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the refreshPositions option specified. +
    +
    +
    $('.selector').draggable({ refreshPositions: true });
    +
    + + +
    + Get or set the refreshPositions option, after init. +
    +
    +
    //getter
    +var refreshPositions = $('.selector').draggable('option', 'refreshPositions');
    +//setter
    +$('.selector').draggable('option', 'refreshPositions', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    revert

    +
    +
    Type:
    +
    Boolean, String
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set to true, the element will return to its start position when dragging stops. Possible string values: 'valid', 'invalid'. If set to invalid, revert will only occur if the draggable has not been dropped on a droppable. For valid, it's the other way around.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the revert option specified. +
    +
    +
    $('.selector').draggable({ revert: true });
    +
    + + +
    + Get or set the revert option, after init. +
    +
    +
    //getter
    +var revert = $('.selector').draggable('option', 'revert');
    +//setter
    +$('.selector').draggable('option', 'revert', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    revertDuration

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    500
    + +
    +
    +
    +

    The duration of the revert animation, in milliseconds. Ignored if revert is false.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the revertDuration option specified. +
    +
    +
    $('.selector').draggable({ revertDuration: 1000 });
    +
    + + +
    + Get or set the revertDuration option, after init. +
    +
    +
    //getter
    +var revertDuration = $('.selector').draggable('option', 'revertDuration');
    +//setter
    +$('.selector').draggable('option', 'revertDuration', 1000);
    +
    + +
    +
    +
  • + + +
  • +
    +

    scope

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'default'
    + +
    +
    +
    +

    Used to group sets of draggable and droppable items, in addition to droppable's accept option. A draggable with the same scope value as a droppable will be accepted by the droppable.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the scope option specified. +
    +
    +
    $('.selector').draggable({ scope: 'tasks' });
    +
    + + +
    + Get or set the scope option, after init. +
    +
    +
    //getter
    +var scope = $('.selector').draggable('option', 'scope');
    +//setter
    +$('.selector').draggable('option', 'scope', 'tasks');
    +
    + +
    +
    +
  • + + +
  • +
    +

    scroll

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    If set to true, container auto-scrolls while dragging.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the scroll option specified. +
    +
    +
    $('.selector').draggable({ scroll: false });
    +
    + + +
    + Get or set the scroll option, after init. +
    +
    +
    //getter
    +var scroll = $('.selector').draggable('option', 'scroll');
    +//setter
    +$('.selector').draggable('option', 'scroll', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    scrollSensitivity

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    20
    + +
    +
    +
    +

    Distance in pixels from the edge of the viewport after which the viewport should scroll. Distance is relative to pointer, not the draggable.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the scrollSensitivity option specified. +
    +
    +
    $('.selector').draggable({ scrollSensitivity: 40 });
    +
    + + +
    + Get or set the scrollSensitivity option, after init. +
    +
    +
    //getter
    +var scrollSensitivity = $('.selector').draggable('option', 'scrollSensitivity');
    +//setter
    +$('.selector').draggable('option', 'scrollSensitivity', 40);
    +
    + +
    +
    +
  • + + +
  • +
    +

    scrollSpeed

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    20
    + +
    +
    +
    +

    The speed at which the window should scroll once the mouse pointer gets within the scrollSensitivity distance.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the scrollSpeed option specified. +
    +
    +
    $('.selector').draggable({ scrollSpeed: 40 });
    +
    + + +
    + Get or set the scrollSpeed option, after init. +
    +
    +
    //getter
    +var scrollSpeed = $('.selector').draggable('option', 'scrollSpeed');
    +//setter
    +$('.selector').draggable('option', 'scrollSpeed', 40);
    +
    + +
    +
    +
  • + + +
  • +
    +

    snap

    +
    +
    Type:
    +
    Boolean, Selector
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set to a selector or to true (equivalent to '.ui-draggable'), the draggable will snap to the edges of the selected elements when near an edge of the element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the snap option specified. +
    +
    +
    $('.selector').draggable({ snap: true });
    +
    + + +
    + Get or set the snap option, after init. +
    +
    +
    //getter
    +var snap = $('.selector').draggable('option', 'snap');
    +//setter
    +$('.selector').draggable('option', 'snap', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    snapMode

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'both'
    + +
    +
    +
    +

    Determines which edges of snap elements the draggable will snap to. Ignored if snap is false. Possible values: 'inner', 'outer', 'both'

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the snapMode option specified. +
    +
    +
    $('.selector').draggable({ snapMode: 'outer' });
    +
    + + +
    + Get or set the snapMode option, after init. +
    +
    +
    //getter
    +var snapMode = $('.selector').draggable('option', 'snapMode');
    +//setter
    +$('.selector').draggable('option', 'snapMode', 'outer');
    +
    + +
    +
    +
  • + + +
  • +
    +

    snapTolerance

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    20
    + +
    +
    +
    +

    The distance in pixels from the snap element edges at which snapping should occur. Ignored if snap is false.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the snapTolerance option specified. +
    +
    +
    $('.selector').draggable({ snapTolerance: 40 });
    +
    + + +
    + Get or set the snapTolerance option, after init. +
    +
    +
    //getter
    +var snapTolerance = $('.selector').draggable('option', 'snapTolerance');
    +//setter
    +$('.selector').draggable('option', 'snapTolerance', 40);
    +
    + +
    +
    +
  • + + +
  • +
    +

    stack

    +
    +
    Type:
    +
    Object
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Controls the z-Index of the defined group (key 'group' in the hash, accepts jQuery selector) automatically, always brings to front the dragged item. Very useful in things like window managers. Optionally, a 'min' key can be set, so the zIndex cannot go below that value.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the stack option specified. +
    +
    +
    $('.selector').draggable({ stack: { group: 'products', min: 50 } });
    +
    + + +
    + Get or set the stack option, after init. +
    +
    +
    //getter
    +var stack = $('.selector').draggable('option', 'stack');
    +//setter
    +$('.selector').draggable('option', 'stack', { group: 'products', min: 50 });
    +
    + +
    +
    +
  • + + +
  • +
    +

    zIndex

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    z-index for the helper while being dragged.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a draggable with the zIndex option specified. +
    +
    +
    $('.selector').draggable({ zIndex: 2700 });
    +
    + + +
    + Get or set the zIndex option, after init. +
    +
    +
    //getter
    +var zIndex = $('.selector').draggable('option', 'zIndex');
    +//setter
    +$('.selector').draggable('option', 'zIndex', 2700);
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    start

    +
    +
    Type:
    +
    dragstart
    +
    +
    +
    +

    This event is triggered when dragging starts.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the start event as an init option. +
    +
    +
    $('.selector').draggable({
    +   start: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the start event by type: dragstart. +
    +
    +
    $('.selector').bind('dragstart', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    drag

    +
    +
    Type:
    +
    drag
    +
    +
    +
    +

    This event is triggered when the mouse is moved during the dragging.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the drag event as an init option. +
    +
    +
    $('.selector').draggable({
    +   drag: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the drag event by type: drag. +
    +
    +
    $('.selector').bind('drag', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    stop

    +
    +
    Type:
    +
    dragstop
    +
    +
    +
    +

    This event is triggered when dragging stops.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the stop event as an init option. +
    +
    +
    $('.selector').draggable({
    +   stop: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the stop event by type: dragstop. +
    +
    +
    $('.selector').bind('dragstop', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .draggable( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the draggable functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .draggable( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the draggable.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .draggable( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the draggable.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .draggable( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any draggable option. If no value is specified, will act as a getter.

    +
    +
  • + + +
+
+
+

Theming

+

The jQuery UI Draggable plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.draggable.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <div class="ui-draggable"></div> +

+ + Note: This is a sample of markup generated by the draggable plugin, not markup you should use to create a draggable. The only markup needed for that is <div></div>. + +

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/droppable.html b/media/js/development-bundle/docs/droppable.html new file mode 100644 index 0000000..7adf946 --- /dev/null +++ b/media/js/development-bundle/docs/droppable.html @@ -0,0 +1,704 @@ + + +
+

jQuery UI Droppable

+
+

Overview

+
+

The jQuery UI Droppable plugin makes selected elements droppable (meaning they accept being dropped on by draggables). You can specify which (individually) or which kind of draggables each will accept.

+

All callbacks receive two arguments: The original browser event and a prepared ui object, view below for a documentation of this object (if you name your second argument 'ui'):

+
    +
  • ui.draggable - current draggable element, a jQuery object.
  • +
  • ui.helper - current draggable helper, a jQuery object
  • +
  • ui.position - current position of the draggable helper { top: , left: }
  • +
  • ui.offset - current absolute position of the draggable helper { top: , left: }
  • +
+
+
+

Dependencies

+ +
+
+

Example

+
+ +

+Makes the div droppable (a drop target for a draggable).
+

+
$("#draggable").draggable();
+    $("#droppable").droppable({
+      drop: function() { alert('dropped'); }
+    });
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.draggable.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.droppable.js"></script>
+  <style type="text/css">
+    #draggable { width: 75px; height: 25px; background: silver; padding: 10px; }
+    #droppable { position: absolute; left: 250px; top: 0; width: 125px; height: 75px; background: gray; color: white; padding: 10px; }
+  </style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#draggable").draggable();
+    $("#droppable").droppable({
+      drop: function() { alert('dropped'); }
+    });
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div id="droppable">Drop here</div>
+<div id="draggable">Drag me</div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    accept

    +
    +
    Type:
    +
    Selector, Function
    + +
    Default:
    +
    '*'
    + +
    +
    +
    +

    All draggables that match the selector will be accepted. If a function is specified, the function will be called for each draggable on the page (passed as the first argument to the function), to provide a custom filter. The function should return true if the draggable should be accepted.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a droppable with the accept option specified. +
    +
    +
    $('.selector').droppable({ accept: '.special' });
    +
    + + +
    + Get or set the accept option, after init. +
    +
    +
    //getter
    +var accept = $('.selector').droppable('option', 'accept');
    +//setter
    +$('.selector').droppable('option', 'accept', '.special');
    +
    + +
    +
    +
  • + + +
  • +
    +

    activeClass

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If specified, the class will be added to the droppable while an acceptable draggable is being dragged.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a droppable with the activeClass option specified. +
    +
    +
    $('.selector').droppable({ activeClass: '.ui-state-highlight' });
    +
    + + +
    + Get or set the activeClass option, after init. +
    +
    +
    //getter
    +var activeClass = $('.selector').droppable('option', 'activeClass');
    +//setter
    +$('.selector').droppable('option', 'activeClass', '.ui-state-highlight');
    +
    + +
    +
    +
  • + + +
  • +
    +

    addClasses

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    If set to false, will prevent the ui-droppable class from being added. This may be desired as a performance optimization when calling .droppable() init on many hundreds of elements.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a droppable with the addClasses option specified. +
    +
    +
    $('.selector').droppable({ addClasses: false });
    +
    + + +
    + Get or set the addClasses option, after init. +
    +
    +
    //getter
    +var addClasses = $('.selector').droppable('option', 'addClasses');
    +//setter
    +$('.selector').droppable('option', 'addClasses', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    greedy

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If true, will prevent event propagation on nested droppables.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a droppable with the greedy option specified. +
    +
    +
    $('.selector').droppable({ greedy: true });
    +
    + + +
    + Get or set the greedy option, after init. +
    +
    +
    //getter
    +var greedy = $('.selector').droppable('option', 'greedy');
    +//setter
    +$('.selector').droppable('option', 'greedy', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    hoverClass

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If specified, the class will be added to the droppable while an acceptable draggable is being hovered.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a droppable with the hoverClass option specified. +
    +
    +
    $('.selector').droppable({ hoverClass: 'drophover' });
    +
    + + +
    + Get or set the hoverClass option, after init. +
    +
    +
    //getter
    +var hoverClass = $('.selector').droppable('option', 'hoverClass');
    +//setter
    +$('.selector').droppable('option', 'hoverClass', 'drophover');
    +
    + +
    +
    +
  • + + +
  • +
    +

    scope

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'default'
    + +
    +
    +
    +

    Used to group sets of draggable and droppable items, in addition to droppable's accept option. A draggable with the same scope value as a droppable will be accepted.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a droppable with the scope option specified. +
    +
    +
    $('.selector').droppable({ scope: 'tasks' });
    +
    + + +
    + Get or set the scope option, after init. +
    +
    +
    //getter
    +var scope = $('.selector').droppable('option', 'scope');
    +//setter
    +$('.selector').droppable('option', 'scope', 'tasks');
    +
    + +
    +
    +
  • + + +
  • +
    +

    tolerance

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'intersect'
    + +
    +
    +
    +

    Specifies which mode to use for testing whether a draggable is 'over' a droppable. Possible values: 'fit', 'intersect', 'pointer', 'touch'. +

    +
      +
    • fit: draggable overlaps the droppable entirely
    • +
    • intersect: draggable overlaps the droppable at least 50%
    • +
    • pointer: mouse pointer overlaps the droppable
    • +
    • touch: draggable overlaps the droppable any amount
    • +
    +

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a droppable with the tolerance option specified. +
    +
    +
    $('.selector').droppable({ tolerance: 'fit' });
    +
    + + +
    + Get or set the tolerance option, after init. +
    +
    +
    //getter
    +var tolerance = $('.selector').droppable('option', 'tolerance');
    +//setter
    +$('.selector').droppable('option', 'tolerance', 'fit');
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    activate

    +
    +
    Type:
    +
    dropactivate
    +
    +
    +
    +

    This event is triggered any time an accepted draggable starts dragging. This can be useful if you want to make the droppable 'light up' when it can be dropped on.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the activate event as an init option. +
    +
    +
    $('.selector').droppable({
    +   activate: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the activate event by type: dropactivate. +
    +
    +
    $('.selector').bind('dropactivate', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    deactivate

    +
    +
    Type:
    +
    dropdeactivate
    +
    +
    +
    +

    This event is triggered any time an accepted draggable stops dragging.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the deactivate event as an init option. +
    +
    +
    $('.selector').droppable({
    +   deactivate: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the deactivate event by type: dropdeactivate. +
    +
    +
    $('.selector').bind('dropdeactivate', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    over

    +
    +
    Type:
    +
    dropover
    +
    +
    +
    +

    This event is triggered as an accepted draggable is dragged 'over' (within the tolerance of) this droppable.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the over event as an init option. +
    +
    +
    $('.selector').droppable({
    +   over: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the over event by type: dropover. +
    +
    +
    $('.selector').bind('dropover', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    out

    +
    +
    Type:
    +
    dropout
    +
    +
    +
    +

    This event is triggered when an accepted draggable is dragged out (within the tolerance of) this droppable.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the out event as an init option. +
    +
    +
    $('.selector').droppable({
    +   out: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the out event by type: dropout. +
    +
    +
    $('.selector').bind('dropout', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    drop

    +
    +
    Type:
    +
    drop
    +
    +
    +
    +

    This event is triggered when an accepted draggable is dropped 'over' (within the tolerance of) this droppable. In the callback, $(this) represents the droppable the draggable is dropped on. +ui.draggable represents the draggable.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the drop event as an init option. +
    +
    +
    $('.selector').droppable({
    +   drop: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the drop event by type: drop. +
    +
    +
    $('.selector').bind('drop', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .droppable( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the droppable functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .droppable( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the droppable.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .droppable( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the droppable.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .droppable( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any droppable option. If no value is specified, will act as a getter.

    +
    +
  • + + +
+
+
+

Theming

+

The jQuery UI Droppable plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.droppable.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <div class="ui-droppable"></div> +

+ + Note: This is a sample of markup generated by the droppable plugin, not markup you should use to create a droppable. The only markup needed for that is <div></div>. + +

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/effect.html b/media/js/development-bundle/docs/effect.html new file mode 100644 index 0000000..439e6cd --- /dev/null +++ b/media/js/development-bundle/docs/effect.html @@ -0,0 +1,142 @@ + + +
+

jQuery UI effect

+
+

Overview

+
+

effect( effect, [options], [speed], [callback] )

+

Uses a specific effect on an element (without the show/hide logic).

+
+
+

Dependencies

+
    +
  • Effects Core
  • +
+
+
+

Example

+
+ +

+Apply the effect explode if you click on the element.
+

+
$("p").click(function () {
+      $("div").effect("explode");
+    });
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
+<script src="http://ui.jquery.com/latest/ui/effects.explode.js"></script>
+<style type="text/css">
+  div { margin: 0 auto; width: 100px; height: 80px; background: blue; position: relative; }
+</style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("p").click(function () {
+      $("div").effect("explode");
+    });
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<p>Click me</p><div></div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Arguments

+
    + +
  • +
    +

    effect

    +
    +
    Type:
    +
    String
    + +
    +
    +
    +

    The effect to be used. Possible values: 'blind', 'bounce', 'clip', 'drop', 'explode', 'fold', 'highlight', 'puff', 'pulsate', 'scale', 'shake', 'size', 'slide', 'transfer'.

    +
    +
  • + + +
  • +
    +

    options

    +
    +
    Type:
    +
    Hash
    + +
    Optional
    + +
    +
    +
    +

    A object/hash including specific options for the effect.

    +
    +
  • + + +
  • +
    +

    speed

    +
    +
    Type:
    +
    String, Number
    + +
    Optional
    + +
    +
    +
    +

    A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).

    +
    +
  • + + +
  • +
    +

    callback

    +
    +
    Type:
    +
    Function
    + +
    Optional
    + +
    +
    +
    +

    A function that is called after the effect is completed.

    +
    +
  • + +
+
+
+ +

+ + diff --git a/media/js/development-bundle/docs/hide.html b/media/js/development-bundle/docs/hide.html new file mode 100644 index 0000000..8ea9d59 --- /dev/null +++ b/media/js/development-bundle/docs/hide.html @@ -0,0 +1,143 @@ + + +
+

jQuery UI hide

+
+

Overview

+
+

hide( effect, [options], [speed], [callback] )

+

The enhanced hide method optionally accepts jQuery UI advanced effects.

+

Uses a specific effect on an element to hide the element if the first argument is an effect string.

+
+
+

Dependencies

+
    +
  • Effects Core
  • +
+
+
+

Example

+
+ +

+Apply the effect slide if you click on the p to hide a div.
+

+
$("p").click(function () {
+      $("div").hide("slide", {}, 1000);
+    });
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
+<script src="http://ui.jquery.com/latest/ui/effects.slide.js"></script>
+<style type="text/css">
+  div { margin: 0px; width: 100px; height: 80px; background: blue; position: relative; }
+</style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("p").click(function () {
+      $("div").hide("slide", {}, 1000);
+    });
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<p>Click me</p><div></div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Arguments

+
    + +
  • +
    +

    effect

    +
    +
    Type:
    +
    String
    + +
    +
    +
    +

    The effect to be used. Possible values: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'.

    +
    +
  • + + +
  • +
    +

    options

    +
    +
    Type:
    +
    Hash
    + +
    Optional
    + +
    +
    +
    +

    A object/hash including specific options for the effect.

    +
    +
  • + + +
  • +
    +

    speed

    +
    +
    Type:
    +
    String, Number
    + +
    Optional
    + +
    +
    +
    +

    A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).

    +
    +
  • + + +
  • +
    +

    callback

    +
    +
    Type:
    +
    Function
    + +
    Optional
    + +
    +
    +
    +

    A function that is called after the effect is completed.

    +
    +
  • + +
+
+
+ +

+ + diff --git a/media/js/development-bundle/docs/progressbar.html b/media/js/development-bundle/docs/progressbar.html new file mode 100644 index 0000000..0e42d5a --- /dev/null +++ b/media/js/development-bundle/docs/progressbar.html @@ -0,0 +1,295 @@ + + +
+

jQuery UI Progressbar

+
+

Overview

+
+

+The progress bar is designed to simply display the current % complete for a process. The bar is coded to be flexibly sized through CSS and will scale to fit inside it's parent container by default. +

+

+This is a determinate progress bar, meaning that it should only be used in situations where the system can accurately update the current status complete. A determinate progress bar should never fill from left to right, then loop back to empty for a single process -- if the actual percent complete status cannot be calculated, an indeterminate progress bar (coming soon) or spinner animation is a better way to provide user feedback. +

+
+
+

Dependencies

+
    +
  • UI Core
  • +
+
+
+

Example

+
+ +

+A simple jQuery UI Progressbar.
+

+
$("#progressbar").progressbar({ value: 37 });
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.progressbar.js"></script>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#progressbar").progressbar({ value: 37 });
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div id="progressbar"></div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    value

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    The value of the progressbar.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a progressbar with the value option specified. +
    +
    +
    $('.selector').progressbar({ value: 37 });
    +
    + + +
    + Get or set the value option, after init. +
    +
    +
    //getter
    +var value = $('.selector').progressbar('option', 'value');
    +//setter
    +$('.selector').progressbar('option', 'value', 37);
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    change

    +
    +
    Type:
    +
    progressbarchange
    +
    +
    +
    +

    This event is triggered when the value of the progressbar changes.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the change event as an init option. +
    +
    +
    $('.selector').progressbar({
    +   change: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the change event by type: progressbarchange. +
    +
    +
    $('.selector').bind('progressbarchange', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .progressbar( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the progressbar functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .progressbar( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the progressbar.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .progressbar( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the progressbar.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .progressbar( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any progressbar option. If no value is specified, will act as a getter.

    +
    +
  • + + +
  • +
    +

    value

    +
    +
    Signature:
    +
    .progressbar( 'value' + +, [value] + + + + + +)
    +
    +
    +
    +

    This method gets or sets the current value of the progressbar.

    +
    +
  • + +
+
+
+

Theming

+

The jQuery UI Progressbar plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.progressbar.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <div class="ui-progressbar ui-widget ui-widget-content ui-corner-all">
+    <div style="width: 37%;" class="ui-progressbar-value ui-widget-header ui-corner-left"></div>
+ </div> +

+ + Note: This is a sample of markup generated by the progressbar plugin, not markup you should use to create a progressbar. The only markup needed for that is <div></div>. + +

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/removeClass.html b/media/js/development-bundle/docs/removeClass.html new file mode 100644 index 0000000..b2b19e8 --- /dev/null +++ b/media/js/development-bundle/docs/removeClass.html @@ -0,0 +1,112 @@ + + +
+

jQuery UI removeClass

+
+

Overview

+
+

removeClass( [class], [duration] )

+

Removes all or specified class from each of the set of matched elements with an optional transition between the states.

+
+
+

Dependencies

+
    +
  • Effects Core
  • +
+
+
+

Example

+
+ +

+Removes the class 'selected' from the matched elements with a one second transition.
+

+
$("p").click(function () {
+      $(this).removeClass("selected", 1000);
+    });
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
+<style type="text/css">
+  p { cursor: pointer; font-size: 1.2em; }
+  .selected { color:red; }
+</style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("p").click(function () {
+      $(this).removeClass("selected", 1000);
+    });
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<p class="selected">Click me to remove 'selected' class.</p>
+<p class="selected">Click me to remove 'selected' class.</p>
+<p class="selected">Click me to remove 'selected' class.</p>
+
+</body>
+</html>
+
+

+

+
+
+
+

Arguments

+
    + +
  • +
    +

    class

    +
    +
    Type:
    +
    String
    + +
    Optional
    + +
    +
    +
    +

    CSS classes to remove from the elements.

    +
    +
  • + + +
  • +
    +

    duration

    +
    +
    Type:
    +
    String, Number
    + +
    Optional
    + +
    +
    +
    +

    A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).

    +
    +
  • + +
+
+
+ +

+ + diff --git a/media/js/development-bundle/docs/resizable.html b/media/js/development-bundle/docs/resizable.html new file mode 100644 index 0000000..3e75ffe --- /dev/null +++ b/media/js/development-bundle/docs/resizable.html @@ -0,0 +1,1075 @@ + + +
+

jQuery UI Resizable

+
+

Overview

+
+

The jQuery UI Resizable plugin makes selected elements resizable (meaning they have draggable resize handles). You can specify one or more handles as well as min and max width and height.

+

All callbacks (start,stop,resize) receive two arguments: The original browser event and a prepared ui object. The ui object has the following fields:

+
    +
  • ui.helper - a jQuery object containing the helper element
  • +
  • ui.originalPosition - {top, left} before resizing started
  • +
  • ui.originalSize - {width, height} before resizing started
  • +
  • ui.position - {top, left} current position
  • +
  • ui.size - {width, height} current size
  • +
+
+
+

Dependencies

+
    +
  • UI Core
  • +
+
+
+

Example

+
+ +

+A simple jQuery UI Resizable.
+

+
$("#resizable").resizable();
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.resizable.js"></script>
+  <style type="text/css">
+    #resizable { width: 100px; height: 100px; background: silver; }
+  </style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#resizable").resizable();
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div id="resizable"></div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    alsoResize

    +
    +
    Type:
    +
    Selector, jQuery, Element
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Resize these elements synchronous when resizing.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the alsoResize option specified. +
    +
    +
    $('.selector').resizable({ alsoResize: '.other' });
    +
    + + +
    + Get or set the alsoResize option, after init. +
    +
    +
    //getter
    +var alsoResize = $('.selector').resizable('option', 'alsoResize');
    +//setter
    +$('.selector').resizable('option', 'alsoResize', '.other');
    +
    + +
    +
    +
  • + + +
  • +
    +

    animate

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Animates to the final size after resizing.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the animate option specified. +
    +
    +
    $('.selector').resizable({ animate: true });
    +
    + + +
    + Get or set the animate option, after init. +
    +
    +
    //getter
    +var animate = $('.selector').resizable('option', 'animate');
    +//setter
    +$('.selector').resizable('option', 'animate', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    animateDuration

    +
    +
    Type:
    +
    Integer, String
    + +
    Default:
    +
    'slow'
    + +
    +
    +
    +

    Duration time for animating, in milliseconds. Other possible values: 'slow', 'normal', 'fast'.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the animateDuration option specified. +
    +
    +
    $('.selector').resizable({ animateDuration: 500 });
    +
    + + +
    + Get or set the animateDuration option, after init. +
    +
    +
    //getter
    +var animateDuration = $('.selector').resizable('option', 'animateDuration');
    +//setter
    +$('.selector').resizable('option', 'animateDuration', 500);
    +
    + +
    +
    +
  • + + +
  • +
    +

    animateEasing

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'swing'
    + +
    +
    +
    +

    Easing effect for animating.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the animateEasing option specified. +
    +
    +
    $('.selector').resizable({ animateEasing: 'swing' });
    +
    + + +
    + Get or set the animateEasing option, after init. +
    +
    +
    //getter
    +var animateEasing = $('.selector').resizable('option', 'animateEasing');
    +//setter
    +$('.selector').resizable('option', 'animateEasing', 'swing');
    +
    + +
    +
    +
  • + + +
  • +
    +

    aspectRatio

    +
    +
    Type:
    +
    Boolean, Float
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set to true, resizing is constrained by the original aspect ratio. Otherwise a custom aspect ratio can be specified, such as 9 / 16, or 0.5.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the aspectRatio option specified. +
    +
    +
    $('.selector').resizable({ aspectRatio: .75 });
    +
    + + +
    + Get or set the aspectRatio option, after init. +
    +
    +
    //getter
    +var aspectRatio = $('.selector').resizable('option', 'aspectRatio');
    +//setter
    +$('.selector').resizable('option', 'aspectRatio', .75);
    +
    + +
    +
    +
  • + + +
  • +
    +

    autoHide

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set to true, automatically hides the handles except when the mouse hovers over the element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the autoHide option specified. +
    +
    +
    $('.selector').resizable({ autoHide: true });
    +
    + + +
    + Get or set the autoHide option, after init. +
    +
    +
    //getter
    +var autoHide = $('.selector').resizable('option', 'autoHide');
    +//setter
    +$('.selector').resizable('option', 'autoHide', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    cancel

    +
    +
    Type:
    +
    Selector
    + +
    Default:
    +
    ':input,option'
    + +
    +
    +
    +

    Prevents resizing if you start on elements matching the selector.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the cancel option specified. +
    +
    +
    $('.selector').resizable({ cancel: ':input,option' });
    +
    + + +
    + Get or set the cancel option, after init. +
    +
    +
    //getter
    +var cancel = $('.selector').resizable('option', 'cancel');
    +//setter
    +$('.selector').resizable('option', 'cancel', ':input,option');
    +
    + +
    +
    +
  • + + +
  • +
    +

    containment

    +
    +
    Type:
    +
    String, Element, Selector
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Constrains resizing to within the bounds of the specified element. Possible values: 'parent', 'document', a DOMElement, or a Selector.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the containment option specified. +
    +
    +
    $('.selector').resizable({ containment: 'parent' });
    +
    + + +
    + Get or set the containment option, after init. +
    +
    +
    //getter
    +var containment = $('.selector').resizable('option', 'containment');
    +//setter
    +$('.selector').resizable('option', 'containment', 'parent');
    +
    + +
    +
    +
  • + + +
  • +
    +

    delay

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    Tolerance, in milliseconds, for when resizing should start. If specified, resizing will not start until after mouse is moved beyond duration. This can help prevent unintended resizing when clicking on an element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the delay option specified. +
    +
    +
    $('.selector').resizable({ delay: 20 });
    +
    + + +
    + Get or set the delay option, after init. +
    +
    +
    //getter
    +var delay = $('.selector').resizable('option', 'delay');
    +//setter
    +$('.selector').resizable('option', 'delay', 20);
    +
    + +
    +
    +
  • + + +
  • +
    +

    distance

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    1
    + +
    +
    +
    +

    Tolerance, in pixels, for when resizing should start. If specified, resizing will not start until after mouse is moved beyond distance. This can help prevent unintended resizing when clicking on an element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the distance option specified. +
    +
    +
    $('.selector').resizable({ distance: 20 });
    +
    + + +
    + Get or set the distance option, after init. +
    +
    +
    //getter
    +var distance = $('.selector').resizable('option', 'distance');
    +//setter
    +$('.selector').resizable('option', 'distance', 20);
    +
    + +
    +
    +
  • + + +
  • +
    +

    ghost

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set to true, a semi-transparent helper element is shown for resizing.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the ghost option specified. +
    +
    +
    $('.selector').resizable({ ghost: true });
    +
    + + +
    + Get or set the ghost option, after init. +
    +
    +
    //getter
    +var ghost = $('.selector').resizable('option', 'ghost');
    +//setter
    +$('.selector').resizable('option', 'ghost', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    grid

    +
    +
    Type:
    +
    Array
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Snaps the resizing element to a grid, every x and y pixels. Array values: [x, y]

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the grid option specified. +
    +
    +
    $('.selector').resizable({ grid: [50, 50] });
    +
    + + +
    + Get or set the grid option, after init. +
    +
    +
    //getter
    +var grid = $('.selector').resizable('option', 'grid');
    +//setter
    +$('.selector').resizable('option', 'grid', [50, 50]);
    +
    + +
    +
    +
  • + + +
  • +
    +

    handles

    +
    +
    Type:
    +
    String, Object
    + +
    Default:
    +
    'e, s, se'
    + +
    +
    +
    +

    If specified as a string, should be a comma-split list of any of the following: 'n, e, s, w, ne, se, sw, nw, all'. The necessary handles will be auto-generated by the plugin. +

    If specified as an object, the following keys are supported: { n, e, s, w, ne, se, sw, nw }. The value of any specified should be a jQuery selector matching the child element of the resizable to use as that handle. If the handle is not a child of the resizable, you can pass in the DOMElement or a valid jQuery object directly.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the handles option specified. +
    +
    +
    $('.selector').resizable({ handles: 'n, e, s, w' });
    +
    + + +
    + Get or set the handles option, after init. +
    +
    +
    //getter
    +var handles = $('.selector').resizable('option', 'handles');
    +//setter
    +$('.selector').resizable('option', 'handles', 'n, e, s, w');
    +
    + +
    +
    +
  • + + +
  • +
    +

    helper

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    This is the css class that will be added to a proxy element to outline the resize during the drag of the resize handle. Once the resize is complete, the original element is sized.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the helper option specified. +
    +
    +
    $('.selector').resizable({ helper: 'ui-state-highlight' });
    +
    + + +
    + Get or set the helper option, after init. +
    +
    +
    //getter
    +var helper = $('.selector').resizable('option', 'helper');
    +//setter
    +$('.selector').resizable('option', 'helper', 'ui-state-highlight');
    +
    + +
    +
    +
  • + + +
  • +
    +

    maxHeight

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    null
    + +
    +
    +
    +

    This is the maximum height the resizable should be allowed to resize to.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the maxHeight option specified. +
    +
    +
    $('.selector').resizable({ maxHeight: 300 });
    +
    + + +
    + Get or set the maxHeight option, after init. +
    +
    +
    //getter
    +var maxHeight = $('.selector').resizable('option', 'maxHeight');
    +//setter
    +$('.selector').resizable('option', 'maxHeight', 300);
    +
    + +
    +
    +
  • + + +
  • +
    +

    maxWidth

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    null
    + +
    +
    +
    +

    This is the maximum width the resizable should be allowed to resize to.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the maxWidth option specified. +
    +
    +
    $('.selector').resizable({ maxWidth: 250 });
    +
    + + +
    + Get or set the maxWidth option, after init. +
    +
    +
    //getter
    +var maxWidth = $('.selector').resizable('option', 'maxWidth');
    +//setter
    +$('.selector').resizable('option', 'maxWidth', 250);
    +
    + +
    +
    +
  • + + +
  • +
    +

    minHeight

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    10
    + +
    +
    +
    +

    This is the minimum height the resizable should be allowed to resize to.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the minHeight option specified. +
    +
    +
    $('.selector').resizable({ minHeight: 150 });
    +
    + + +
    + Get or set the minHeight option, after init. +
    +
    +
    //getter
    +var minHeight = $('.selector').resizable('option', 'minHeight');
    +//setter
    +$('.selector').resizable('option', 'minHeight', 150);
    +
    + +
    +
    +
  • + + +
  • +
    +

    minWidth

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    10
    + +
    +
    +
    +

    This is the minimum width the resizable should be allowed to resize to.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a resizable with the minWidth option specified. +
    +
    +
    $('.selector').resizable({ minWidth: 75 });
    +
    + + +
    + Get or set the minWidth option, after init. +
    +
    +
    //getter
    +var minWidth = $('.selector').resizable('option', 'minWidth');
    +//setter
    +$('.selector').resizable('option', 'minWidth', 75);
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    start

    +
    +
    Type:
    +
    resizestart
    +
    +
    +
    +

    This event is triggered at the start of a resize operation.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the start event as an init option. +
    +
    +
    $('.selector').resizable({
    +   start: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the start event by type: resizestart. +
    +
    +
    $('.selector').bind('resizestart', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    resize

    +
    +
    Type:
    +
    resize
    +
    +
    +
    +

    This event is triggered during the resize, on the drag of the resize handler.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the resize event as an init option. +
    +
    +
    $('.selector').resizable({
    +   resize: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the resize event by type: resize. +
    +
    +
    $('.selector').bind('resize', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    stop

    +
    +
    Type:
    +
    resizestop
    +
    +
    +
    +

    This event is triggered at the end of a resize operation.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the stop event as an init option. +
    +
    +
    $('.selector').resizable({
    +   stop: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the stop event by type: resizestop. +
    +
    +
    $('.selector').bind('resizestop', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .resizable( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the resizable functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .resizable( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the resizable.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .resizable( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the resizable.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .resizable( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any resizable option. If no value is specified, will act as a getter.

    +
    +
  • + + +
+
+
+

Theming

+

The jQuery UI Resizable plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.resizable.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <div class="ui-resizable">
+   <div style="-moz-user-select: none;" unselectable="on" class="ui-resizable-handle ui-resizable-e"></div>
+   <div style="-moz-user-select: none;" unselectable="on" class="ui-resizable-handle ui-resizable-s"></div>
+   <div unselectable="on" style="z-index: 1001; -moz-user-select: none;" class="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se"></div>
+</div> +

+ + Note: This is a sample of markup generated by the resizable plugin, not markup you should use to create a resizable. The only markup needed for that is <div></div>. + +

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/selectable.html b/media/js/development-bundle/docs/selectable.html new file mode 100644 index 0000000..4841ebc --- /dev/null +++ b/media/js/development-bundle/docs/selectable.html @@ -0,0 +1,707 @@ + + +
+

jQuery UI Selectable

+
+

Overview

+
+

The jQuery UI Selectable plugin allows for elements to be selected by dragging a box (sometimes called a lasso) with the mouse over the elements. Also, elements can be selected by click or drag while holding the Ctrl/Meta key, allowing for multiple (non-contiguous) selections.

+
+
+

Dependencies

+
    +
  • UI Core
  • +
+
+
+

Example

+
+ +

+A simple jQuery UI Selectable.
+

+
$("#selectable").selectable();
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.selectable.js"></script>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#selectable").selectable();
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div id="selectable"></div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    autoRefresh

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    This determines whether to refresh (recalculate) the position and size of each selectee at the beginning of each select operation. If you have many many items, you may want to set this to false and call the refresh method manually.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a selectable with the autoRefresh option specified. +
    +
    +
    $('.selector').selectable({ autoRefresh: false });
    +
    + + +
    + Get or set the autoRefresh option, after init. +
    +
    +
    //getter
    +var autoRefresh = $('.selector').selectable('option', 'autoRefresh');
    +//setter
    +$('.selector').selectable('option', 'autoRefresh', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    cancel

    +
    +
    Type:
    +
    Selector
    + +
    Default:
    +
    ':input,option'
    + +
    +
    +
    +

    Prevents selecting if you start on elements matching the selector.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a selectable with the cancel option specified. +
    +
    +
    $('.selector').selectable({ cancel: ':input,option' });
    +
    + + +
    + Get or set the cancel option, after init. +
    +
    +
    //getter
    +var cancel = $('.selector').selectable('option', 'cancel');
    +//setter
    +$('.selector').selectable('option', 'cancel', ':input,option');
    +
    + +
    +
    +
  • + + +
  • +
    +

    delay

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    Time in milliseconds to define when the selecting should start. It helps preventing unwanted selections when clicking on an element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a selectable with the delay option specified. +
    +
    +
    $('.selector').selectable({ delay: 20 });
    +
    + + +
    + Get or set the delay option, after init. +
    +
    +
    //getter
    +var delay = $('.selector').selectable('option', 'delay');
    +//setter
    +$('.selector').selectable('option', 'delay', 20);
    +
    + +
    +
    +
  • + + +
  • +
    +

    distance

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    Tolerance, in pixels, for when selecting should start. If specified, selecting will not start until after mouse is dragged beyond distance.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a selectable with the distance option specified. +
    +
    +
    $('.selector').selectable({ distance: 20 });
    +
    + + +
    + Get or set the distance option, after init. +
    +
    +
    //getter
    +var distance = $('.selector').selectable('option', 'distance');
    +//setter
    +$('.selector').selectable('option', 'distance', 20);
    +
    + +
    +
    +
  • + + +
  • +
    +

    filter

    +
    +
    Type:
    +
    Selector
    + +
    Default:
    +
    '*'
    + +
    +
    +
    +

    The matching child elements will be made selectees (able to be selected).

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a selectable with the filter option specified. +
    +
    +
    $('.selector').selectable({ filter: 'li' });
    +
    + + +
    + Get or set the filter option, after init. +
    +
    +
    //getter
    +var filter = $('.selector').selectable('option', 'filter');
    +//setter
    +$('.selector').selectable('option', 'filter', 'li');
    +
    + +
    +
    +
  • + + +
  • +
    +

    tolerance

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'touch'
    + +
    +
    +
    +

    Possible values: 'touch', 'fit'. +

    +
      +
    • fit: draggable overlaps the droppable entirely
    • +
    • touch: draggable overlaps the droppable any amount
    • +
    +

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a selectable with the tolerance option specified. +
    +
    +
    $('.selector').selectable({ tolerance: 'fit' });
    +
    + + +
    + Get or set the tolerance option, after init. +
    +
    +
    //getter
    +var tolerance = $('.selector').selectable('option', 'tolerance');
    +//setter
    +$('.selector').selectable('option', 'tolerance', 'fit');
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    selected

    +
    +
    Type:
    +
    selected
    +
    +
    +
    +

    This event is triggered at the end of the select operation, on each element added to the selection.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the selected event as an init option. +
    +
    +
    $('.selector').selectable({
    +   selected: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the selected event by type: selected. +
    +
    +
    $('.selector').bind('selected', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    selecting

    +
    +
    Type:
    +
    selecting
    +
    +
    +
    +

    This event is triggered during the select operation, on each element added to the selection.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the selecting event as an init option. +
    +
    +
    $('.selector').selectable({
    +   selecting: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the selecting event by type: selecting. +
    +
    +
    $('.selector').bind('selecting', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    start

    +
    +
    Type:
    +
    selectablestart
    +
    +
    +
    +

    This event is triggered at the beginning of the select operation.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the start event as an init option. +
    +
    +
    $('.selector').selectable({
    +   start: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the start event by type: selectablestart. +
    +
    +
    $('.selector').bind('selectablestart', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    stop

    +
    +
    Type:
    +
    selectablestop
    +
    +
    +
    +

    This event is triggered at the end of the select operation.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the stop event as an init option. +
    +
    +
    $('.selector').selectable({
    +   stop: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the stop event by type: selectablestop. +
    +
    +
    $('.selector').bind('selectablestop', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    unselected

    +
    +
    Type:
    +
    unselected
    +
    +
    +
    +

    This event is triggered at the end of the select operation, on each element removed from the selection.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the unselected event as an init option. +
    +
    +
    $('.selector').selectable({
    +   unselected: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the unselected event by type: unselected. +
    +
    +
    $('.selector').bind('unselected', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    unselecting

    +
    +
    Type:
    +
    unselecting
    +
    +
    +
    +

    This event is triggered during the select operation, on each element removed from the selection.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the unselecting event as an init option. +
    +
    +
    $('.selector').selectable({
    +   unselecting: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the unselecting event by type: unselecting. +
    +
    +
    $('.selector').bind('unselecting', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .selectable( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the selectable functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .selectable( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the selectable.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .selectable( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the selectable.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .selectable( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any selectable option. If no value is specified, will act as a getter.

    +
    +
  • + + +
  • +
    +

    refresh

    +
    +
    Signature:
    +
    .selectable( 'refresh' + + + + + + + +)
    +
    +
    +
    +

    Refresh the position and size of each selectee element. This method can be used to manually recalculate the position and size of each selectee element. Very useful if autoRefresh is set to false.

    +
    +
  • + +
+
+
+

Theming

+

The jQuery UI Selectable plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.selectable.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <ul class="ui-selectable">
+   <li class="ui-selectee"></li>
+   <li class="ui-selectee"></li>
+   <li class="ui-selectee"></li>
+</ul> +

+ + Note: This is a sample of markup generated by the selectable plugin, not markup you should use to create a selectable. The only markup needed for that is
<ul>
+   <li></li>
+   <li></li>
+   <li></li>
+</ul>. +
+

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/show.html b/media/js/development-bundle/docs/show.html new file mode 100644 index 0000000..c8e6681 --- /dev/null +++ b/media/js/development-bundle/docs/show.html @@ -0,0 +1,143 @@ + + +
+

jQuery UI show

+
+

Overview

+
+

show( effect, [options], [speed], [callback] )

+

The enhanced show method optionally accepts jQuery UI advanced effects.

+

Uses a specific effect on an element to show the element if the first argument is a effect string.

+
+
+

Dependencies

+
    +
  • Effects Core
  • +
+
+
+

Example

+
+ +

+Apply the effect slide if you click on the p to show a div.
+

+
$("p").click(function () {
+      $("div").show("slide", {}, 1000);
+    });
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
+<script src="http://ui.jquery.com/latest/ui/effects.slide.js"></script>
+<style type="text/css">
+  div { display: none; margin: 0px; width: 100px; height: 80px; background: blue; position: relative; }
+</style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("p").click(function () {
+      $("div").show("slide", {}, 1000);
+    });
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<p>Click me</p><div></div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Arguments

+
    + +
  • +
    +

    effect

    +
    +
    Type:
    +
    String
    + +
    +
    +
    +

    The effect to be used. Possible values: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'.

    +
    +
  • + + +
  • +
    +

    options

    +
    +
    Type:
    +
    Hash
    + +
    Optional
    + +
    +
    +
    +

    A object/hash including specific options for the effect.

    +
    +
  • + + +
  • +
    +

    speed

    +
    +
    Type:
    +
    String, Number
    + +
    Optional
    + +
    +
    +
    +

    A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).

    +
    +
  • + + +
  • +
    +

    callback

    +
    +
    Type:
    +
    Function
    + +
    Optional
    + +
    +
    +
    +

    A function that is called after the effect is completed.

    +
    +
  • + +
+
+
+ +

+ + diff --git a/media/js/development-bundle/docs/slider.html b/media/js/development-bundle/docs/slider.html new file mode 100644 index 0000000..338681e --- /dev/null +++ b/media/js/development-bundle/docs/slider.html @@ -0,0 +1,733 @@ + + +
+

jQuery UI Slider

+
+

Overview

+
+

The jQuery UI Slider plugin makes selected elements into sliders. There are various options such as multiple handles, and ranges. The handle can be moved with the mouse or the arrow keys.

+

All callbacks receive two arguments: The original browser event and a prepared ui object, view below for a documentation of this object (if you name your second argument 'ui'): +

+
    +
  • ui.handle: DOMElement - the current focused handle +
  • ui.value: Integer - the current handle's value +
+
+
+

Dependencies

+
    +
  • UI Core
  • +
+
+
+

Example

+
+ +

+A simple jQuery UI Slider.
+

+
$("#slider").slider();
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.slider.js"></script>
+  <style type="text/css">
+    #slider { margin: 10px; }
+  </style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#slider").slider();
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div id="slider"></div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    animate

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Whether to slide handle smoothly when user click outside handle on the bar.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a slider with the animate option specified. +
    +
    +
    $('.selector').slider({ animate: true });
    +
    + + +
    + Get or set the animate option, after init. +
    +
    +
    //getter
    +var animate = $('.selector').slider('option', 'animate');
    +//setter
    +$('.selector').slider('option', 'animate', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    max

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    100
    + +
    +
    +
    +

    The maximum value of the slider.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a slider with the max option specified. +
    +
    +
    $('.selector').slider({ max: 7 });
    +
    + + +
    + Get or set the max option, after init. +
    +
    +
    //getter
    +var max = $('.selector').slider('option', 'max');
    +//setter
    +$('.selector').slider('option', 'max', 7);
    +
    + +
    +
    +
  • + + +
  • +
    +

    min

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    The minimum value of the slider.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a slider with the min option specified. +
    +
    +
    $('.selector').slider({ min: -7 });
    +
    + + +
    + Get or set the min option, after init. +
    +
    +
    //getter
    +var min = $('.selector').slider('option', 'min');
    +//setter
    +$('.selector').slider('option', 'min', -7);
    +
    + +
    +
    +
  • + + +
  • +
    +

    orientation

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'auto'
    + +
    +
    +
    +

    Normally you don't need to set this option because the plugin detects the slider orientation automatically. If the orientation is not correctly detected you can set this option to 'horizontal' or 'vertical'.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a slider with the orientation option specified. +
    +
    +
    $('.selector').slider({ orientation: 'vertical' });
    +
    + + +
    + Get or set the orientation option, after init. +
    +
    +
    //getter
    +var orientation = $('.selector').slider('option', 'orientation');
    +//setter
    +$('.selector').slider('option', 'orientation', 'vertical');
    +
    + +
    +
    +
  • + + +
  • +
    +

    range

    +
    +
    Type:
    +
    Boolean, String
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set to true, the slider will detect if you have two handles and create a stylable range element between these two. Two other possible values are 'min' and 'max'. A min range goes from the slider min to one handle. A max range goes from one handle to the slider max.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a slider with the range option specified. +
    +
    +
    $('.selector').slider({ range: 'min' });
    +
    + + +
    + Get or set the range option, after init. +
    +
    +
    //getter
    +var range = $('.selector').slider('option', 'range');
    +//setter
    +$('.selector').slider('option', 'range', 'min');
    +
    + +
    +
    +
  • + + +
  • +
    +

    step

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    1
    + +
    +
    +
    +

    Determines the size or amount of each interval or step the slider takes between min and max. The full specified value range of the slider (max - min) needs to be evenly divisible by the step.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a slider with the step option specified. +
    +
    +
    $('.selector').slider({ step: 5 });
    +
    + + +
    + Get or set the step option, after init. +
    +
    +
    //getter
    +var step = $('.selector').slider('option', 'step');
    +//setter
    +$('.selector').slider('option', 'step', 5);
    +
    + +
    +
    +
  • + + +
  • +
    +

    value

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    Determines the value of the slider, if there's only one handle. If there is more than one handle, determines the value of the first handle.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a slider with the value option specified. +
    +
    +
    $('.selector').slider({ value: 37 });
    +
    + + +
    + Get or set the value option, after init. +
    +
    +
    //getter
    +var value = $('.selector').slider('option', 'value');
    +//setter
    +$('.selector').slider('option', 'value', 37);
    +
    + +
    +
    +
  • + + +
  • +
    +

    values

    +
    +
    Type:
    +
    Array
    + +
    Default:
    +
    null
    + +
    +
    +
    +

    This option can be used to specify multiple handles. If range is set to true, the length of 'values' should be 2.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a slider with the values option specified. +
    +
    +
    $('.selector').slider({ values: [1,5,9] });
    +
    + + +
    + Get or set the values option, after init. +
    +
    +
    //getter
    +var values = $('.selector').slider('option', 'values');
    +//setter
    +$('.selector').slider('option', 'values', [1,5,9]);
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    start

    +
    +
    Type:
    +
    slidestart
    +
    +
    +
    +

    This event is triggered when the user starts sliding.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the start event as an init option. +
    +
    +
    $('.selector').slider({
    +   start: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the start event by type: slidestart. +
    +
    +
    $('.selector').bind('slidestart', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    slide

    +
    +
    Type:
    +
    slide
    +
    +
    +
    +

    This event is triggered on every mouse move during slide. Use ui.value (single-handled sliders) to obtain the value of the current handle, $(..).slider('value', index) to get another handles' value. +

    Return false in order to prevent a slide, based on ui.value.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the slide event as an init option. +
    +
    +
    $('.selector').slider({
    +   slide: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the slide event by type: slide. +
    +
    +
    $('.selector').bind('slide', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    change

    +
    +
    Type:
    +
    slidechange
    +
    +
    +
    +

    This event is triggered on slide stop, or if the value is changed programmatically (by the value method). Takes arguments event and ui. Use event.orginalEvent to detect whether the value changed by mouse, keyboard, or programmatically. Use ui.value (single-handled sliders) to obtain the value of the current handle, $(this).slider('values', index) to get another handle's value.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the change event as an init option. +
    +
    +
    $('.selector').slider({
    +   change: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the change event by type: slidechange. +
    +
    +
    $('.selector').bind('slidechange', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    stop

    +
    +
    Type:
    +
    slidestop
    +
    +
    +
    +

    This event is triggered when the user stops sliding.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the stop event as an init option. +
    +
    +
    $('.selector').slider({
    +   stop: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the stop event by type: slidestop. +
    +
    +
    $('.selector').bind('slidestop', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .slider( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the slider functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .slider( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the slider.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .slider( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the slider.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .slider( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any slider option. If no value is specified, will act as a getter.

    +
    +
  • + + +
  • +
    +

    value

    +
    +
    Signature:
    +
    .slider( 'value' + +, [value] + + + + + +)
    +
    +
    +
    +

    Gets or sets the value of the slider. For single handle sliders.

    +
    +
  • + + +
  • +
    +

    values

    +
    +
    Signature:
    +
    .slider( 'values' + +, index + +, [value] + + + +)
    +
    +
    +
    +

    Gets or sets the values of the slider. For multiple handle or range sliders.

    +
    +
  • + +
+
+
+

Theming

+

The jQuery UI Slider plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.slider.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <div class="ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all">
+   <a style="left: 0%;" class="ui-slider-handle ui-state-default ui-corner-all" href="#"></a>
+</div>
+

+ + Note: This is a sample of markup generated by the slider plugin, not markup you should use to create a slider. The only markup needed for that is <div><div>. + +

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/sortable.html b/media/js/development-bundle/docs/sortable.html new file mode 100644 index 0000000..6ed114b --- /dev/null +++ b/media/js/development-bundle/docs/sortable.html @@ -0,0 +1,1818 @@ + + +
+

jQuery UI Sortable

+
+

Overview

+
+

The jQuery UI Sortable plugin makes selected elements sortable by dragging with the mouse.

+

All callbacks receive two arguments: The original browser event and a prepared ui object, view below for a documentation of this object (if you name your second argument 'ui'):

+
    +
  • ui.helper - the current helper element (most often a clone of the item)
  • +
  • ui.position - current position of the helper
  • +
  • ui.offset - current absolute position of the helper
  • +
  • ui.item - the current dragged element
  • +
  • ui.placeholder - the placeholder (if you defined one)
  • +
  • ui.sender - the sortable where the item comes from (only exists if you move from one connected list to another)
  • +
+
+
+

Dependencies

+
    +
  • UI Core
  • +
+
+
+

Example

+
+ +

+A simple jQuery UI Sortable.
+

+
$("#sortable").sortable();
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.sortable.js"></script>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#sortable").sortable();
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div id="sortable"></div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    appendTo

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'parent'
    + +
    +
    +
    +

    Defines where the helper that moves with the mouse is being appended to during the drag (for example, to resolve overlap/zIndex issues).

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the appendTo option specified. +
    +
    +
    $('.selector').sortable({ appendTo: 'body' });
    +
    + + +
    + Get or set the appendTo option, after init. +
    +
    +
    //getter
    +var appendTo = $('.selector').sortable('option', 'appendTo');
    +//setter
    +$('.selector').sortable('option', 'appendTo', 'body');
    +
    + +
    +
    +
  • + + +
  • +
    +

    axis

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If defined, the items can be dragged only horizontally or vertically. Possible values:'x', 'y'.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the axis option specified. +
    +
    +
    $('.selector').sortable({ axis: 'x' });
    +
    + + +
    + Get or set the axis option, after init. +
    +
    +
    //getter
    +var axis = $('.selector').sortable('option', 'axis');
    +//setter
    +$('.selector').sortable('option', 'axis', 'x');
    +
    + +
    +
    +
  • + + +
  • +
    +

    cancel

    +
    +
    Type:
    +
    Selector
    + +
    Default:
    +
    ':input,button'
    + +
    +
    +
    +

    Prevents sorting if you start on elements matching the selector.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the cancel option specified. +
    +
    +
    $('.selector').sortable({ cancel: 'button' });
    +
    + + +
    + Get or set the cancel option, after init. +
    +
    +
    //getter
    +var cancel = $('.selector').sortable('option', 'cancel');
    +//setter
    +$('.selector').sortable('option', 'cancel', 'button');
    +
    + +
    +
    +
  • + + +
  • +
    +

    connectWith

    +
    +
    Type:
    +
    Selector
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Takes a jQuery selector with items that also have sortables applied. If used, the sortable is now connected to the other one-way, so you can drag from this sortable to the other.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the connectWith option specified. +
    +
    +
    $('.selector').sortable({ connectWith: '.otherlist' });
    +
    + + +
    + Get or set the connectWith option, after init. +
    +
    +
    //getter
    +var connectWith = $('.selector').sortable('option', 'connectWith');
    +//setter
    +$('.selector').sortable('option', 'connectWith', '.otherlist');
    +
    + +
    +
    +
  • + + +
  • +
    +

    containment

    +
    +
    Type:
    +
    Element, String, Selector
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Constrains dragging to within the bounds of the specified element - can be a DOM element, 'parent', 'document', 'window', or a jQuery selector.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the containment option specified. +
    +
    +
    $('.selector').sortable({ containment: 'parent' });
    +
    + + +
    + Get or set the containment option, after init. +
    +
    +
    //getter
    +var containment = $('.selector').sortable('option', 'containment');
    +//setter
    +$('.selector').sortable('option', 'containment', 'parent');
    +
    + +
    +
    +
  • + + +
  • +
    +

    cursor

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'auto'
    + +
    +
    +
    +

    Defines the cursor that is being shown while sorting.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the cursor option specified. +
    +
    +
    $('.selector').sortable({ cursor: 'crosshair' });
    +
    + + +
    + Get or set the cursor option, after init. +
    +
    +
    //getter
    +var cursor = $('.selector').sortable('option', 'cursor');
    +//setter
    +$('.selector').sortable('option', 'cursor', 'crosshair');
    +
    + +
    +
    +
  • + + +
  • +
    +

    cursorAt

    +
    +
    Type:
    +
    Object
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Moves the sorting element or helper so the cursor always appears to drag from the same position. Coordinates can be given as a hash using a combination of one or two keys: { top, left, right, bottom }.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the cursorAt option specified. +
    +
    +
    $('.selector').sortable({ cursorAt: 'top' });
    +
    + + +
    + Get or set the cursorAt option, after init. +
    +
    +
    //getter
    +var cursorAt = $('.selector').sortable('option', 'cursorAt');
    +//setter
    +$('.selector').sortable('option', 'cursorAt', 'top');
    +
    + +
    +
    +
  • + + +
  • +
    +

    delay

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    Time in milliseconds to define when the sorting should start. It helps preventing unwanted drags when clicking on an element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the delay option specified. +
    +
    +
    $('.selector').sortable({ delay: 500 });
    +
    + + +
    + Get or set the delay option, after init. +
    +
    +
    //getter
    +var delay = $('.selector').sortable('option', 'delay');
    +//setter
    +$('.selector').sortable('option', 'delay', 500);
    +
    + +
    +
    +
  • + + +
  • +
    +

    distance

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    1
    + +
    +
    +
    +

    Tolerance, in pixels, for when sorting should start. If specified, sorting will not start until after mouse is dragged beyond distance. Can be used to allow for clicks on elements within a handle.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the distance option specified. +
    +
    +
    $('.selector').sortable({ distance: 30 });
    +
    + + +
    + Get or set the distance option, after init. +
    +
    +
    //getter
    +var distance = $('.selector').sortable('option', 'distance');
    +//setter
    +$('.selector').sortable('option', 'distance', 30);
    +
    + +
    +
    +
  • + + +
  • +
    +

    dropOnEmpty

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    If empty allows for an item to be dropped from a linked selectable.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the dropOnEmpty option specified. +
    +
    +
    $('.selector').sortable({ dropOnEmpty: false });
    +
    + + +
    + Get or set the dropOnEmpty option, after init. +
    +
    +
    //getter
    +var dropOnEmpty = $('.selector').sortable('option', 'dropOnEmpty');
    +//setter
    +$('.selector').sortable('option', 'dropOnEmpty', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    forceHelperSize

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If true, forces the helper to have a size.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the forceHelperSize option specified. +
    +
    +
    $('.selector').sortable({ forceHelperSize: true });
    +
    + + +
    + Get or set the forceHelperSize option, after init. +
    +
    +
    //getter
    +var forceHelperSize = $('.selector').sortable('option', 'forceHelperSize');
    +//setter
    +$('.selector').sortable('option', 'forceHelperSize', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    forcePlaceholderSize

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If true, forces the placeholder to have a size.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the forcePlaceholderSize option specified. +
    +
    +
    $('.selector').sortable({ forcePlaceholderSize: true });
    +
    + + +
    + Get or set the forcePlaceholderSize option, after init. +
    +
    +
    //getter
    +var forcePlaceholderSize = $('.selector').sortable('option', 'forcePlaceholderSize');
    +//setter
    +$('.selector').sortable('option', 'forcePlaceholderSize', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    grid

    +
    +
    Type:
    +
    Array
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Snaps the sorting element or helper to a grid, every x and y pixels. Array values: [x, y]

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the grid option specified. +
    +
    +
    $('.selector').sortable({ grid: [50, 20] });
    +
    + + +
    + Get or set the grid option, after init. +
    +
    +
    //getter
    +var grid = $('.selector').sortable('option', 'grid');
    +//setter
    +$('.selector').sortable('option', 'grid', [50, 20]);
    +
    + +
    +
    +
  • + + +
  • +
    +

    handle

    +
    +
    Type:
    +
    Selector, Element
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Restricts sort start click to the specified element.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the handle option specified. +
    +
    +
    $('.selector').sortable({ handle: 'h2' });
    +
    + + +
    + Get or set the handle option, after init. +
    +
    +
    //getter
    +var handle = $('.selector').sortable('option', 'handle');
    +//setter
    +$('.selector').sortable('option', 'handle', 'h2');
    +
    + +
    +
    +
  • + + +
  • +
    +

    helper

    +
    +
    Type:
    +
    String, Function
    + +
    Default:
    +
    'original'
    + +
    +
    +
    +

    Allows for a helper element to be used for dragging display. The supplied function receives the event and the element being sorted, and should return a DOMElement to be used as a custom proxy helper. Possible values: 'original', 'clone'

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the helper option specified. +
    +
    +
    $('.selector').sortable({ helper: 'clone' });
    +
    + + +
    + Get or set the helper option, after init. +
    +
    +
    //getter
    +var helper = $('.selector').sortable('option', 'helper');
    +//setter
    +$('.selector').sortable('option', 'helper', 'clone');
    +
    + +
    +
    +
  • + + +
  • +
    +

    items

    +
    +
    Type:
    +
    Selector
    + +
    Default:
    +
    '> *'
    + +
    +
    +
    +

    Specifies which items inside the element should be sortable.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the items option specified. +
    +
    +
    $('.selector').sortable({ items: 'li' });
    +
    + + +
    + Get or set the items option, after init. +
    +
    +
    //getter
    +var items = $('.selector').sortable('option', 'items');
    +//setter
    +$('.selector').sortable('option', 'items', 'li');
    +
    + +
    +
    +
  • + + +
  • +
    +

    opacity

    +
    +
    Type:
    +
    Float
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Defines the opacity of the helper while sorting. From 0.01 to 1

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the opacity option specified. +
    +
    +
    $('.selector').sortable({ opacity: 0.6 });
    +
    + + +
    + Get or set the opacity option, after init. +
    +
    +
    //getter
    +var opacity = $('.selector').sortable('option', 'opacity');
    +//setter
    +$('.selector').sortable('option', 'opacity', 0.6);
    +
    + +
    +
    +
  • + + +
  • +
    +

    placeholder

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Class that gets applied to the otherwise white space.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the placeholder option specified. +
    +
    +
    $('.selector').sortable({ placeholder: 'ui-state-highlight' });
    +
    + + +
    + Get or set the placeholder option, after init. +
    +
    +
    //getter
    +var placeholder = $('.selector').sortable('option', 'placeholder');
    +//setter
    +$('.selector').sortable('option', 'placeholder', 'ui-state-highlight');
    +
    + +
    +
    +
  • + + +
  • +
    +

    revert

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    If set to true, the item will be reverted to its new DOM position with a smooth animation.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the revert option specified. +
    +
    +
    $('.selector').sortable({ revert: true });
    +
    + + +
    + Get or set the revert option, after init. +
    +
    +
    //getter
    +var revert = $('.selector').sortable('option', 'revert');
    +//setter
    +$('.selector').sortable('option', 'revert', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    scroll

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    true
    + +
    +
    +
    +

    If set to true, the page scrolls when coming to an edge.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the scroll option specified. +
    +
    +
    $('.selector').sortable({ scroll: false });
    +
    + + +
    + Get or set the scroll option, after init. +
    +
    +
    //getter
    +var scroll = $('.selector').sortable('option', 'scroll');
    +//setter
    +$('.selector').sortable('option', 'scroll', false);
    +
    + +
    +
    +
  • + + +
  • +
    +

    scrollSensitivity

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    20
    + +
    +
    +
    +

    Defines how near the mouse must be to an edge to start scrolling.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the scrollSensitivity option specified. +
    +
    +
    $('.selector').sortable({ scrollSensitivity: 40 });
    +
    + + +
    + Get or set the scrollSensitivity option, after init. +
    +
    +
    //getter
    +var scrollSensitivity = $('.selector').sortable('option', 'scrollSensitivity');
    +//setter
    +$('.selector').sortable('option', 'scrollSensitivity', 40);
    +
    + +
    +
    +
  • + + +
  • +
    +

    scrollSpeed

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    20
    + +
    +
    +
    +

    The speed at which the window should scroll once the mouse pointer gets within the scrollSensitivity distance.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the scrollSpeed option specified. +
    +
    +
    $('.selector').sortable({ scrollSpeed: 40 });
    +
    + + +
    + Get or set the scrollSpeed option, after init. +
    +
    +
    //getter
    +var scrollSpeed = $('.selector').sortable('option', 'scrollSpeed');
    +//setter
    +$('.selector').sortable('option', 'scrollSpeed', 40);
    +
    + +
    +
    +
  • + + +
  • +
    +

    tolerance

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'intersect'
    + +
    +
    +
    +

    This is the way the reordering behaves during drag. Possible values: 'intersect', 'pointer'. In some setups, 'pointer' is more natural. +

    +
      +
    • intersect: draggable overlaps the droppable at least 50%
    • +
    • pointer: mouse pointer overlaps the droppable
    • +
    +

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the tolerance option specified. +
    +
    +
    $('.selector').sortable({ tolerance: 'pointer' });
    +
    + + +
    + Get or set the tolerance option, after init. +
    +
    +
    //getter
    +var tolerance = $('.selector').sortable('option', 'tolerance');
    +//setter
    +$('.selector').sortable('option', 'tolerance', 'pointer');
    +
    + +
    +
    +
  • + + +
  • +
    +

    zIndex

    +
    +
    Type:
    +
    Integer
    + +
    Default:
    +
    1000
    + +
    +
    +
    +

    Z-index for element/helper while being sorted.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a sortable with the zIndex option specified. +
    +
    +
    $('.selector').sortable({ zIndex: 5 });
    +
    + + +
    + Get or set the zIndex option, after init. +
    +
    +
    //getter
    +var zIndex = $('.selector').sortable('option', 'zIndex');
    +//setter
    +$('.selector').sortable('option', 'zIndex', 5);
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    start

    +
    +
    Type:
    +
    sortstart
    +
    +
    +
    +

    This event is triggered when sorting starts.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the start event as an init option. +
    +
    +
    $('.selector').sortable({
    +   start: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the start event by type: sortstart. +
    +
    +
    $('.selector').bind('sortstart', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    sort

    +
    +
    Type:
    +
    sort
    +
    +
    +
    +

    This event is triggered during sorting.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the sort event as an init option. +
    +
    +
    $('.selector').sortable({
    +   sort: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the sort event by type: sort. +
    +
    +
    $('.selector').bind('sort', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    change

    +
    +
    Type:
    +
    sortchange
    +
    +
    +
    +

    This event is triggered during sorting, but only when the DOM position has changed.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the change event as an init option. +
    +
    +
    $('.selector').sortable({
    +   change: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the change event by type: sortchange. +
    +
    +
    $('.selector').bind('sortchange', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    beforeStop

    +
    +
    Type:
    +
    sortbeforeStop
    +
    +
    +
    +

    This event is triggered when sorting stops, but when the placeholder/helper is still available.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the beforeStop event as an init option. +
    +
    +
    $('.selector').sortable({
    +   beforeStop: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the beforeStop event by type: sortbeforeStop. +
    +
    +
    $('.selector').bind('sortbeforeStop', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    stop

    +
    +
    Type:
    +
    sortstop
    +
    +
    +
    +

    This event is triggered when sorting has stopped.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the stop event as an init option. +
    +
    +
    $('.selector').sortable({
    +   stop: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the stop event by type: sortstop. +
    +
    +
    $('.selector').bind('sortstop', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    update

    +
    +
    Type:
    +
    sortupdate
    +
    +
    +
    +

    This event is triggered when the user stopped sorting and the DOM position has changed.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the update event as an init option. +
    +
    +
    $('.selector').sortable({
    +   update: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the update event by type: sortupdate. +
    +
    +
    $('.selector').bind('sortupdate', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    receive

    +
    +
    Type:
    +
    sortreceive
    +
    +
    +
    +

    This event is triggered when a connected sortable list has received an item from another list.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the receive event as an init option. +
    +
    +
    $('.selector').sortable({
    +   receive: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the receive event by type: sortreceive. +
    +
    +
    $('.selector').bind('sortreceive', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    remove

    +
    +
    Type:
    +
    sortremove
    +
    +
    +
    +

    This event is triggered when a sortable item has been dragged out from the list and into another.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the remove event as an init option. +
    +
    +
    $('.selector').sortable({
    +   remove: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the remove event by type: sortremove. +
    +
    +
    $('.selector').bind('sortremove', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    over

    +
    +
    Type:
    +
    sortover
    +
    +
    +
    +

    This event is triggered when a sortable item is moved into a connected list.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the over event as an init option. +
    +
    +
    $('.selector').sortable({
    +   over: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the over event by type: sortover. +
    +
    +
    $('.selector').bind('sortover', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    out

    +
    +
    Type:
    +
    sortout
    +
    +
    +
    +

    This event is triggered when a sortable item is moved away from a connected list.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the out event as an init option. +
    +
    +
    $('.selector').sortable({
    +   out: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the out event by type: sortout. +
    +
    +
    $('.selector').bind('sortout', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    activate

    +
    +
    Type:
    +
    sortactivate
    +
    +
    +
    +

    This event is triggered when using connected lists, every connected list on drag start receives it.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the activate event as an init option. +
    +
    +
    $('.selector').sortable({
    +   activate: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the activate event by type: sortactivate. +
    +
    +
    $('.selector').bind('sortactivate', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    deactivate

    +
    +
    Type:
    +
    sortdeactivate
    +
    +
    +
    +

    This event is triggered when sorting was stopped, is propagated to all possible connected lists.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the deactivate event as an init option. +
    +
    +
    $('.selector').sortable({
    +   deactivate: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the deactivate event by type: sortdeactivate. +
    +
    +
    $('.selector').bind('sortdeactivate', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .sortable( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the sortable functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .sortable( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the sortable.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .sortable( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the sortable.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .sortable( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any sortable option. If no value is specified, will act as a getter.

    +
    +
  • + + +
  • +
    +

    serialize

    +
    +
    Signature:
    +
    .sortable( 'serialize' + +, [options] + + + + + +)
    +
    +
    +
    +

    Serializes the sortable's item id's into a form/ajax submittable string. Calling this method produces a hash that can be appended to any url to easily submit a new item order back to the server. +

    It works by default by looking at the id of each item in the format 'setname_number', and it spits out a hash like "setname[]=number&setname[]=number". +

    You can also give in a option hash as second argument to custom define how the function works. The possible options are: 'key' (replaces part1[] with whatever you want), 'attribute' (test another attribute than 'id') and 'expression' (use your own regexp). +

    If serialize returns an empty string, make sure the id attributes include an underscore. They must be in the form: "set_number" For example, a 3 element list with id attributes foo_1, foo_5, foo_2 will serialize to foo[]=1&foo[]=5&foo[]=2. You can use an underscore, equal sign or hyphen to separate the set and number. For example foo=1 or foo-1 or foo_1 all serialize to foo[]=1.

    +
    +
  • + + +
  • +
    +

    toArray

    +
    +
    Signature:
    +
    .sortable( 'toArray' + + + + + + + +)
    +
    +
    +
    +

    Serializes the sortable's item id's into an array of string. If you have +

    +
    +<ul id="a_sortable"><br>
    +<li id="hello">Hello</li><br>
    +<li id="goodbye">Good bye</li><br>
    +</ul>
    +
    +

    and do +

    +
    var result = $('#a_sortable').sortable('toArray');
    +

    then +

    +
    result[0] will contain "hello" and result[1] will contain "goodbye".

    +
    +
  • + +

    +

  • +
    +

    refresh

    +
    +
    Signature:
    +
    .sortable( 'refresh' + + + + + + + +)
    +
    +
    +
    +

    Refresh the sortable items. Custom trigger the reloading of all sortable items, causing new items to be recognized.

    +
    +
  • + + +
  • +
    +

    refreshPositions

    +
    +
    Signature:
    +
    .sortable( 'refreshPositions' + + + + + + + +)
    +
    +
    +
    +

    Refresh the cached positions of the sortables' items. Calling this method refreshes the cached item positions of all sortables. This is usually done automatically by the script and slows down performance. Use wisely.

    +
    +
  • + + +
  • +
    +

    cancel

    +
    +
    Signature:
    +
    .sortable( 'cancel' + + + + + + + +)
    +
    +
    +
    +

    Cancels a change in the current sortable and reverts it back to how it was before the current sort started. Useful in the stop and receive callback functions. +

    If the sortable item is not being moved from one connected sortable to another: +

    +
    $(this).sortable('cancel');
    +

    will cancel the change. +

    If the sortable item is being moved from one connected sortable to another: +

    +
    $(ui.sender).sortable('cancel');
    +

    will cancel the change. Useful in the 'receive' callback.

    +
    +
  • + +
+
+
+

Theming

+

The jQuery UI Sortable plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.sortable.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <ul class="ui-sortable">
+   <li></li>
+   <li></li>
+   <li></li>
+</ul> +

+ + Note: This is a sample of markup generated by the sortable plugin, not markup you should use to create a sortable. The only markup needed for that is
<ul>
+   <li></li>
+   <li></li>
+   <li></li>
+</ul>. +
+

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/switchClass.html b/media/js/development-bundle/docs/switchClass.html new file mode 100644 index 0000000..b2e1b83 --- /dev/null +++ b/media/js/development-bundle/docs/switchClass.html @@ -0,0 +1,128 @@ + + +
+

jQuery UI switchClass

+
+

Overview

+
+

switchClass( remove, add, [duration] )

+

Switches from the class defined in the first argument to the class defined as second argument, using an optional transition.

+
+
+

Dependencies

+
    +
  • Effects Core
  • +
+
+
+

Example

+
+ +

+Switch the class 'highlight' to 'blue' when a paragraph is clicked with a one second transition.
+

+
$("p").click(function () {
+      $(this).switchClass("highlight", "blue", 1000);
+    });
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
+<style type="text/css">
+  p { margin: 4px; font-size:16px; font-weight:bolder; 
+      cursor:pointer; }
+  .blue { background: blue; }
+  .highlight { background:yellow; }
+</style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("p").click(function () {
+      $(this).switchClass("highlight", "blue", 1000);
+    });
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<p class="highlight">Click to switch</p>
+<p class="highlight">to blue</p>
+<p class="highlight">on these</p>
+<p class="highlight">paragraphs</p>
+
+</body>
+</html>
+
+

+

+
+
+
+

Arguments

+
    + +
  • +
    +

    remove

    +
    +
    Type:
    +
    String
    + +
    +
    +
    +

    The CSS class that will be removed.

    +
    +
  • + + +
  • +
    +

    add

    +
    +
    Type:
    +
    String
    + +
    +
    +
    +

    The CSS class that will be added.

    +
    +
  • + + +
  • +
    +

    duration

    +
    +
    Type:
    +
    String, Number
    + +
    Optional
    + +
    +
    +
    +

    A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).

    +
    +
  • + +
+
+
+ +

+ + diff --git a/media/js/development-bundle/docs/tabs.html b/media/js/development-bundle/docs/tabs.html new file mode 100644 index 0000000..b500cf5 --- /dev/null +++ b/media/js/development-bundle/docs/tabs.html @@ -0,0 +1,1426 @@ + + +
+

jQuery UI Tabs

+
+

Overview

+
+

Tabs are generally used to break content into multiple sections that can be swapped to save space, much like an accordion.

+

By default a tab widget will swap between tabbed sections onClick, but the events can be changed to onHover through an option. Tab content can be loaded via Ajax by setting an href on a tab.

+

Contents

+ +
+

Events

+

A series of events fire when interacting with a tabs interface: +

+
  • tabsselect, tabsload, tabsshow (in that order) +
  • tabsadd, tabsremove +
  • tabsenable, tabsdisable +
+

Event binding example: +

+
$('#example').bind('tabsselect', function(event, ui) {
+
+    // Objects available in the function context:
+    ui.tab     // anchor element of the selected (clicked) tab
+    ui.panel   // element, that contains the selected/clicked tab contents
+    ui.index   // zero-based index of the selected (clicked) tab
+
+});
+

Note that if a handler for the tabsselect event returns false, the clicked tab will not become selected (useful for example if switching to the next tab requires a form validation). +

+

Ajax mode

+

Tabs supports loading tab content via Ajax in an unobtrusive manner. +

The HTML you need is slightly different from the one that is used for static tabs: A list of links pointing to existing resources (from where the content gets loaded) and no additional containers at all (unobtrusive!). The containers' markup is going to be created on the fly: +

+
+<div id="example">
+     <ul>
+         <li><a href="ahah_1.html"><span>Content 1</span></a></li>
+         <li><a href="ahah_2.html"><span>Content 2</span></a></li>
+         <li><a href="ahah_3.html"><span>Content 3</span></a></li>
+     </ul>
+</div>
+
+

Obviously this degrades gracefully - the links, e.g. the content, will still be accessible with JavaScript disabled. +

Note that if you wish to reuse an existing container, you +could do so by matching a title attribute and the container's id: +

+
+<li><a href="hello/world.html" title="Todo Overview"> ... </a></li>
+
+

and a container like: +

+
+<div id="Todo_Overview"> ... </div>
+
+

(Note how white space is replaced with an underscore) +

This is useful if you want a human readable hash in the URL instead of +a cryptic generated one. +

+

Back button and bookmarking

+

Tabs 2 already supported this functionality, although the history plugin needs a rewrite first (it doesn't support Safari 3 and is in general a little inflexible) before it can be build back into the tabs. It is planned and Klaus is working on it whenever he finds the time. Actual bugs in the UI Tabs plugin itself always have higher priority though. +

+

How to...

+

...retrieve the index of the currently selected tab

+
var $tabs = $('#example').tabs();
+var selected = $tabs.tabs('option', 'selected'); // => 0
+

...open links in the current tab instead of leaving the page

+

"Hijax" links after tab content has been loaded: +

+
$('#example').tabs({
+    load: function(event, ui) {
+        $('a', ui.panel).click(function() {
+            $(ui.panel).load(this.href);
+            return false;
+        });
+    }
+});
+

...select a tab from a text link instead of clicking a tab itself

+
var $tabs = $('#example').tabs(); // first tab selected
+
+$('#my-text-link').click(function() { // bind click event to link
+    $tabs.tabs('select', 2); // switch to third tab
+    return false;
+});
+

...prevent switching to the tab on click depending on form validation

+

Returning false in the tabs select handler prevents the clicked tab from becoming selected. +

+
$('#example').tabs({
+    select: function(event, ui) {
+        var isValid = ... // form validation returning true or false
+        return isValid;
+    }
+});
+

...immediately select a just added tab

+
var $tabs = $('#example').tabs({
+    add: function(event, ui) {
+        $tabs.tabs('select', '#' + ui.panel.id);
+    }
+});
+

...follow a tab's URL instead of loading its content via ajax

+

Note that opening a tab in a new window is unexpected, e.g. +inconsistent behaviour exposing a usablity problem (http://www.useit.com/alertbox/tabs.html). +

+
$('#example').tabs({
+    select: function(event, ui) {
+        var url = $.data(ui.tab, 'load.tabs');
+        if( url ) {
+            location.href = url;
+            return false;
+        }
+        return true;
+    }
+});
+


+

+

...prevent a FOUC (Flash of Unstyled Content) before tabs are initialized

+

Add the necessary classes to hide an inactive tab panel to the HTML right away - note that this will not degrade gracefully with JavaScript being disabled: +

+
<div id="example" class="ui-tabs">
+  ...
+  <div id="a-tab-panel" class="ui-tabs-hide"> </div>
+  ...
+</div>
+

Why does...

+

...my slider, Google Map, sIFR etc. not work when placed in a hidden (inactive) tab?

+

Any component that requires some dimensional computation for its initialization won't work in a hidden tab, because the tab panel itself is hidden via display: none so that any elements inside won't report their actual width and height (0 in most browsers). +

There's an easy workaround. Use the off-left technique for hiding inactive tab panels. E.g. in your style sheet replace the rule for the class selector ".ui-tabs .ui-tabs-hide" with +

+
.ui-tabs .ui-tabs-hide {
+    position: absolute;
+    left: -10000px;
+}
+

For Google maps you can also resize the map once the tab is displayed like this: +

+
$('#example').bind('tabsshow', function(event, ui) {
+    if (ui.panel.id == "map-tab") {
+        resizeMap();
+    }
+});
+resizeMap() will call Google Maps' checkResize() on the particular map. +
+
+

Dependencies

+
    +
  • UI Core
  • +
  • To use the cookie option: jquery.cookie.js
  • +
  • Required CSS: +
    .ui-tabs .ui-tabs-hide {
    +     display: none;
    +}
  • +
+
+
+

Example

+
+ +

+A simple jQuery UI Tabs.
+

+
$("#tabs").tabs();
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
+  <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.tabs.js"></script>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("#tabs").tabs();
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<div id="tabs">
+    <ul>
+        <li><a href="#fragment-1"><span>One</span></a></li>
+        <li><a href="#fragment-2"><span>Two</span></a></li>
+        <li><a href="#fragment-3"><span>Three</span></a></li>
+    </ul>
+    <div id="fragment-1">
+        <p>First tab is active by default:</p>
+        <pre><code>$('#example').tabs();</code></pre>
+    </div>
+    <div id="fragment-2">
+        Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
+        Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
+    </div>
+    <div id="fragment-3">
+        Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
+        Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
+        Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
+    </div>
+</div>
+</body>
+</html>
+
+

+

+
+
+
+

Options

+
    + +
  • +
    +

    ajaxOptions

    +
    +
    Type:
    +
    Options
    + +
    Default:
    +
    null
    + +
    +
    +
    +

    Additional Ajax options to consider when loading tab content (see $.ajax).

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the ajaxOptions option specified. +
    +
    +
    $('.selector').tabs({ ajaxOptions: { async: false } });
    +
    + + +
    + Get or set the ajaxOptions option, after init. +
    +
    +
    //getter
    +var ajaxOptions = $('.selector').tabs('option', 'ajaxOptions');
    +//setter
    +$('.selector').tabs('option', 'ajaxOptions', { async: false });
    +
    + +
    +
    +
  • + + +
  • +
    +

    cache

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Whether or not to cache remote tabs content, e.g. load only once or with every click. Cached content is being lazy loaded, e.g once and only once for the first click. Note that to prevent the actual Ajax requests from being cached by the browser you need to provide an extra cache: false flag to ajaxOptions.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the cache option specified. +
    +
    +
    $('.selector').tabs({ cache: true });
    +
    + + +
    + Get or set the cache option, after init. +
    +
    +
    //getter
    +var cache = $('.selector').tabs('option', 'cache');
    +//setter
    +$('.selector').tabs('option', 'cache', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    collapsible

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    Set to true to allow an already selected tab to become unselected again upon reselection.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the collapsible option specified. +
    +
    +
    $('.selector').tabs({ collapsible: true });
    +
    + + +
    + Get or set the collapsible option, after init. +
    +
    +
    //getter
    +var collapsible = $('.selector').tabs('option', 'collapsible');
    +//setter
    +$('.selector').tabs('option', 'collapsible', true);
    +
    + +
    +
    +
  • + + + + + +
  • +
    +

    deselectable

    +
    +
    Type:
    +
    Boolean
    + +
    Default:
    +
    false
    + +
    +
    +
    +

    deprecated in jQuery UI 1.7, use collapsible.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the deselectable option specified. +
    +
    +
    $('.selector').tabs({ deselectable: true });
    +
    + + +
    + Get or set the deselectable option, after init. +
    +
    +
    //getter
    +var deselectable = $('.selector').tabs('option', 'deselectable');
    +//setter
    +$('.selector').tabs('option', 'deselectable', true);
    +
    + +
    +
    +
  • + + +
  • +
    +

    disabled

    +
    +
    Type:
    +
    Array<Number>
    + +
    Default:
    +
    []
    + +
    +
    +
    +

    An array containing the position of the tabs (zero-based index) that should be disabled on initialization.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the disabled option specified. +
    +
    +
    $('.selector').tabs({ disabled: [1, 2] });
    +
    + + +
    + Get or set the disabled option, after init. +
    +
    +
    //getter
    +var disabled = $('.selector').tabs('option', 'disabled');
    +//setter
    +$('.selector').tabs('option', 'disabled', [1, 2]);
    +
    + +
    +
    +
  • + + +
  • +
    +

    event

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'click'
    + +
    +
    +
    +

    The type of event to be used for selecting a tab.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the event option specified. +
    +
    +
    $('.selector').tabs({ event: 'mouseover' });
    +
    + + +
    + Get or set the event option, after init. +
    +
    +
    //getter
    +var event = $('.selector').tabs('option', 'event');
    +//setter
    +$('.selector').tabs('option', 'event', 'mouseover');
    +
    + +
    +
    +
  • + + +
  • +
    +

    fx

    +
    +
    Type:
    +
    Options, Array<Options>
    + +
    Default:
    +
    null
    + +
    +
    +
    +

    Enable animations for hiding and showing tab panels. The duration option can be a string representing one of the three predefined speeds ("slow", "normal", "fast") or the duration in milliseconds to run an animation (default is "normal").

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the fx option specified. +
    +
    +
    $('.selector').tabs({ fx: { opacity: 'toggle' } });
    +
    + + +
    + Get or set the fx option, after init. +
    +
    +
    //getter
    +var fx = $('.selector').tabs('option', 'fx');
    +//setter
    +$('.selector').tabs('option', 'fx', { opacity: 'toggle' });
    +
    + +
    +
    +
  • + + +
  • +
    +

    idPrefix

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    'ui-tabs-'
    + +
    +
    +
    +

    If the remote tab, its anchor element that is, has no title attribute to generate an id from, an id/fragment identifier is created from this prefix and a unique id returned by $.data(el), for example "ui-tabs-54".

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the idPrefix option specified. +
    +
    +
    $('.selector').tabs({ idPrefix: 'ui-tabs-primary' });
    +
    + + +
    + Get or set the idPrefix option, after init. +
    +
    +
    //getter
    +var idPrefix = $('.selector').tabs('option', 'idPrefix');
    +//setter
    +$('.selector').tabs('option', 'idPrefix', 'ui-tabs-primary');
    +
    + +
    +
    +
  • + + +
  • +
    +

    panelTemplate

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    '<div></div>'
    + +
    +
    +
    +

    HTML template from which a new tab panel is created in case of adding a tab with the add method or when creating a panel for a remote tab on the fly.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the panelTemplate option specified. +
    +
    +
    $('.selector').tabs({ panelTemplate: '<li></li>' });
    +
    + + +
    + Get or set the panelTemplate option, after init. +
    +
    +
    //getter
    +var panelTemplate = $('.selector').tabs('option', 'panelTemplate');
    +//setter
    +$('.selector').tabs('option', 'panelTemplate', '<li></li>');
    +
    + +
    +
    +
  • + + +
  • +
    +

    selected

    +
    +
    Type:
    +
    Number
    + +
    Default:
    +
    0
    + +
    +
    +
    +

    Zero-based index of the tab to be selected on initialization. To set all tabs to unselected pass -1 as value.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the selected option specified. +
    +
    +
    $('.selector').tabs({ selected: 3 });
    +
    + + +
    + Get or set the selected option, after init. +
    +
    +
    //getter
    +var selected = $('.selector').tabs('option', 'selected');
    +//setter
    +$('.selector').tabs('option', 'selected', 3);
    +
    + +
    +
    +
  • + + +
  • +
    +

    spinner

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    '<em>Loading&#8230;</em>'
    + +
    +
    +
    +

    The HTML content of this string is shown in a tab title while remote content is loading. Pass in empty string to deactivate that behavior.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the spinner option specified. +
    +
    +
    $('.selector').tabs({ spinner: 'Retrieving data...' });
    +
    + + +
    + Get or set the spinner option, after init. +
    +
    +
    //getter
    +var spinner = $('.selector').tabs('option', 'spinner');
    +//setter
    +$('.selector').tabs('option', 'spinner', 'Retrieving data...');
    +
    + +
    +
    +
  • + + +
  • +
    +

    tabTemplate

    +
    +
    Type:
    +
    String
    + +
    Default:
    +
    '<li><a href="#{href}"><span>#{label}</span></a></li>'
    + +
    +
    +
    +

    HTML template from which a new tab is created and added. The placeholders #{href} and #{label} are replaced with the url and tab label that are passed as arguments to the add method.

    +
    +
    +

    Code examples

    +
    + +
    + Initialize a tabs with the tabTemplate option specified. +
    +
    +
    $('.selector').tabs({ tabTemplate: '<div><a href="#{href}"><span>#{label}</span></a></div>' });
    +
    + + +
    + Get or set the tabTemplate option, after init. +
    +
    +
    //getter
    +var tabTemplate = $('.selector').tabs('option', 'tabTemplate');
    +//setter
    +$('.selector').tabs('option', 'tabTemplate', '<div><a href="#{href}"><span>#{label}</span></a></div>');
    +
    + +
    +
    +
  • + +
+
+
+

Events

+
    + +
  • +
    +

    select

    +
    +
    Type:
    +
    tabsselect
    +
    +
    +
    +

    This event is triggered when clicking a tab.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the select event as an init option. +
    +
    +
    $('.selector').tabs({
    +   select: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the select event by type: tabsselect. +
    +
    +
    $('.selector').bind('tabsselect', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    load

    +
    +
    Type:
    +
    tabsload
    +
    +
    +
    +

    This event is triggered after the content of a remote tab has been loaded.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the load event as an init option. +
    +
    +
    $('.selector').tabs({
    +   load: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the load event by type: tabsload. +
    +
    +
    $('.selector').bind('tabsload', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    show

    +
    +
    Type:
    +
    tabsshow
    +
    +
    +
    +

    This event is triggered when a tab is shown.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the show event as an init option. +
    +
    +
    $('.selector').tabs({
    +   show: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the show event by type: tabsshow. +
    +
    +
    $('.selector').bind('tabsshow', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    add

    +
    +
    Type:
    +
    tabsadd
    +
    +
    +
    +

    This event is triggered when a tab is added.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the add event as an init option. +
    +
    +
    $('.selector').tabs({
    +   add: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the add event by type: tabsadd. +
    +
    +
    $('.selector').bind('tabsadd', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    remove

    +
    +
    Type:
    +
    tabsremove
    +
    +
    +
    +

    This event is triggered when a tab is removed.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the remove event as an init option. +
    +
    +
    $('.selector').tabs({
    +   remove: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the remove event by type: tabsremove. +
    +
    +
    $('.selector').bind('tabsremove', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Type:
    +
    tabsenable
    +
    +
    +
    +

    This event is triggered when a tab is enabled.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the enable event as an init option. +
    +
    +
    $('.selector').tabs({
    +   enable: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the enable event by type: tabsenable. +
    +
    +
    $('.selector').bind('tabsenable', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Type:
    +
    tabsdisable
    +
    +
    +
    +

    This event is triggered when a tab is disabled.

    +
    +
    +

    Code examples

    +
    + +
    + Supply a callback function to handle the disable event as an init option. +
    +
    +
    $('.selector').tabs({
    +   disable: function(event, ui) { ... }
    +});
    +
    + + +
    + Bind to the disable event by type: tabsdisable. +
    +
    +
    $('.selector').bind('tabsdisable', function(event, ui) {
    +  ...
    +});
    +
    + +
    +
    +
  • + +
+
+
+

Methods

+
    + +
  • +
    +

    destroy

    +
    +
    Signature:
    +
    .tabs( 'destroy' + + + + + + + +)
    +
    +
    +
    +

    Remove the tabs functionality completely. This will return the element back to its pre-init state.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .tabs( 'disable' + + + + + + + +)
    +
    +
    +
    +

    Disable the tabs.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .tabs( 'enable' + + + + + + + +)
    +
    +
    +
    +

    Enable the tabs.

    +
    +
  • + + +
  • +
    +

    option

    +
    +
    Signature:
    +
    .tabs( 'option' + +, optionName + +, [value] + + + +)
    +
    +
    +
    +

    Get or set any tabs option. If no value is specified, will act as a getter.

    +
    +
  • + + +
  • +
    +

    add

    +
    +
    Signature:
    +
    .tabs( 'add' + +, url + +, label + +, [index] + +)
    +
    +
    +
    +

    Add a new tab. The second argument is either a URL consisting of a fragment identifier only to create an in-page tab or a full url (relative or absolute, no cross-domain support) to turn the new tab into an Ajax (remote) tab. The third is the zero-based position where to insert the new tab. Optional, by default a new tab is appended at the end.

    +
    +
  • + + +
  • +
    +

    remove

    +
    +
    Signature:
    +
    .tabs( 'remove' + +, index + + + + + +)
    +
    +
    +
    +

    Remove a tab. The second argument is the zero-based index of the tab to be removed.

    +
    +
  • + + +
  • +
    +

    enable

    +
    +
    Signature:
    +
    .tabs( 'enable' + +, index + + + + + +)
    +
    +
    +
    +

    Enable a disabled tab. To enable more than one tab at once reset the disabled property like: $('#example').data('disabled.tabs', []);. The second argument is the zero-based index of the tab to be enabled.

    +
    +
  • + + +
  • +
    +

    disable

    +
    +
    Signature:
    +
    .tabs( 'disable' + +, index + + + + + +)
    +
    +
    +
    +

    Disable a tab. The selected tab cannot be disabled. To disable more than one tab at once use: $('#example').data('disabled.tabs', [1, 2, 3]); The second argument is the zero-based index of the tab to be disabled.

    +
    +
  • + + +
  • +
    +

    select

    +
    +
    Signature:
    +
    .tabs( 'select' + +, index + + + + + +)
    +
    +
    +
    +

    Select a tab, as if it were clicked. The second argument is the zero-based index of the tab to be selected or the id selector of the panel the tab is associated with (the tab's href fragment identifier, e.g. hash, points to the panel's id).

    +
    +
  • + + +
  • +
    +

    load

    +
    +
    Signature:
    +
    .tabs( 'load' + +, index + + + + + +)
    +
    +
    +
    +

    Reload the content of an Ajax tab programmatically. This method always loads the tab content from the remote location, even if cache is set to true. The second argument is the zero-based index of the tab to be reloaded.

    +
    +
  • + + +
  • +
    +

    url

    +
    +
    Signature:
    +
    .tabs( 'url' + +, index + +, url + + + +)
    +
    +
    +
    +

    Change the url from which an Ajax (remote) tab will be loaded. The specified URL will be used for subsequent loads. Note that you can not only change the URL for an existing remote tab with this method, but also turn an in-page tab into a remote tab. The second argument is the zero-based index of the tab of which its URL is to be updated. The third is a URL the content of the tab is loaded from.

    +
    +
  • + + +
  • +
    +

    length

    +
    +
    Signature:
    +
    .tabs( 'length' + + + + + + + +)
    +
    +
    +
    +

    Retrieve the number of tabs of the first matched tab pane.

    +
    +
  • + + +
  • +
    +

    abort

    +
    +
    Signature:
    +
    .tabs( 'abort' + + + + + + + +)
    +
    +
    +
    +

    Terminate all running tab ajax requests and animations.

    +
    +
  • + + +
  • +
    +

    rotate

    +
    +
    Signature:
    +
    .tabs( 'rotate' + +, ms + +, [continuing] + + + +)
    +
    +
    +
    +

    Set up an automatic rotation through tabs of a tab pane. The second argument is an amount of time in milliseconds until the next tab in the cycle gets activated. Use 0 or null to stop the rotation. The third controls whether or not to continue the rotation after a tab has been selected by a user. Default: false.

    +
    +
  • + +
+
+
+

Theming

+

The jQuery UI Tabs plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. +

+

If a deeper level of customization is needed, there are widget-specific classes referenced within the ui.tabs.css stylesheet that can be modified. These classes are highlighed in bold below. +

+ +

Sample markup with jQuery UI CSS Framework classes

+ <div class="ui-tabs ui-widget ui-widget-content ui-corner-all" id="tabs">
+   <ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
+     <li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active"><a href="#tabs-1">Nunc tincidunt</a></li>
+      <li class="ui-state-default ui-corner-top"><a href="#tabs-2">Proin dolor</a></li>
+   <div class="ui-tabs-panel ui-widget-content ui-corner-bottom" id="tabs-1">
+      <p>Tab one content goes here.</p>
+   </div>
+    ...
+</div>
+

+ + Note: This is a sample of markup generated by the tabs plugin, not markup you should use to create a tabs. The only markup needed for that is
<div id="tabs">
+   <ul>
+      <li><a href="#tabs-1">Nunc tincidunt</a></li>
+      <li><a href="#tabs-2">Proin dolor</a></li>
+      <li><a href="#tabs-3">Aenean lacinia</a></li>
+   </ul>
+   <div id="tabs-1">
+      <p>Tab 1 content</p>
+   </div>
+   <div id="tabs-2">
+      <p>Tab 2 content</p>
+   </div>
+   <div id="tabs-3">
+      <p>Tab 3 content</p>
+   </div>
+</div>. +
+

+ +
+
+ +

+ + diff --git a/media/js/development-bundle/docs/toggle.html b/media/js/development-bundle/docs/toggle.html new file mode 100644 index 0000000..f569345 --- /dev/null +++ b/media/js/development-bundle/docs/toggle.html @@ -0,0 +1,143 @@ + + +
+

jQuery UI toggle

+
+

Overview

+
+

toggle( effect, [options], [speed], [callback] )

+

The enhanced toggle method optionally accepts jQuery UI advanced effects.

+

Uses a specific effect on an element to toggle the element if the first argument is an effect string.

+
+
+

Dependencies

+
    +
  • Effects Core
  • +
+
+
+

Example

+
+ +

+Apply the effect slide if you click on the p to toggle a div.
+

+
$("p").click(function () {
+      $("div").toggle("slide", {}, 1000);
+    });
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
+<script src="http://ui.jquery.com/latest/ui/effects.slide.js"></script>
+<style type="text/css">
+  div { display: none; margin: 0px; width: 100px; height: 80px; background: blue; position: relative; }
+</style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("p").click(function () {
+      $("div").toggle("slide", {}, 1000);
+    });
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<p>Click me</p><div></div>
+
+</body>
+</html>
+
+

+

+
+
+
+

Arguments

+
    + +
  • +
    +

    effect

    +
    +
    Type:
    +
    String
    + +
    +
    +
    +

    The effect to be used. Possible values: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'.

    +
    +
  • + + +
  • +
    +

    options

    +
    +
    Type:
    +
    Hash
    + +
    Optional
    + +
    +
    +
    +

    A object/hash including specific options for the effect.

    +
    +
  • + + +
  • +
    +

    speed

    +
    +
    Type:
    +
    String, Number
    + +
    Optional
    + +
    +
    +
    +

    A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).

    +
    +
  • + + +
  • +
    +

    callback

    +
    +
    Type:
    +
    Function
    + +
    Optional
    + +
    +
    +
    +

    A function that is called after the effect is completed.

    +
    +
  • + +
+
+
+ +

+ + diff --git a/media/js/development-bundle/docs/toggleClass.html b/media/js/development-bundle/docs/toggleClass.html new file mode 100644 index 0000000..6740cc3 --- /dev/null +++ b/media/js/development-bundle/docs/toggleClass.html @@ -0,0 +1,110 @@ + + +
+

jQuery UI toggleClass

+
+

Overview

+
+

toggleClass( class, [duration] )

+

Adds the specified class if it is not present, and removes the specified class if it is present, using an optional transition.

+
+
+

Dependencies

+
    +
  • Effects Core
  • +
+
+
+

Example

+
+ +

+Adds the 'selected' class if it is not present, and removes the 'selected' class if it is present.
+

+
$("p").click(function () {
+      $(this).toggleClass("selected", 1000);
+    });
+
+

+

+
<!DOCTYPE html>
+<html>
+<head>
+  <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
+  <script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
+<style type="text/css">
+  p { cursor: pointer; font-size: 1.2em; }
+  .selected { color:red; }
+</style>
+  <script type="text/javascript">
+  $(document).ready(function(){
+    $("p").click(function () {
+      $(this).toggleClass("selected", 1000);
+    });
+  });
+  </script>
+</head>
+<body style="font-size:62.5%;">
+  
+<p>Click me to toggle 'selected' class.</p>
+<p class="selected">Click me to toggle 'selected' class.</p>
+<p>Click me to toggle 'selected' class.</p>
+
+</body>
+</html>
+
+

+

+
+
+
+

Arguments

+
    + +
  • +
    +

    class

    +
    +
    Type:
    +
    String
    + +
    +
    +
    +

    A CSS class to toggle on the elements.

    +
    +
  • + + +
  • +
    +

    duration

    +
    +
    Type:
    +
    String, Number
    + +
    Optional
    + +
    +
    +
    +

    A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).

    +
    +
  • + +
+
+
+ +

+ + diff --git a/media/js/development-bundle/external/bgiframe/ChangeLog.txt b/media/js/development-bundle/external/bgiframe/ChangeLog.txt new file mode 100644 index 0000000..ccebcbf --- /dev/null +++ b/media/js/development-bundle/external/bgiframe/ChangeLog.txt @@ -0,0 +1,20 @@ +== New and Noteworthy == + +== 2.1.1 == + +* Removed $.browser.version for jQuery < 1.1.3 + +== 2.1 == + +* Updated to work with jQuery 1.1.3 +* Added $.browser.version for jQuery < 1.1.3 +* Optimized duplication check by using child selector and using .length test + +== 2.0 == + +* Added ability change settings like width, height, src and more. + +== 1.0 == + +* Only adds iframe once per an element +* Works with SSL enabled pages \ No newline at end of file diff --git a/media/js/development-bundle/external/bgiframe/META.json b/media/js/development-bundle/external/bgiframe/META.json new file mode 100644 index 0000000..5be79cc --- /dev/null +++ b/media/js/development-bundle/external/bgiframe/META.json @@ -0,0 +1,32 @@ +{ + "name": "jQuery-bgiframe", + "version": 2.1, + "author": [ + "Brandon Aaron " + ], + "abstract": "jQuery plugin for fixing z-index issues in IE6", + "license": "mit, gpl", + "distribution_type": "plugin", + "requires": { + "jQuery": ">=1.0.3" + }, + "provides": { + "jQuery.bgiframe": { + "version": 2.1, + "file": "jquery.bgiframe.js" + } + }, + "keywords": [ + "iframe", + "hack", + "zIndex", + "z-index", + "ie6" + ], + "stability": "Official", + "meta-spec": { + "version": 1.3, + "url": "http://module-build.sourceforge.net/META-spec-v1.3.html" + }, + "generated_by": "Brandon Aaron" +} diff --git a/media/js/development-bundle/external/bgiframe/docs/index.html b/media/js/development-bundle/external/bgiframe/docs/index.html new file mode 100644 index 0000000..1776b4d --- /dev/null +++ b/media/js/development-bundle/external/bgiframe/docs/index.html @@ -0,0 +1,113 @@ + + + + + bgiframe 2.1.1 docs + + + + + +
+
+

bgiframe 2.1.1

+ +
+
What does it do?
+
+

Have you ever experienced the select form element z-index issue in Internet Explorer 6? Most likely you have if you've implemented some sort of drop down menu navigation that shows up over a select form element.

+

The background iframe (bgiframe) plugin provides a very small, quick and easy way to fix that problem so you don't have to worry about it. No matter the size, borders or position the bgiframe plugin can fix it.

+
+ +
When should I use it?
+
+

The bgiframe plugin should be used when you are trying to show elements above a select form control in Internet Explorer 6.

+
+ +
How do I use it?
+
+

The usage is simple. Just call bgiframe on a jQuery collection of elements.

+

$('.fix-z-index').bgiframe();

+

The plugin tries its best to handle most situations but sometimes some configuration is necessary. For example if your borders are defined in a unit other than pixels, you will need to manually set the top and left properties to the negative width of the border. Here are the options/settings available to configure the output.

+
+
top
+
+

The iframe must be offset to the top by the width of the top border. This should be a negative number representing the border-top-width. If a number is is used here, pixels will be assumed. Otherwise, be sure to specify a unit. An expression could also be used. By default the value is "auto" which will use an expression to get the border-top-width if it is in pixels.

+

$('.fix-z-index').bgiframe({ top: '-1em' });

+
+
left
+
+

The iframe must be offset to the left by the width of the left border. This should be a negative number representing the border-left-width. If a number is used here, pixels will be assumed. Otherwise, be sure to specify a unit. An expression could also be used. By default the value is "auto" which will use an expression to get the border-left-width if it is in pixels.

+

$('.fix-z-index').bgiframe({ left: '-1em' });

+
+
width
+
+

This is the width of the iframe. If a number is used here, pixels will be assume. Otherwise, be sure to specify a unit. An expression could also be used. By default the value is "auto" which will use an expression to get the offsetWidth.

+

$('.fix-z-index').bgiframe({ width: 100 });

+
+
height
+
+

This is the height of the iframe. If a number is used here, pixels will be assume. Otherwise, be sure to specify a unit. An expression could also be used. By default the value is "auto" which will use an expression to get the offsetHeight.

+

$('.fix-z-index').bgiframe({ height: 100 });

+
+
opacity
+
+

This is a boolean representing whether or not to use opacity. If set to true, the opacity of 0 is applied. If set to false, the opacity filter is not applied. Default: true.

+

$('.fix-z-index').bgiframe({ opacity: false });

+
+
src
+
+

This setting is provided so that one could change the src of the iframe to whatever they need. Default: "javascript:false;"

+

$('.fix-z-index').bgiframe({ src: '#' });

+
+
+
+ +
How does it work?
+
+

The bgiframe plugin works by prepending an iframe to the element. The iframe is given a class of bgiframe and positioned below all the other children of the element. In the default configuration it automatically adjusts to the width and height of the element (including the borders) and the opacity is set to 0. The element needs to have position (relative or absolute) and should have a background (color or image).

+

Check out the test page to see the plugin in action.

+
+ +
Where can I get it?
+
+
    +
  • 2.1 zip from the bgiframe project page.
  • +
  • Latest SVN: http://jqueryjs.googlecode.com/svn/trunk/plugins/bgiframe/
  • +
  • Tagged Versions in SVN: Latest SVN: http://jqueryjs.googlecode.com/svn/tags/plugins/bgiframe/
  • +
+
+ +
Suggestions? Bugs? Patches?
+
+

Feel free to make any suggestions, bug reports or add any patches via the project page.

+
+
+

The bgiframe plugin is authored by Brandon Aaron (http://brandonaaron.net/)

+
+
+ + \ No newline at end of file diff --git a/media/js/development-bundle/external/bgiframe/jquery.bgiframe.js b/media/js/development-bundle/external/bgiframe/jquery.bgiframe.js new file mode 100644 index 0000000..3a01f6e --- /dev/null +++ b/media/js/development-bundle/external/bgiframe/jquery.bgiframe.js @@ -0,0 +1,100 @@ +/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net) + * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) + * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. + * + * $LastChangedDate: 2007-07-21 18:44:59 -0500 (Sat, 21 Jul 2007) $ + * $Rev: 2446 $ + * + * Version 2.1.1 + */ + +(function($){ + +/** + * The bgiframe is chainable and applies the iframe hack to get + * around zIndex issues in IE6. It will only apply itself in IE6 + * and adds a class to the iframe called 'bgiframe'. The iframe + * is appeneded as the first child of the matched element(s) + * with a tabIndex and zIndex of -1. + * + * By default the plugin will take borders, sized with pixel units, + * into account. If a different unit is used for the border's width, + * then you will need to use the top and left settings as explained below. + * + * NOTICE: This plugin has been reported to cause perfromance problems + * when used on elements that change properties (like width, height and + * opacity) a lot in IE6. Most of these problems have been caused by + * the expressions used to calculate the elements width, height and + * borders. Some have reported it is due to the opacity filter. All + * these settings can be changed if needed as explained below. + * + * @example $('div').bgiframe(); + * @before

Paragraph

+ * @result
' : ''); + inst._keyEvent = false; + return html; + }, + + /* Generate the month and year header. */ + _generateMonthYearHeader: function(inst, drawMonth, drawYear, minDate, maxDate, + selectedDate, secondary, monthNames, monthNamesShort) { + minDate = (inst.rangeStart && minDate && selectedDate < minDate ? selectedDate : minDate); + var changeMonth = this._get(inst, 'changeMonth'); + var changeYear = this._get(inst, 'changeYear'); + var showMonthAfterYear = this._get(inst, 'showMonthAfterYear'); + var html = '
'; + var monthHtml = ''; + // month selection + if (secondary || !changeMonth) + monthHtml += '' + monthNames[drawMonth] + ' '; + else { + var inMinYear = (minDate && minDate.getFullYear() == drawYear); + var inMaxYear = (maxDate && maxDate.getFullYear() == drawYear); + monthHtml += ''; + } + if (!showMonthAfterYear) + html += monthHtml + ((secondary || changeMonth || changeYear) && (!(changeMonth && changeYear)) ? ' ' : ''); + // year selection + if (secondary || !changeYear) + html += '' + drawYear + ''; + else { + // determine range of years to display + var years = this._get(inst, 'yearRange').split(':'); + var year = 0; + var endYear = 0; + if (years.length != 2) { + year = drawYear - 10; + endYear = drawYear + 10; + } else if (years[0].charAt(0) == '+' || years[0].charAt(0) == '-') { + year = drawYear + parseInt(years[0], 10); + endYear = drawYear + parseInt(years[1], 10); + } else { + year = parseInt(years[0], 10); + endYear = parseInt(years[1], 10); + } + year = (minDate ? Math.max(year, minDate.getFullYear()) : year); + endYear = (maxDate ? Math.min(endYear, maxDate.getFullYear()) : endYear); + html += ''; + } + if (showMonthAfterYear) + html += (secondary || changeMonth || changeYear ? ' ' : '') + monthHtml; + html += '
'; // Close datepicker_header + return html; + }, + + /* Adjust one of the date sub-fields. */ + _adjustInstDate: function(inst, offset, period) { + var year = inst.drawYear + (period == 'Y' ? offset : 0); + var month = inst.drawMonth + (period == 'M' ? offset : 0); + var day = Math.min(inst.selectedDay, this._getDaysInMonth(year, month)) + + (period == 'D' ? offset : 0); + var date = this._daylightSavingAdjust(new Date(year, month, day)); + // ensure it is within the bounds set + var minDate = this._getMinMaxDate(inst, 'min', true); + var maxDate = this._getMinMaxDate(inst, 'max'); + date = (minDate && date < minDate ? minDate : date); + date = (maxDate && date > maxDate ? maxDate : date); + inst.selectedDay = date.getDate(); + inst.drawMonth = inst.selectedMonth = date.getMonth(); + inst.drawYear = inst.selectedYear = date.getFullYear(); + if (period == 'M' || period == 'Y') + this._notifyChange(inst); + }, + + /* Notify change of month/year. */ + _notifyChange: function(inst) { + var onChange = this._get(inst, 'onChangeMonthYear'); + if (onChange) + onChange.apply((inst.input ? inst.input[0] : null), + [inst.selectedYear, inst.selectedMonth + 1, inst]); + }, + + /* Determine the number of months to show. */ + _getNumberOfMonths: function(inst) { + var numMonths = this._get(inst, 'numberOfMonths'); + return (numMonths == null ? [1, 1] : (typeof numMonths == 'number' ? [1, numMonths] : numMonths)); + }, + + /* Determine the current maximum date - ensure no time components are set - may be overridden for a range. */ + _getMinMaxDate: function(inst, minMax, checkRange) { + var date = this._determineDate(this._get(inst, minMax + 'Date'), null); + return (!checkRange || !inst.rangeStart ? date : + (!date || inst.rangeStart > date ? inst.rangeStart : date)); + }, + + /* Find the number of days in a given month. */ + _getDaysInMonth: function(year, month) { + return 32 - new Date(year, month, 32).getDate(); + }, + + /* Find the day of the week of the first of a month. */ + _getFirstDayOfMonth: function(year, month) { + return new Date(year, month, 1).getDay(); + }, + + /* Determines if we should allow a "next/prev" month display change. */ + _canAdjustMonth: function(inst, offset, curYear, curMonth) { + var numMonths = this._getNumberOfMonths(inst); + var date = this._daylightSavingAdjust(new Date( + curYear, curMonth + (offset < 0 ? offset : numMonths[1]), 1)); + if (offset < 0) + date.setDate(this._getDaysInMonth(date.getFullYear(), date.getMonth())); + return this._isInRange(inst, date); + }, + + /* Is the given date in the accepted range? */ + _isInRange: function(inst, date) { + // during range selection, use minimum of selected date and range start + var newMinDate = (!inst.rangeStart ? null : this._daylightSavingAdjust( + new Date(inst.selectedYear, inst.selectedMonth, inst.selectedDay))); + newMinDate = (newMinDate && inst.rangeStart < newMinDate ? inst.rangeStart : newMinDate); + var minDate = newMinDate || this._getMinMaxDate(inst, 'min'); + var maxDate = this._getMinMaxDate(inst, 'max'); + return ((!minDate || date >= minDate) && (!maxDate || date <= maxDate)); + }, + + /* Provide the configuration settings for formatting/parsing. */ + _getFormatConfig: function(inst) { + var shortYearCutoff = this._get(inst, 'shortYearCutoff'); + shortYearCutoff = (typeof shortYearCutoff != 'string' ? shortYearCutoff : + new Date().getFullYear() % 100 + parseInt(shortYearCutoff, 10)); + return {shortYearCutoff: shortYearCutoff, + dayNamesShort: this._get(inst, 'dayNamesShort'), dayNames: this._get(inst, 'dayNames'), + monthNamesShort: this._get(inst, 'monthNamesShort'), monthNames: this._get(inst, 'monthNames')}; + }, + + /* Format the given date for display. */ + _formatDate: function(inst, day, month, year) { + if (!day) { + inst.currentDay = inst.selectedDay; + inst.currentMonth = inst.selectedMonth; + inst.currentYear = inst.selectedYear; + } + var date = (day ? (typeof day == 'object' ? day : + this._daylightSavingAdjust(new Date(year, month, day))) : + this._daylightSavingAdjust(new Date(inst.currentYear, inst.currentMonth, inst.currentDay))); + return this.formatDate(this._get(inst, 'dateFormat'), date, this._getFormatConfig(inst)); + } +}); + +/* jQuery extend now ignores nulls! */ +function extendRemove(target, props) { + $.extend(target, props); + for (var name in props) + if (props[name] == null || props[name] == undefined) + target[name] = props[name]; + return target; +}; + +/* Determine whether an object is an array. */ +function isArray(a) { + return (a && (($.browser.safari && typeof a == 'object' && a.length) || + (a.constructor && a.constructor.toString().match(/\Array\(\)/)))); +}; + +/* Invoke the datepicker functionality. + @param options string - a command, optionally followed by additional parameters or + Object - settings for attaching new datepicker functionality + @return jQuery object */ +$.fn.datepicker = function(options){ + + /* Initialise the date picker. */ + if (!$.datepicker.initialized) { + $(document).mousedown($.datepicker._checkExternalClick). + find('body').append($.datepicker.dpDiv); + $.datepicker.initialized = true; + } + + var otherArgs = Array.prototype.slice.call(arguments, 1); + if (typeof options == 'string' && (options == 'isDisabled' || options == 'getDate')) + return $.datepicker['_' + options + 'Datepicker']. + apply($.datepicker, [this[0]].concat(otherArgs)); + if (options == 'option' && arguments.length == 2 && typeof arguments[1] == 'string') + return $.datepicker['_' + options + 'Datepicker']. + apply($.datepicker, [this[0]].concat(otherArgs)); + return this.each(function() { + typeof options == 'string' ? + $.datepicker['_' + options + 'Datepicker']. + apply($.datepicker, [this].concat(otherArgs)) : + $.datepicker._attachDatepicker(this, options); + }); +}; + +$.datepicker = new Datepicker(); // singleton instance +$.datepicker.initialized = false; +$.datepicker.uuid = new Date().getTime(); +$.datepicker.version = "1.7.2"; + +// Workaround for #4055 +// Add another global to avoid noConflict issues with inline event handlers +window.DP_jQuery = $; + +})(jQuery); +/* + * jQuery UI Progressbar 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Progressbar + * + * Depends: + * ui.core.js + */ +(function($) { + +$.widget("ui.progressbar", { + + _init: function() { + + this.element + .addClass("ui-progressbar" + + " ui-widget" + + " ui-widget-content" + + " ui-corner-all") + .attr({ + role: "progressbar", + "aria-valuemin": this._valueMin(), + "aria-valuemax": this._valueMax(), + "aria-valuenow": this._value() + }); + + this.valueDiv = $('
').appendTo(this.element); + + this._refreshValue(); + + }, + + destroy: function() { + + this.element + .removeClass("ui-progressbar" + + " ui-widget" + + " ui-widget-content" + + " ui-corner-all") + .removeAttr("role") + .removeAttr("aria-valuemin") + .removeAttr("aria-valuemax") + .removeAttr("aria-valuenow") + .removeData("progressbar") + .unbind(".progressbar"); + + this.valueDiv.remove(); + + $.widget.prototype.destroy.apply(this, arguments); + + }, + + value: function(newValue) { + if (newValue === undefined) { + return this._value(); + } + + this._setData('value', newValue); + return this; + }, + + _setData: function(key, value) { + + switch (key) { + case 'value': + this.options.value = value; + this._refreshValue(); + this._trigger('change', null, {}); + break; + } + + $.widget.prototype._setData.apply(this, arguments); + + }, + + _value: function() { + + var val = this.options.value; + if (val < this._valueMin()) val = this._valueMin(); + if (val > this._valueMax()) val = this._valueMax(); + + return val; + + }, + + _valueMin: function() { + var valueMin = 0; + return valueMin; + }, + + _valueMax: function() { + var valueMax = 100; + return valueMax; + }, + + _refreshValue: function() { + var value = this.value(); + this.valueDiv[value == this._valueMax() ? 'addClass' : 'removeClass']("ui-corner-right"); + this.valueDiv.width(value + '%'); + this.element.attr("aria-valuenow", value); + } + +}); + +$.extend($.ui.progressbar, { + version: "1.7.2", + defaults: { + value: 0 + } +}); + +})(jQuery); +/* + * jQuery UI Effects 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/ + */ +;jQuery.effects || (function($) { + +$.effects = { + version: "1.7.2", + + // Saves a set of properties in a data storage + save: function(element, set) { + for(var i=0; i < set.length; i++) { + if(set[i] !== null) element.data("ec.storage."+set[i], element[0].style[set[i]]); + } + }, + + // Restores a set of previously saved properties from a data storage + restore: function(element, set) { + for(var i=0; i < set.length; i++) { + if(set[i] !== null) element.css(set[i], element.data("ec.storage."+set[i])); + } + }, + + setMode: function(el, mode) { + if (mode == 'toggle') mode = el.is(':hidden') ? 'show' : 'hide'; // Set for toggle + return mode; + }, + + getBaseline: function(origin, original) { // Translates a [top,left] array into a baseline value + // this should be a little more flexible in the future to handle a string & hash + var y, x; + switch (origin[0]) { + case 'top': y = 0; break; + case 'middle': y = 0.5; break; + case 'bottom': y = 1; break; + default: y = origin[0] / original.height; + }; + switch (origin[1]) { + case 'left': x = 0; break; + case 'center': x = 0.5; break; + case 'right': x = 1; break; + default: x = origin[1] / original.width; + }; + return {x: x, y: y}; + }, + + // Wraps the element around a wrapper that copies position properties + createWrapper: function(element) { + + //if the element is already wrapped, return it + if (element.parent().is('.ui-effects-wrapper')) + return element.parent(); + + //Cache width,height and float properties of the element, and create a wrapper around it + var props = { width: element.outerWidth(true), height: element.outerHeight(true), 'float': element.css('float') }; + element.wrap('
'); + var wrapper = element.parent(); + + //Transfer the positioning of the element to the wrapper + if (element.css('position') == 'static') { + wrapper.css({ position: 'relative' }); + element.css({ position: 'relative'} ); + } else { + var top = element.css('top'); if(isNaN(parseInt(top,10))) top = 'auto'; + var left = element.css('left'); if(isNaN(parseInt(left,10))) left = 'auto'; + wrapper.css({ position: element.css('position'), top: top, left: left, zIndex: element.css('z-index') }).show(); + element.css({position: 'relative', top: 0, left: 0 }); + } + + wrapper.css(props); + return wrapper; + }, + + removeWrapper: function(element) { + if (element.parent().is('.ui-effects-wrapper')) + return element.parent().replaceWith(element); + return element; + }, + + setTransition: function(element, list, factor, value) { + value = value || {}; + $.each(list, function(i, x){ + unit = element.cssUnit(x); + if (unit[0] > 0) value[x] = unit[0] * factor + unit[1]; + }); + return value; + }, + + //Base function to animate from one class to another in a seamless transition + animateClass: function(value, duration, easing, callback) { + + var cb = (typeof easing == "function" ? easing : (callback ? callback : null)); + var ea = (typeof easing == "string" ? easing : null); + + return this.each(function() { + + var offset = {}; var that = $(this); var oldStyleAttr = that.attr("style") || ''; + if(typeof oldStyleAttr == 'object') oldStyleAttr = oldStyleAttr["cssText"]; /* Stupidly in IE, style is a object.. */ + if(value.toggle) { that.hasClass(value.toggle) ? value.remove = value.toggle : value.add = value.toggle; } + + //Let's get a style offset + var oldStyle = $.extend({}, (document.defaultView ? document.defaultView.getComputedStyle(this,null) : this.currentStyle)); + if(value.add) that.addClass(value.add); if(value.remove) that.removeClass(value.remove); + var newStyle = $.extend({}, (document.defaultView ? document.defaultView.getComputedStyle(this,null) : this.currentStyle)); + if(value.add) that.removeClass(value.add); if(value.remove) that.addClass(value.remove); + + // The main function to form the object for animation + for(var n in newStyle) { + if( typeof newStyle[n] != "function" && newStyle[n] /* No functions and null properties */ + && n.indexOf("Moz") == -1 && n.indexOf("length") == -1 /* No mozilla spezific render properties. */ + && newStyle[n] != oldStyle[n] /* Only values that have changed are used for the animation */ + && (n.match(/color/i) || (!n.match(/color/i) && !isNaN(parseInt(newStyle[n],10)))) /* Only things that can be parsed to integers or colors */ + && (oldStyle.position != "static" || (oldStyle.position == "static" && !n.match(/left|top|bottom|right/))) /* No need for positions when dealing with static positions */ + ) offset[n] = newStyle[n]; + } + + that.animate(offset, duration, ea, function() { // Animate the newly constructed offset object + // Change style attribute back to original. For stupid IE, we need to clear the damn object. + if(typeof $(this).attr("style") == 'object') { $(this).attr("style")["cssText"] = ""; $(this).attr("style")["cssText"] = oldStyleAttr; } else $(this).attr("style", oldStyleAttr); + if(value.add) $(this).addClass(value.add); if(value.remove) $(this).removeClass(value.remove); + if(cb) cb.apply(this, arguments); + }); + + }); + } +}; + + +function _normalizeArguments(a, m) { + + var o = a[1] && a[1].constructor == Object ? a[1] : {}; if(m) o.mode = m; + var speed = a[1] && a[1].constructor != Object ? a[1] : (o.duration ? o.duration : a[2]); //either comes from options.duration or the secon/third argument + speed = $.fx.off ? 0 : typeof speed === "number" ? speed : $.fx.speeds[speed] || $.fx.speeds._default; + var callback = o.callback || ( $.isFunction(a[1]) && a[1] ) || ( $.isFunction(a[2]) && a[2] ) || ( $.isFunction(a[3]) && a[3] ); + + return [a[0], o, speed, callback]; + +} + +//Extend the methods of jQuery +$.fn.extend({ + + //Save old methods + _show: $.fn.show, + _hide: $.fn.hide, + __toggle: $.fn.toggle, + _addClass: $.fn.addClass, + _removeClass: $.fn.removeClass, + _toggleClass: $.fn.toggleClass, + + // New effect methods + effect: function(fx, options, speed, callback) { + return $.effects[fx] ? $.effects[fx].call(this, {method: fx, options: options || {}, duration: speed, callback: callback }) : null; + }, + + show: function() { + if(!arguments[0] || (arguments[0].constructor == Number || (/(slow|normal|fast)/).test(arguments[0]))) + return this._show.apply(this, arguments); + else { + return this.effect.apply(this, _normalizeArguments(arguments, 'show')); + } + }, + + hide: function() { + if(!arguments[0] || (arguments[0].constructor == Number || (/(slow|normal|fast)/).test(arguments[0]))) + return this._hide.apply(this, arguments); + else { + return this.effect.apply(this, _normalizeArguments(arguments, 'hide')); + } + }, + + toggle: function(){ + if(!arguments[0] || + (arguments[0].constructor == Number || (/(slow|normal|fast)/).test(arguments[0])) || + ($.isFunction(arguments[0]) || typeof arguments[0] == 'boolean')) { + return this.__toggle.apply(this, arguments); + } else { + return this.effect.apply(this, _normalizeArguments(arguments, 'toggle')); + } + }, + + addClass: function(classNames, speed, easing, callback) { + return speed ? $.effects.animateClass.apply(this, [{ add: classNames },speed,easing,callback]) : this._addClass(classNames); + }, + removeClass: function(classNames,speed,easing,callback) { + return speed ? $.effects.animateClass.apply(this, [{ remove: classNames },speed,easing,callback]) : this._removeClass(classNames); + }, + toggleClass: function(classNames,speed,easing,callback) { + return ( (typeof speed !== "boolean") && speed ) ? $.effects.animateClass.apply(this, [{ toggle: classNames },speed,easing,callback]) : this._toggleClass(classNames, speed); + }, + morph: function(remove,add,speed,easing,callback) { + return $.effects.animateClass.apply(this, [{ add: add, remove: remove },speed,easing,callback]); + }, + switchClass: function() { + return this.morph.apply(this, arguments); + }, + + // helper functions + cssUnit: function(key) { + var style = this.css(key), val = []; + $.each( ['em','px','%','pt'], function(i, unit){ + if(style.indexOf(unit) > 0) + val = [parseFloat(style), unit]; + }); + return val; + } +}); + +/* + * jQuery Color Animations + * Copyright 2007 John Resig + * Released under the MIT and GPL licenses. + */ + +// We override the animation for all of these color styles +$.each(['backgroundColor', 'borderBottomColor', 'borderLeftColor', 'borderRightColor', 'borderTopColor', 'color', 'outlineColor'], function(i,attr){ + $.fx.step[attr] = function(fx) { + if ( fx.state == 0 ) { + fx.start = getColor( fx.elem, attr ); + fx.end = getRGB( fx.end ); + } + + fx.elem.style[attr] = "rgb(" + [ + Math.max(Math.min( parseInt((fx.pos * (fx.end[0] - fx.start[0])) + fx.start[0],10), 255), 0), + Math.max(Math.min( parseInt((fx.pos * (fx.end[1] - fx.start[1])) + fx.start[1],10), 255), 0), + Math.max(Math.min( parseInt((fx.pos * (fx.end[2] - fx.start[2])) + fx.start[2],10), 255), 0) + ].join(",") + ")"; + }; +}); + +// Color Conversion functions from highlightFade +// By Blair Mitchelmore +// http://jquery.offput.ca/highlightFade/ + +// Parse strings looking for color tuples [255,255,255] +function getRGB(color) { + var result; + + // Check if we're already dealing with an array of colors + if ( color && color.constructor == Array && color.length == 3 ) + return color; + + // Look for rgb(num,num,num) + if (result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color)) + return [parseInt(result[1],10), parseInt(result[2],10), parseInt(result[3],10)]; + + // Look for rgb(num%,num%,num%) + if (result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color)) + return [parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55]; + + // Look for #a0b1c2 + if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color)) + return [parseInt(result[1],16), parseInt(result[2],16), parseInt(result[3],16)]; + + // Look for #fff + if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color)) + return [parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16)]; + + // Look for rgba(0, 0, 0, 0) == transparent in Safari 3 + if (result = /rgba\(0, 0, 0, 0\)/.exec(color)) + return colors['transparent']; + + // Otherwise, we're most likely dealing with a named color + return colors[$.trim(color).toLowerCase()]; +} + +function getColor(elem, attr) { + var color; + + do { + color = $.curCSS(elem, attr); + + // Keep going until we find an element that has color, or we hit the body + if ( color != '' && color != 'transparent' || $.nodeName(elem, "body") ) + break; + + attr = "backgroundColor"; + } while ( elem = elem.parentNode ); + + return getRGB(color); +}; + +// Some named colors to work with +// From Interface by Stefan Petre +// http://interface.eyecon.ro/ + +var colors = { + aqua:[0,255,255], + azure:[240,255,255], + beige:[245,245,220], + black:[0,0,0], + blue:[0,0,255], + brown:[165,42,42], + cyan:[0,255,255], + darkblue:[0,0,139], + darkcyan:[0,139,139], + darkgrey:[169,169,169], + darkgreen:[0,100,0], + darkkhaki:[189,183,107], + darkmagenta:[139,0,139], + darkolivegreen:[85,107,47], + darkorange:[255,140,0], + darkorchid:[153,50,204], + darkred:[139,0,0], + darksalmon:[233,150,122], + darkviolet:[148,0,211], + fuchsia:[255,0,255], + gold:[255,215,0], + green:[0,128,0], + indigo:[75,0,130], + khaki:[240,230,140], + lightblue:[173,216,230], + lightcyan:[224,255,255], + lightgreen:[144,238,144], + lightgrey:[211,211,211], + lightpink:[255,182,193], + lightyellow:[255,255,224], + lime:[0,255,0], + magenta:[255,0,255], + maroon:[128,0,0], + navy:[0,0,128], + olive:[128,128,0], + orange:[255,165,0], + pink:[255,192,203], + purple:[128,0,128], + violet:[128,0,128], + red:[255,0,0], + silver:[192,192,192], + white:[255,255,255], + yellow:[255,255,0], + transparent: [255,255,255] +}; + +/* + * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ + * + * Uses the built in easing capabilities added In jQuery 1.1 + * to offer multiple easing options + * + * TERMS OF USE - jQuery Easing + * + * Open source under the BSD License. + * + * Copyright 2008 George McGinley Smith + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * Neither the name of the author nor the names of contributors may be used to endorse + * or promote products derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE + * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * +*/ + +// t: current time, b: begInnIng value, c: change In value, d: duration +$.easing.jswing = $.easing.swing; + +$.extend($.easing, +{ + def: 'easeOutQuad', + swing: function (x, t, b, c, d) { + //alert($.easing.default); + return $.easing[$.easing.def](x, t, b, c, d); + }, + easeInQuad: function (x, t, b, c, d) { + return c*(t/=d)*t + b; + }, + easeOutQuad: function (x, t, b, c, d) { + return -c *(t/=d)*(t-2) + b; + }, + easeInOutQuad: function (x, t, b, c, d) { + if ((t/=d/2) < 1) return c/2*t*t + b; + return -c/2 * ((--t)*(t-2) - 1) + b; + }, + easeInCubic: function (x, t, b, c, d) { + return c*(t/=d)*t*t + b; + }, + easeOutCubic: function (x, t, b, c, d) { + return c*((t=t/d-1)*t*t + 1) + b; + }, + easeInOutCubic: function (x, t, b, c, d) { + if ((t/=d/2) < 1) return c/2*t*t*t + b; + return c/2*((t-=2)*t*t + 2) + b; + }, + easeInQuart: function (x, t, b, c, d) { + return c*(t/=d)*t*t*t + b; + }, + easeOutQuart: function (x, t, b, c, d) { + return -c * ((t=t/d-1)*t*t*t - 1) + b; + }, + easeInOutQuart: function (x, t, b, c, d) { + if ((t/=d/2) < 1) return c/2*t*t*t*t + b; + return -c/2 * ((t-=2)*t*t*t - 2) + b; + }, + easeInQuint: function (x, t, b, c, d) { + return c*(t/=d)*t*t*t*t + b; + }, + easeOutQuint: function (x, t, b, c, d) { + return c*((t=t/d-1)*t*t*t*t + 1) + b; + }, + easeInOutQuint: function (x, t, b, c, d) { + if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b; + return c/2*((t-=2)*t*t*t*t + 2) + b; + }, + easeInSine: function (x, t, b, c, d) { + return -c * Math.cos(t/d * (Math.PI/2)) + c + b; + }, + easeOutSine: function (x, t, b, c, d) { + return c * Math.sin(t/d * (Math.PI/2)) + b; + }, + easeInOutSine: function (x, t, b, c, d) { + return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b; + }, + easeInExpo: function (x, t, b, c, d) { + return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b; + }, + easeOutExpo: function (x, t, b, c, d) { + return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b; + }, + easeInOutExpo: function (x, t, b, c, d) { + if (t==0) return b; + if (t==d) return b+c; + if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b; + return c/2 * (-Math.pow(2, -10 * --t) + 2) + b; + }, + easeInCirc: function (x, t, b, c, d) { + return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b; + }, + easeOutCirc: function (x, t, b, c, d) { + return c * Math.sqrt(1 - (t=t/d-1)*t) + b; + }, + easeInOutCirc: function (x, t, b, c, d) { + if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b; + return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b; + }, + easeInElastic: function (x, t, b, c, d) { + var s=1.70158;var p=0;var a=c; + if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; + if (a < Math.abs(c)) { a=c; var s=p/4; } + else var s = p/(2*Math.PI) * Math.asin (c/a); + return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; + }, + easeOutElastic: function (x, t, b, c, d) { + var s=1.70158;var p=0;var a=c; + if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; + if (a < Math.abs(c)) { a=c; var s=p/4; } + else var s = p/(2*Math.PI) * Math.asin (c/a); + return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b; + }, + easeInOutElastic: function (x, t, b, c, d) { + var s=1.70158;var p=0;var a=c; + if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5); + if (a < Math.abs(c)) { a=c; var s=p/4; } + else var s = p/(2*Math.PI) * Math.asin (c/a); + if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; + return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b; + }, + easeInBack: function (x, t, b, c, d, s) { + if (s == undefined) s = 1.70158; + return c*(t/=d)*t*((s+1)*t - s) + b; + }, + easeOutBack: function (x, t, b, c, d, s) { + if (s == undefined) s = 1.70158; + return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b; + }, + easeInOutBack: function (x, t, b, c, d, s) { + if (s == undefined) s = 1.70158; + if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; + return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; + }, + easeInBounce: function (x, t, b, c, d) { + return c - $.easing.easeOutBounce (x, d-t, 0, c, d) + b; + }, + easeOutBounce: function (x, t, b, c, d) { + if ((t/=d) < (1/2.75)) { + return c*(7.5625*t*t) + b; + } else if (t < (2/2.75)) { + return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b; + } else if (t < (2.5/2.75)) { + return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b; + } else { + return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b; + } + }, + easeInOutBounce: function (x, t, b, c, d) { + if (t < d/2) return $.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b; + return $.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b; + } +}); + +/* + * + * TERMS OF USE - EASING EQUATIONS + * + * Open source under the BSD License. + * + * Copyright 2001 Robert Penner + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * Neither the name of the author nor the names of contributors may be used to endorse + * or promote products derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE + * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +})(jQuery); +/* + * jQuery UI Effects Blind 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Blind + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.blind = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this), props = ['position','top','left']; + + // Set options + var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode + var direction = o.options.direction || 'vertical'; // Default direction + + // Adjust + $.effects.save(el, props); el.show(); // Save & Show + var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper + var ref = (direction == 'vertical') ? 'height' : 'width'; + var distance = (direction == 'vertical') ? wrapper.height() : wrapper.width(); + if(mode == 'show') wrapper.css(ref, 0); // Shift + + // Animation + var animation = {}; + animation[ref] = mode == 'show' ? distance : 0; + + // Animate + wrapper.animate(animation, o.duration, o.options.easing, function() { + if(mode == 'hide') el.hide(); // Hide + $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore + if(o.callback) o.callback.apply(el[0], arguments); // Callback + el.dequeue(); + }); + + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Bounce 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Bounce + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.bounce = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this), props = ['position','top','left']; + + // Set options + var mode = $.effects.setMode(el, o.options.mode || 'effect'); // Set Mode + var direction = o.options.direction || 'up'; // Default direction + var distance = o.options.distance || 20; // Default distance + var times = o.options.times || 5; // Default # of times + var speed = o.duration || 250; // Default speed per bounce + if (/show|hide/.test(mode)) props.push('opacity'); // Avoid touching opacity to prevent clearType and PNG issues in IE + + // Adjust + $.effects.save(el, props); el.show(); // Save & Show + $.effects.createWrapper(el); // Create Wrapper + var ref = (direction == 'up' || direction == 'down') ? 'top' : 'left'; + var motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg'; + var distance = o.options.distance || (ref == 'top' ? el.outerHeight({margin:true}) / 3 : el.outerWidth({margin:true}) / 3); + if (mode == 'show') el.css('opacity', 0).css(ref, motion == 'pos' ? -distance : distance); // Shift + if (mode == 'hide') distance = distance / (times * 2); + if (mode != 'hide') times--; + + // Animate + if (mode == 'show') { // Show Bounce + var animation = {opacity: 1}; + animation[ref] = (motion == 'pos' ? '+=' : '-=') + distance; + el.animate(animation, speed / 2, o.options.easing); + distance = distance / 2; + times--; + }; + for (var i = 0; i < times; i++) { // Bounces + var animation1 = {}, animation2 = {}; + animation1[ref] = (motion == 'pos' ? '-=' : '+=') + distance; + animation2[ref] = (motion == 'pos' ? '+=' : '-=') + distance; + el.animate(animation1, speed / 2, o.options.easing).animate(animation2, speed / 2, o.options.easing); + distance = (mode == 'hide') ? distance * 2 : distance / 2; + }; + if (mode == 'hide') { // Last Bounce + var animation = {opacity: 0}; + animation[ref] = (motion == 'pos' ? '-=' : '+=') + distance; + el.animate(animation, speed / 2, o.options.easing, function(){ + el.hide(); // Hide + $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore + if(o.callback) o.callback.apply(this, arguments); // Callback + }); + } else { + var animation1 = {}, animation2 = {}; + animation1[ref] = (motion == 'pos' ? '-=' : '+=') + distance; + animation2[ref] = (motion == 'pos' ? '+=' : '-=') + distance; + el.animate(animation1, speed / 2, o.options.easing).animate(animation2, speed / 2, o.options.easing, function(){ + $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore + if(o.callback) o.callback.apply(this, arguments); // Callback + }); + }; + el.queue('fx', function() { el.dequeue(); }); + el.dequeue(); + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Clip 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Clip + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.clip = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this), props = ['position','top','left','height','width']; + + // Set options + var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode + var direction = o.options.direction || 'vertical'; // Default direction + + // Adjust + $.effects.save(el, props); el.show(); // Save & Show + var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper + var animate = el[0].tagName == 'IMG' ? wrapper : el; + var ref = { + size: (direction == 'vertical') ? 'height' : 'width', + position: (direction == 'vertical') ? 'top' : 'left' + }; + var distance = (direction == 'vertical') ? animate.height() : animate.width(); + if(mode == 'show') { animate.css(ref.size, 0); animate.css(ref.position, distance / 2); } // Shift + + // Animation + var animation = {}; + animation[ref.size] = mode == 'show' ? distance : 0; + animation[ref.position] = mode == 'show' ? 0 : distance / 2; + + // Animate + animate.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() { + if(mode == 'hide') el.hide(); // Hide + $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore + if(o.callback) o.callback.apply(el[0], arguments); // Callback + el.dequeue(); + }}); + + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Drop 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Drop + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.drop = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this), props = ['position','top','left','opacity']; + + // Set options + var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode + var direction = o.options.direction || 'left'; // Default Direction + + // Adjust + $.effects.save(el, props); el.show(); // Save & Show + $.effects.createWrapper(el); // Create Wrapper + var ref = (direction == 'up' || direction == 'down') ? 'top' : 'left'; + var motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg'; + var distance = o.options.distance || (ref == 'top' ? el.outerHeight({margin:true}) / 2 : el.outerWidth({margin:true}) / 2); + if (mode == 'show') el.css('opacity', 0).css(ref, motion == 'pos' ? -distance : distance); // Shift + + // Animation + var animation = {opacity: mode == 'show' ? 1 : 0}; + animation[ref] = (mode == 'show' ? (motion == 'pos' ? '+=' : '-=') : (motion == 'pos' ? '-=' : '+=')) + distance; + + // Animate + el.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() { + if(mode == 'hide') el.hide(); // Hide + $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore + if(o.callback) o.callback.apply(this, arguments); // Callback + el.dequeue(); + }}); + + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Explode 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Explode + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.explode = function(o) { + + return this.queue(function() { + + var rows = o.options.pieces ? Math.round(Math.sqrt(o.options.pieces)) : 3; + var cells = o.options.pieces ? Math.round(Math.sqrt(o.options.pieces)) : 3; + + o.options.mode = o.options.mode == 'toggle' ? ($(this).is(':visible') ? 'hide' : 'show') : o.options.mode; + var el = $(this).show().css('visibility', 'hidden'); + var offset = el.offset(); + + //Substract the margins - not fixing the problem yet. + offset.top -= parseInt(el.css("marginTop"),10) || 0; + offset.left -= parseInt(el.css("marginLeft"),10) || 0; + + var width = el.outerWidth(true); + var height = el.outerHeight(true); + + for(var i=0;i
') + .css({ + position: 'absolute', + visibility: 'visible', + left: -j*(width/cells), + top: -i*(height/rows) + }) + .parent() + .addClass('ui-effects-explode') + .css({ + position: 'absolute', + overflow: 'hidden', + width: width/cells, + height: height/rows, + left: offset.left + j*(width/cells) + (o.options.mode == 'show' ? (j-Math.floor(cells/2))*(width/cells) : 0), + top: offset.top + i*(height/rows) + (o.options.mode == 'show' ? (i-Math.floor(rows/2))*(height/rows) : 0), + opacity: o.options.mode == 'show' ? 0 : 1 + }).animate({ + left: offset.left + j*(width/cells) + (o.options.mode == 'show' ? 0 : (j-Math.floor(cells/2))*(width/cells)), + top: offset.top + i*(height/rows) + (o.options.mode == 'show' ? 0 : (i-Math.floor(rows/2))*(height/rows)), + opacity: o.options.mode == 'show' ? 1 : 0 + }, o.duration || 500); + } + } + + // Set a timeout, to call the callback approx. when the other animations have finished + setTimeout(function() { + + o.options.mode == 'show' ? el.css({ visibility: 'visible' }) : el.css({ visibility: 'visible' }).hide(); + if(o.callback) o.callback.apply(el[0]); // Callback + el.dequeue(); + + $('div.ui-effects-explode').remove(); + + }, o.duration || 500); + + + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Fold 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Fold + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.fold = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this), props = ['position','top','left']; + + // Set options + var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode + var size = o.options.size || 15; // Default fold size + var horizFirst = !(!o.options.horizFirst); // Ensure a boolean value + var duration = o.duration ? o.duration / 2 : $.fx.speeds._default / 2; + + // Adjust + $.effects.save(el, props); el.show(); // Save & Show + var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper + var widthFirst = ((mode == 'show') != horizFirst); + var ref = widthFirst ? ['width', 'height'] : ['height', 'width']; + var distance = widthFirst ? [wrapper.width(), wrapper.height()] : [wrapper.height(), wrapper.width()]; + var percent = /([0-9]+)%/.exec(size); + if(percent) size = parseInt(percent[1],10) / 100 * distance[mode == 'hide' ? 0 : 1]; + if(mode == 'show') wrapper.css(horizFirst ? {height: 0, width: size} : {height: size, width: 0}); // Shift + + // Animation + var animation1 = {}, animation2 = {}; + animation1[ref[0]] = mode == 'show' ? distance[0] : size; + animation2[ref[1]] = mode == 'show' ? distance[1] : 0; + + // Animate + wrapper.animate(animation1, duration, o.options.easing) + .animate(animation2, duration, o.options.easing, function() { + if(mode == 'hide') el.hide(); // Hide + $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore + if(o.callback) o.callback.apply(el[0], arguments); // Callback + el.dequeue(); + }); + + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Highlight 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Highlight + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.highlight = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this), props = ['backgroundImage','backgroundColor','opacity']; + + // Set options + var mode = $.effects.setMode(el, o.options.mode || 'show'); // Set Mode + var color = o.options.color || "#ffff99"; // Default highlight color + var oldColor = el.css("backgroundColor"); + + // Adjust + $.effects.save(el, props); el.show(); // Save & Show + el.css({backgroundImage: 'none', backgroundColor: color}); // Shift + + // Animation + var animation = {backgroundColor: oldColor }; + if (mode == "hide") animation['opacity'] = 0; + + // Animate + el.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() { + if(mode == "hide") el.hide(); + $.effects.restore(el, props); + if (mode == "show" && $.browser.msie) this.style.removeAttribute('filter'); + if(o.callback) o.callback.apply(this, arguments); + el.dequeue(); + }}); + + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Pulsate 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Pulsate + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.pulsate = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this); + + // Set options + var mode = $.effects.setMode(el, o.options.mode || 'show'); // Set Mode + var times = o.options.times || 5; // Default # of times + var duration = o.duration ? o.duration / 2 : $.fx.speeds._default / 2; + + // Adjust + if (mode == 'hide') times--; + if (el.is(':hidden')) { // Show fadeIn + el.css('opacity', 0); + el.show(); // Show + el.animate({opacity: 1}, duration, o.options.easing); + times = times-2; + } + + // Animate + for (var i = 0; i < times; i++) { // Pulsate + el.animate({opacity: 0}, duration, o.options.easing).animate({opacity: 1}, duration, o.options.easing); + }; + if (mode == 'hide') { // Last Pulse + el.animate({opacity: 0}, duration, o.options.easing, function(){ + el.hide(); // Hide + if(o.callback) o.callback.apply(this, arguments); // Callback + }); + } else { + el.animate({opacity: 0}, duration, o.options.easing).animate({opacity: 1}, duration, o.options.easing, function(){ + if(o.callback) o.callback.apply(this, arguments); // Callback + }); + }; + el.queue('fx', function() { el.dequeue(); }); + el.dequeue(); + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Scale 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Scale + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.puff = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this); + + // Set options + var options = $.extend(true, {}, o.options); + var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode + var percent = parseInt(o.options.percent,10) || 150; // Set default puff percent + options.fade = true; // It's not a puff if it doesn't fade! :) + var original = {height: el.height(), width: el.width()}; // Save original + + // Adjust + var factor = percent / 100; + el.from = (mode == 'hide') ? original : {height: original.height * factor, width: original.width * factor}; + + // Animation + options.from = el.from; + options.percent = (mode == 'hide') ? percent : 100; + options.mode = mode; + + // Animate + el.effect('scale', options, o.duration, o.callback); + el.dequeue(); + }); + +}; + +$.effects.scale = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this); + + // Set options + var options = $.extend(true, {}, o.options); + var mode = $.effects.setMode(el, o.options.mode || 'effect'); // Set Mode + var percent = parseInt(o.options.percent,10) || (parseInt(o.options.percent,10) == 0 ? 0 : (mode == 'hide' ? 0 : 100)); // Set default scaling percent + var direction = o.options.direction || 'both'; // Set default axis + var origin = o.options.origin; // The origin of the scaling + if (mode != 'effect') { // Set default origin and restore for show/hide + options.origin = origin || ['middle','center']; + options.restore = true; + } + var original = {height: el.height(), width: el.width()}; // Save original + el.from = o.options.from || (mode == 'show' ? {height: 0, width: 0} : original); // Default from state + + // Adjust + var factor = { // Set scaling factor + y: direction != 'horizontal' ? (percent / 100) : 1, + x: direction != 'vertical' ? (percent / 100) : 1 + }; + el.to = {height: original.height * factor.y, width: original.width * factor.x}; // Set to state + + if (o.options.fade) { // Fade option to support puff + if (mode == 'show') {el.from.opacity = 0; el.to.opacity = 1;}; + if (mode == 'hide') {el.from.opacity = 1; el.to.opacity = 0;}; + }; + + // Animation + options.from = el.from; options.to = el.to; options.mode = mode; + + // Animate + el.effect('size', options, o.duration, o.callback); + el.dequeue(); + }); + +}; + +$.effects.size = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this), props = ['position','top','left','width','height','overflow','opacity']; + var props1 = ['position','top','left','overflow','opacity']; // Always restore + var props2 = ['width','height','overflow']; // Copy for children + var cProps = ['fontSize']; + var vProps = ['borderTopWidth', 'borderBottomWidth', 'paddingTop', 'paddingBottom']; + var hProps = ['borderLeftWidth', 'borderRightWidth', 'paddingLeft', 'paddingRight']; + + // Set options + var mode = $.effects.setMode(el, o.options.mode || 'effect'); // Set Mode + var restore = o.options.restore || false; // Default restore + var scale = o.options.scale || 'both'; // Default scale mode + var origin = o.options.origin; // The origin of the sizing + var original = {height: el.height(), width: el.width()}; // Save original + el.from = o.options.from || original; // Default from state + el.to = o.options.to || original; // Default to state + // Adjust + if (origin) { // Calculate baseline shifts + var baseline = $.effects.getBaseline(origin, original); + el.from.top = (original.height - el.from.height) * baseline.y; + el.from.left = (original.width - el.from.width) * baseline.x; + el.to.top = (original.height - el.to.height) * baseline.y; + el.to.left = (original.width - el.to.width) * baseline.x; + }; + var factor = { // Set scaling factor + from: {y: el.from.height / original.height, x: el.from.width / original.width}, + to: {y: el.to.height / original.height, x: el.to.width / original.width} + }; + if (scale == 'box' || scale == 'both') { // Scale the css box + if (factor.from.y != factor.to.y) { // Vertical props scaling + props = props.concat(vProps); + el.from = $.effects.setTransition(el, vProps, factor.from.y, el.from); + el.to = $.effects.setTransition(el, vProps, factor.to.y, el.to); + }; + if (factor.from.x != factor.to.x) { // Horizontal props scaling + props = props.concat(hProps); + el.from = $.effects.setTransition(el, hProps, factor.from.x, el.from); + el.to = $.effects.setTransition(el, hProps, factor.to.x, el.to); + }; + }; + if (scale == 'content' || scale == 'both') { // Scale the content + if (factor.from.y != factor.to.y) { // Vertical props scaling + props = props.concat(cProps); + el.from = $.effects.setTransition(el, cProps, factor.from.y, el.from); + el.to = $.effects.setTransition(el, cProps, factor.to.y, el.to); + }; + }; + $.effects.save(el, restore ? props : props1); el.show(); // Save & Show + $.effects.createWrapper(el); // Create Wrapper + el.css('overflow','hidden').css(el.from); // Shift + + // Animate + if (scale == 'content' || scale == 'both') { // Scale the children + vProps = vProps.concat(['marginTop','marginBottom']).concat(cProps); // Add margins/font-size + hProps = hProps.concat(['marginLeft','marginRight']); // Add margins + props2 = props.concat(vProps).concat(hProps); // Concat + el.find("*[width]").each(function(){ + child = $(this); + if (restore) $.effects.save(child, props2); + var c_original = {height: child.height(), width: child.width()}; // Save original + child.from = {height: c_original.height * factor.from.y, width: c_original.width * factor.from.x}; + child.to = {height: c_original.height * factor.to.y, width: c_original.width * factor.to.x}; + if (factor.from.y != factor.to.y) { // Vertical props scaling + child.from = $.effects.setTransition(child, vProps, factor.from.y, child.from); + child.to = $.effects.setTransition(child, vProps, factor.to.y, child.to); + }; + if (factor.from.x != factor.to.x) { // Horizontal props scaling + child.from = $.effects.setTransition(child, hProps, factor.from.x, child.from); + child.to = $.effects.setTransition(child, hProps, factor.to.x, child.to); + }; + child.css(child.from); // Shift children + child.animate(child.to, o.duration, o.options.easing, function(){ + if (restore) $.effects.restore(child, props2); // Restore children + }); // Animate children + }); + }; + + // Animate + el.animate(el.to, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() { + if(mode == 'hide') el.hide(); // Hide + $.effects.restore(el, restore ? props : props1); $.effects.removeWrapper(el); // Restore + if(o.callback) o.callback.apply(this, arguments); // Callback + el.dequeue(); + }}); + + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Shake 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Shake + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.shake = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this), props = ['position','top','left']; + + // Set options + var mode = $.effects.setMode(el, o.options.mode || 'effect'); // Set Mode + var direction = o.options.direction || 'left'; // Default direction + var distance = o.options.distance || 20; // Default distance + var times = o.options.times || 3; // Default # of times + var speed = o.duration || o.options.duration || 140; // Default speed per shake + + // Adjust + $.effects.save(el, props); el.show(); // Save & Show + $.effects.createWrapper(el); // Create Wrapper + var ref = (direction == 'up' || direction == 'down') ? 'top' : 'left'; + var motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg'; + + // Animation + var animation = {}, animation1 = {}, animation2 = {}; + animation[ref] = (motion == 'pos' ? '-=' : '+=') + distance; + animation1[ref] = (motion == 'pos' ? '+=' : '-=') + distance * 2; + animation2[ref] = (motion == 'pos' ? '-=' : '+=') + distance * 2; + + // Animate + el.animate(animation, speed, o.options.easing); + for (var i = 1; i < times; i++) { // Shakes + el.animate(animation1, speed, o.options.easing).animate(animation2, speed, o.options.easing); + }; + el.animate(animation1, speed, o.options.easing). + animate(animation, speed / 2, o.options.easing, function(){ // Last shake + $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore + if(o.callback) o.callback.apply(this, arguments); // Callback + }); + el.queue('fx', function() { el.dequeue(); }); + el.dequeue(); + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Slide 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Slide + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.slide = function(o) { + + return this.queue(function() { + + // Create element + var el = $(this), props = ['position','top','left']; + + // Set options + var mode = $.effects.setMode(el, o.options.mode || 'show'); // Set Mode + var direction = o.options.direction || 'left'; // Default Direction + + // Adjust + $.effects.save(el, props); el.show(); // Save & Show + $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper + var ref = (direction == 'up' || direction == 'down') ? 'top' : 'left'; + var motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg'; + var distance = o.options.distance || (ref == 'top' ? el.outerHeight({margin:true}) : el.outerWidth({margin:true})); + if (mode == 'show') el.css(ref, motion == 'pos' ? -distance : distance); // Shift + + // Animation + var animation = {}; + animation[ref] = (mode == 'show' ? (motion == 'pos' ? '+=' : '-=') : (motion == 'pos' ? '-=' : '+=')) + distance; + + // Animate + el.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() { + if(mode == 'hide') el.hide(); // Hide + $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore + if(o.callback) o.callback.apply(this, arguments); // Callback + el.dequeue(); + }}); + + }); + +}; + +})(jQuery); +/* + * jQuery UI Effects Transfer 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Transfer + * + * Depends: + * effects.core.js + */ +(function($) { + +$.effects.transfer = function(o) { + return this.queue(function() { + var elem = $(this), + target = $(o.options.to), + endPosition = target.offset(), + animation = { + top: endPosition.top, + left: endPosition.left, + height: target.innerHeight(), + width: target.innerWidth() + }, + startPosition = elem.offset(), + transfer = $('
') + .appendTo(document.body) + .addClass(o.options.className) + .css({ + top: startPosition.top, + left: startPosition.left, + height: elem.innerHeight(), + width: elem.innerWidth(), + position: 'absolute' + }) + .animate(animation, o.duration, o.options.easing, function() { + transfer.remove(); + (o.callback && o.callback.apply(elem[0], arguments)); + elem.dequeue(); + }); + }); +}; + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.accordion.js b/media/js/development-bundle/ui/ui.accordion.js new file mode 100644 index 0000000..e469c3a --- /dev/null +++ b/media/js/development-bundle/ui/ui.accordion.js @@ -0,0 +1,477 @@ +/* + * jQuery UI Accordion 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Accordion + * + * Depends: + * ui.core.js + */ +(function($) { + +$.widget("ui.accordion", { + + _init: function() { + + var o = this.options, self = this; + this.running = 0; + + // if the user set the alwaysOpen option on init + // then we need to set the collapsible option + // if they set both on init, collapsible will take priority + if (o.collapsible == $.ui.accordion.defaults.collapsible && + o.alwaysOpen != $.ui.accordion.defaults.alwaysOpen) { + o.collapsible = !o.alwaysOpen; + } + + if ( o.navigation ) { + var current = this.element.find("a").filter(o.navigationFilter); + if ( current.length ) { + if ( current.filter(o.header).length ) { + this.active = current; + } else { + this.active = current.parent().parent().prev(); + current.addClass("ui-accordion-content-active"); + } + } + } + + this.element.addClass("ui-accordion ui-widget ui-helper-reset"); + + // in lack of child-selectors in CSS we need to mark top-LIs in a UL-accordion for some IE-fix + if (this.element[0].nodeName == "UL") { + this.element.children("li").addClass("ui-accordion-li-fix"); + } + + this.headers = this.element.find(o.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all") + .bind("mouseenter.accordion", function(){ $(this).addClass('ui-state-hover'); }) + .bind("mouseleave.accordion", function(){ $(this).removeClass('ui-state-hover'); }) + .bind("focus.accordion", function(){ $(this).addClass('ui-state-focus'); }) + .bind("blur.accordion", function(){ $(this).removeClass('ui-state-focus'); }); + + this.headers + .next() + .addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom"); + + this.active = this._findActive(this.active || o.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top"); + this.active.next().addClass('ui-accordion-content-active'); + + //Append icon elements + $("").addClass("ui-icon " + o.icons.header).prependTo(this.headers); + this.active.find(".ui-icon").toggleClass(o.icons.header).toggleClass(o.icons.headerSelected); + + // IE7-/Win - Extra vertical space in lists fixed + if ($.browser.msie) { + this.element.find('a').css('zoom', '1'); + } + + this.resize(); + + //ARIA + this.element.attr('role','tablist'); + + this.headers + .attr('role','tab') + .bind('keydown', function(event) { return self._keydown(event); }) + .next() + .attr('role','tabpanel'); + + this.headers + .not(this.active || "") + .attr('aria-expanded','false') + .attr("tabIndex", "-1") + .next() + .hide(); + + // make sure at least one header is in the tab order + if (!this.active.length) { + this.headers.eq(0).attr('tabIndex','0'); + } else { + this.active + .attr('aria-expanded','true') + .attr('tabIndex', '0'); + } + + // only need links in taborder for Safari + if (!$.browser.safari) + this.headers.find('a').attr('tabIndex','-1'); + + if (o.event) { + this.headers.bind((o.event) + ".accordion", function(event) { return self._clickHandler.call(self, event, this); }); + } + + }, + + destroy: function() { + var o = this.options; + + this.element + .removeClass("ui-accordion ui-widget ui-helper-reset") + .removeAttr("role") + .unbind('.accordion') + .removeData('accordion'); + + this.headers + .unbind(".accordion") + .removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top") + .removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex"); + + this.headers.find("a").removeAttr("tabindex"); + this.headers.children(".ui-icon").remove(); + var contents = this.headers.next().css("display", "").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active"); + if (o.autoHeight || o.fillHeight) { + contents.css("height", ""); + } + }, + + _setData: function(key, value) { + if(key == 'alwaysOpen') { key = 'collapsible'; value = !value; } + $.widget.prototype._setData.apply(this, arguments); + }, + + _keydown: function(event) { + + var o = this.options, keyCode = $.ui.keyCode; + + if (o.disabled || event.altKey || event.ctrlKey) + return; + + var length = this.headers.length; + var currentIndex = this.headers.index(event.target); + var toFocus = false; + + switch(event.keyCode) { + case keyCode.RIGHT: + case keyCode.DOWN: + toFocus = this.headers[(currentIndex + 1) % length]; + break; + case keyCode.LEFT: + case keyCode.UP: + toFocus = this.headers[(currentIndex - 1 + length) % length]; + break; + case keyCode.SPACE: + case keyCode.ENTER: + return this._clickHandler({ target: event.target }, event.target); + } + + if (toFocus) { + $(event.target).attr('tabIndex','-1'); + $(toFocus).attr('tabIndex','0'); + toFocus.focus(); + return false; + } + + return true; + + }, + + resize: function() { + + var o = this.options, maxHeight; + + if (o.fillSpace) { + + if($.browser.msie) { var defOverflow = this.element.parent().css('overflow'); this.element.parent().css('overflow', 'hidden'); } + maxHeight = this.element.parent().height(); + if($.browser.msie) { this.element.parent().css('overflow', defOverflow); } + + this.headers.each(function() { + maxHeight -= $(this).outerHeight(); + }); + + var maxPadding = 0; + this.headers.next().each(function() { + maxPadding = Math.max(maxPadding, $(this).innerHeight() - $(this).height()); + }).height(Math.max(0, maxHeight - maxPadding)) + .css('overflow', 'auto'); + + } else if ( o.autoHeight ) { + maxHeight = 0; + this.headers.next().each(function() { + maxHeight = Math.max(maxHeight, $(this).outerHeight()); + }).height(maxHeight); + } + + }, + + activate: function(index) { + // call clickHandler with custom event + var active = this._findActive(index)[0]; + this._clickHandler({ target: active }, active); + }, + + _findActive: function(selector) { + return selector + ? typeof selector == "number" + ? this.headers.filter(":eq(" + selector + ")") + : this.headers.not(this.headers.not(selector)) + : selector === false + ? $([]) + : this.headers.filter(":eq(0)"); + }, + + _clickHandler: function(event, target) { + + var o = this.options; + if (o.disabled) return false; + + // called only when using activate(false) to close all parts programmatically + if (!event.target && o.collapsible) { + this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all") + .find(".ui-icon").removeClass(o.icons.headerSelected).addClass(o.icons.header); + this.active.next().addClass('ui-accordion-content-active'); + var toHide = this.active.next(), + data = { + options: o, + newHeader: $([]), + oldHeader: o.active, + newContent: $([]), + oldContent: toHide + }, + toShow = (this.active = $([])); + this._toggle(toShow, toHide, data); + return false; + } + + // get the click target + var clicked = $(event.currentTarget || target); + var clickedIsActive = clicked[0] == this.active[0]; + + // if animations are still active, or the active header is the target, ignore click + if (this.running || (!o.collapsible && clickedIsActive)) { + return false; + } + + // switch classes + this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all") + .find(".ui-icon").removeClass(o.icons.headerSelected).addClass(o.icons.header); + this.active.next().addClass('ui-accordion-content-active'); + if (!clickedIsActive) { + clicked.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top") + .find(".ui-icon").removeClass(o.icons.header).addClass(o.icons.headerSelected); + clicked.next().addClass('ui-accordion-content-active'); + } + + // find elements to show and hide + var toShow = clicked.next(), + toHide = this.active.next(), + data = { + options: o, + newHeader: clickedIsActive && o.collapsible ? $([]) : clicked, + oldHeader: this.active, + newContent: clickedIsActive && o.collapsible ? $([]) : toShow.find('> *'), + oldContent: toHide.find('> *') + }, + down = this.headers.index( this.active[0] ) > this.headers.index( clicked[0] ); + + this.active = clickedIsActive ? $([]) : clicked; + this._toggle(toShow, toHide, data, clickedIsActive, down); + + return false; + + }, + + _toggle: function(toShow, toHide, data, clickedIsActive, down) { + + var o = this.options, self = this; + + this.toShow = toShow; + this.toHide = toHide; + this.data = data; + + var complete = function() { if(!self) return; return self._completed.apply(self, arguments); }; + + // trigger changestart event + this._trigger("changestart", null, this.data); + + // count elements to animate + this.running = toHide.size() === 0 ? toShow.size() : toHide.size(); + + if (o.animated) { + + var animOptions = {}; + + if ( o.collapsible && clickedIsActive ) { + animOptions = { + toShow: $([]), + toHide: toHide, + complete: complete, + down: down, + autoHeight: o.autoHeight || o.fillSpace + }; + } else { + animOptions = { + toShow: toShow, + toHide: toHide, + complete: complete, + down: down, + autoHeight: o.autoHeight || o.fillSpace + }; + } + + if (!o.proxied) { + o.proxied = o.animated; + } + + if (!o.proxiedDuration) { + o.proxiedDuration = o.duration; + } + + o.animated = $.isFunction(o.proxied) ? + o.proxied(animOptions) : o.proxied; + + o.duration = $.isFunction(o.proxiedDuration) ? + o.proxiedDuration(animOptions) : o.proxiedDuration; + + var animations = $.ui.accordion.animations, + duration = o.duration, + easing = o.animated; + + if (!animations[easing]) { + animations[easing] = function(options) { + this.slide(options, { + easing: easing, + duration: duration || 700 + }); + }; + } + + animations[easing](animOptions); + + } else { + + if (o.collapsible && clickedIsActive) { + toShow.toggle(); + } else { + toHide.hide(); + toShow.show(); + } + + complete(true); + + } + + toHide.prev().attr('aria-expanded','false').attr("tabIndex", "-1").blur(); + toShow.prev().attr('aria-expanded','true').attr("tabIndex", "0").focus(); + + }, + + _completed: function(cancel) { + + var o = this.options; + + this.running = cancel ? 0 : --this.running; + if (this.running) return; + + if (o.clearStyle) { + this.toShow.add(this.toHide).css({ + height: "", + overflow: "" + }); + } + + this._trigger('change', null, this.data); + } + +}); + + +$.extend($.ui.accordion, { + version: "1.7.2", + defaults: { + active: null, + alwaysOpen: true, //deprecated, use collapsible + animated: 'slide', + autoHeight: true, + clearStyle: false, + collapsible: false, + event: "click", + fillSpace: false, + header: "> li > :first-child,> :not(li):even", + icons: { + header: "ui-icon-triangle-1-e", + headerSelected: "ui-icon-triangle-1-s" + }, + navigation: false, + navigationFilter: function() { + return this.href.toLowerCase() == location.href.toLowerCase(); + } + }, + animations: { + slide: function(options, additions) { + options = $.extend({ + easing: "swing", + duration: 300 + }, options, additions); + if ( !options.toHide.size() ) { + options.toShow.animate({height: "show"}, options); + return; + } + if ( !options.toShow.size() ) { + options.toHide.animate({height: "hide"}, options); + return; + } + var overflow = options.toShow.css('overflow'), + percentDone, + showProps = {}, + hideProps = {}, + fxAttrs = [ "height", "paddingTop", "paddingBottom" ], + originalWidth; + // fix width before calculating height of hidden element + var s = options.toShow; + originalWidth = s[0].style.width; + s.width( parseInt(s.parent().width(),10) - parseInt(s.css("paddingLeft"),10) - parseInt(s.css("paddingRight"),10) - (parseInt(s.css("borderLeftWidth"),10) || 0) - (parseInt(s.css("borderRightWidth"),10) || 0) ); + + $.each(fxAttrs, function(i, prop) { + hideProps[prop] = 'hide'; + + var parts = ('' + $.css(options.toShow[0], prop)).match(/^([\d+-.]+)(.*)$/); + showProps[prop] = { + value: parts[1], + unit: parts[2] || 'px' + }; + }); + options.toShow.css({ height: 0, overflow: 'hidden' }).show(); + options.toHide.filter(":hidden").each(options.complete).end().filter(":visible").animate(hideProps,{ + step: function(now, settings) { + // only calculate the percent when animating height + // IE gets very inconsistent results when animating elements + // with small values, which is common for padding + if (settings.prop == 'height') { + percentDone = (settings.now - settings.start) / (settings.end - settings.start); + } + + options.toShow[0].style[settings.prop] = + (percentDone * showProps[settings.prop].value) + showProps[settings.prop].unit; + }, + duration: options.duration, + easing: options.easing, + complete: function() { + if ( !options.autoHeight ) { + options.toShow.css("height", ""); + } + options.toShow.css("width", originalWidth); + options.toShow.css({overflow: overflow}); + options.complete(); + } + }); + }, + bounceslide: function(options) { + this.slide(options, { + easing: options.down ? "easeOutBounce" : "swing", + duration: options.down ? 1000 : 200 + }); + }, + easeslide: function(options) { + this.slide(options, { + easing: "easeinout", + duration: 700 + }); + } + } +}); + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.core.js b/media/js/development-bundle/ui/ui.core.js new file mode 100644 index 0000000..5493e0a --- /dev/null +++ b/media/js/development-bundle/ui/ui.core.js @@ -0,0 +1,519 @@ +/* + * jQuery UI 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI + */ +;jQuery.ui || (function($) { + +var _remove = $.fn.remove, + isFF2 = $.browser.mozilla && (parseFloat($.browser.version) < 1.9); + +//Helper functions and ui object +$.ui = { + version: "1.7.2", + + // $.ui.plugin is deprecated. Use the proxy pattern instead. + plugin: { + add: function(module, option, set) { + var proto = $.ui[module].prototype; + for(var i in set) { + proto.plugins[i] = proto.plugins[i] || []; + proto.plugins[i].push([option, set[i]]); + } + }, + call: function(instance, name, args) { + var set = instance.plugins[name]; + if(!set || !instance.element[0].parentNode) { return; } + + for (var i = 0; i < set.length; i++) { + if (instance.options[set[i][0]]) { + set[i][1].apply(instance.element, args); + } + } + } + }, + + contains: function(a, b) { + return document.compareDocumentPosition + ? a.compareDocumentPosition(b) & 16 + : a !== b && a.contains(b); + }, + + hasScroll: function(el, a) { + + //If overflow is hidden, the element might have extra content, but the user wants to hide it + if ($(el).css('overflow') == 'hidden') { return false; } + + var scroll = (a && a == 'left') ? 'scrollLeft' : 'scrollTop', + has = false; + + if (el[scroll] > 0) { return true; } + + // TODO: determine which cases actually cause this to happen + // if the element doesn't have the scroll set, see if it's possible to + // set the scroll + el[scroll] = 1; + has = (el[scroll] > 0); + el[scroll] = 0; + return has; + }, + + isOverAxis: function(x, reference, size) { + //Determines when x coordinate is over "b" element axis + return (x > reference) && (x < (reference + size)); + }, + + isOver: function(y, x, top, left, height, width) { + //Determines when x, y coordinates is over "b" element + return $.ui.isOverAxis(y, top, height) && $.ui.isOverAxis(x, left, width); + }, + + keyCode: { + BACKSPACE: 8, + CAPS_LOCK: 20, + COMMA: 188, + CONTROL: 17, + DELETE: 46, + DOWN: 40, + END: 35, + ENTER: 13, + ESCAPE: 27, + HOME: 36, + INSERT: 45, + LEFT: 37, + NUMPAD_ADD: 107, + NUMPAD_DECIMAL: 110, + NUMPAD_DIVIDE: 111, + NUMPAD_ENTER: 108, + NUMPAD_MULTIPLY: 106, + NUMPAD_SUBTRACT: 109, + PAGE_DOWN: 34, + PAGE_UP: 33, + PERIOD: 190, + RIGHT: 39, + SHIFT: 16, + SPACE: 32, + TAB: 9, + UP: 38 + } +}; + +// WAI-ARIA normalization +if (isFF2) { + var attr = $.attr, + removeAttr = $.fn.removeAttr, + ariaNS = "http://www.w3.org/2005/07/aaa", + ariaState = /^aria-/, + ariaRole = /^wairole:/; + + $.attr = function(elem, name, value) { + var set = value !== undefined; + + return (name == 'role' + ? (set + ? attr.call(this, elem, name, "wairole:" + value) + : (attr.apply(this, arguments) || "").replace(ariaRole, "")) + : (ariaState.test(name) + ? (set + ? elem.setAttributeNS(ariaNS, + name.replace(ariaState, "aaa:"), value) + : attr.call(this, elem, name.replace(ariaState, "aaa:"))) + : attr.apply(this, arguments))); + }; + + $.fn.removeAttr = function(name) { + return (ariaState.test(name) + ? this.each(function() { + this.removeAttributeNS(ariaNS, name.replace(ariaState, "")); + }) : removeAttr.call(this, name)); + }; +} + +//jQuery plugins +$.fn.extend({ + remove: function() { + // Safari has a native remove event which actually removes DOM elements, + // so we have to use triggerHandler instead of trigger (#3037). + $("*", this).add(this).each(function() { + $(this).triggerHandler("remove"); + }); + return _remove.apply(this, arguments ); + }, + + enableSelection: function() { + return this + .attr('unselectable', 'off') + .css('MozUserSelect', '') + .unbind('selectstart.ui'); + }, + + disableSelection: function() { + return this + .attr('unselectable', 'on') + .css('MozUserSelect', 'none') + .bind('selectstart.ui', function() { return false; }); + }, + + scrollParent: function() { + var scrollParent; + if(($.browser.msie && (/(static|relative)/).test(this.css('position'))) || (/absolute/).test(this.css('position'))) { + scrollParent = this.parents().filter(function() { + return (/(relative|absolute|fixed)/).test($.curCSS(this,'position',1)) && (/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1)); + }).eq(0); + } else { + scrollParent = this.parents().filter(function() { + return (/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1)); + }).eq(0); + } + + return (/fixed/).test(this.css('position')) || !scrollParent.length ? $(document) : scrollParent; + } +}); + + +//Additional selectors +$.extend($.expr[':'], { + data: function(elem, i, match) { + return !!$.data(elem, match[3]); + }, + + focusable: function(element) { + var nodeName = element.nodeName.toLowerCase(), + tabIndex = $.attr(element, 'tabindex'); + return (/input|select|textarea|button|object/.test(nodeName) + ? !element.disabled + : 'a' == nodeName || 'area' == nodeName + ? element.href || !isNaN(tabIndex) + : !isNaN(tabIndex)) + // the element and all of its ancestors must be visible + // the browser may report that the area is hidden + && !$(element)['area' == nodeName ? 'parents' : 'closest'](':hidden').length; + }, + + tabbable: function(element) { + var tabIndex = $.attr(element, 'tabindex'); + return (isNaN(tabIndex) || tabIndex >= 0) && $(element).is(':focusable'); + } +}); + + +// $.widget is a factory to create jQuery plugins +// taking some boilerplate code out of the plugin code +function getter(namespace, plugin, method, args) { + function getMethods(type) { + var methods = $[namespace][plugin][type] || []; + return (typeof methods == 'string' ? methods.split(/,?\s+/) : methods); + } + + var methods = getMethods('getter'); + if (args.length == 1 && typeof args[0] == 'string') { + methods = methods.concat(getMethods('getterSetter')); + } + return ($.inArray(method, methods) != -1); +} + +$.widget = function(name, prototype) { + var namespace = name.split(".")[0]; + name = name.split(".")[1]; + + // create plugin method + $.fn[name] = function(options) { + var isMethodCall = (typeof options == 'string'), + args = Array.prototype.slice.call(arguments, 1); + + // prevent calls to internal methods + if (isMethodCall && options.substring(0, 1) == '_') { + return this; + } + + // handle getter methods + if (isMethodCall && getter(namespace, name, options, args)) { + var instance = $.data(this[0], name); + return (instance ? instance[options].apply(instance, args) + : undefined); + } + + // handle initialization and non-getter methods + return this.each(function() { + var instance = $.data(this, name); + + // constructor + (!instance && !isMethodCall && + $.data(this, name, new $[namespace][name](this, options))._init()); + + // method call + (instance && isMethodCall && $.isFunction(instance[options]) && + instance[options].apply(instance, args)); + }); + }; + + // create widget constructor + $[namespace] = $[namespace] || {}; + $[namespace][name] = function(element, options) { + var self = this; + + this.namespace = namespace; + this.widgetName = name; + this.widgetEventPrefix = $[namespace][name].eventPrefix || name; + this.widgetBaseClass = namespace + '-' + name; + + this.options = $.extend({}, + $.widget.defaults, + $[namespace][name].defaults, + $.metadata && $.metadata.get(element)[name], + options); + + this.element = $(element) + .bind('setData.' + name, function(event, key, value) { + if (event.target == element) { + return self._setData(key, value); + } + }) + .bind('getData.' + name, function(event, key) { + if (event.target == element) { + return self._getData(key); + } + }) + .bind('remove', function() { + return self.destroy(); + }); + }; + + // add widget prototype + $[namespace][name].prototype = $.extend({}, $.widget.prototype, prototype); + + // TODO: merge getter and getterSetter properties from widget prototype + // and plugin prototype + $[namespace][name].getterSetter = 'option'; +}; + +$.widget.prototype = { + _init: function() {}, + destroy: function() { + this.element.removeData(this.widgetName) + .removeClass(this.widgetBaseClass + '-disabled' + ' ' + this.namespace + '-state-disabled') + .removeAttr('aria-disabled'); + }, + + option: function(key, value) { + var options = key, + self = this; + + if (typeof key == "string") { + if (value === undefined) { + return this._getData(key); + } + options = {}; + options[key] = value; + } + + $.each(options, function(key, value) { + self._setData(key, value); + }); + }, + _getData: function(key) { + return this.options[key]; + }, + _setData: function(key, value) { + this.options[key] = value; + + if (key == 'disabled') { + this.element + [value ? 'addClass' : 'removeClass']( + this.widgetBaseClass + '-disabled' + ' ' + + this.namespace + '-state-disabled') + .attr("aria-disabled", value); + } + }, + + enable: function() { + this._setData('disabled', false); + }, + disable: function() { + this._setData('disabled', true); + }, + + _trigger: function(type, event, data) { + var callback = this.options[type], + eventName = (type == this.widgetEventPrefix + ? type : this.widgetEventPrefix + type); + + event = $.Event(event); + event.type = eventName; + + // copy original event properties over to the new event + // this would happen if we could call $.event.fix instead of $.Event + // but we don't have a way to force an event to be fixed multiple times + if (event.originalEvent) { + for (var i = $.event.props.length, prop; i;) { + prop = $.event.props[--i]; + event[prop] = event.originalEvent[prop]; + } + } + + this.element.trigger(event, data); + + return !($.isFunction(callback) && callback.call(this.element[0], event, data) === false + || event.isDefaultPrevented()); + } +}; + +$.widget.defaults = { + disabled: false +}; + + +/** Mouse Interaction Plugin **/ + +$.ui.mouse = { + _mouseInit: function() { + var self = this; + + this.element + .bind('mousedown.'+this.widgetName, function(event) { + return self._mouseDown(event); + }) + .bind('click.'+this.widgetName, function(event) { + if(self._preventClickEvent) { + self._preventClickEvent = false; + event.stopImmediatePropagation(); + return false; + } + }); + + // Prevent text selection in IE + if ($.browser.msie) { + this._mouseUnselectable = this.element.attr('unselectable'); + this.element.attr('unselectable', 'on'); + } + + this.started = false; + }, + + // TODO: make sure destroying one instance of mouse doesn't mess with + // other instances of mouse + _mouseDestroy: function() { + this.element.unbind('.'+this.widgetName); + + // Restore text selection in IE + ($.browser.msie + && this.element.attr('unselectable', this._mouseUnselectable)); + }, + + _mouseDown: function(event) { + // don't let more than one widget handle mouseStart + // TODO: figure out why we have to use originalEvent + event.originalEvent = event.originalEvent || {}; + if (event.originalEvent.mouseHandled) { return; } + + // we may have missed mouseup (out of window) + (this._mouseStarted && this._mouseUp(event)); + + this._mouseDownEvent = event; + + var self = this, + btnIsLeft = (event.which == 1), + elIsCancel = (typeof this.options.cancel == "string" ? $(event.target).parents().add(event.target).filter(this.options.cancel).length : false); + if (!btnIsLeft || elIsCancel || !this._mouseCapture(event)) { + return true; + } + + this.mouseDelayMet = !this.options.delay; + if (!this.mouseDelayMet) { + this._mouseDelayTimer = setTimeout(function() { + self.mouseDelayMet = true; + }, this.options.delay); + } + + if (this._mouseDistanceMet(event) && this._mouseDelayMet(event)) { + this._mouseStarted = (this._mouseStart(event) !== false); + if (!this._mouseStarted) { + event.preventDefault(); + return true; + } + } + + // these delegates are required to keep context + this._mouseMoveDelegate = function(event) { + return self._mouseMove(event); + }; + this._mouseUpDelegate = function(event) { + return self._mouseUp(event); + }; + $(document) + .bind('mousemove.'+this.widgetName, this._mouseMoveDelegate) + .bind('mouseup.'+this.widgetName, this._mouseUpDelegate); + + // preventDefault() is used to prevent the selection of text here - + // however, in Safari, this causes select boxes not to be selectable + // anymore, so this fix is needed + ($.browser.safari || event.preventDefault()); + + event.originalEvent.mouseHandled = true; + return true; + }, + + _mouseMove: function(event) { + // IE mouseup check - mouseup happened when mouse was out of window + if ($.browser.msie && !event.button) { + return this._mouseUp(event); + } + + if (this._mouseStarted) { + this._mouseDrag(event); + return event.preventDefault(); + } + + if (this._mouseDistanceMet(event) && this._mouseDelayMet(event)) { + this._mouseStarted = + (this._mouseStart(this._mouseDownEvent, event) !== false); + (this._mouseStarted ? this._mouseDrag(event) : this._mouseUp(event)); + } + + return !this._mouseStarted; + }, + + _mouseUp: function(event) { + $(document) + .unbind('mousemove.'+this.widgetName, this._mouseMoveDelegate) + .unbind('mouseup.'+this.widgetName, this._mouseUpDelegate); + + if (this._mouseStarted) { + this._mouseStarted = false; + this._preventClickEvent = (event.target == this._mouseDownEvent.target); + this._mouseStop(event); + } + + return false; + }, + + _mouseDistanceMet: function(event) { + return (Math.max( + Math.abs(this._mouseDownEvent.pageX - event.pageX), + Math.abs(this._mouseDownEvent.pageY - event.pageY) + ) >= this.options.distance + ); + }, + + _mouseDelayMet: function(event) { + return this.mouseDelayMet; + }, + + // These are placeholder methods, to be overriden by extending plugin + _mouseStart: function(event) {}, + _mouseDrag: function(event) {}, + _mouseStop: function(event) {}, + _mouseCapture: function(event) { return true; } +}; + +$.ui.mouse.defaults = { + cancel: null, + distance: 1, + delay: 0 +}; + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.datepicker.js b/media/js/development-bundle/ui/ui.datepicker.js new file mode 100644 index 0000000..0ce166e --- /dev/null +++ b/media/js/development-bundle/ui/ui.datepicker.js @@ -0,0 +1,1636 @@ +/* + * jQuery UI Datepicker 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Datepicker + * + * Depends: + * ui.core.js + */ + +(function($) { // hide the namespace + +$.extend($.ui, { datepicker: { version: "1.7.2" } }); + +var PROP_NAME = 'datepicker'; + +/* Date picker manager. + Use the singleton instance of this class, $.datepicker, to interact with the date picker. + Settings for (groups of) date pickers are maintained in an instance object, + allowing multiple different settings on the same page. */ + +function Datepicker() { + this.debug = false; // Change this to true to start debugging + this._curInst = null; // The current instance in use + this._keyEvent = false; // If the last event was a key event + this._disabledInputs = []; // List of date picker inputs that have been disabled + this._datepickerShowing = false; // True if the popup picker is showing , false if not + this._inDialog = false; // True if showing within a "dialog", false if not + this._mainDivId = 'ui-datepicker-div'; // The ID of the main datepicker division + this._inlineClass = 'ui-datepicker-inline'; // The name of the inline marker class + this._appendClass = 'ui-datepicker-append'; // The name of the append marker class + this._triggerClass = 'ui-datepicker-trigger'; // The name of the trigger marker class + this._dialogClass = 'ui-datepicker-dialog'; // The name of the dialog marker class + this._disableClass = 'ui-datepicker-disabled'; // The name of the disabled covering marker class + this._unselectableClass = 'ui-datepicker-unselectable'; // The name of the unselectable cell marker class + this._currentClass = 'ui-datepicker-current-day'; // The name of the current day marker class + this._dayOverClass = 'ui-datepicker-days-cell-over'; // The name of the day hover marker class + this.regional = []; // Available regional settings, indexed by language code + this.regional[''] = { // Default regional settings + closeText: 'Done', // Display text for close link + prevText: 'Prev', // Display text for previous month link + nextText: 'Next', // Display text for next month link + currentText: 'Today', // Display text for current month link + monthNames: ['January','February','March','April','May','June', + 'July','August','September','October','November','December'], // Names of months for drop-down and formatting + monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], // For formatting + dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], // For formatting + dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], // For formatting + dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], // Column headings for days starting at Sunday + dateFormat: 'mm/dd/yy', // See format options on parseDate + firstDay: 0, // The first day of the week, Sun = 0, Mon = 1, ... + isRTL: false // True if right-to-left language, false if left-to-right + }; + this._defaults = { // Global defaults for all the date picker instances + showOn: 'focus', // 'focus' for popup on focus, + // 'button' for trigger button, or 'both' for either + showAnim: 'show', // Name of jQuery animation for popup + showOptions: {}, // Options for enhanced animations + defaultDate: null, // Used when field is blank: actual date, + // +/-number for offset from today, null for today + appendText: '', // Display text following the input box, e.g. showing the format + buttonText: '...', // Text for trigger button + buttonImage: '', // URL for trigger button image + buttonImageOnly: false, // True if the image appears alone, false if it appears on a button + hideIfNoPrevNext: false, // True to hide next/previous month links + // if not applicable, false to just disable them + navigationAsDateFormat: false, // True if date formatting applied to prev/today/next links + gotoCurrent: false, // True if today link goes back to current selection instead + changeMonth: false, // True if month can be selected directly, false if only prev/next + changeYear: false, // True if year can be selected directly, false if only prev/next + showMonthAfterYear: false, // True if the year select precedes month, false for month then year + yearRange: '-10:+10', // Range of years to display in drop-down, + // either relative to current year (-nn:+nn) or absolute (nnnn:nnnn) + showOtherMonths: false, // True to show dates in other months, false to leave blank + calculateWeek: this.iso8601Week, // How to calculate the week of the year, + // takes a Date and returns the number of the week for it + shortYearCutoff: '+10', // Short year values < this are in the current century, + // > this are in the previous century, + // string value starting with '+' for current year + value + minDate: null, // The earliest selectable date, or null for no limit + maxDate: null, // The latest selectable date, or null for no limit + duration: 'normal', // Duration of display/closure + beforeShowDay: null, // Function that takes a date and returns an array with + // [0] = true if selectable, false if not, [1] = custom CSS class name(s) or '', + // [2] = cell title (optional), e.g. $.datepicker.noWeekends + beforeShow: null, // Function that takes an input field and + // returns a set of custom settings for the date picker + onSelect: null, // Define a callback function when a date is selected + onChangeMonthYear: null, // Define a callback function when the month or year is changed + onClose: null, // Define a callback function when the datepicker is closed + numberOfMonths: 1, // Number of months to show at a time + showCurrentAtPos: 0, // The position in multipe months at which to show the current month (starting at 0) + stepMonths: 1, // Number of months to step back/forward + stepBigMonths: 12, // Number of months to step back/forward for the big links + altField: '', // Selector for an alternate field to store selected dates into + altFormat: '', // The date format to use for the alternate field + constrainInput: true, // The input is constrained by the current date format + showButtonPanel: false // True to show button panel, false to not show it + }; + $.extend(this._defaults, this.regional['']); + this.dpDiv = $('
'); +} + +$.extend(Datepicker.prototype, { + /* Class name added to elements to indicate already configured with a date picker. */ + markerClassName: 'hasDatepicker', + + /* Debug logging (if enabled). */ + log: function () { + if (this.debug) + console.log.apply('', arguments); + }, + + /* Override the default settings for all instances of the date picker. + @param settings object - the new settings to use as defaults (anonymous object) + @return the manager object */ + setDefaults: function(settings) { + extendRemove(this._defaults, settings || {}); + return this; + }, + + /* Attach the date picker to a jQuery selection. + @param target element - the target input field or division or span + @param settings object - the new settings to use for this date picker instance (anonymous) */ + _attachDatepicker: function(target, settings) { + // check for settings on the control itself - in namespace 'date:' + var inlineSettings = null; + for (var attrName in this._defaults) { + var attrValue = target.getAttribute('date:' + attrName); + if (attrValue) { + inlineSettings = inlineSettings || {}; + try { + inlineSettings[attrName] = eval(attrValue); + } catch (err) { + inlineSettings[attrName] = attrValue; + } + } + } + var nodeName = target.nodeName.toLowerCase(); + var inline = (nodeName == 'div' || nodeName == 'span'); + if (!target.id) + target.id = 'dp' + (++this.uuid); + var inst = this._newInst($(target), inline); + inst.settings = $.extend({}, settings || {}, inlineSettings || {}); + if (nodeName == 'input') { + this._connectDatepicker(target, inst); + } else if (inline) { + this._inlineDatepicker(target, inst); + } + }, + + /* Create a new instance object. */ + _newInst: function(target, inline) { + var id = target[0].id.replace(/([:\[\]\.])/g, '\\\\$1'); // escape jQuery meta chars + return {id: id, input: target, // associated target + selectedDay: 0, selectedMonth: 0, selectedYear: 0, // current selection + drawMonth: 0, drawYear: 0, // month being drawn + inline: inline, // is datepicker inline or not + dpDiv: (!inline ? this.dpDiv : // presentation div + $('
'))}; + }, + + /* Attach the date picker to an input field. */ + _connectDatepicker: function(target, inst) { + var input = $(target); + inst.append = $([]); + inst.trigger = $([]); + if (input.hasClass(this.markerClassName)) + return; + var appendText = this._get(inst, 'appendText'); + var isRTL = this._get(inst, 'isRTL'); + if (appendText) { + inst.append = $('' + appendText + ''); + input[isRTL ? 'before' : 'after'](inst.append); + } + var showOn = this._get(inst, 'showOn'); + if (showOn == 'focus' || showOn == 'both') // pop-up date picker when in the marked field + input.focus(this._showDatepicker); + if (showOn == 'button' || showOn == 'both') { // pop-up date picker when button clicked + var buttonText = this._get(inst, 'buttonText'); + var buttonImage = this._get(inst, 'buttonImage'); + inst.trigger = $(this._get(inst, 'buttonImageOnly') ? + $('').addClass(this._triggerClass). + attr({ src: buttonImage, alt: buttonText, title: buttonText }) : + $('').addClass(this._triggerClass). + html(buttonImage == '' ? buttonText : $('').attr( + { src:buttonImage, alt:buttonText, title:buttonText }))); + input[isRTL ? 'before' : 'after'](inst.trigger); + inst.trigger.click(function() { + if ($.datepicker._datepickerShowing && $.datepicker._lastInput == target) + $.datepicker._hideDatepicker(); + else + $.datepicker._showDatepicker(target); + return false; + }); + } + input.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress). + bind("setData.datepicker", function(event, key, value) { + inst.settings[key] = value; + }).bind("getData.datepicker", function(event, key) { + return this._get(inst, key); + }); + $.data(target, PROP_NAME, inst); + }, + + /* Attach an inline date picker to a div. */ + _inlineDatepicker: function(target, inst) { + var divSpan = $(target); + if (divSpan.hasClass(this.markerClassName)) + return; + divSpan.addClass(this.markerClassName).append(inst.dpDiv). + bind("setData.datepicker", function(event, key, value){ + inst.settings[key] = value; + }).bind("getData.datepicker", function(event, key){ + return this._get(inst, key); + }); + $.data(target, PROP_NAME, inst); + this._setDate(inst, this._getDefaultDate(inst)); + this._updateDatepicker(inst); + this._updateAlternate(inst); + }, + + /* Pop-up the date picker in a "dialog" box. + @param input element - ignored + @param dateText string - the initial date to display (in the current format) + @param onSelect function - the function(dateText) to call when a date is selected + @param settings object - update the dialog date picker instance's settings (anonymous object) + @param pos int[2] - coordinates for the dialog's position within the screen or + event - with x/y coordinates or + leave empty for default (screen centre) + @return the manager object */ + _dialogDatepicker: function(input, dateText, onSelect, settings, pos) { + var inst = this._dialogInst; // internal instance + if (!inst) { + var id = 'dp' + (++this.uuid); + this._dialogInput = $(''); + this._dialogInput.keydown(this._doKeyDown); + $('body').append(this._dialogInput); + inst = this._dialogInst = this._newInst(this._dialogInput, false); + inst.settings = {}; + $.data(this._dialogInput[0], PROP_NAME, inst); + } + extendRemove(inst.settings, settings || {}); + this._dialogInput.val(dateText); + + this._pos = (pos ? (pos.length ? pos : [pos.pageX, pos.pageY]) : null); + if (!this._pos) { + var browserWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; + var browserHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; + var scrollX = document.documentElement.scrollLeft || document.body.scrollLeft; + var scrollY = document.documentElement.scrollTop || document.body.scrollTop; + this._pos = // should use actual width/height below + [(browserWidth / 2) - 100 + scrollX, (browserHeight / 2) - 150 + scrollY]; + } + + // move input on screen for focus, but hidden behind dialog + this._dialogInput.css('left', this._pos[0] + 'px').css('top', this._pos[1] + 'px'); + inst.settings.onSelect = onSelect; + this._inDialog = true; + this.dpDiv.addClass(this._dialogClass); + this._showDatepicker(this._dialogInput[0]); + if ($.blockUI) + $.blockUI(this.dpDiv); + $.data(this._dialogInput[0], PROP_NAME, inst); + return this; + }, + + /* Detach a datepicker from its control. + @param target element - the target input field or division or span */ + _destroyDatepicker: function(target) { + var $target = $(target); + var inst = $.data(target, PROP_NAME); + if (!$target.hasClass(this.markerClassName)) { + return; + } + var nodeName = target.nodeName.toLowerCase(); + $.removeData(target, PROP_NAME); + if (nodeName == 'input') { + inst.append.remove(); + inst.trigger.remove(); + $target.removeClass(this.markerClassName). + unbind('focus', this._showDatepicker). + unbind('keydown', this._doKeyDown). + unbind('keypress', this._doKeyPress); + } else if (nodeName == 'div' || nodeName == 'span') + $target.removeClass(this.markerClassName).empty(); + }, + + /* Enable the date picker to a jQuery selection. + @param target element - the target input field or division or span */ + _enableDatepicker: function(target) { + var $target = $(target); + var inst = $.data(target, PROP_NAME); + if (!$target.hasClass(this.markerClassName)) { + return; + } + var nodeName = target.nodeName.toLowerCase(); + if (nodeName == 'input') { + target.disabled = false; + inst.trigger.filter('button'). + each(function() { this.disabled = false; }).end(). + filter('img').css({opacity: '1.0', cursor: ''}); + } + else if (nodeName == 'div' || nodeName == 'span') { + var inline = $target.children('.' + this._inlineClass); + inline.children().removeClass('ui-state-disabled'); + } + this._disabledInputs = $.map(this._disabledInputs, + function(value) { return (value == target ? null : value); }); // delete entry + }, + + /* Disable the date picker to a jQuery selection. + @param target element - the target input field or division or span */ + _disableDatepicker: function(target) { + var $target = $(target); + var inst = $.data(target, PROP_NAME); + if (!$target.hasClass(this.markerClassName)) { + return; + } + var nodeName = target.nodeName.toLowerCase(); + if (nodeName == 'input') { + target.disabled = true; + inst.trigger.filter('button'). + each(function() { this.disabled = true; }).end(). + filter('img').css({opacity: '0.5', cursor: 'default'}); + } + else if (nodeName == 'div' || nodeName == 'span') { + var inline = $target.children('.' + this._inlineClass); + inline.children().addClass('ui-state-disabled'); + } + this._disabledInputs = $.map(this._disabledInputs, + function(value) { return (value == target ? null : value); }); // delete entry + this._disabledInputs[this._disabledInputs.length] = target; + }, + + /* Is the first field in a jQuery collection disabled as a datepicker? + @param target element - the target input field or division or span + @return boolean - true if disabled, false if enabled */ + _isDisabledDatepicker: function(target) { + if (!target) { + return false; + } + for (var i = 0; i < this._disabledInputs.length; i++) { + if (this._disabledInputs[i] == target) + return true; + } + return false; + }, + + /* Retrieve the instance data for the target control. + @param target element - the target input field or division or span + @return object - the associated instance data + @throws error if a jQuery problem getting data */ + _getInst: function(target) { + try { + return $.data(target, PROP_NAME); + } + catch (err) { + throw 'Missing instance data for this datepicker'; + } + }, + + /* Update or retrieve the settings for a date picker attached to an input field or division. + @param target element - the target input field or division or span + @param name object - the new settings to update or + string - the name of the setting to change or retrieve, + when retrieving also 'all' for all instance settings or + 'defaults' for all global defaults + @param value any - the new value for the setting + (omit if above is an object or to retrieve a value) */ + _optionDatepicker: function(target, name, value) { + var inst = this._getInst(target); + if (arguments.length == 2 && typeof name == 'string') { + return (name == 'defaults' ? $.extend({}, $.datepicker._defaults) : + (inst ? (name == 'all' ? $.extend({}, inst.settings) : + this._get(inst, name)) : null)); + } + var settings = name || {}; + if (typeof name == 'string') { + settings = {}; + settings[name] = value; + } + if (inst) { + if (this._curInst == inst) { + this._hideDatepicker(null); + } + var date = this._getDateDatepicker(target); + extendRemove(inst.settings, settings); + this._setDateDatepicker(target, date); + this._updateDatepicker(inst); + } + }, + + // change method deprecated + _changeDatepicker: function(target, name, value) { + this._optionDatepicker(target, name, value); + }, + + /* Redraw the date picker attached to an input field or division. + @param target element - the target input field or division or span */ + _refreshDatepicker: function(target) { + var inst = this._getInst(target); + if (inst) { + this._updateDatepicker(inst); + } + }, + + /* Set the dates for a jQuery selection. + @param target element - the target input field or division or span + @param date Date - the new date + @param endDate Date - the new end date for a range (optional) */ + _setDateDatepicker: function(target, date, endDate) { + var inst = this._getInst(target); + if (inst) { + this._setDate(inst, date, endDate); + this._updateDatepicker(inst); + this._updateAlternate(inst); + } + }, + + /* Get the date(s) for the first entry in a jQuery selection. + @param target element - the target input field or division or span + @return Date - the current date or + Date[2] - the current dates for a range */ + _getDateDatepicker: function(target) { + var inst = this._getInst(target); + if (inst && !inst.inline) + this._setDateFromField(inst); + return (inst ? this._getDate(inst) : null); + }, + + /* Handle keystrokes. */ + _doKeyDown: function(event) { + var inst = $.datepicker._getInst(event.target); + var handled = true; + var isRTL = inst.dpDiv.is('.ui-datepicker-rtl'); + inst._keyEvent = true; + if ($.datepicker._datepickerShowing) + switch (event.keyCode) { + case 9: $.datepicker._hideDatepicker(null, ''); + break; // hide on tab out + case 13: var sel = $('td.' + $.datepicker._dayOverClass + + ', td.' + $.datepicker._currentClass, inst.dpDiv); + if (sel[0]) + $.datepicker._selectDay(event.target, inst.selectedMonth, inst.selectedYear, sel[0]); + else + $.datepicker._hideDatepicker(null, $.datepicker._get(inst, 'duration')); + return false; // don't submit the form + break; // select the value on enter + case 27: $.datepicker._hideDatepicker(null, $.datepicker._get(inst, 'duration')); + break; // hide on escape + case 33: $.datepicker._adjustDate(event.target, (event.ctrlKey ? + -$.datepicker._get(inst, 'stepBigMonths') : + -$.datepicker._get(inst, 'stepMonths')), 'M'); + break; // previous month/year on page up/+ ctrl + case 34: $.datepicker._adjustDate(event.target, (event.ctrlKey ? + +$.datepicker._get(inst, 'stepBigMonths') : + +$.datepicker._get(inst, 'stepMonths')), 'M'); + break; // next month/year on page down/+ ctrl + case 35: if (event.ctrlKey || event.metaKey) $.datepicker._clearDate(event.target); + handled = event.ctrlKey || event.metaKey; + break; // clear on ctrl or command +end + case 36: if (event.ctrlKey || event.metaKey) $.datepicker._gotoToday(event.target); + handled = event.ctrlKey || event.metaKey; + break; // current on ctrl or command +home + case 37: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, (isRTL ? +1 : -1), 'D'); + handled = event.ctrlKey || event.metaKey; + // -1 day on ctrl or command +left + if (event.originalEvent.altKey) $.datepicker._adjustDate(event.target, (event.ctrlKey ? + -$.datepicker._get(inst, 'stepBigMonths') : + -$.datepicker._get(inst, 'stepMonths')), 'M'); + // next month/year on alt +left on Mac + break; + case 38: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, -7, 'D'); + handled = event.ctrlKey || event.metaKey; + break; // -1 week on ctrl or command +up + case 39: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, (isRTL ? -1 : +1), 'D'); + handled = event.ctrlKey || event.metaKey; + // +1 day on ctrl or command +right + if (event.originalEvent.altKey) $.datepicker._adjustDate(event.target, (event.ctrlKey ? + +$.datepicker._get(inst, 'stepBigMonths') : + +$.datepicker._get(inst, 'stepMonths')), 'M'); + // next month/year on alt +right + break; + case 40: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, +7, 'D'); + handled = event.ctrlKey || event.metaKey; + break; // +1 week on ctrl or command +down + default: handled = false; + } + else if (event.keyCode == 36 && event.ctrlKey) // display the date picker on ctrl+home + $.datepicker._showDatepicker(this); + else { + handled = false; + } + if (handled) { + event.preventDefault(); + event.stopPropagation(); + } + }, + + /* Filter entered characters - based on date format. */ + _doKeyPress: function(event) { + var inst = $.datepicker._getInst(event.target); + if ($.datepicker._get(inst, 'constrainInput')) { + var chars = $.datepicker._possibleChars($.datepicker._get(inst, 'dateFormat')); + var chr = String.fromCharCode(event.charCode == undefined ? event.keyCode : event.charCode); + return event.ctrlKey || (chr < ' ' || !chars || chars.indexOf(chr) > -1); + } + }, + + /* Pop-up the date picker for a given input field. + @param input element - the input field attached to the date picker or + event - if triggered by focus */ + _showDatepicker: function(input) { + input = input.target || input; + if (input.nodeName.toLowerCase() != 'input') // find from button/image trigger + input = $('input', input.parentNode)[0]; + if ($.datepicker._isDisabledDatepicker(input) || $.datepicker._lastInput == input) // already here + return; + var inst = $.datepicker._getInst(input); + var beforeShow = $.datepicker._get(inst, 'beforeShow'); + extendRemove(inst.settings, (beforeShow ? beforeShow.apply(input, [input, inst]) : {})); + $.datepicker._hideDatepicker(null, ''); + $.datepicker._lastInput = input; + $.datepicker._setDateFromField(inst); + if ($.datepicker._inDialog) // hide cursor + input.value = ''; + if (!$.datepicker._pos) { // position below input + $.datepicker._pos = $.datepicker._findPos(input); + $.datepicker._pos[1] += input.offsetHeight; // add the height + } + var isFixed = false; + $(input).parents().each(function() { + isFixed |= $(this).css('position') == 'fixed'; + return !isFixed; + }); + if (isFixed && $.browser.opera) { // correction for Opera when fixed and scrolled + $.datepicker._pos[0] -= document.documentElement.scrollLeft; + $.datepicker._pos[1] -= document.documentElement.scrollTop; + } + var offset = {left: $.datepicker._pos[0], top: $.datepicker._pos[1]}; + $.datepicker._pos = null; + inst.rangeStart = null; + // determine sizing offscreen + inst.dpDiv.css({position: 'absolute', display: 'block', top: '-1000px'}); + $.datepicker._updateDatepicker(inst); + // fix width for dynamic number of date pickers + // and adjust position before showing + offset = $.datepicker._checkOffset(inst, offset, isFixed); + inst.dpDiv.css({position: ($.datepicker._inDialog && $.blockUI ? + 'static' : (isFixed ? 'fixed' : 'absolute')), display: 'none', + left: offset.left + 'px', top: offset.top + 'px'}); + if (!inst.inline) { + var showAnim = $.datepicker._get(inst, 'showAnim') || 'show'; + var duration = $.datepicker._get(inst, 'duration'); + var postProcess = function() { + $.datepicker._datepickerShowing = true; + if ($.browser.msie && parseInt($.browser.version,10) < 7) // fix IE < 7 select problems + $('iframe.ui-datepicker-cover').css({width: inst.dpDiv.width() + 4, + height: inst.dpDiv.height() + 4}); + }; + if ($.effects && $.effects[showAnim]) + inst.dpDiv.show(showAnim, $.datepicker._get(inst, 'showOptions'), duration, postProcess); + else + inst.dpDiv[showAnim](duration, postProcess); + if (duration == '') + postProcess(); + if (inst.input[0].type != 'hidden') + inst.input[0].focus(); + $.datepicker._curInst = inst; + } + }, + + /* Generate the date picker content. */ + _updateDatepicker: function(inst) { + var dims = {width: inst.dpDiv.width() + 4, + height: inst.dpDiv.height() + 4}; + var self = this; + inst.dpDiv.empty().append(this._generateHTML(inst)) + .find('iframe.ui-datepicker-cover'). + css({width: dims.width, height: dims.height}) + .end() + .find('button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a') + .bind('mouseout', function(){ + $(this).removeClass('ui-state-hover'); + if(this.className.indexOf('ui-datepicker-prev') != -1) $(this).removeClass('ui-datepicker-prev-hover'); + if(this.className.indexOf('ui-datepicker-next') != -1) $(this).removeClass('ui-datepicker-next-hover'); + }) + .bind('mouseover', function(){ + if (!self._isDisabledDatepicker( inst.inline ? inst.dpDiv.parent()[0] : inst.input[0])) { + $(this).parents('.ui-datepicker-calendar').find('a').removeClass('ui-state-hover'); + $(this).addClass('ui-state-hover'); + if(this.className.indexOf('ui-datepicker-prev') != -1) $(this).addClass('ui-datepicker-prev-hover'); + if(this.className.indexOf('ui-datepicker-next') != -1) $(this).addClass('ui-datepicker-next-hover'); + } + }) + .end() + .find('.' + this._dayOverClass + ' a') + .trigger('mouseover') + .end(); + var numMonths = this._getNumberOfMonths(inst); + var cols = numMonths[1]; + var width = 17; + if (cols > 1) { + inst.dpDiv.addClass('ui-datepicker-multi-' + cols).css('width', (width * cols) + 'em'); + } else { + inst.dpDiv.removeClass('ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4').width(''); + } + inst.dpDiv[(numMonths[0] != 1 || numMonths[1] != 1 ? 'add' : 'remove') + + 'Class']('ui-datepicker-multi'); + inst.dpDiv[(this._get(inst, 'isRTL') ? 'add' : 'remove') + + 'Class']('ui-datepicker-rtl'); + if (inst.input && inst.input[0].type != 'hidden' && inst == $.datepicker._curInst) + $(inst.input[0]).focus(); + }, + + /* Check positioning to remain on screen. */ + _checkOffset: function(inst, offset, isFixed) { + var dpWidth = inst.dpDiv.outerWidth(); + var dpHeight = inst.dpDiv.outerHeight(); + var inputWidth = inst.input ? inst.input.outerWidth() : 0; + var inputHeight = inst.input ? inst.input.outerHeight() : 0; + var viewWidth = (window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth) + $(document).scrollLeft(); + var viewHeight = (window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight) + $(document).scrollTop(); + + offset.left -= (this._get(inst, 'isRTL') ? (dpWidth - inputWidth) : 0); + offset.left -= (isFixed && offset.left == inst.input.offset().left) ? $(document).scrollLeft() : 0; + offset.top -= (isFixed && offset.top == (inst.input.offset().top + inputHeight)) ? $(document).scrollTop() : 0; + + // now check if datepicker is showing outside window viewport - move to a better place if so. + offset.left -= (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ? Math.abs(offset.left + dpWidth - viewWidth) : 0; + offset.top -= (offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ? Math.abs(offset.top + dpHeight + inputHeight*2 - viewHeight) : 0; + + return offset; + }, + + /* Find an object's position on the screen. */ + _findPos: function(obj) { + while (obj && (obj.type == 'hidden' || obj.nodeType != 1)) { + obj = obj.nextSibling; + } + var position = $(obj).offset(); + return [position.left, position.top]; + }, + + /* Hide the date picker from view. + @param input element - the input field attached to the date picker + @param duration string - the duration over which to close the date picker */ + _hideDatepicker: function(input, duration) { + var inst = this._curInst; + if (!inst || (input && inst != $.data(input, PROP_NAME))) + return; + if (inst.stayOpen) + this._selectDate('#' + inst.id, this._formatDate(inst, + inst.currentDay, inst.currentMonth, inst.currentYear)); + inst.stayOpen = false; + if (this._datepickerShowing) { + duration = (duration != null ? duration : this._get(inst, 'duration')); + var showAnim = this._get(inst, 'showAnim'); + var postProcess = function() { + $.datepicker._tidyDialog(inst); + }; + if (duration != '' && $.effects && $.effects[showAnim]) + inst.dpDiv.hide(showAnim, $.datepicker._get(inst, 'showOptions'), + duration, postProcess); + else + inst.dpDiv[(duration == '' ? 'hide' : (showAnim == 'slideDown' ? 'slideUp' : + (showAnim == 'fadeIn' ? 'fadeOut' : 'hide')))](duration, postProcess); + if (duration == '') + this._tidyDialog(inst); + var onClose = this._get(inst, 'onClose'); + if (onClose) + onClose.apply((inst.input ? inst.input[0] : null), + [(inst.input ? inst.input.val() : ''), inst]); // trigger custom callback + this._datepickerShowing = false; + this._lastInput = null; + if (this._inDialog) { + this._dialogInput.css({ position: 'absolute', left: '0', top: '-100px' }); + if ($.blockUI) { + $.unblockUI(); + $('body').append(this.dpDiv); + } + } + this._inDialog = false; + } + this._curInst = null; + }, + + /* Tidy up after a dialog display. */ + _tidyDialog: function(inst) { + inst.dpDiv.removeClass(this._dialogClass).unbind('.ui-datepicker-calendar'); + }, + + /* Close date picker if clicked elsewhere. */ + _checkExternalClick: function(event) { + if (!$.datepicker._curInst) + return; + var $target = $(event.target); + if (($target.parents('#' + $.datepicker._mainDivId).length == 0) && + !$target.hasClass($.datepicker.markerClassName) && + !$target.hasClass($.datepicker._triggerClass) && + $.datepicker._datepickerShowing && !($.datepicker._inDialog && $.blockUI)) + $.datepicker._hideDatepicker(null, ''); + }, + + /* Adjust one of the date sub-fields. */ + _adjustDate: function(id, offset, period) { + var target = $(id); + var inst = this._getInst(target[0]); + if (this._isDisabledDatepicker(target[0])) { + return; + } + this._adjustInstDate(inst, offset + + (period == 'M' ? this._get(inst, 'showCurrentAtPos') : 0), // undo positioning + period); + this._updateDatepicker(inst); + }, + + /* Action for current link. */ + _gotoToday: function(id) { + var target = $(id); + var inst = this._getInst(target[0]); + if (this._get(inst, 'gotoCurrent') && inst.currentDay) { + inst.selectedDay = inst.currentDay; + inst.drawMonth = inst.selectedMonth = inst.currentMonth; + inst.drawYear = inst.selectedYear = inst.currentYear; + } + else { + var date = new Date(); + inst.selectedDay = date.getDate(); + inst.drawMonth = inst.selectedMonth = date.getMonth(); + inst.drawYear = inst.selectedYear = date.getFullYear(); + } + this._notifyChange(inst); + this._adjustDate(target); + }, + + /* Action for selecting a new month/year. */ + _selectMonthYear: function(id, select, period) { + var target = $(id); + var inst = this._getInst(target[0]); + inst._selectingMonthYear = false; + inst['selected' + (period == 'M' ? 'Month' : 'Year')] = + inst['draw' + (period == 'M' ? 'Month' : 'Year')] = + parseInt(select.options[select.selectedIndex].value,10); + this._notifyChange(inst); + this._adjustDate(target); + }, + + /* Restore input focus after not changing month/year. */ + _clickMonthYear: function(id) { + var target = $(id); + var inst = this._getInst(target[0]); + if (inst.input && inst._selectingMonthYear && !$.browser.msie) + inst.input[0].focus(); + inst._selectingMonthYear = !inst._selectingMonthYear; + }, + + /* Action for selecting a day. */ + _selectDay: function(id, month, year, td) { + var target = $(id); + if ($(td).hasClass(this._unselectableClass) || this._isDisabledDatepicker(target[0])) { + return; + } + var inst = this._getInst(target[0]); + inst.selectedDay = inst.currentDay = $('a', td).html(); + inst.selectedMonth = inst.currentMonth = month; + inst.selectedYear = inst.currentYear = year; + if (inst.stayOpen) { + inst.endDay = inst.endMonth = inst.endYear = null; + } + this._selectDate(id, this._formatDate(inst, + inst.currentDay, inst.currentMonth, inst.currentYear)); + if (inst.stayOpen) { + inst.rangeStart = this._daylightSavingAdjust( + new Date(inst.currentYear, inst.currentMonth, inst.currentDay)); + this._updateDatepicker(inst); + } + }, + + /* Erase the input field and hide the date picker. */ + _clearDate: function(id) { + var target = $(id); + var inst = this._getInst(target[0]); + inst.stayOpen = false; + inst.endDay = inst.endMonth = inst.endYear = inst.rangeStart = null; + this._selectDate(target, ''); + }, + + /* Update the input field with the selected date. */ + _selectDate: function(id, dateStr) { + var target = $(id); + var inst = this._getInst(target[0]); + dateStr = (dateStr != null ? dateStr : this._formatDate(inst)); + if (inst.input) + inst.input.val(dateStr); + this._updateAlternate(inst); + var onSelect = this._get(inst, 'onSelect'); + if (onSelect) + onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]); // trigger custom callback + else if (inst.input) + inst.input.trigger('change'); // fire the change event + if (inst.inline) + this._updateDatepicker(inst); + else if (!inst.stayOpen) { + this._hideDatepicker(null, this._get(inst, 'duration')); + this._lastInput = inst.input[0]; + if (typeof(inst.input[0]) != 'object') + inst.input[0].focus(); // restore focus + this._lastInput = null; + } + }, + + /* Update any alternate field to synchronise with the main field. */ + _updateAlternate: function(inst) { + var altField = this._get(inst, 'altField'); + if (altField) { // update alternate field too + var altFormat = this._get(inst, 'altFormat') || this._get(inst, 'dateFormat'); + var date = this._getDate(inst); + dateStr = this.formatDate(altFormat, date, this._getFormatConfig(inst)); + $(altField).each(function() { $(this).val(dateStr); }); + } + }, + + /* Set as beforeShowDay function to prevent selection of weekends. + @param date Date - the date to customise + @return [boolean, string] - is this date selectable?, what is its CSS class? */ + noWeekends: function(date) { + var day = date.getDay(); + return [(day > 0 && day < 6), '']; + }, + + /* Set as calculateWeek to determine the week of the year based on the ISO 8601 definition. + @param date Date - the date to get the week for + @return number - the number of the week within the year that contains this date */ + iso8601Week: function(date) { + var checkDate = new Date(date.getFullYear(), date.getMonth(), date.getDate()); + var firstMon = new Date(checkDate.getFullYear(), 1 - 1, 4); // First week always contains 4 Jan + var firstDay = firstMon.getDay() || 7; // Day of week: Mon = 1, ..., Sun = 7 + firstMon.setDate(firstMon.getDate() + 1 - firstDay); // Preceding Monday + if (firstDay < 4 && checkDate < firstMon) { // Adjust first three days in year if necessary + checkDate.setDate(checkDate.getDate() - 3); // Generate for previous year + return $.datepicker.iso8601Week(checkDate); + } else if (checkDate > new Date(checkDate.getFullYear(), 12 - 1, 28)) { // Check last three days in year + firstDay = new Date(checkDate.getFullYear() + 1, 1 - 1, 4).getDay() || 7; + if (firstDay > 4 && (checkDate.getDay() || 7) < firstDay - 3) { // Adjust if necessary + return 1; + } + } + return Math.floor(((checkDate - firstMon) / 86400000) / 7) + 1; // Weeks to given date + }, + + /* Parse a string value into a date object. + See formatDate below for the possible formats. + + @param format string - the expected format of the date + @param value string - the date in the above format + @param settings Object - attributes include: + shortYearCutoff number - the cutoff year for determining the century (optional) + dayNamesShort string[7] - abbreviated names of the days from Sunday (optional) + dayNames string[7] - names of the days from Sunday (optional) + monthNamesShort string[12] - abbreviated names of the months (optional) + monthNames string[12] - names of the months (optional) + @return Date - the extracted date value or null if value is blank */ + parseDate: function (format, value, settings) { + if (format == null || value == null) + throw 'Invalid arguments'; + value = (typeof value == 'object' ? value.toString() : value + ''); + if (value == '') + return null; + var shortYearCutoff = (settings ? settings.shortYearCutoff : null) || this._defaults.shortYearCutoff; + var dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort; + var dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames; + var monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort; + var monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames; + var year = -1; + var month = -1; + var day = -1; + var doy = -1; + var literal = false; + // Check whether a format character is doubled + var lookAhead = function(match) { + var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match); + if (matches) + iFormat++; + return matches; + }; + // Extract a number from the string value + var getNumber = function(match) { + lookAhead(match); + var origSize = (match == '@' ? 14 : (match == 'y' ? 4 : (match == 'o' ? 3 : 2))); + var size = origSize; + var num = 0; + while (size > 0 && iValue < value.length && + value.charAt(iValue) >= '0' && value.charAt(iValue) <= '9') { + num = num * 10 + parseInt(value.charAt(iValue++),10); + size--; + } + if (size == origSize) + throw 'Missing number at position ' + iValue; + return num; + }; + // Extract a name from the string value and convert to an index + var getName = function(match, shortNames, longNames) { + var names = (lookAhead(match) ? longNames : shortNames); + var size = 0; + for (var j = 0; j < names.length; j++) + size = Math.max(size, names[j].length); + var name = ''; + var iInit = iValue; + while (size > 0 && iValue < value.length) { + name += value.charAt(iValue++); + for (var i = 0; i < names.length; i++) + if (name == names[i]) + return i + 1; + size--; + } + throw 'Unknown name at position ' + iInit; + }; + // Confirm that a literal character matches the string value + var checkLiteral = function() { + if (value.charAt(iValue) != format.charAt(iFormat)) + throw 'Unexpected literal at position ' + iValue; + iValue++; + }; + var iValue = 0; + for (var iFormat = 0; iFormat < format.length; iFormat++) { + if (literal) + if (format.charAt(iFormat) == "'" && !lookAhead("'")) + literal = false; + else + checkLiteral(); + else + switch (format.charAt(iFormat)) { + case 'd': + day = getNumber('d'); + break; + case 'D': + getName('D', dayNamesShort, dayNames); + break; + case 'o': + doy = getNumber('o'); + break; + case 'm': + month = getNumber('m'); + break; + case 'M': + month = getName('M', monthNamesShort, monthNames); + break; + case 'y': + year = getNumber('y'); + break; + case '@': + var date = new Date(getNumber('@')); + year = date.getFullYear(); + month = date.getMonth() + 1; + day = date.getDate(); + break; + case "'": + if (lookAhead("'")) + checkLiteral(); + else + literal = true; + break; + default: + checkLiteral(); + } + } + if (year == -1) + year = new Date().getFullYear(); + else if (year < 100) + year += new Date().getFullYear() - new Date().getFullYear() % 100 + + (year <= shortYearCutoff ? 0 : -100); + if (doy > -1) { + month = 1; + day = doy; + do { + var dim = this._getDaysInMonth(year, month - 1); + if (day <= dim) + break; + month++; + day -= dim; + } while (true); + } + var date = this._daylightSavingAdjust(new Date(year, month - 1, day)); + if (date.getFullYear() != year || date.getMonth() + 1 != month || date.getDate() != day) + throw 'Invalid date'; // E.g. 31/02/* + return date; + }, + + /* Standard date formats. */ + ATOM: 'yy-mm-dd', // RFC 3339 (ISO 8601) + COOKIE: 'D, dd M yy', + ISO_8601: 'yy-mm-dd', + RFC_822: 'D, d M y', + RFC_850: 'DD, dd-M-y', + RFC_1036: 'D, d M y', + RFC_1123: 'D, d M yy', + RFC_2822: 'D, d M yy', + RSS: 'D, d M y', // RFC 822 + TIMESTAMP: '@', + W3C: 'yy-mm-dd', // ISO 8601 + + /* Format a date object into a string value. + The format can be combinations of the following: + d - day of month (no leading zero) + dd - day of month (two digit) + o - day of year (no leading zeros) + oo - day of year (three digit) + D - day name short + DD - day name long + m - month of year (no leading zero) + mm - month of year (two digit) + M - month name short + MM - month name long + y - year (two digit) + yy - year (four digit) + @ - Unix timestamp (ms since 01/01/1970) + '...' - literal text + '' - single quote + + @param format string - the desired format of the date + @param date Date - the date value to format + @param settings Object - attributes include: + dayNamesShort string[7] - abbreviated names of the days from Sunday (optional) + dayNames string[7] - names of the days from Sunday (optional) + monthNamesShort string[12] - abbreviated names of the months (optional) + monthNames string[12] - names of the months (optional) + @return string - the date in the above format */ + formatDate: function (format, date, settings) { + if (!date) + return ''; + var dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort; + var dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames; + var monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort; + var monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames; + // Check whether a format character is doubled + var lookAhead = function(match) { + var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match); + if (matches) + iFormat++; + return matches; + }; + // Format a number, with leading zero if necessary + var formatNumber = function(match, value, len) { + var num = '' + value; + if (lookAhead(match)) + while (num.length < len) + num = '0' + num; + return num; + }; + // Format a name, short or long as requested + var formatName = function(match, value, shortNames, longNames) { + return (lookAhead(match) ? longNames[value] : shortNames[value]); + }; + var output = ''; + var literal = false; + if (date) + for (var iFormat = 0; iFormat < format.length; iFormat++) { + if (literal) + if (format.charAt(iFormat) == "'" && !lookAhead("'")) + literal = false; + else + output += format.charAt(iFormat); + else + switch (format.charAt(iFormat)) { + case 'd': + output += formatNumber('d', date.getDate(), 2); + break; + case 'D': + output += formatName('D', date.getDay(), dayNamesShort, dayNames); + break; + case 'o': + var doy = date.getDate(); + for (var m = date.getMonth() - 1; m >= 0; m--) + doy += this._getDaysInMonth(date.getFullYear(), m); + output += formatNumber('o', doy, 3); + break; + case 'm': + output += formatNumber('m', date.getMonth() + 1, 2); + break; + case 'M': + output += formatName('M', date.getMonth(), monthNamesShort, monthNames); + break; + case 'y': + output += (lookAhead('y') ? date.getFullYear() : + (date.getYear() % 100 < 10 ? '0' : '') + date.getYear() % 100); + break; + case '@': + output += date.getTime(); + break; + case "'": + if (lookAhead("'")) + output += "'"; + else + literal = true; + break; + default: + output += format.charAt(iFormat); + } + } + return output; + }, + + /* Extract all possible characters from the date format. */ + _possibleChars: function (format) { + var chars = ''; + var literal = false; + for (var iFormat = 0; iFormat < format.length; iFormat++) + if (literal) + if (format.charAt(iFormat) == "'" && !lookAhead("'")) + literal = false; + else + chars += format.charAt(iFormat); + else + switch (format.charAt(iFormat)) { + case 'd': case 'm': case 'y': case '@': + chars += '0123456789'; + break; + case 'D': case 'M': + return null; // Accept anything + case "'": + if (lookAhead("'")) + chars += "'"; + else + literal = true; + break; + default: + chars += format.charAt(iFormat); + } + return chars; + }, + + /* Get a setting value, defaulting if necessary. */ + _get: function(inst, name) { + return inst.settings[name] !== undefined ? + inst.settings[name] : this._defaults[name]; + }, + + /* Parse existing date and initialise date picker. */ + _setDateFromField: function(inst) { + var dateFormat = this._get(inst, 'dateFormat'); + var dates = inst.input ? inst.input.val() : null; + inst.endDay = inst.endMonth = inst.endYear = null; + var date = defaultDate = this._getDefaultDate(inst); + var settings = this._getFormatConfig(inst); + try { + date = this.parseDate(dateFormat, dates, settings) || defaultDate; + } catch (event) { + this.log(event); + date = defaultDate; + } + inst.selectedDay = date.getDate(); + inst.drawMonth = inst.selectedMonth = date.getMonth(); + inst.drawYear = inst.selectedYear = date.getFullYear(); + inst.currentDay = (dates ? date.getDate() : 0); + inst.currentMonth = (dates ? date.getMonth() : 0); + inst.currentYear = (dates ? date.getFullYear() : 0); + this._adjustInstDate(inst); + }, + + /* Retrieve the default date shown on opening. */ + _getDefaultDate: function(inst) { + var date = this._determineDate(this._get(inst, 'defaultDate'), new Date()); + var minDate = this._getMinMaxDate(inst, 'min', true); + var maxDate = this._getMinMaxDate(inst, 'max'); + date = (minDate && date < minDate ? minDate : date); + date = (maxDate && date > maxDate ? maxDate : date); + return date; + }, + + /* A date may be specified as an exact value or a relative one. */ + _determineDate: function(date, defaultDate) { + var offsetNumeric = function(offset) { + var date = new Date(); + date.setDate(date.getDate() + offset); + return date; + }; + var offsetString = function(offset, getDaysInMonth) { + var date = new Date(); + var year = date.getFullYear(); + var month = date.getMonth(); + var day = date.getDate(); + var pattern = /([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g; + var matches = pattern.exec(offset); + while (matches) { + switch (matches[2] || 'd') { + case 'd' : case 'D' : + day += parseInt(matches[1],10); break; + case 'w' : case 'W' : + day += parseInt(matches[1],10) * 7; break; + case 'm' : case 'M' : + month += parseInt(matches[1],10); + day = Math.min(day, getDaysInMonth(year, month)); + break; + case 'y': case 'Y' : + year += parseInt(matches[1],10); + day = Math.min(day, getDaysInMonth(year, month)); + break; + } + matches = pattern.exec(offset); + } + return new Date(year, month, day); + }; + date = (date == null ? defaultDate : + (typeof date == 'string' ? offsetString(date, this._getDaysInMonth) : + (typeof date == 'number' ? (isNaN(date) ? defaultDate : offsetNumeric(date)) : date))); + date = (date && date.toString() == 'Invalid Date' ? defaultDate : date); + if (date) { + date.setHours(0); + date.setMinutes(0); + date.setSeconds(0); + date.setMilliseconds(0); + } + return this._daylightSavingAdjust(date); + }, + + /* Handle switch to/from daylight saving. + Hours may be non-zero on daylight saving cut-over: + > 12 when midnight changeover, but then cannot generate + midnight datetime, so jump to 1AM, otherwise reset. + @param date (Date) the date to check + @return (Date) the corrected date */ + _daylightSavingAdjust: function(date) { + if (!date) return null; + date.setHours(date.getHours() > 12 ? date.getHours() + 2 : 0); + return date; + }, + + /* Set the date(s) directly. */ + _setDate: function(inst, date, endDate) { + var clear = !(date); + var origMonth = inst.selectedMonth; + var origYear = inst.selectedYear; + date = this._determineDate(date, new Date()); + inst.selectedDay = inst.currentDay = date.getDate(); + inst.drawMonth = inst.selectedMonth = inst.currentMonth = date.getMonth(); + inst.drawYear = inst.selectedYear = inst.currentYear = date.getFullYear(); + if (origMonth != inst.selectedMonth || origYear != inst.selectedYear) + this._notifyChange(inst); + this._adjustInstDate(inst); + if (inst.input) { + inst.input.val(clear ? '' : this._formatDate(inst)); + } + }, + + /* Retrieve the date(s) directly. */ + _getDate: function(inst) { + var startDate = (!inst.currentYear || (inst.input && inst.input.val() == '') ? null : + this._daylightSavingAdjust(new Date( + inst.currentYear, inst.currentMonth, inst.currentDay))); + return startDate; + }, + + /* Generate the HTML for the current state of the date picker. */ + _generateHTML: function(inst) { + var today = new Date(); + today = this._daylightSavingAdjust( + new Date(today.getFullYear(), today.getMonth(), today.getDate())); // clear time + var isRTL = this._get(inst, 'isRTL'); + var showButtonPanel = this._get(inst, 'showButtonPanel'); + var hideIfNoPrevNext = this._get(inst, 'hideIfNoPrevNext'); + var navigationAsDateFormat = this._get(inst, 'navigationAsDateFormat'); + var numMonths = this._getNumberOfMonths(inst); + var showCurrentAtPos = this._get(inst, 'showCurrentAtPos'); + var stepMonths = this._get(inst, 'stepMonths'); + var stepBigMonths = this._get(inst, 'stepBigMonths'); + var isMultiMonth = (numMonths[0] != 1 || numMonths[1] != 1); + var currentDate = this._daylightSavingAdjust((!inst.currentDay ? new Date(9999, 9, 9) : + new Date(inst.currentYear, inst.currentMonth, inst.currentDay))); + var minDate = this._getMinMaxDate(inst, 'min', true); + var maxDate = this._getMinMaxDate(inst, 'max'); + var drawMonth = inst.drawMonth - showCurrentAtPos; + var drawYear = inst.drawYear; + if (drawMonth < 0) { + drawMonth += 12; + drawYear--; + } + if (maxDate) { + var maxDraw = this._daylightSavingAdjust(new Date(maxDate.getFullYear(), + maxDate.getMonth() - numMonths[1] + 1, maxDate.getDate())); + maxDraw = (minDate && maxDraw < minDate ? minDate : maxDraw); + while (this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1)) > maxDraw) { + drawMonth--; + if (drawMonth < 0) { + drawMonth = 11; + drawYear--; + } + } + } + inst.drawMonth = drawMonth; + inst.drawYear = drawYear; + var prevText = this._get(inst, 'prevText'); + prevText = (!navigationAsDateFormat ? prevText : this.formatDate(prevText, + this._daylightSavingAdjust(new Date(drawYear, drawMonth - stepMonths, 1)), + this._getFormatConfig(inst))); + var prev = (this._canAdjustMonth(inst, -1, drawYear, drawMonth) ? + '' + prevText + '' : + (hideIfNoPrevNext ? '' : '' + prevText + '')); + var nextText = this._get(inst, 'nextText'); + nextText = (!navigationAsDateFormat ? nextText : this.formatDate(nextText, + this._daylightSavingAdjust(new Date(drawYear, drawMonth + stepMonths, 1)), + this._getFormatConfig(inst))); + var next = (this._canAdjustMonth(inst, +1, drawYear, drawMonth) ? + '' + nextText + '' : + (hideIfNoPrevNext ? '' : '' + nextText + '')); + var currentText = this._get(inst, 'currentText'); + var gotoDate = (this._get(inst, 'gotoCurrent') && inst.currentDay ? currentDate : today); + currentText = (!navigationAsDateFormat ? currentText : + this.formatDate(currentText, gotoDate, this._getFormatConfig(inst))); + var controls = (!inst.inline ? '' : ''); + var buttonPanel = (showButtonPanel) ? '
' + (isRTL ? controls : '') + + (this._isInRange(inst, gotoDate) ? '' : '') + (isRTL ? '' : controls) + '
' : ''; + var firstDay = parseInt(this._get(inst, 'firstDay'),10); + firstDay = (isNaN(firstDay) ? 0 : firstDay); + var dayNames = this._get(inst, 'dayNames'); + var dayNamesShort = this._get(inst, 'dayNamesShort'); + var dayNamesMin = this._get(inst, 'dayNamesMin'); + var monthNames = this._get(inst, 'monthNames'); + var monthNamesShort = this._get(inst, 'monthNamesShort'); + var beforeShowDay = this._get(inst, 'beforeShowDay'); + var showOtherMonths = this._get(inst, 'showOtherMonths'); + var calculateWeek = this._get(inst, 'calculateWeek') || this.iso8601Week; + var endDate = inst.endDay ? this._daylightSavingAdjust( + new Date(inst.endYear, inst.endMonth, inst.endDay)) : currentDate; + var defaultDate = this._getDefaultDate(inst); + var html = ''; + for (var row = 0; row < numMonths[0]; row++) { + var group = ''; + for (var col = 0; col < numMonths[1]; col++) { + var selectedDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, inst.selectedDay)); + var cornerClass = ' ui-corner-all'; + var calender = ''; + if (isMultiMonth) { + calender += '
'; + } + calender += '
' + + (/all|left/.test(cornerClass) && row == 0 ? (isRTL ? next : prev) : '') + + (/all|right/.test(cornerClass) && row == 0 ? (isRTL ? prev : next) : '') + + this._generateMonthYearHeader(inst, drawMonth, drawYear, minDate, maxDate, + selectedDate, row > 0 || col > 0, monthNames, monthNamesShort) + // draw month headers + '
' + + ''; + var thead = ''; + for (var dow = 0; dow < 7; dow++) { // days of the week + var day = (dow + firstDay) % 7; + thead += '= 5 ? ' class="ui-datepicker-week-end"' : '') + '>' + + '' + dayNamesMin[day] + ''; + } + calender += thead + ''; + var daysInMonth = this._getDaysInMonth(drawYear, drawMonth); + if (drawYear == inst.selectedYear && drawMonth == inst.selectedMonth) + inst.selectedDay = Math.min(inst.selectedDay, daysInMonth); + var leadDays = (this._getFirstDayOfMonth(drawYear, drawMonth) - firstDay + 7) % 7; + var numRows = (isMultiMonth ? 6 : Math.ceil((leadDays + daysInMonth) / 7)); // calculate the number of rows to generate + var printDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1 - leadDays)); + for (var dRow = 0; dRow < numRows; dRow++) { // create date picker rows + calender += ''; + var tbody = ''; + for (var dow = 0; dow < 7; dow++) { // create date picker days + var daySettings = (beforeShowDay ? + beforeShowDay.apply((inst.input ? inst.input[0] : null), [printDate]) : [true, '']); + var otherMonth = (printDate.getMonth() != drawMonth); + var unselectable = otherMonth || !daySettings[0] || + (minDate && printDate < minDate) || (maxDate && printDate > maxDate); + tbody += ''; // display for this month + printDate.setDate(printDate.getDate() + 1); + printDate = this._daylightSavingAdjust(printDate); + } + calender += tbody + ''; + } + drawMonth++; + if (drawMonth > 11) { + drawMonth = 0; + drawYear++; + } + calender += '
' + // actions + (otherMonth ? (showOtherMonths ? printDate.getDate() : ' ') : // display for other months + (unselectable ? '' + printDate.getDate() + '' : '' + printDate.getDate() + '')) + '
' + (isMultiMonth ? '
' + + ((numMonths[0] > 0 && col == numMonths[1]-1) ? '
' : '') : ''); + group += calender; + } + html += group; + } + html += buttonPanel + ($.browser.msie && parseInt($.browser.version,10) < 7 && !inst.inline ? + '' : ''); + inst._keyEvent = false; + return html; + }, + + /* Generate the month and year header. */ + _generateMonthYearHeader: function(inst, drawMonth, drawYear, minDate, maxDate, + selectedDate, secondary, monthNames, monthNamesShort) { + minDate = (inst.rangeStart && minDate && selectedDate < minDate ? selectedDate : minDate); + var changeMonth = this._get(inst, 'changeMonth'); + var changeYear = this._get(inst, 'changeYear'); + var showMonthAfterYear = this._get(inst, 'showMonthAfterYear'); + var html = '
'; + var monthHtml = ''; + // month selection + if (secondary || !changeMonth) + monthHtml += '' + monthNames[drawMonth] + ' '; + else { + var inMinYear = (minDate && minDate.getFullYear() == drawYear); + var inMaxYear = (maxDate && maxDate.getFullYear() == drawYear); + monthHtml += ''; + } + if (!showMonthAfterYear) + html += monthHtml + ((secondary || changeMonth || changeYear) && (!(changeMonth && changeYear)) ? ' ' : ''); + // year selection + if (secondary || !changeYear) + html += '' + drawYear + ''; + else { + // determine range of years to display + var years = this._get(inst, 'yearRange').split(':'); + var year = 0; + var endYear = 0; + if (years.length != 2) { + year = drawYear - 10; + endYear = drawYear + 10; + } else if (years[0].charAt(0) == '+' || years[0].charAt(0) == '-') { + year = drawYear + parseInt(years[0], 10); + endYear = drawYear + parseInt(years[1], 10); + } else { + year = parseInt(years[0], 10); + endYear = parseInt(years[1], 10); + } + year = (minDate ? Math.max(year, minDate.getFullYear()) : year); + endYear = (maxDate ? Math.min(endYear, maxDate.getFullYear()) : endYear); + html += ''; + } + if (showMonthAfterYear) + html += (secondary || changeMonth || changeYear ? ' ' : '') + monthHtml; + html += '
'; // Close datepicker_header + return html; + }, + + /* Adjust one of the date sub-fields. */ + _adjustInstDate: function(inst, offset, period) { + var year = inst.drawYear + (period == 'Y' ? offset : 0); + var month = inst.drawMonth + (period == 'M' ? offset : 0); + var day = Math.min(inst.selectedDay, this._getDaysInMonth(year, month)) + + (period == 'D' ? offset : 0); + var date = this._daylightSavingAdjust(new Date(year, month, day)); + // ensure it is within the bounds set + var minDate = this._getMinMaxDate(inst, 'min', true); + var maxDate = this._getMinMaxDate(inst, 'max'); + date = (minDate && date < minDate ? minDate : date); + date = (maxDate && date > maxDate ? maxDate : date); + inst.selectedDay = date.getDate(); + inst.drawMonth = inst.selectedMonth = date.getMonth(); + inst.drawYear = inst.selectedYear = date.getFullYear(); + if (period == 'M' || period == 'Y') + this._notifyChange(inst); + }, + + /* Notify change of month/year. */ + _notifyChange: function(inst) { + var onChange = this._get(inst, 'onChangeMonthYear'); + if (onChange) + onChange.apply((inst.input ? inst.input[0] : null), + [inst.selectedYear, inst.selectedMonth + 1, inst]); + }, + + /* Determine the number of months to show. */ + _getNumberOfMonths: function(inst) { + var numMonths = this._get(inst, 'numberOfMonths'); + return (numMonths == null ? [1, 1] : (typeof numMonths == 'number' ? [1, numMonths] : numMonths)); + }, + + /* Determine the current maximum date - ensure no time components are set - may be overridden for a range. */ + _getMinMaxDate: function(inst, minMax, checkRange) { + var date = this._determineDate(this._get(inst, minMax + 'Date'), null); + return (!checkRange || !inst.rangeStart ? date : + (!date || inst.rangeStart > date ? inst.rangeStart : date)); + }, + + /* Find the number of days in a given month. */ + _getDaysInMonth: function(year, month) { + return 32 - new Date(year, month, 32).getDate(); + }, + + /* Find the day of the week of the first of a month. */ + _getFirstDayOfMonth: function(year, month) { + return new Date(year, month, 1).getDay(); + }, + + /* Determines if we should allow a "next/prev" month display change. */ + _canAdjustMonth: function(inst, offset, curYear, curMonth) { + var numMonths = this._getNumberOfMonths(inst); + var date = this._daylightSavingAdjust(new Date( + curYear, curMonth + (offset < 0 ? offset : numMonths[1]), 1)); + if (offset < 0) + date.setDate(this._getDaysInMonth(date.getFullYear(), date.getMonth())); + return this._isInRange(inst, date); + }, + + /* Is the given date in the accepted range? */ + _isInRange: function(inst, date) { + // during range selection, use minimum of selected date and range start + var newMinDate = (!inst.rangeStart ? null : this._daylightSavingAdjust( + new Date(inst.selectedYear, inst.selectedMonth, inst.selectedDay))); + newMinDate = (newMinDate && inst.rangeStart < newMinDate ? inst.rangeStart : newMinDate); + var minDate = newMinDate || this._getMinMaxDate(inst, 'min'); + var maxDate = this._getMinMaxDate(inst, 'max'); + return ((!minDate || date >= minDate) && (!maxDate || date <= maxDate)); + }, + + /* Provide the configuration settings for formatting/parsing. */ + _getFormatConfig: function(inst) { + var shortYearCutoff = this._get(inst, 'shortYearCutoff'); + shortYearCutoff = (typeof shortYearCutoff != 'string' ? shortYearCutoff : + new Date().getFullYear() % 100 + parseInt(shortYearCutoff, 10)); + return {shortYearCutoff: shortYearCutoff, + dayNamesShort: this._get(inst, 'dayNamesShort'), dayNames: this._get(inst, 'dayNames'), + monthNamesShort: this._get(inst, 'monthNamesShort'), monthNames: this._get(inst, 'monthNames')}; + }, + + /* Format the given date for display. */ + _formatDate: function(inst, day, month, year) { + if (!day) { + inst.currentDay = inst.selectedDay; + inst.currentMonth = inst.selectedMonth; + inst.currentYear = inst.selectedYear; + } + var date = (day ? (typeof day == 'object' ? day : + this._daylightSavingAdjust(new Date(year, month, day))) : + this._daylightSavingAdjust(new Date(inst.currentYear, inst.currentMonth, inst.currentDay))); + return this.formatDate(this._get(inst, 'dateFormat'), date, this._getFormatConfig(inst)); + } +}); + +/* jQuery extend now ignores nulls! */ +function extendRemove(target, props) { + $.extend(target, props); + for (var name in props) + if (props[name] == null || props[name] == undefined) + target[name] = props[name]; + return target; +}; + +/* Determine whether an object is an array. */ +function isArray(a) { + return (a && (($.browser.safari && typeof a == 'object' && a.length) || + (a.constructor && a.constructor.toString().match(/\Array\(\)/)))); +}; + +/* Invoke the datepicker functionality. + @param options string - a command, optionally followed by additional parameters or + Object - settings for attaching new datepicker functionality + @return jQuery object */ +$.fn.datepicker = function(options){ + + /* Initialise the date picker. */ + if (!$.datepicker.initialized) { + $(document).mousedown($.datepicker._checkExternalClick). + find('body').append($.datepicker.dpDiv); + $.datepicker.initialized = true; + } + + var otherArgs = Array.prototype.slice.call(arguments, 1); + if (typeof options == 'string' && (options == 'isDisabled' || options == 'getDate')) + return $.datepicker['_' + options + 'Datepicker']. + apply($.datepicker, [this[0]].concat(otherArgs)); + if (options == 'option' && arguments.length == 2 && typeof arguments[1] == 'string') + return $.datepicker['_' + options + 'Datepicker']. + apply($.datepicker, [this[0]].concat(otherArgs)); + return this.each(function() { + typeof options == 'string' ? + $.datepicker['_' + options + 'Datepicker']. + apply($.datepicker, [this].concat(otherArgs)) : + $.datepicker._attachDatepicker(this, options); + }); +}; + +$.datepicker = new Datepicker(); // singleton instance +$.datepicker.initialized = false; +$.datepicker.uuid = new Date().getTime(); +$.datepicker.version = "1.7.2"; + +// Workaround for #4055 +// Add another global to avoid noConflict issues with inline event handlers +window.DP_jQuery = $; + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.dialog.js b/media/js/development-bundle/ui/ui.dialog.js new file mode 100644 index 0000000..fdd5b26 --- /dev/null +++ b/media/js/development-bundle/ui/ui.dialog.js @@ -0,0 +1,671 @@ +/* + * jQuery UI Dialog 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Dialog + * + * Depends: + * ui.core.js + * ui.draggable.js + * ui.resizable.js + */ +(function($) { + +var setDataSwitch = { + dragStart: "start.draggable", + drag: "drag.draggable", + dragStop: "stop.draggable", + maxHeight: "maxHeight.resizable", + minHeight: "minHeight.resizable", + maxWidth: "maxWidth.resizable", + minWidth: "minWidth.resizable", + resizeStart: "start.resizable", + resize: "drag.resizable", + resizeStop: "stop.resizable" + }, + + uiDialogClasses = + 'ui-dialog ' + + 'ui-widget ' + + 'ui-widget-content ' + + 'ui-corner-all '; + +$.widget("ui.dialog", { + + _init: function() { + this.originalTitle = this.element.attr('title'); + + var self = this, + options = this.options, + + title = options.title || this.originalTitle || ' ', + titleId = $.ui.dialog.getTitleId(this.element), + + uiDialog = (this.uiDialog = $('
')) + .appendTo(document.body) + .hide() + .addClass(uiDialogClasses + options.dialogClass) + .css({ + position: 'absolute', + overflow: 'hidden', + zIndex: options.zIndex + }) + // setting tabIndex makes the div focusable + // setting outline to 0 prevents a border on focus in Mozilla + .attr('tabIndex', -1).css('outline', 0).keydown(function(event) { + (options.closeOnEscape && event.keyCode + && event.keyCode == $.ui.keyCode.ESCAPE && self.close(event)); + }) + .attr({ + role: 'dialog', + 'aria-labelledby': titleId + }) + .mousedown(function(event) { + self.moveToTop(false, event); + }), + + uiDialogContent = this.element + .show() + .removeAttr('title') + .addClass( + 'ui-dialog-content ' + + 'ui-widget-content') + .appendTo(uiDialog), + + uiDialogTitlebar = (this.uiDialogTitlebar = $('
')) + .addClass( + 'ui-dialog-titlebar ' + + 'ui-widget-header ' + + 'ui-corner-all ' + + 'ui-helper-clearfix' + ) + .prependTo(uiDialog), + + uiDialogTitlebarClose = $('') + .addClass( + 'ui-dialog-titlebar-close ' + + 'ui-corner-all' + ) + .attr('role', 'button') + .hover( + function() { + uiDialogTitlebarClose.addClass('ui-state-hover'); + }, + function() { + uiDialogTitlebarClose.removeClass('ui-state-hover'); + } + ) + .focus(function() { + uiDialogTitlebarClose.addClass('ui-state-focus'); + }) + .blur(function() { + uiDialogTitlebarClose.removeClass('ui-state-focus'); + }) + .mousedown(function(ev) { + ev.stopPropagation(); + }) + .click(function(event) { + self.close(event); + return false; + }) + .appendTo(uiDialogTitlebar), + + uiDialogTitlebarCloseText = (this.uiDialogTitlebarCloseText = $('')) + .addClass( + 'ui-icon ' + + 'ui-icon-closethick' + ) + .text(options.closeText) + .appendTo(uiDialogTitlebarClose), + + uiDialogTitle = $('') + .addClass('ui-dialog-title') + .attr('id', titleId) + .html(title) + .prependTo(uiDialogTitlebar); + + uiDialogTitlebar.find("*").add(uiDialogTitlebar).disableSelection(); + + (options.draggable && $.fn.draggable && this._makeDraggable()); + (options.resizable && $.fn.resizable && this._makeResizable()); + + this._createButtons(options.buttons); + this._isOpen = false; + + (options.bgiframe && $.fn.bgiframe && uiDialog.bgiframe()); + (options.autoOpen && this.open()); + + }, + + destroy: function() { + (this.overlay && this.overlay.destroy()); + this.uiDialog.hide(); + this.element + .unbind('.dialog') + .removeData('dialog') + .removeClass('ui-dialog-content ui-widget-content') + .hide().appendTo('body'); + this.uiDialog.remove(); + + (this.originalTitle && this.element.attr('title', this.originalTitle)); + }, + + close: function(event) { + var self = this; + + if (false === self._trigger('beforeclose', event)) { + return; + } + + (self.overlay && self.overlay.destroy()); + self.uiDialog.unbind('keypress.ui-dialog'); + + (self.options.hide + ? self.uiDialog.hide(self.options.hide, function() { + self._trigger('close', event); + }) + : self.uiDialog.hide() && self._trigger('close', event)); + + $.ui.dialog.overlay.resize(); + + self._isOpen = false; + + // adjust the maxZ to allow other modal dialogs to continue to work (see #4309) + if (self.options.modal) { + var maxZ = 0; + $('.ui-dialog').each(function() { + if (this != self.uiDialog[0]) { + maxZ = Math.max(maxZ, $(this).css('z-index')); + } + }); + $.ui.dialog.maxZ = maxZ; + } + }, + + isOpen: function() { + return this._isOpen; + }, + + // the force parameter allows us to move modal dialogs to their correct + // position on open + moveToTop: function(force, event) { + + if ((this.options.modal && !force) + || (!this.options.stack && !this.options.modal)) { + return this._trigger('focus', event); + } + + if (this.options.zIndex > $.ui.dialog.maxZ) { + $.ui.dialog.maxZ = this.options.zIndex; + } + (this.overlay && this.overlay.$el.css('z-index', $.ui.dialog.overlay.maxZ = ++$.ui.dialog.maxZ)); + + //Save and then restore scroll since Opera 9.5+ resets when parent z-Index is changed. + // http://ui.jquery.com/bugs/ticket/3193 + var saveScroll = { scrollTop: this.element.attr('scrollTop'), scrollLeft: this.element.attr('scrollLeft') }; + this.uiDialog.css('z-index', ++$.ui.dialog.maxZ); + this.element.attr(saveScroll); + this._trigger('focus', event); + }, + + open: function() { + if (this._isOpen) { return; } + + var options = this.options, + uiDialog = this.uiDialog; + + this.overlay = options.modal ? new $.ui.dialog.overlay(this) : null; + (uiDialog.next().length && uiDialog.appendTo('body')); + this._size(); + this._position(options.position); + uiDialog.show(options.show); + this.moveToTop(true); + + // prevent tabbing out of modal dialogs + (options.modal && uiDialog.bind('keypress.ui-dialog', function(event) { + if (event.keyCode != $.ui.keyCode.TAB) { + return; + } + + var tabbables = $(':tabbable', this), + first = tabbables.filter(':first')[0], + last = tabbables.filter(':last')[0]; + + if (event.target == last && !event.shiftKey) { + setTimeout(function() { + first.focus(); + }, 1); + } else if (event.target == first && event.shiftKey) { + setTimeout(function() { + last.focus(); + }, 1); + } + })); + + // set focus to the first tabbable element in the content area or the first button + // if there are no tabbable elements, set focus on the dialog itself + $([]) + .add(uiDialog.find('.ui-dialog-content :tabbable:first')) + .add(uiDialog.find('.ui-dialog-buttonpane :tabbable:first')) + .add(uiDialog) + .filter(':first') + .focus(); + + this._trigger('open'); + this._isOpen = true; + }, + + _createButtons: function(buttons) { + var self = this, + hasButtons = false, + uiDialogButtonPane = $('
') + .addClass( + 'ui-dialog-buttonpane ' + + 'ui-widget-content ' + + 'ui-helper-clearfix' + ); + + // if we already have a button pane, remove it + this.uiDialog.find('.ui-dialog-buttonpane').remove(); + + (typeof buttons == 'object' && buttons !== null && + $.each(buttons, function() { return !(hasButtons = true); })); + if (hasButtons) { + $.each(buttons, function(name, fn) { + $('') + .addClass( + 'ui-state-default ' + + 'ui-corner-all' + ) + .text(name) + .click(function() { fn.apply(self.element[0], arguments); }) + .hover( + function() { + $(this).addClass('ui-state-hover'); + }, + function() { + $(this).removeClass('ui-state-hover'); + } + ) + .focus(function() { + $(this).addClass('ui-state-focus'); + }) + .blur(function() { + $(this).removeClass('ui-state-focus'); + }) + .appendTo(uiDialogButtonPane); + }); + uiDialogButtonPane.appendTo(this.uiDialog); + } + }, + + _makeDraggable: function() { + var self = this, + options = this.options, + heightBeforeDrag; + + this.uiDialog.draggable({ + cancel: '.ui-dialog-content', + handle: '.ui-dialog-titlebar', + containment: 'document', + start: function() { + heightBeforeDrag = options.height; + $(this).height($(this).height()).addClass("ui-dialog-dragging"); + (options.dragStart && options.dragStart.apply(self.element[0], arguments)); + }, + drag: function() { + (options.drag && options.drag.apply(self.element[0], arguments)); + }, + stop: function() { + $(this).removeClass("ui-dialog-dragging").height(heightBeforeDrag); + (options.dragStop && options.dragStop.apply(self.element[0], arguments)); + $.ui.dialog.overlay.resize(); + } + }); + }, + + _makeResizable: function(handles) { + handles = (handles === undefined ? this.options.resizable : handles); + var self = this, + options = this.options, + resizeHandles = typeof handles == 'string' + ? handles + : 'n,e,s,w,se,sw,ne,nw'; + + this.uiDialog.resizable({ + cancel: '.ui-dialog-content', + alsoResize: this.element, + maxWidth: options.maxWidth, + maxHeight: options.maxHeight, + minWidth: options.minWidth, + minHeight: options.minHeight, + start: function() { + $(this).addClass("ui-dialog-resizing"); + (options.resizeStart && options.resizeStart.apply(self.element[0], arguments)); + }, + resize: function() { + (options.resize && options.resize.apply(self.element[0], arguments)); + }, + handles: resizeHandles, + stop: function() { + $(this).removeClass("ui-dialog-resizing"); + options.height = $(this).height(); + options.width = $(this).width(); + (options.resizeStop && options.resizeStop.apply(self.element[0], arguments)); + $.ui.dialog.overlay.resize(); + } + }) + .find('.ui-resizable-se').addClass('ui-icon ui-icon-grip-diagonal-se'); + }, + + _position: function(pos) { + var wnd = $(window), doc = $(document), + pTop = doc.scrollTop(), pLeft = doc.scrollLeft(), + minTop = pTop; + + if ($.inArray(pos, ['center','top','right','bottom','left']) >= 0) { + pos = [ + pos == 'right' || pos == 'left' ? pos : 'center', + pos == 'top' || pos == 'bottom' ? pos : 'middle' + ]; + } + if (pos.constructor != Array) { + pos = ['center', 'middle']; + } + if (pos[0].constructor == Number) { + pLeft += pos[0]; + } else { + switch (pos[0]) { + case 'left': + pLeft += 0; + break; + case 'right': + pLeft += wnd.width() - this.uiDialog.outerWidth(); + break; + default: + case 'center': + pLeft += (wnd.width() - this.uiDialog.outerWidth()) / 2; + } + } + if (pos[1].constructor == Number) { + pTop += pos[1]; + } else { + switch (pos[1]) { + case 'top': + pTop += 0; + break; + case 'bottom': + pTop += wnd.height() - this.uiDialog.outerHeight(); + break; + default: + case 'middle': + pTop += (wnd.height() - this.uiDialog.outerHeight()) / 2; + } + } + + // prevent the dialog from being too high (make sure the titlebar + // is accessible) + pTop = Math.max(pTop, minTop); + this.uiDialog.css({top: pTop, left: pLeft}); + }, + + _setData: function(key, value){ + (setDataSwitch[key] && this.uiDialog.data(setDataSwitch[key], value)); + switch (key) { + case "buttons": + this._createButtons(value); + break; + case "closeText": + this.uiDialogTitlebarCloseText.text(value); + break; + case "dialogClass": + this.uiDialog + .removeClass(this.options.dialogClass) + .addClass(uiDialogClasses + value); + break; + case "draggable": + (value + ? this._makeDraggable() + : this.uiDialog.draggable('destroy')); + break; + case "height": + this.uiDialog.height(value); + break; + case "position": + this._position(value); + break; + case "resizable": + var uiDialog = this.uiDialog, + isResizable = this.uiDialog.is(':data(resizable)'); + + // currently resizable, becoming non-resizable + (isResizable && !value && uiDialog.resizable('destroy')); + + // currently resizable, changing handles + (isResizable && typeof value == 'string' && + uiDialog.resizable('option', 'handles', value)); + + // currently non-resizable, becoming resizable + (isResizable || this._makeResizable(value)); + break; + case "title": + $(".ui-dialog-title", this.uiDialogTitlebar).html(value || ' '); + break; + case "width": + this.uiDialog.width(value); + break; + } + + $.widget.prototype._setData.apply(this, arguments); + }, + + _size: function() { + /* If the user has resized the dialog, the .ui-dialog and .ui-dialog-content + * divs will both have width and height set, so we need to reset them + */ + var options = this.options; + + // reset content sizing + this.element.css({ + height: 0, + minHeight: 0, + width: 'auto' + }); + + // reset wrapper sizing + // determine the height of all the non-content elements + var nonContentHeight = this.uiDialog.css({ + height: 'auto', + width: options.width + }) + .height(); + + this.element + .css({ + minHeight: Math.max(options.minHeight - nonContentHeight, 0), + height: options.height == 'auto' + ? 'auto' + : Math.max(options.height - nonContentHeight, 0) + }); + } +}); + +$.extend($.ui.dialog, { + version: "1.7.2", + defaults: { + autoOpen: true, + bgiframe: false, + buttons: {}, + closeOnEscape: true, + closeText: 'close', + dialogClass: '', + draggable: true, + hide: null, + height: 'auto', + maxHeight: false, + maxWidth: false, + minHeight: 150, + minWidth: 150, + modal: false, + position: 'center', + resizable: true, + show: null, + stack: true, + title: '', + width: 300, + zIndex: 1000 + }, + + getter: 'isOpen', + + uuid: 0, + maxZ: 0, + + getTitleId: function($el) { + return 'ui-dialog-title-' + ($el.attr('id') || ++this.uuid); + }, + + overlay: function(dialog) { + this.$el = $.ui.dialog.overlay.create(dialog); + } +}); + +$.extend($.ui.dialog.overlay, { + instances: [], + maxZ: 0, + events: $.map('focus,mousedown,mouseup,keydown,keypress,click'.split(','), + function(event) { return event + '.dialog-overlay'; }).join(' '), + create: function(dialog) { + if (this.instances.length === 0) { + // prevent use of anchors and inputs + // we use a setTimeout in case the overlay is created from an + // event that we're going to be cancelling (see #2804) + setTimeout(function() { + // handle $(el).dialog().dialog('close') (see #4065) + if ($.ui.dialog.overlay.instances.length) { + $(document).bind($.ui.dialog.overlay.events, function(event) { + var dialogZ = $(event.target).parents('.ui-dialog').css('zIndex') || 0; + return (dialogZ > $.ui.dialog.overlay.maxZ); + }); + } + }, 1); + + // allow closing by pressing the escape key + $(document).bind('keydown.dialog-overlay', function(event) { + (dialog.options.closeOnEscape && event.keyCode + && event.keyCode == $.ui.keyCode.ESCAPE && dialog.close(event)); + }); + + // handle window resize + $(window).bind('resize.dialog-overlay', $.ui.dialog.overlay.resize); + } + + var $el = $('
').appendTo(document.body) + .addClass('ui-widget-overlay').css({ + width: this.width(), + height: this.height() + }); + + (dialog.options.bgiframe && $.fn.bgiframe && $el.bgiframe()); + + this.instances.push($el); + return $el; + }, + + destroy: function($el) { + this.instances.splice($.inArray(this.instances, $el), 1); + + if (this.instances.length === 0) { + $([document, window]).unbind('.dialog-overlay'); + } + + $el.remove(); + + // adjust the maxZ to allow other modal dialogs to continue to work (see #4309) + var maxZ = 0; + $.each(this.instances, function() { + maxZ = Math.max(maxZ, this.css('z-index')); + }); + this.maxZ = maxZ; + }, + + height: function() { + // handle IE 6 + if ($.browser.msie && $.browser.version < 7) { + var scrollHeight = Math.max( + document.documentElement.scrollHeight, + document.body.scrollHeight + ); + var offsetHeight = Math.max( + document.documentElement.offsetHeight, + document.body.offsetHeight + ); + + if (scrollHeight < offsetHeight) { + return $(window).height() + 'px'; + } else { + return scrollHeight + 'px'; + } + // handle "good" browsers + } else { + return $(document).height() + 'px'; + } + }, + + width: function() { + // handle IE 6 + if ($.browser.msie && $.browser.version < 7) { + var scrollWidth = Math.max( + document.documentElement.scrollWidth, + document.body.scrollWidth + ); + var offsetWidth = Math.max( + document.documentElement.offsetWidth, + document.body.offsetWidth + ); + + if (scrollWidth < offsetWidth) { + return $(window).width() + 'px'; + } else { + return scrollWidth + 'px'; + } + // handle "good" browsers + } else { + return $(document).width() + 'px'; + } + }, + + resize: function() { + /* If the dialog is draggable and the user drags it past the + * right edge of the window, the document becomes wider so we + * need to stretch the overlay. If the user then drags the + * dialog back to the left, the document will become narrower, + * so we need to shrink the overlay to the appropriate size. + * This is handled by shrinking the overlay before setting it + * to the full document size. + */ + var $overlays = $([]); + $.each($.ui.dialog.overlay.instances, function() { + $overlays = $overlays.add(this); + }); + + $overlays.css({ + width: 0, + height: 0 + }).css({ + width: $.ui.dialog.overlay.width(), + height: $.ui.dialog.overlay.height() + }); + } +}); + +$.extend($.ui.dialog.overlay.prototype, { + destroy: function() { + $.ui.dialog.overlay.destroy(this.$el); + } +}); + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.draggable.js b/media/js/development-bundle/ui/ui.draggable.js new file mode 100644 index 0000000..0402f0e --- /dev/null +++ b/media/js/development-bundle/ui/ui.draggable.js @@ -0,0 +1,766 @@ +/* + * jQuery UI Draggable 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Draggables + * + * Depends: + * ui.core.js + */ +(function($) { + +$.widget("ui.draggable", $.extend({}, $.ui.mouse, { + + _init: function() { + + if (this.options.helper == 'original' && !(/^(?:r|a|f)/).test(this.element.css("position"))) + this.element[0].style.position = 'relative'; + + (this.options.addClasses && this.element.addClass("ui-draggable")); + (this.options.disabled && this.element.addClass("ui-draggable-disabled")); + + this._mouseInit(); + + }, + + destroy: function() { + if(!this.element.data('draggable')) return; + this.element + .removeData("draggable") + .unbind(".draggable") + .removeClass("ui-draggable" + + " ui-draggable-dragging" + + " ui-draggable-disabled"); + this._mouseDestroy(); + }, + + _mouseCapture: function(event) { + + var o = this.options; + + if (this.helper || o.disabled || $(event.target).is('.ui-resizable-handle')) + return false; + + //Quit if we're not on a valid handle + this.handle = this._getHandle(event); + if (!this.handle) + return false; + + return true; + + }, + + _mouseStart: function(event) { + + var o = this.options; + + //Create and append the visible helper + this.helper = this._createHelper(event); + + //Cache the helper size + this._cacheHelperProportions(); + + //If ddmanager is used for droppables, set the global draggable + if($.ui.ddmanager) + $.ui.ddmanager.current = this; + + /* + * - Position generation - + * This block generates everything position related - it's the core of draggables. + */ + + //Cache the margins of the original element + this._cacheMargins(); + + //Store the helper's css position + this.cssPosition = this.helper.css("position"); + this.scrollParent = this.helper.scrollParent(); + + //The element's absolute position on the page minus margins + this.offset = this.element.offset(); + this.offset = { + top: this.offset.top - this.margins.top, + left: this.offset.left - this.margins.left + }; + + $.extend(this.offset, { + click: { //Where the click happened, relative to the element + left: event.pageX - this.offset.left, + top: event.pageY - this.offset.top + }, + parent: this._getParentOffset(), + relative: this._getRelativeOffset() //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helper + }); + + //Generate the original position + this.originalPosition = this._generatePosition(event); + this.originalPageX = event.pageX; + this.originalPageY = event.pageY; + + //Adjust the mouse offset relative to the helper if 'cursorAt' is supplied + if(o.cursorAt) + this._adjustOffsetFromHelper(o.cursorAt); + + //Set a containment if given in the options + if(o.containment) + this._setContainment(); + + //Call plugins and callbacks + this._trigger("start", event); + + //Recache the helper size + this._cacheHelperProportions(); + + //Prepare the droppable offsets + if ($.ui.ddmanager && !o.dropBehaviour) + $.ui.ddmanager.prepareOffsets(this, event); + + this.helper.addClass("ui-draggable-dragging"); + this._mouseDrag(event, true); //Execute the drag once - this causes the helper not to be visible before getting its correct position + return true; + }, + + _mouseDrag: function(event, noPropagation) { + + //Compute the helpers position + this.position = this._generatePosition(event); + this.positionAbs = this._convertPositionTo("absolute"); + + //Call plugins and callbacks and use the resulting position if something is returned + if (!noPropagation) { + var ui = this._uiHash(); + this._trigger('drag', event, ui); + this.position = ui.position; + } + + if(!this.options.axis || this.options.axis != "y") this.helper[0].style.left = this.position.left+'px'; + if(!this.options.axis || this.options.axis != "x") this.helper[0].style.top = this.position.top+'px'; + if($.ui.ddmanager) $.ui.ddmanager.drag(this, event); + + return false; + }, + + _mouseStop: function(event) { + + //If we are using droppables, inform the manager about the drop + var dropped = false; + if ($.ui.ddmanager && !this.options.dropBehaviour) + dropped = $.ui.ddmanager.drop(this, event); + + //if a drop comes from outside (a sortable) + if(this.dropped) { + dropped = this.dropped; + this.dropped = false; + } + + if((this.options.revert == "invalid" && !dropped) || (this.options.revert == "valid" && dropped) || this.options.revert === true || ($.isFunction(this.options.revert) && this.options.revert.call(this.element, dropped))) { + var self = this; + $(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10), function() { + self._trigger("stop", event); + self._clear(); + }); + } else { + this._trigger("stop", event); + this._clear(); + } + + return false; + }, + + _getHandle: function(event) { + + var handle = !this.options.handle || !$(this.options.handle, this.element).length ? true : false; + $(this.options.handle, this.element) + .find("*") + .andSelf() + .each(function() { + if(this == event.target) handle = true; + }); + + return handle; + + }, + + _createHelper: function(event) { + + var o = this.options; + var helper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [event])) : (o.helper == 'clone' ? this.element.clone() : this.element); + + if(!helper.parents('body').length) + helper.appendTo((o.appendTo == 'parent' ? this.element[0].parentNode : o.appendTo)); + + if(helper[0] != this.element[0] && !(/(fixed|absolute)/).test(helper.css("position"))) + helper.css("position", "absolute"); + + return helper; + + }, + + _adjustOffsetFromHelper: function(obj) { + if(obj.left != undefined) this.offset.click.left = obj.left + this.margins.left; + if(obj.right != undefined) this.offset.click.left = this.helperProportions.width - obj.right + this.margins.left; + if(obj.top != undefined) this.offset.click.top = obj.top + this.margins.top; + if(obj.bottom != undefined) this.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top; + }, + + _getParentOffset: function() { + + //Get the offsetParent and cache its position + this.offsetParent = this.helper.offsetParent(); + var po = this.offsetParent.offset(); + + // This is a special case where we need to modify a offset calculated on start, since the following happened: + // 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent + // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that + // the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag + if(this.cssPosition == 'absolute' && this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) { + po.left += this.scrollParent.scrollLeft(); + po.top += this.scrollParent.scrollTop(); + } + + if((this.offsetParent[0] == document.body) //This needs to be actually done for all browsers, since pageX/pageY includes this information + || (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() == 'html' && $.browser.msie)) //Ugly IE fix + po = { top: 0, left: 0 }; + + return { + top: po.top + (parseInt(this.offsetParent.css("borderTopWidth"),10) || 0), + left: po.left + (parseInt(this.offsetParent.css("borderLeftWidth"),10) || 0) + }; + + }, + + _getRelativeOffset: function() { + + if(this.cssPosition == "relative") { + var p = this.element.position(); + return { + top: p.top - (parseInt(this.helper.css("top"),10) || 0) + this.scrollParent.scrollTop(), + left: p.left - (parseInt(this.helper.css("left"),10) || 0) + this.scrollParent.scrollLeft() + }; + } else { + return { top: 0, left: 0 }; + } + + }, + + _cacheMargins: function() { + this.margins = { + left: (parseInt(this.element.css("marginLeft"),10) || 0), + top: (parseInt(this.element.css("marginTop"),10) || 0) + }; + }, + + _cacheHelperProportions: function() { + this.helperProportions = { + width: this.helper.outerWidth(), + height: this.helper.outerHeight() + }; + }, + + _setContainment: function() { + + var o = this.options; + if(o.containment == 'parent') o.containment = this.helper[0].parentNode; + if(o.containment == 'document' || o.containment == 'window') this.containment = [ + 0 - this.offset.relative.left - this.offset.parent.left, + 0 - this.offset.relative.top - this.offset.parent.top, + $(o.containment == 'document' ? document : window).width() - this.helperProportions.width - this.margins.left, + ($(o.containment == 'document' ? document : window).height() || document.body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top + ]; + + if(!(/^(document|window|parent)$/).test(o.containment) && o.containment.constructor != Array) { + var ce = $(o.containment)[0]; if(!ce) return; + var co = $(o.containment).offset(); + var over = ($(ce).css("overflow") != 'hidden'); + + this.containment = [ + co.left + (parseInt($(ce).css("borderLeftWidth"),10) || 0) + (parseInt($(ce).css("paddingLeft"),10) || 0) - this.margins.left, + co.top + (parseInt($(ce).css("borderTopWidth"),10) || 0) + (parseInt($(ce).css("paddingTop"),10) || 0) - this.margins.top, + co.left+(over ? Math.max(ce.scrollWidth,ce.offsetWidth) : ce.offsetWidth) - (parseInt($(ce).css("borderLeftWidth"),10) || 0) - (parseInt($(ce).css("paddingRight"),10) || 0) - this.helperProportions.width - this.margins.left, + co.top+(over ? Math.max(ce.scrollHeight,ce.offsetHeight) : ce.offsetHeight) - (parseInt($(ce).css("borderTopWidth"),10) || 0) - (parseInt($(ce).css("paddingBottom"),10) || 0) - this.helperProportions.height - this.margins.top + ]; + } else if(o.containment.constructor == Array) { + this.containment = o.containment; + } + + }, + + _convertPositionTo: function(d, pos) { + + if(!pos) pos = this.position; + var mod = d == "absolute" ? 1 : -1; + var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); + + return { + top: ( + pos.top // The absolute mouse position + + this.offset.relative.top * mod // Only for relative positioned nodes: Relative offset from element to offset parent + + this.offset.parent.top * mod // The offsetParent's offset without borders (offset + border) + - ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ) * mod) + ), + left: ( + pos.left // The absolute mouse position + + this.offset.relative.left * mod // Only for relative positioned nodes: Relative offset from element to offset parent + + this.offset.parent.left * mod // The offsetParent's offset without borders (offset + border) + - ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ) * mod) + ) + }; + + }, + + _generatePosition: function(event) { + + var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); + + // This is another very weird special case that only happens for relative elements: + // 1. If the css position is relative + // 2. and the scroll parent is the document or similar to the offset parent + // we have to refresh the relative offset during the scroll so there are no jumps + if(this.cssPosition == 'relative' && !(this.scrollParent[0] != document && this.scrollParent[0] != this.offsetParent[0])) { + this.offset.relative = this._getRelativeOffset(); + } + + var pageX = event.pageX; + var pageY = event.pageY; + + /* + * - Position constraining - + * Constrain the position to a mix of grid, containment. + */ + + if(this.originalPosition) { //If we are not dragging yet, we won't check for options + + if(this.containment) { + if(event.pageX - this.offset.click.left < this.containment[0]) pageX = this.containment[0] + this.offset.click.left; + if(event.pageY - this.offset.click.top < this.containment[1]) pageY = this.containment[1] + this.offset.click.top; + if(event.pageX - this.offset.click.left > this.containment[2]) pageX = this.containment[2] + this.offset.click.left; + if(event.pageY - this.offset.click.top > this.containment[3]) pageY = this.containment[3] + this.offset.click.top; + } + + if(o.grid) { + var top = this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1]; + pageY = this.containment ? (!(top - this.offset.click.top < this.containment[1] || top - this.offset.click.top > this.containment[3]) ? top : (!(top - this.offset.click.top < this.containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top; + + var left = this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0]; + pageX = this.containment ? (!(left - this.offset.click.left < this.containment[0] || left - this.offset.click.left > this.containment[2]) ? left : (!(left - this.offset.click.left < this.containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left; + } + + } + + return { + top: ( + pageY // The absolute mouse position + - this.offset.click.top // Click offset (relative to the element) + - this.offset.relative.top // Only for relative positioned nodes: Relative offset from element to offset parent + - this.offset.parent.top // The offsetParent's offset without borders (offset + border) + + ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) )) + ), + left: ( + pageX // The absolute mouse position + - this.offset.click.left // Click offset (relative to the element) + - this.offset.relative.left // Only for relative positioned nodes: Relative offset from element to offset parent + - this.offset.parent.left // The offsetParent's offset without borders (offset + border) + + ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() )) + ) + }; + + }, + + _clear: function() { + this.helper.removeClass("ui-draggable-dragging"); + if(this.helper[0] != this.element[0] && !this.cancelHelperRemoval) this.helper.remove(); + //if($.ui.ddmanager) $.ui.ddmanager.current = null; + this.helper = null; + this.cancelHelperRemoval = false; + }, + + // From now on bulk stuff - mainly helpers + + _trigger: function(type, event, ui) { + ui = ui || this._uiHash(); + $.ui.plugin.call(this, type, [event, ui]); + if(type == "drag") this.positionAbs = this._convertPositionTo("absolute"); //The absolute position has to be recalculated after plugins + return $.widget.prototype._trigger.call(this, type, event, ui); + }, + + plugins: {}, + + _uiHash: function(event) { + return { + helper: this.helper, + position: this.position, + absolutePosition: this.positionAbs, //deprecated + offset: this.positionAbs + }; + } + +})); + +$.extend($.ui.draggable, { + version: "1.7.2", + eventPrefix: "drag", + defaults: { + addClasses: true, + appendTo: "parent", + axis: false, + cancel: ":input,option", + connectToSortable: false, + containment: false, + cursor: "auto", + cursorAt: false, + delay: 0, + distance: 1, + grid: false, + handle: false, + helper: "original", + iframeFix: false, + opacity: false, + refreshPositions: false, + revert: false, + revertDuration: 500, + scope: "default", + scroll: true, + scrollSensitivity: 20, + scrollSpeed: 20, + snap: false, + snapMode: "both", + snapTolerance: 20, + stack: false, + zIndex: false + } +}); + +$.ui.plugin.add("draggable", "connectToSortable", { + start: function(event, ui) { + + var inst = $(this).data("draggable"), o = inst.options, + uiSortable = $.extend({}, ui, { item: inst.element }); + inst.sortables = []; + $(o.connectToSortable).each(function() { + var sortable = $.data(this, 'sortable'); + if (sortable && !sortable.options.disabled) { + inst.sortables.push({ + instance: sortable, + shouldRevert: sortable.options.revert + }); + sortable._refreshItems(); //Do a one-time refresh at start to refresh the containerCache + sortable._trigger("activate", event, uiSortable); + } + }); + + }, + stop: function(event, ui) { + + //If we are still over the sortable, we fake the stop event of the sortable, but also remove helper + var inst = $(this).data("draggable"), + uiSortable = $.extend({}, ui, { item: inst.element }); + + $.each(inst.sortables, function() { + if(this.instance.isOver) { + + this.instance.isOver = 0; + + inst.cancelHelperRemoval = true; //Don't remove the helper in the draggable instance + this.instance.cancelHelperRemoval = false; //Remove it in the sortable instance (so sortable plugins like revert still work) + + //The sortable revert is supported, and we have to set a temporary dropped variable on the draggable to support revert: 'valid/invalid' + if(this.shouldRevert) this.instance.options.revert = true; + + //Trigger the stop of the sortable + this.instance._mouseStop(event); + + this.instance.options.helper = this.instance.options._helper; + + //If the helper has been the original item, restore properties in the sortable + if(inst.options.helper == 'original') + this.instance.currentItem.css({ top: 'auto', left: 'auto' }); + + } else { + this.instance.cancelHelperRemoval = false; //Remove the helper in the sortable instance + this.instance._trigger("deactivate", event, uiSortable); + } + + }); + + }, + drag: function(event, ui) { + + var inst = $(this).data("draggable"), self = this; + + var checkPos = function(o) { + var dyClick = this.offset.click.top, dxClick = this.offset.click.left; + var helperTop = this.positionAbs.top, helperLeft = this.positionAbs.left; + var itemHeight = o.height, itemWidth = o.width; + var itemTop = o.top, itemLeft = o.left; + + return $.ui.isOver(helperTop + dyClick, helperLeft + dxClick, itemTop, itemLeft, itemHeight, itemWidth); + }; + + $.each(inst.sortables, function(i) { + + //Copy over some variables to allow calling the sortable's native _intersectsWith + this.instance.positionAbs = inst.positionAbs; + this.instance.helperProportions = inst.helperProportions; + this.instance.offset.click = inst.offset.click; + + if(this.instance._intersectsWith(this.instance.containerCache)) { + + //If it intersects, we use a little isOver variable and set it once, so our move-in stuff gets fired only once + if(!this.instance.isOver) { + + this.instance.isOver = 1; + //Now we fake the start of dragging for the sortable instance, + //by cloning the list group item, appending it to the sortable and using it as inst.currentItem + //We can then fire the start event of the sortable with our passed browser event, and our own helper (so it doesn't create a new one) + this.instance.currentItem = $(self).clone().appendTo(this.instance.element).data("sortable-item", true); + this.instance.options._helper = this.instance.options.helper; //Store helper option to later restore it + this.instance.options.helper = function() { return ui.helper[0]; }; + + event.target = this.instance.currentItem[0]; + this.instance._mouseCapture(event, true); + this.instance._mouseStart(event, true, true); + + //Because the browser event is way off the new appended portlet, we modify a couple of variables to reflect the changes + this.instance.offset.click.top = inst.offset.click.top; + this.instance.offset.click.left = inst.offset.click.left; + this.instance.offset.parent.left -= inst.offset.parent.left - this.instance.offset.parent.left; + this.instance.offset.parent.top -= inst.offset.parent.top - this.instance.offset.parent.top; + + inst._trigger("toSortable", event); + inst.dropped = this.instance.element; //draggable revert needs that + //hack so receive/update callbacks work (mostly) + inst.currentItem = inst.element; + this.instance.fromOutside = inst; + + } + + //Provided we did all the previous steps, we can fire the drag event of the sortable on every draggable drag, when it intersects with the sortable + if(this.instance.currentItem) this.instance._mouseDrag(event); + + } else { + + //If it doesn't intersect with the sortable, and it intersected before, + //we fake the drag stop of the sortable, but make sure it doesn't remove the helper by using cancelHelperRemoval + if(this.instance.isOver) { + + this.instance.isOver = 0; + this.instance.cancelHelperRemoval = true; + + //Prevent reverting on this forced stop + this.instance.options.revert = false; + + // The out event needs to be triggered independently + this.instance._trigger('out', event, this.instance._uiHash(this.instance)); + + this.instance._mouseStop(event, true); + this.instance.options.helper = this.instance.options._helper; + + //Now we remove our currentItem, the list group clone again, and the placeholder, and animate the helper back to it's original size + this.instance.currentItem.remove(); + if(this.instance.placeholder) this.instance.placeholder.remove(); + + inst._trigger("fromSortable", event); + inst.dropped = false; //draggable revert needs that + } + + }; + + }); + + } +}); + +$.ui.plugin.add("draggable", "cursor", { + start: function(event, ui) { + var t = $('body'), o = $(this).data('draggable').options; + if (t.css("cursor")) o._cursor = t.css("cursor"); + t.css("cursor", o.cursor); + }, + stop: function(event, ui) { + var o = $(this).data('draggable').options; + if (o._cursor) $('body').css("cursor", o._cursor); + } +}); + +$.ui.plugin.add("draggable", "iframeFix", { + start: function(event, ui) { + var o = $(this).data('draggable').options; + $(o.iframeFix === true ? "iframe" : o.iframeFix).each(function() { + $('
') + .css({ + width: this.offsetWidth+"px", height: this.offsetHeight+"px", + position: "absolute", opacity: "0.001", zIndex: 1000 + }) + .css($(this).offset()) + .appendTo("body"); + }); + }, + stop: function(event, ui) { + $("div.ui-draggable-iframeFix").each(function() { this.parentNode.removeChild(this); }); //Remove frame helpers + } +}); + +$.ui.plugin.add("draggable", "opacity", { + start: function(event, ui) { + var t = $(ui.helper), o = $(this).data('draggable').options; + if(t.css("opacity")) o._opacity = t.css("opacity"); + t.css('opacity', o.opacity); + }, + stop: function(event, ui) { + var o = $(this).data('draggable').options; + if(o._opacity) $(ui.helper).css('opacity', o._opacity); + } +}); + +$.ui.plugin.add("draggable", "scroll", { + start: function(event, ui) { + var i = $(this).data("draggable"); + if(i.scrollParent[0] != document && i.scrollParent[0].tagName != 'HTML') i.overflowOffset = i.scrollParent.offset(); + }, + drag: function(event, ui) { + + var i = $(this).data("draggable"), o = i.options, scrolled = false; + + if(i.scrollParent[0] != document && i.scrollParent[0].tagName != 'HTML') { + + if(!o.axis || o.axis != 'x') { + if((i.overflowOffset.top + i.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) + i.scrollParent[0].scrollTop = scrolled = i.scrollParent[0].scrollTop + o.scrollSpeed; + else if(event.pageY - i.overflowOffset.top < o.scrollSensitivity) + i.scrollParent[0].scrollTop = scrolled = i.scrollParent[0].scrollTop - o.scrollSpeed; + } + + if(!o.axis || o.axis != 'y') { + if((i.overflowOffset.left + i.scrollParent[0].offsetWidth) - event.pageX < o.scrollSensitivity) + i.scrollParent[0].scrollLeft = scrolled = i.scrollParent[0].scrollLeft + o.scrollSpeed; + else if(event.pageX - i.overflowOffset.left < o.scrollSensitivity) + i.scrollParent[0].scrollLeft = scrolled = i.scrollParent[0].scrollLeft - o.scrollSpeed; + } + + } else { + + if(!o.axis || o.axis != 'x') { + if(event.pageY - $(document).scrollTop() < o.scrollSensitivity) + scrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed); + else if($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) + scrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed); + } + + if(!o.axis || o.axis != 'y') { + if(event.pageX - $(document).scrollLeft() < o.scrollSensitivity) + scrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed); + else if($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) + scrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed); + } + + } + + if(scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) + $.ui.ddmanager.prepareOffsets(i, event); + + } +}); + +$.ui.plugin.add("draggable", "snap", { + start: function(event, ui) { + + var i = $(this).data("draggable"), o = i.options; + i.snapElements = []; + + $(o.snap.constructor != String ? ( o.snap.items || ':data(draggable)' ) : o.snap).each(function() { + var $t = $(this); var $o = $t.offset(); + if(this != i.element[0]) i.snapElements.push({ + item: this, + width: $t.outerWidth(), height: $t.outerHeight(), + top: $o.top, left: $o.left + }); + }); + + }, + drag: function(event, ui) { + + var inst = $(this).data("draggable"), o = inst.options; + var d = o.snapTolerance; + + var x1 = ui.offset.left, x2 = x1 + inst.helperProportions.width, + y1 = ui.offset.top, y2 = y1 + inst.helperProportions.height; + + for (var i = inst.snapElements.length - 1; i >= 0; i--){ + + var l = inst.snapElements[i].left, r = l + inst.snapElements[i].width, + t = inst.snapElements[i].top, b = t + inst.snapElements[i].height; + + //Yes, I know, this is insane ;) + if(!((l-d < x1 && x1 < r+d && t-d < y1 && y1 < b+d) || (l-d < x1 && x1 < r+d && t-d < y2 && y2 < b+d) || (l-d < x2 && x2 < r+d && t-d < y1 && y1 < b+d) || (l-d < x2 && x2 < r+d && t-d < y2 && y2 < b+d))) { + if(inst.snapElements[i].snapping) (inst.options.snap.release && inst.options.snap.release.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item }))); + inst.snapElements[i].snapping = false; + continue; + } + + if(o.snapMode != 'inner') { + var ts = Math.abs(t - y2) <= d; + var bs = Math.abs(b - y1) <= d; + var ls = Math.abs(l - x2) <= d; + var rs = Math.abs(r - x1) <= d; + if(ts) ui.position.top = inst._convertPositionTo("relative", { top: t - inst.helperProportions.height, left: 0 }).top - inst.margins.top; + if(bs) ui.position.top = inst._convertPositionTo("relative", { top: b, left: 0 }).top - inst.margins.top; + if(ls) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l - inst.helperProportions.width }).left - inst.margins.left; + if(rs) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r }).left - inst.margins.left; + } + + var first = (ts || bs || ls || rs); + + if(o.snapMode != 'outer') { + var ts = Math.abs(t - y1) <= d; + var bs = Math.abs(b - y2) <= d; + var ls = Math.abs(l - x1) <= d; + var rs = Math.abs(r - x2) <= d; + if(ts) ui.position.top = inst._convertPositionTo("relative", { top: t, left: 0 }).top - inst.margins.top; + if(bs) ui.position.top = inst._convertPositionTo("relative", { top: b - inst.helperProportions.height, left: 0 }).top - inst.margins.top; + if(ls) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l }).left - inst.margins.left; + if(rs) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r - inst.helperProportions.width }).left - inst.margins.left; + } + + if(!inst.snapElements[i].snapping && (ts || bs || ls || rs || first)) + (inst.options.snap.snap && inst.options.snap.snap.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item }))); + inst.snapElements[i].snapping = (ts || bs || ls || rs || first); + + }; + + } +}); + +$.ui.plugin.add("draggable", "stack", { + start: function(event, ui) { + + var o = $(this).data("draggable").options; + + var group = $.makeArray($(o.stack.group)).sort(function(a,b) { + return (parseInt($(a).css("zIndex"),10) || o.stack.min) - (parseInt($(b).css("zIndex"),10) || o.stack.min); + }); + + $(group).each(function(i) { + this.style.zIndex = o.stack.min + i; + }); + + this[0].style.zIndex = o.stack.min + group.length; + + } +}); + +$.ui.plugin.add("draggable", "zIndex", { + start: function(event, ui) { + var t = $(ui.helper), o = $(this).data("draggable").options; + if(t.css("zIndex")) o._zIndex = t.css("zIndex"); + t.css('zIndex', o.zIndex); + }, + stop: function(event, ui) { + var o = $(this).data("draggable").options; + if(o._zIndex) $(ui.helper).css('zIndex', o._zIndex); + } +}); + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.droppable.js b/media/js/development-bundle/ui/ui.droppable.js new file mode 100644 index 0000000..8e7be33 --- /dev/null +++ b/media/js/development-bundle/ui/ui.droppable.js @@ -0,0 +1,282 @@ +/* + * jQuery UI Droppable 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Droppables + * + * Depends: + * ui.core.js + * ui.draggable.js + */ +(function($) { + +$.widget("ui.droppable", { + + _init: function() { + + var o = this.options, accept = o.accept; + this.isover = 0; this.isout = 1; + + this.options.accept = this.options.accept && $.isFunction(this.options.accept) ? this.options.accept : function(d) { + return d.is(accept); + }; + + //Store the droppable's proportions + this.proportions = { width: this.element[0].offsetWidth, height: this.element[0].offsetHeight }; + + // Add the reference and positions to the manager + $.ui.ddmanager.droppables[this.options.scope] = $.ui.ddmanager.droppables[this.options.scope] || []; + $.ui.ddmanager.droppables[this.options.scope].push(this); + + (this.options.addClasses && this.element.addClass("ui-droppable")); + + }, + + destroy: function() { + var drop = $.ui.ddmanager.droppables[this.options.scope]; + for ( var i = 0; i < drop.length; i++ ) + if ( drop[i] == this ) + drop.splice(i, 1); + + this.element + .removeClass("ui-droppable ui-droppable-disabled") + .removeData("droppable") + .unbind(".droppable"); + }, + + _setData: function(key, value) { + + if(key == 'accept') { + this.options.accept = value && $.isFunction(value) ? value : function(d) { + return d.is(value); + }; + } else { + $.widget.prototype._setData.apply(this, arguments); + } + + }, + + _activate: function(event) { + var draggable = $.ui.ddmanager.current; + if(this.options.activeClass) this.element.addClass(this.options.activeClass); + (draggable && this._trigger('activate', event, this.ui(draggable))); + }, + + _deactivate: function(event) { + var draggable = $.ui.ddmanager.current; + if(this.options.activeClass) this.element.removeClass(this.options.activeClass); + (draggable && this._trigger('deactivate', event, this.ui(draggable))); + }, + + _over: function(event) { + + var draggable = $.ui.ddmanager.current; + if (!draggable || (draggable.currentItem || draggable.element)[0] == this.element[0]) return; // Bail if draggable and droppable are same element + + if (this.options.accept.call(this.element[0],(draggable.currentItem || draggable.element))) { + if(this.options.hoverClass) this.element.addClass(this.options.hoverClass); + this._trigger('over', event, this.ui(draggable)); + } + + }, + + _out: function(event) { + + var draggable = $.ui.ddmanager.current; + if (!draggable || (draggable.currentItem || draggable.element)[0] == this.element[0]) return; // Bail if draggable and droppable are same element + + if (this.options.accept.call(this.element[0],(draggable.currentItem || draggable.element))) { + if(this.options.hoverClass) this.element.removeClass(this.options.hoverClass); + this._trigger('out', event, this.ui(draggable)); + } + + }, + + _drop: function(event,custom) { + + var draggable = custom || $.ui.ddmanager.current; + if (!draggable || (draggable.currentItem || draggable.element)[0] == this.element[0]) return false; // Bail if draggable and droppable are same element + + var childrenIntersection = false; + this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function() { + var inst = $.data(this, 'droppable'); + if(inst.options.greedy && $.ui.intersect(draggable, $.extend(inst, { offset: inst.element.offset() }), inst.options.tolerance)) { + childrenIntersection = true; return false; + } + }); + if(childrenIntersection) return false; + + if(this.options.accept.call(this.element[0],(draggable.currentItem || draggable.element))) { + if(this.options.activeClass) this.element.removeClass(this.options.activeClass); + if(this.options.hoverClass) this.element.removeClass(this.options.hoverClass); + this._trigger('drop', event, this.ui(draggable)); + return this.element; + } + + return false; + + }, + + ui: function(c) { + return { + draggable: (c.currentItem || c.element), + helper: c.helper, + position: c.position, + absolutePosition: c.positionAbs, //deprecated + offset: c.positionAbs + }; + } + +}); + +$.extend($.ui.droppable, { + version: "1.7.2", + eventPrefix: 'drop', + defaults: { + accept: '*', + activeClass: false, + addClasses: true, + greedy: false, + hoverClass: false, + scope: 'default', + tolerance: 'intersect' + } +}); + +$.ui.intersect = function(draggable, droppable, toleranceMode) { + + if (!droppable.offset) return false; + + var x1 = (draggable.positionAbs || draggable.position.absolute).left, x2 = x1 + draggable.helperProportions.width, + y1 = (draggable.positionAbs || draggable.position.absolute).top, y2 = y1 + draggable.helperProportions.height; + var l = droppable.offset.left, r = l + droppable.proportions.width, + t = droppable.offset.top, b = t + droppable.proportions.height; + + switch (toleranceMode) { + case 'fit': + return (l < x1 && x2 < r + && t < y1 && y2 < b); + break; + case 'intersect': + return (l < x1 + (draggable.helperProportions.width / 2) // Right Half + && x2 - (draggable.helperProportions.width / 2) < r // Left Half + && t < y1 + (draggable.helperProportions.height / 2) // Bottom Half + && y2 - (draggable.helperProportions.height / 2) < b ); // Top Half + break; + case 'pointer': + var draggableLeft = ((draggable.positionAbs || draggable.position.absolute).left + (draggable.clickOffset || draggable.offset.click).left), + draggableTop = ((draggable.positionAbs || draggable.position.absolute).top + (draggable.clickOffset || draggable.offset.click).top), + isOver = $.ui.isOver(draggableTop, draggableLeft, t, l, droppable.proportions.height, droppable.proportions.width); + return isOver; + break; + case 'touch': + return ( + (y1 >= t && y1 <= b) || // Top edge touching + (y2 >= t && y2 <= b) || // Bottom edge touching + (y1 < t && y2 > b) // Surrounded vertically + ) && ( + (x1 >= l && x1 <= r) || // Left edge touching + (x2 >= l && x2 <= r) || // Right edge touching + (x1 < l && x2 > r) // Surrounded horizontally + ); + break; + default: + return false; + break; + } + +}; + +/* + This manager tracks offsets of draggables and droppables +*/ +$.ui.ddmanager = { + current: null, + droppables: { 'default': [] }, + prepareOffsets: function(t, event) { + + var m = $.ui.ddmanager.droppables[t.options.scope]; + var type = event ? event.type : null; // workaround for #2317 + var list = (t.currentItem || t.element).find(":data(droppable)").andSelf(); + + droppablesLoop: for (var i = 0; i < m.length; i++) { + + if(m[i].options.disabled || (t && !m[i].options.accept.call(m[i].element[0],(t.currentItem || t.element)))) continue; //No disabled and non-accepted + for (var j=0; j < list.length; j++) { if(list[j] == m[i].element[0]) { m[i].proportions.height = 0; continue droppablesLoop; } }; //Filter out elements in the current dragged item + m[i].visible = m[i].element.css("display") != "none"; if(!m[i].visible) continue; //If the element is not visible, continue + + m[i].offset = m[i].element.offset(); + m[i].proportions = { width: m[i].element[0].offsetWidth, height: m[i].element[0].offsetHeight }; + + if(type == "mousedown") m[i]._activate.call(m[i], event); //Activate the droppable if used directly from draggables + + } + + }, + drop: function(draggable, event) { + + var dropped = false; + $.each($.ui.ddmanager.droppables[draggable.options.scope], function() { + + if(!this.options) return; + if (!this.options.disabled && this.visible && $.ui.intersect(draggable, this, this.options.tolerance)) + dropped = this._drop.call(this, event); + + if (!this.options.disabled && this.visible && this.options.accept.call(this.element[0],(draggable.currentItem || draggable.element))) { + this.isout = 1; this.isover = 0; + this._deactivate.call(this, event); + } + + }); + return dropped; + + }, + drag: function(draggable, event) { + + //If you have a highly dynamic page, you might try this option. It renders positions every time you move the mouse. + if(draggable.options.refreshPositions) $.ui.ddmanager.prepareOffsets(draggable, event); + + //Run through all droppables and check their positions based on specific tolerance options + + $.each($.ui.ddmanager.droppables[draggable.options.scope], function() { + + if(this.options.disabled || this.greedyChild || !this.visible) return; + var intersects = $.ui.intersect(draggable, this, this.options.tolerance); + + var c = !intersects && this.isover == 1 ? 'isout' : (intersects && this.isover == 0 ? 'isover' : null); + if(!c) return; + + var parentInstance; + if (this.options.greedy) { + var parent = this.element.parents(':data(droppable):eq(0)'); + if (parent.length) { + parentInstance = $.data(parent[0], 'droppable'); + parentInstance.greedyChild = (c == 'isover' ? 1 : 0); + } + } + + // we just moved into a greedy child + if (parentInstance && c == 'isover') { + parentInstance['isover'] = 0; + parentInstance['isout'] = 1; + parentInstance._out.call(parentInstance, event); + } + + this[c] = 1; this[c == 'isout' ? 'isover' : 'isout'] = 0; + this[c == "isover" ? "_over" : "_out"].call(this, event); + + // we just moved out of a greedy child + if (parentInstance && c == 'isout') { + parentInstance['isout'] = 0; + parentInstance['isover'] = 1; + parentInstance._over.call(parentInstance, event); + } + }); + + } +}; + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.progressbar.js b/media/js/development-bundle/ui/ui.progressbar.js new file mode 100644 index 0000000..30aac98 --- /dev/null +++ b/media/js/development-bundle/ui/ui.progressbar.js @@ -0,0 +1,116 @@ +/* + * jQuery UI Progressbar 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Progressbar + * + * Depends: + * ui.core.js + */ +(function($) { + +$.widget("ui.progressbar", { + + _init: function() { + + this.element + .addClass("ui-progressbar" + + " ui-widget" + + " ui-widget-content" + + " ui-corner-all") + .attr({ + role: "progressbar", + "aria-valuemin": this._valueMin(), + "aria-valuemax": this._valueMax(), + "aria-valuenow": this._value() + }); + + this.valueDiv = $('
').appendTo(this.element); + + this._refreshValue(); + + }, + + destroy: function() { + + this.element + .removeClass("ui-progressbar" + + " ui-widget" + + " ui-widget-content" + + " ui-corner-all") + .removeAttr("role") + .removeAttr("aria-valuemin") + .removeAttr("aria-valuemax") + .removeAttr("aria-valuenow") + .removeData("progressbar") + .unbind(".progressbar"); + + this.valueDiv.remove(); + + $.widget.prototype.destroy.apply(this, arguments); + + }, + + value: function(newValue) { + if (newValue === undefined) { + return this._value(); + } + + this._setData('value', newValue); + return this; + }, + + _setData: function(key, value) { + + switch (key) { + case 'value': + this.options.value = value; + this._refreshValue(); + this._trigger('change', null, {}); + break; + } + + $.widget.prototype._setData.apply(this, arguments); + + }, + + _value: function() { + + var val = this.options.value; + if (val < this._valueMin()) val = this._valueMin(); + if (val > this._valueMax()) val = this._valueMax(); + + return val; + + }, + + _valueMin: function() { + var valueMin = 0; + return valueMin; + }, + + _valueMax: function() { + var valueMax = 100; + return valueMax; + }, + + _refreshValue: function() { + var value = this.value(); + this.valueDiv[value == this._valueMax() ? 'addClass' : 'removeClass']("ui-corner-right"); + this.valueDiv.width(value + '%'); + this.element.attr("aria-valuenow", value); + } + +}); + +$.extend($.ui.progressbar, { + version: "1.7.2", + defaults: { + value: 0 + } +}); + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.resizable.js b/media/js/development-bundle/ui/ui.resizable.js new file mode 100644 index 0000000..6172d6c --- /dev/null +++ b/media/js/development-bundle/ui/ui.resizable.js @@ -0,0 +1,800 @@ +/* + * jQuery UI Resizable 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Resizables + * + * Depends: + * ui.core.js + */ +(function($) { + +$.widget("ui.resizable", $.extend({}, $.ui.mouse, { + + _init: function() { + + var self = this, o = this.options; + this.element.addClass("ui-resizable"); + + $.extend(this, { + _aspectRatio: !!(o.aspectRatio), + aspectRatio: o.aspectRatio, + originalElement: this.element, + _proportionallyResizeElements: [], + _helper: o.helper || o.ghost || o.animate ? o.helper || 'ui-resizable-helper' : null + }); + + //Wrap the element if it cannot hold child nodes + if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)) { + + //Opera fix for relative positioning + if (/relative/.test(this.element.css('position')) && $.browser.opera) + this.element.css({ position: 'relative', top: 'auto', left: 'auto' }); + + //Create a wrapper element and set the wrapper to the new current internal element + this.element.wrap( + $('
').css({ + position: this.element.css('position'), + width: this.element.outerWidth(), + height: this.element.outerHeight(), + top: this.element.css('top'), + left: this.element.css('left') + }) + ); + + //Overwrite the original this.element + this.element = this.element.parent().data( + "resizable", this.element.data('resizable') + ); + + this.elementIsWrapper = true; + + //Move margins to the wrapper + this.element.css({ marginLeft: this.originalElement.css("marginLeft"), marginTop: this.originalElement.css("marginTop"), marginRight: this.originalElement.css("marginRight"), marginBottom: this.originalElement.css("marginBottom") }); + this.originalElement.css({ marginLeft: 0, marginTop: 0, marginRight: 0, marginBottom: 0}); + + //Prevent Safari textarea resize + this.originalResizeStyle = this.originalElement.css('resize'); + this.originalElement.css('resize', 'none'); + + //Push the actual element to our proportionallyResize internal array + this._proportionallyResizeElements.push(this.originalElement.css({ position: 'static', zoom: 1, display: 'block' })); + + // avoid IE jump (hard set the margin) + this.originalElement.css({ margin: this.originalElement.css('margin') }); + + // fix handlers offset + this._proportionallyResize(); + + } + + this.handles = o.handles || (!$('.ui-resizable-handle', this.element).length ? "e,s,se" : { n: '.ui-resizable-n', e: '.ui-resizable-e', s: '.ui-resizable-s', w: '.ui-resizable-w', se: '.ui-resizable-se', sw: '.ui-resizable-sw', ne: '.ui-resizable-ne', nw: '.ui-resizable-nw' }); + if(this.handles.constructor == String) { + + if(this.handles == 'all') this.handles = 'n,e,s,w,se,sw,ne,nw'; + var n = this.handles.split(","); this.handles = {}; + + for(var i = 0; i < n.length; i++) { + + var handle = $.trim(n[i]), hname = 'ui-resizable-'+handle; + var axis = $('
'); + + // increase zIndex of sw, se, ne, nw axis + //TODO : this modifies original option + if(/sw|se|ne|nw/.test(handle)) axis.css({ zIndex: ++o.zIndex }); + + //TODO : What's going on here? + if ('se' == handle) { + axis.addClass('ui-icon ui-icon-gripsmall-diagonal-se'); + }; + + //Insert into internal handles object and append to element + this.handles[handle] = '.ui-resizable-'+handle; + this.element.append(axis); + } + + } + + this._renderAxis = function(target) { + + target = target || this.element; + + for(var i in this.handles) { + + if(this.handles[i].constructor == String) + this.handles[i] = $(this.handles[i], this.element).show(); + + //Apply pad to wrapper element, needed to fix axis position (textarea, inputs, scrolls) + if (this.elementIsWrapper && this.originalElement[0].nodeName.match(/textarea|input|select|button/i)) { + + var axis = $(this.handles[i], this.element), padWrapper = 0; + + //Checking the correct pad and border + padWrapper = /sw|ne|nw|se|n|s/.test(i) ? axis.outerHeight() : axis.outerWidth(); + + //The padding type i have to apply... + var padPos = [ 'padding', + /ne|nw|n/.test(i) ? 'Top' : + /se|sw|s/.test(i) ? 'Bottom' : + /^e$/.test(i) ? 'Right' : 'Left' ].join(""); + + target.css(padPos, padWrapper); + + this._proportionallyResize(); + + } + + //TODO: What's that good for? There's not anything to be executed left + if(!$(this.handles[i]).length) + continue; + + } + }; + + //TODO: make renderAxis a prototype function + this._renderAxis(this.element); + + this._handles = $('.ui-resizable-handle', this.element) + .disableSelection(); + + //Matching axis name + this._handles.mouseover(function() { + if (!self.resizing) { + if (this.className) + var axis = this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i); + //Axis, default = se + self.axis = axis && axis[1] ? axis[1] : 'se'; + } + }); + + //If we want to auto hide the elements + if (o.autoHide) { + this._handles.hide(); + $(this.element) + .addClass("ui-resizable-autohide") + .hover(function() { + $(this).removeClass("ui-resizable-autohide"); + self._handles.show(); + }, + function(){ + if (!self.resizing) { + $(this).addClass("ui-resizable-autohide"); + self._handles.hide(); + } + }); + } + + //Initialize the mouse interaction + this._mouseInit(); + + }, + + destroy: function() { + + this._mouseDestroy(); + + var _destroy = function(exp) { + $(exp).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing") + .removeData("resizable").unbind(".resizable").find('.ui-resizable-handle').remove(); + }; + + //TODO: Unwrap at same DOM position + if (this.elementIsWrapper) { + _destroy(this.element); + var wrapper = this.element; + wrapper.parent().append( + this.originalElement.css({ + position: wrapper.css('position'), + width: wrapper.outerWidth(), + height: wrapper.outerHeight(), + top: wrapper.css('top'), + left: wrapper.css('left') + }) + ).end().remove(); + } + + this.originalElement.css('resize', this.originalResizeStyle); + _destroy(this.originalElement); + + }, + + _mouseCapture: function(event) { + + var handle = false; + for(var i in this.handles) { + if($(this.handles[i])[0] == event.target) handle = true; + } + + return this.options.disabled || !!handle; + + }, + + _mouseStart: function(event) { + + var o = this.options, iniPos = this.element.position(), el = this.element; + + this.resizing = true; + this.documentScroll = { top: $(document).scrollTop(), left: $(document).scrollLeft() }; + + // bugfix for http://dev.jquery.com/ticket/1749 + if (el.is('.ui-draggable') || (/absolute/).test(el.css('position'))) { + el.css({ position: 'absolute', top: iniPos.top, left: iniPos.left }); + } + + //Opera fixing relative position + if ($.browser.opera && (/relative/).test(el.css('position'))) + el.css({ position: 'relative', top: 'auto', left: 'auto' }); + + this._renderProxy(); + + var curleft = num(this.helper.css('left')), curtop = num(this.helper.css('top')); + + if (o.containment) { + curleft += $(o.containment).scrollLeft() || 0; + curtop += $(o.containment).scrollTop() || 0; + } + + //Store needed variables + this.offset = this.helper.offset(); + this.position = { left: curleft, top: curtop }; + this.size = this._helper ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() }; + this.originalSize = this._helper ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() }; + this.originalPosition = { left: curleft, top: curtop }; + this.sizeDiff = { width: el.outerWidth() - el.width(), height: el.outerHeight() - el.height() }; + this.originalMousePosition = { left: event.pageX, top: event.pageY }; + + //Aspect Ratio + this.aspectRatio = (typeof o.aspectRatio == 'number') ? o.aspectRatio : ((this.originalSize.width / this.originalSize.height) || 1); + + var cursor = $('.ui-resizable-' + this.axis).css('cursor'); + $('body').css('cursor', cursor == 'auto' ? this.axis + '-resize' : cursor); + + el.addClass("ui-resizable-resizing"); + this._propagate("start", event); + return true; + }, + + _mouseDrag: function(event) { + + //Increase performance, avoid regex + var el = this.helper, o = this.options, props = {}, + self = this, smp = this.originalMousePosition, a = this.axis; + + var dx = (event.pageX-smp.left)||0, dy = (event.pageY-smp.top)||0; + var trigger = this._change[a]; + if (!trigger) return false; + + // Calculate the attrs that will be change + var data = trigger.apply(this, [event, dx, dy]), ie6 = $.browser.msie && $.browser.version < 7, csdif = this.sizeDiff; + + if (this._aspectRatio || event.shiftKey) + data = this._updateRatio(data, event); + + data = this._respectSize(data, event); + + // plugins callbacks need to be called first + this._propagate("resize", event); + + el.css({ + top: this.position.top + "px", left: this.position.left + "px", + width: this.size.width + "px", height: this.size.height + "px" + }); + + if (!this._helper && this._proportionallyResizeElements.length) + this._proportionallyResize(); + + this._updateCache(data); + + // calling the user callback at the end + this._trigger('resize', event, this.ui()); + + return false; + }, + + _mouseStop: function(event) { + + this.resizing = false; + var o = this.options, self = this; + + if(this._helper) { + var pr = this._proportionallyResizeElements, ista = pr.length && (/textarea/i).test(pr[0].nodeName), + soffseth = ista && $.ui.hasScroll(pr[0], 'left') /* TODO - jump height */ ? 0 : self.sizeDiff.height, + soffsetw = ista ? 0 : self.sizeDiff.width; + + var s = { width: (self.size.width - soffsetw), height: (self.size.height - soffseth) }, + left = (parseInt(self.element.css('left'), 10) + (self.position.left - self.originalPosition.left)) || null, + top = (parseInt(self.element.css('top'), 10) + (self.position.top - self.originalPosition.top)) || null; + + if (!o.animate) + this.element.css($.extend(s, { top: top, left: left })); + + self.helper.height(self.size.height); + self.helper.width(self.size.width); + + if (this._helper && !o.animate) this._proportionallyResize(); + } + + $('body').css('cursor', 'auto'); + + this.element.removeClass("ui-resizable-resizing"); + + this._propagate("stop", event); + + if (this._helper) this.helper.remove(); + return false; + + }, + + _updateCache: function(data) { + var o = this.options; + this.offset = this.helper.offset(); + if (isNumber(data.left)) this.position.left = data.left; + if (isNumber(data.top)) this.position.top = data.top; + if (isNumber(data.height)) this.size.height = data.height; + if (isNumber(data.width)) this.size.width = data.width; + }, + + _updateRatio: function(data, event) { + + var o = this.options, cpos = this.position, csize = this.size, a = this.axis; + + if (data.height) data.width = (csize.height * this.aspectRatio); + else if (data.width) data.height = (csize.width / this.aspectRatio); + + if (a == 'sw') { + data.left = cpos.left + (csize.width - data.width); + data.top = null; + } + if (a == 'nw') { + data.top = cpos.top + (csize.height - data.height); + data.left = cpos.left + (csize.width - data.width); + } + + return data; + }, + + _respectSize: function(data, event) { + + var el = this.helper, o = this.options, pRatio = this._aspectRatio || event.shiftKey, a = this.axis, + ismaxw = isNumber(data.width) && o.maxWidth && (o.maxWidth < data.width), ismaxh = isNumber(data.height) && o.maxHeight && (o.maxHeight < data.height), + isminw = isNumber(data.width) && o.minWidth && (o.minWidth > data.width), isminh = isNumber(data.height) && o.minHeight && (o.minHeight > data.height); + + if (isminw) data.width = o.minWidth; + if (isminh) data.height = o.minHeight; + if (ismaxw) data.width = o.maxWidth; + if (ismaxh) data.height = o.maxHeight; + + var dw = this.originalPosition.left + this.originalSize.width, dh = this.position.top + this.size.height; + var cw = /sw|nw|w/.test(a), ch = /nw|ne|n/.test(a); + + if (isminw && cw) data.left = dw - o.minWidth; + if (ismaxw && cw) data.left = dw - o.maxWidth; + if (isminh && ch) data.top = dh - o.minHeight; + if (ismaxh && ch) data.top = dh - o.maxHeight; + + // fixing jump error on top/left - bug #2330 + var isNotwh = !data.width && !data.height; + if (isNotwh && !data.left && data.top) data.top = null; + else if (isNotwh && !data.top && data.left) data.left = null; + + return data; + }, + + _proportionallyResize: function() { + + var o = this.options; + if (!this._proportionallyResizeElements.length) return; + var element = this.helper || this.element; + + for (var i=0; i < this._proportionallyResizeElements.length; i++) { + + var prel = this._proportionallyResizeElements[i]; + + if (!this.borderDif) { + var b = [prel.css('borderTopWidth'), prel.css('borderRightWidth'), prel.css('borderBottomWidth'), prel.css('borderLeftWidth')], + p = [prel.css('paddingTop'), prel.css('paddingRight'), prel.css('paddingBottom'), prel.css('paddingLeft')]; + + this.borderDif = $.map(b, function(v, i) { + var border = parseInt(v,10)||0, padding = parseInt(p[i],10)||0; + return border + padding; + }); + } + + if ($.browser.msie && !(!($(element).is(':hidden') || $(element).parents(':hidden').length))) + continue; + + prel.css({ + height: (element.height() - this.borderDif[0] - this.borderDif[2]) || 0, + width: (element.width() - this.borderDif[1] - this.borderDif[3]) || 0 + }); + + }; + + }, + + _renderProxy: function() { + + var el = this.element, o = this.options; + this.elementOffset = el.offset(); + + if(this._helper) { + + this.helper = this.helper || $('
'); + + // fix ie6 offset TODO: This seems broken + var ie6 = $.browser.msie && $.browser.version < 7, ie6offset = (ie6 ? 1 : 0), + pxyoffset = ( ie6 ? 2 : -1 ); + + this.helper.addClass(this._helper).css({ + width: this.element.outerWidth() + pxyoffset, + height: this.element.outerHeight() + pxyoffset, + position: 'absolute', + left: this.elementOffset.left - ie6offset +'px', + top: this.elementOffset.top - ie6offset +'px', + zIndex: ++o.zIndex //TODO: Don't modify option + }); + + this.helper + .appendTo("body") + .disableSelection(); + + } else { + this.helper = this.element; + } + + }, + + _change: { + e: function(event, dx, dy) { + return { width: this.originalSize.width + dx }; + }, + w: function(event, dx, dy) { + var o = this.options, cs = this.originalSize, sp = this.originalPosition; + return { left: sp.left + dx, width: cs.width - dx }; + }, + n: function(event, dx, dy) { + var o = this.options, cs = this.originalSize, sp = this.originalPosition; + return { top: sp.top + dy, height: cs.height - dy }; + }, + s: function(event, dx, dy) { + return { height: this.originalSize.height + dy }; + }, + se: function(event, dx, dy) { + return $.extend(this._change.s.apply(this, arguments), this._change.e.apply(this, [event, dx, dy])); + }, + sw: function(event, dx, dy) { + return $.extend(this._change.s.apply(this, arguments), this._change.w.apply(this, [event, dx, dy])); + }, + ne: function(event, dx, dy) { + return $.extend(this._change.n.apply(this, arguments), this._change.e.apply(this, [event, dx, dy])); + }, + nw: function(event, dx, dy) { + return $.extend(this._change.n.apply(this, arguments), this._change.w.apply(this, [event, dx, dy])); + } + }, + + _propagate: function(n, event) { + $.ui.plugin.call(this, n, [event, this.ui()]); + (n != "resize" && this._trigger(n, event, this.ui())); + }, + + plugins: {}, + + ui: function() { + return { + originalElement: this.originalElement, + element: this.element, + helper: this.helper, + position: this.position, + size: this.size, + originalSize: this.originalSize, + originalPosition: this.originalPosition + }; + } + +})); + +$.extend($.ui.resizable, { + version: "1.7.2", + eventPrefix: "resize", + defaults: { + alsoResize: false, + animate: false, + animateDuration: "slow", + animateEasing: "swing", + aspectRatio: false, + autoHide: false, + cancel: ":input,option", + containment: false, + delay: 0, + distance: 1, + ghost: false, + grid: false, + handles: "e,s,se", + helper: false, + maxHeight: null, + maxWidth: null, + minHeight: 10, + minWidth: 10, + zIndex: 1000 + } +}); + +/* + * Resizable Extensions + */ + +$.ui.plugin.add("resizable", "alsoResize", { + + start: function(event, ui) { + + var self = $(this).data("resizable"), o = self.options; + + _store = function(exp) { + $(exp).each(function() { + $(this).data("resizable-alsoresize", { + width: parseInt($(this).width(), 10), height: parseInt($(this).height(), 10), + left: parseInt($(this).css('left'), 10), top: parseInt($(this).css('top'), 10) + }); + }); + }; + + if (typeof(o.alsoResize) == 'object' && !o.alsoResize.parentNode) { + if (o.alsoResize.length) { o.alsoResize = o.alsoResize[0]; _store(o.alsoResize); } + else { $.each(o.alsoResize, function(exp, c) { _store(exp); }); } + }else{ + _store(o.alsoResize); + } + }, + + resize: function(event, ui){ + var self = $(this).data("resizable"), o = self.options, os = self.originalSize, op = self.originalPosition; + + var delta = { + height: (self.size.height - os.height) || 0, width: (self.size.width - os.width) || 0, + top: (self.position.top - op.top) || 0, left: (self.position.left - op.left) || 0 + }, + + _alsoResize = function(exp, c) { + $(exp).each(function() { + var el = $(this), start = $(this).data("resizable-alsoresize"), style = {}, css = c && c.length ? c : ['width', 'height', 'top', 'left']; + + $.each(css || ['width', 'height', 'top', 'left'], function(i, prop) { + var sum = (start[prop]||0) + (delta[prop]||0); + if (sum && sum >= 0) + style[prop] = sum || null; + }); + + //Opera fixing relative position + if (/relative/.test(el.css('position')) && $.browser.opera) { + self._revertToRelativePosition = true; + el.css({ position: 'absolute', top: 'auto', left: 'auto' }); + } + + el.css(style); + }); + }; + + if (typeof(o.alsoResize) == 'object' && !o.alsoResize.nodeType) { + $.each(o.alsoResize, function(exp, c) { _alsoResize(exp, c); }); + }else{ + _alsoResize(o.alsoResize); + } + }, + + stop: function(event, ui){ + var self = $(this).data("resizable"); + + //Opera fixing relative position + if (self._revertToRelativePosition && $.browser.opera) { + self._revertToRelativePosition = false; + el.css({ position: 'relative' }); + } + + $(this).removeData("resizable-alsoresize-start"); + } +}); + +$.ui.plugin.add("resizable", "animate", { + + stop: function(event, ui) { + var self = $(this).data("resizable"), o = self.options; + + var pr = self._proportionallyResizeElements, ista = pr.length && (/textarea/i).test(pr[0].nodeName), + soffseth = ista && $.ui.hasScroll(pr[0], 'left') /* TODO - jump height */ ? 0 : self.sizeDiff.height, + soffsetw = ista ? 0 : self.sizeDiff.width; + + var style = { width: (self.size.width - soffsetw), height: (self.size.height - soffseth) }, + left = (parseInt(self.element.css('left'), 10) + (self.position.left - self.originalPosition.left)) || null, + top = (parseInt(self.element.css('top'), 10) + (self.position.top - self.originalPosition.top)) || null; + + self.element.animate( + $.extend(style, top && left ? { top: top, left: left } : {}), { + duration: o.animateDuration, + easing: o.animateEasing, + step: function() { + + var data = { + width: parseInt(self.element.css('width'), 10), + height: parseInt(self.element.css('height'), 10), + top: parseInt(self.element.css('top'), 10), + left: parseInt(self.element.css('left'), 10) + }; + + if (pr && pr.length) $(pr[0]).css({ width: data.width, height: data.height }); + + // propagating resize, and updating values for each animation step + self._updateCache(data); + self._propagate("resize", event); + + } + } + ); + } + +}); + +$.ui.plugin.add("resizable", "containment", { + + start: function(event, ui) { + var self = $(this).data("resizable"), o = self.options, el = self.element; + var oc = o.containment, ce = (oc instanceof $) ? oc.get(0) : (/parent/.test(oc)) ? el.parent().get(0) : oc; + if (!ce) return; + + self.containerElement = $(ce); + + if (/document/.test(oc) || oc == document) { + self.containerOffset = { left: 0, top: 0 }; + self.containerPosition = { left: 0, top: 0 }; + + self.parentData = { + element: $(document), left: 0, top: 0, + width: $(document).width(), height: $(document).height() || document.body.parentNode.scrollHeight + }; + } + + // i'm a node, so compute top, left, right, bottom + else { + var element = $(ce), p = []; + $([ "Top", "Right", "Left", "Bottom" ]).each(function(i, name) { p[i] = num(element.css("padding" + name)); }); + + self.containerOffset = element.offset(); + self.containerPosition = element.position(); + self.containerSize = { height: (element.innerHeight() - p[3]), width: (element.innerWidth() - p[1]) }; + + var co = self.containerOffset, ch = self.containerSize.height, cw = self.containerSize.width, + width = ($.ui.hasScroll(ce, "left") ? ce.scrollWidth : cw ), height = ($.ui.hasScroll(ce) ? ce.scrollHeight : ch); + + self.parentData = { + element: ce, left: co.left, top: co.top, width: width, height: height + }; + } + }, + + resize: function(event, ui) { + var self = $(this).data("resizable"), o = self.options, + ps = self.containerSize, co = self.containerOffset, cs = self.size, cp = self.position, + pRatio = self._aspectRatio || event.shiftKey, cop = { top:0, left:0 }, ce = self.containerElement; + + if (ce[0] != document && (/static/).test(ce.css('position'))) cop = co; + + if (cp.left < (self._helper ? co.left : 0)) { + self.size.width = self.size.width + (self._helper ? (self.position.left - co.left) : (self.position.left - cop.left)); + if (pRatio) self.size.height = self.size.width / o.aspectRatio; + self.position.left = o.helper ? co.left : 0; + } + + if (cp.top < (self._helper ? co.top : 0)) { + self.size.height = self.size.height + (self._helper ? (self.position.top - co.top) : self.position.top); + if (pRatio) self.size.width = self.size.height * o.aspectRatio; + self.position.top = self._helper ? co.top : 0; + } + + self.offset.left = self.parentData.left+self.position.left; + self.offset.top = self.parentData.top+self.position.top; + + var woset = Math.abs( (self._helper ? self.offset.left - cop.left : (self.offset.left - cop.left)) + self.sizeDiff.width ), + hoset = Math.abs( (self._helper ? self.offset.top - cop.top : (self.offset.top - co.top)) + self.sizeDiff.height ); + + var isParent = self.containerElement.get(0) == self.element.parent().get(0), + isOffsetRelative = /relative|absolute/.test(self.containerElement.css('position')); + + if(isParent && isOffsetRelative) woset -= self.parentData.left; + + if (woset + self.size.width >= self.parentData.width) { + self.size.width = self.parentData.width - woset; + if (pRatio) self.size.height = self.size.width / self.aspectRatio; + } + + if (hoset + self.size.height >= self.parentData.height) { + self.size.height = self.parentData.height - hoset; + if (pRatio) self.size.width = self.size.height * self.aspectRatio; + } + }, + + stop: function(event, ui){ + var self = $(this).data("resizable"), o = self.options, cp = self.position, + co = self.containerOffset, cop = self.containerPosition, ce = self.containerElement; + + var helper = $(self.helper), ho = helper.offset(), w = helper.outerWidth() - self.sizeDiff.width, h = helper.outerHeight() - self.sizeDiff.height; + + if (self._helper && !o.animate && (/relative/).test(ce.css('position'))) + $(this).css({ left: ho.left - cop.left - co.left, width: w, height: h }); + + if (self._helper && !o.animate && (/static/).test(ce.css('position'))) + $(this).css({ left: ho.left - cop.left - co.left, width: w, height: h }); + + } +}); + +$.ui.plugin.add("resizable", "ghost", { + + start: function(event, ui) { + + var self = $(this).data("resizable"), o = self.options, cs = self.size; + + self.ghost = self.originalElement.clone(); + self.ghost + .css({ opacity: .25, display: 'block', position: 'relative', height: cs.height, width: cs.width, margin: 0, left: 0, top: 0 }) + .addClass('ui-resizable-ghost') + .addClass(typeof o.ghost == 'string' ? o.ghost : ''); + + self.ghost.appendTo(self.helper); + + }, + + resize: function(event, ui){ + var self = $(this).data("resizable"), o = self.options; + if (self.ghost) self.ghost.css({ position: 'relative', height: self.size.height, width: self.size.width }); + }, + + stop: function(event, ui){ + var self = $(this).data("resizable"), o = self.options; + if (self.ghost && self.helper) self.helper.get(0).removeChild(self.ghost.get(0)); + } + +}); + +$.ui.plugin.add("resizable", "grid", { + + resize: function(event, ui) { + var self = $(this).data("resizable"), o = self.options, cs = self.size, os = self.originalSize, op = self.originalPosition, a = self.axis, ratio = o._aspectRatio || event.shiftKey; + o.grid = typeof o.grid == "number" ? [o.grid, o.grid] : o.grid; + var ox = Math.round((cs.width - os.width) / (o.grid[0]||1)) * (o.grid[0]||1), oy = Math.round((cs.height - os.height) / (o.grid[1]||1)) * (o.grid[1]||1); + + if (/^(se|s|e)$/.test(a)) { + self.size.width = os.width + ox; + self.size.height = os.height + oy; + } + else if (/^(ne)$/.test(a)) { + self.size.width = os.width + ox; + self.size.height = os.height + oy; + self.position.top = op.top - oy; + } + else if (/^(sw)$/.test(a)) { + self.size.width = os.width + ox; + self.size.height = os.height + oy; + self.position.left = op.left - ox; + } + else { + self.size.width = os.width + ox; + self.size.height = os.height + oy; + self.position.top = op.top - oy; + self.position.left = op.left - ox; + } + } + +}); + +var num = function(v) { + return parseInt(v, 10) || 0; +}; + +var isNumber = function(value) { + return !isNaN(parseInt(value, 10)); +}; + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.selectable.js b/media/js/development-bundle/ui/ui.selectable.js new file mode 100644 index 0000000..08f99cf --- /dev/null +++ b/media/js/development-bundle/ui/ui.selectable.js @@ -0,0 +1,257 @@ +/* + * jQuery UI Selectable 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Selectables + * + * Depends: + * ui.core.js + */ +(function($) { + +$.widget("ui.selectable", $.extend({}, $.ui.mouse, { + + _init: function() { + var self = this; + + this.element.addClass("ui-selectable"); + + this.dragged = false; + + // cache selectee children based on filter + var selectees; + this.refresh = function() { + selectees = $(self.options.filter, self.element[0]); + selectees.each(function() { + var $this = $(this); + var pos = $this.offset(); + $.data(this, "selectable-item", { + element: this, + $element: $this, + left: pos.left, + top: pos.top, + right: pos.left + $this.outerWidth(), + bottom: pos.top + $this.outerHeight(), + startselected: false, + selected: $this.hasClass('ui-selected'), + selecting: $this.hasClass('ui-selecting'), + unselecting: $this.hasClass('ui-unselecting') + }); + }); + }; + this.refresh(); + + this.selectees = selectees.addClass("ui-selectee"); + + this._mouseInit(); + + this.helper = $(document.createElement('div')) + .css({border:'1px dotted black'}) + .addClass("ui-selectable-helper"); + }, + + destroy: function() { + this.element + .removeClass("ui-selectable ui-selectable-disabled") + .removeData("selectable") + .unbind(".selectable"); + this._mouseDestroy(); + }, + + _mouseStart: function(event) { + var self = this; + + this.opos = [event.pageX, event.pageY]; + + if (this.options.disabled) + return; + + var options = this.options; + + this.selectees = $(options.filter, this.element[0]); + + this._trigger("start", event); + + $(options.appendTo).append(this.helper); + // position helper (lasso) + this.helper.css({ + "z-index": 100, + "position": "absolute", + "left": event.clientX, + "top": event.clientY, + "width": 0, + "height": 0 + }); + + if (options.autoRefresh) { + this.refresh(); + } + + this.selectees.filter('.ui-selected').each(function() { + var selectee = $.data(this, "selectable-item"); + selectee.startselected = true; + if (!event.metaKey) { + selectee.$element.removeClass('ui-selected'); + selectee.selected = false; + selectee.$element.addClass('ui-unselecting'); + selectee.unselecting = true; + // selectable UNSELECTING callback + self._trigger("unselecting", event, { + unselecting: selectee.element + }); + } + }); + + $(event.target).parents().andSelf().each(function() { + var selectee = $.data(this, "selectable-item"); + if (selectee) { + selectee.$element.removeClass("ui-unselecting").addClass('ui-selecting'); + selectee.unselecting = false; + selectee.selecting = true; + selectee.selected = true; + // selectable SELECTING callback + self._trigger("selecting", event, { + selecting: selectee.element + }); + return false; + } + }); + + }, + + _mouseDrag: function(event) { + var self = this; + this.dragged = true; + + if (this.options.disabled) + return; + + var options = this.options; + + var x1 = this.opos[0], y1 = this.opos[1], x2 = event.pageX, y2 = event.pageY; + if (x1 > x2) { var tmp = x2; x2 = x1; x1 = tmp; } + if (y1 > y2) { var tmp = y2; y2 = y1; y1 = tmp; } + this.helper.css({left: x1, top: y1, width: x2-x1, height: y2-y1}); + + this.selectees.each(function() { + var selectee = $.data(this, "selectable-item"); + //prevent helper from being selected if appendTo: selectable + if (!selectee || selectee.element == self.element[0]) + return; + var hit = false; + if (options.tolerance == 'touch') { + hit = ( !(selectee.left > x2 || selectee.right < x1 || selectee.top > y2 || selectee.bottom < y1) ); + } else if (options.tolerance == 'fit') { + hit = (selectee.left > x1 && selectee.right < x2 && selectee.top > y1 && selectee.bottom < y2); + } + + if (hit) { + // SELECT + if (selectee.selected) { + selectee.$element.removeClass('ui-selected'); + selectee.selected = false; + } + if (selectee.unselecting) { + selectee.$element.removeClass('ui-unselecting'); + selectee.unselecting = false; + } + if (!selectee.selecting) { + selectee.$element.addClass('ui-selecting'); + selectee.selecting = true; + // selectable SELECTING callback + self._trigger("selecting", event, { + selecting: selectee.element + }); + } + } else { + // UNSELECT + if (selectee.selecting) { + if (event.metaKey && selectee.startselected) { + selectee.$element.removeClass('ui-selecting'); + selectee.selecting = false; + selectee.$element.addClass('ui-selected'); + selectee.selected = true; + } else { + selectee.$element.removeClass('ui-selecting'); + selectee.selecting = false; + if (selectee.startselected) { + selectee.$element.addClass('ui-unselecting'); + selectee.unselecting = true; + } + // selectable UNSELECTING callback + self._trigger("unselecting", event, { + unselecting: selectee.element + }); + } + } + if (selectee.selected) { + if (!event.metaKey && !selectee.startselected) { + selectee.$element.removeClass('ui-selected'); + selectee.selected = false; + + selectee.$element.addClass('ui-unselecting'); + selectee.unselecting = true; + // selectable UNSELECTING callback + self._trigger("unselecting", event, { + unselecting: selectee.element + }); + } + } + } + }); + + return false; + }, + + _mouseStop: function(event) { + var self = this; + + this.dragged = false; + + var options = this.options; + + $('.ui-unselecting', this.element[0]).each(function() { + var selectee = $.data(this, "selectable-item"); + selectee.$element.removeClass('ui-unselecting'); + selectee.unselecting = false; + selectee.startselected = false; + self._trigger("unselected", event, { + unselected: selectee.element + }); + }); + $('.ui-selecting', this.element[0]).each(function() { + var selectee = $.data(this, "selectable-item"); + selectee.$element.removeClass('ui-selecting').addClass('ui-selected'); + selectee.selecting = false; + selectee.selected = true; + selectee.startselected = true; + self._trigger("selected", event, { + selected: selectee.element + }); + }); + this._trigger("stop", event); + + this.helper.remove(); + + return false; + } + +})); + +$.extend($.ui.selectable, { + version: "1.7.2", + defaults: { + appendTo: 'body', + autoRefresh: true, + cancel: ":input,option", + delay: 0, + distance: 0, + filter: '*', + tolerance: 'touch' + } +}); + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.slider.js b/media/js/development-bundle/ui/ui.slider.js new file mode 100644 index 0000000..f466a69 --- /dev/null +++ b/media/js/development-bundle/ui/ui.slider.js @@ -0,0 +1,558 @@ +/* + * jQuery UI Slider 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Slider + * + * Depends: + * ui.core.js + */ + +(function($) { + +$.widget("ui.slider", $.extend({}, $.ui.mouse, { + + _init: function() { + + var self = this, o = this.options; + this._keySliding = false; + this._handleIndex = null; + this._detectOrientation(); + this._mouseInit(); + + this.element + .addClass("ui-slider" + + " ui-slider-" + this.orientation + + " ui-widget" + + " ui-widget-content" + + " ui-corner-all"); + + this.range = $([]); + + if (o.range) { + + if (o.range === true) { + this.range = $('
'); + if (!o.values) o.values = [this._valueMin(), this._valueMin()]; + if (o.values.length && o.values.length != 2) { + o.values = [o.values[0], o.values[0]]; + } + } else { + this.range = $('
'); + } + + this.range + .appendTo(this.element) + .addClass("ui-slider-range"); + + if (o.range == "min" || o.range == "max") { + this.range.addClass("ui-slider-range-" + o.range); + } + + // note: this isn't the most fittingly semantic framework class for this element, + // but worked best visually with a variety of themes + this.range.addClass("ui-widget-header"); + + } + + if ($(".ui-slider-handle", this.element).length == 0) + $('
') + .appendTo(this.element) + .addClass("ui-slider-handle"); + + if (o.values && o.values.length) { + while ($(".ui-slider-handle", this.element).length < o.values.length) + $('') + .appendTo(this.element) + .addClass("ui-slider-handle"); + } + + this.handles = $(".ui-slider-handle", this.element) + .addClass("ui-state-default" + + " ui-corner-all"); + + this.handle = this.handles.eq(0); + + this.handles.add(this.range).filter("a") + .click(function(event) { + event.preventDefault(); + }) + .hover(function() { + if (!o.disabled) { + $(this).addClass('ui-state-hover'); + } + }, function() { + $(this).removeClass('ui-state-hover'); + }) + .focus(function() { + if (!o.disabled) { + $(".ui-slider .ui-state-focus").removeClass('ui-state-focus'); $(this).addClass('ui-state-focus'); + } else { + $(this).blur(); + } + }) + .blur(function() { + $(this).removeClass('ui-state-focus'); + }); + + this.handles.each(function(i) { + $(this).data("index.ui-slider-handle", i); + }); + + this.handles.keydown(function(event) { + + var ret = true; + + var index = $(this).data("index.ui-slider-handle"); + + if (self.options.disabled) + return; + + switch (event.keyCode) { + case $.ui.keyCode.HOME: + case $.ui.keyCode.END: + case $.ui.keyCode.UP: + case $.ui.keyCode.RIGHT: + case $.ui.keyCode.DOWN: + case $.ui.keyCode.LEFT: + ret = false; + if (!self._keySliding) { + self._keySliding = true; + $(this).addClass("ui-state-active"); + self._start(event, index); + } + break; + } + + var curVal, newVal, step = self._step(); + if (self.options.values && self.options.values.length) { + curVal = newVal = self.values(index); + } else { + curVal = newVal = self.value(); + } + + switch (event.keyCode) { + case $.ui.keyCode.HOME: + newVal = self._valueMin(); + break; + case $.ui.keyCode.END: + newVal = self._valueMax(); + break; + case $.ui.keyCode.UP: + case $.ui.keyCode.RIGHT: + if(curVal == self._valueMax()) return; + newVal = curVal + step; + break; + case $.ui.keyCode.DOWN: + case $.ui.keyCode.LEFT: + if(curVal == self._valueMin()) return; + newVal = curVal - step; + break; + } + + self._slide(event, index, newVal); + + return ret; + + }).keyup(function(event) { + + var index = $(this).data("index.ui-slider-handle"); + + if (self._keySliding) { + self._stop(event, index); + self._change(event, index); + self._keySliding = false; + $(this).removeClass("ui-state-active"); + } + + }); + + this._refreshValue(); + + }, + + destroy: function() { + + this.handles.remove(); + this.range.remove(); + + this.element + .removeClass("ui-slider" + + " ui-slider-horizontal" + + " ui-slider-vertical" + + " ui-slider-disabled" + + " ui-widget" + + " ui-widget-content" + + " ui-corner-all") + .removeData("slider") + .unbind(".slider"); + + this._mouseDestroy(); + + }, + + _mouseCapture: function(event) { + + var o = this.options; + + if (o.disabled) + return false; + + this.elementSize = { + width: this.element.outerWidth(), + height: this.element.outerHeight() + }; + this.elementOffset = this.element.offset(); + + var position = { x: event.pageX, y: event.pageY }; + var normValue = this._normValueFromMouse(position); + + var distance = this._valueMax() - this._valueMin() + 1, closestHandle; + var self = this, index; + this.handles.each(function(i) { + var thisDistance = Math.abs(normValue - self.values(i)); + if (distance > thisDistance) { + distance = thisDistance; + closestHandle = $(this); + index = i; + } + }); + + // workaround for bug #3736 (if both handles of a range are at 0, + // the first is always used as the one with least distance, + // and moving it is obviously prevented by preventing negative ranges) + if(o.range == true && this.values(1) == o.min) { + closestHandle = $(this.handles[++index]); + } + + this._start(event, index); + + self._handleIndex = index; + + closestHandle + .addClass("ui-state-active") + .focus(); + + var offset = closestHandle.offset(); + var mouseOverHandle = !$(event.target).parents().andSelf().is('.ui-slider-handle'); + this._clickOffset = mouseOverHandle ? { left: 0, top: 0 } : { + left: event.pageX - offset.left - (closestHandle.width() / 2), + top: event.pageY - offset.top + - (closestHandle.height() / 2) + - (parseInt(closestHandle.css('borderTopWidth'),10) || 0) + - (parseInt(closestHandle.css('borderBottomWidth'),10) || 0) + + (parseInt(closestHandle.css('marginTop'),10) || 0) + }; + + normValue = this._normValueFromMouse(position); + this._slide(event, index, normValue); + return true; + + }, + + _mouseStart: function(event) { + return true; + }, + + _mouseDrag: function(event) { + + var position = { x: event.pageX, y: event.pageY }; + var normValue = this._normValueFromMouse(position); + + this._slide(event, this._handleIndex, normValue); + + return false; + + }, + + _mouseStop: function(event) { + + this.handles.removeClass("ui-state-active"); + this._stop(event, this._handleIndex); + this._change(event, this._handleIndex); + this._handleIndex = null; + this._clickOffset = null; + + return false; + + }, + + _detectOrientation: function() { + this.orientation = this.options.orientation == 'vertical' ? 'vertical' : 'horizontal'; + }, + + _normValueFromMouse: function(position) { + + var pixelTotal, pixelMouse; + if ('horizontal' == this.orientation) { + pixelTotal = this.elementSize.width; + pixelMouse = position.x - this.elementOffset.left - (this._clickOffset ? this._clickOffset.left : 0); + } else { + pixelTotal = this.elementSize.height; + pixelMouse = position.y - this.elementOffset.top - (this._clickOffset ? this._clickOffset.top : 0); + } + + var percentMouse = (pixelMouse / pixelTotal); + if (percentMouse > 1) percentMouse = 1; + if (percentMouse < 0) percentMouse = 0; + if ('vertical' == this.orientation) + percentMouse = 1 - percentMouse; + + var valueTotal = this._valueMax() - this._valueMin(), + valueMouse = percentMouse * valueTotal, + valueMouseModStep = valueMouse % this.options.step, + normValue = this._valueMin() + valueMouse - valueMouseModStep; + + if (valueMouseModStep > (this.options.step / 2)) + normValue += this.options.step; + + // Since JavaScript has problems with large floats, round + // the final value to 5 digits after the decimal point (see #4124) + return parseFloat(normValue.toFixed(5)); + + }, + + _start: function(event, index) { + var uiHash = { + handle: this.handles[index], + value: this.value() + }; + if (this.options.values && this.options.values.length) { + uiHash.value = this.values(index); + uiHash.values = this.values(); + } + this._trigger("start", event, uiHash); + }, + + _slide: function(event, index, newVal) { + + var handle = this.handles[index]; + + if (this.options.values && this.options.values.length) { + + var otherVal = this.values(index ? 0 : 1); + + if ((this.options.values.length == 2 && this.options.range === true) && + ((index == 0 && newVal > otherVal) || (index == 1 && newVal < otherVal))){ + newVal = otherVal; + } + + if (newVal != this.values(index)) { + var newValues = this.values(); + newValues[index] = newVal; + // A slide can be canceled by returning false from the slide callback + var allowed = this._trigger("slide", event, { + handle: this.handles[index], + value: newVal, + values: newValues + }); + var otherVal = this.values(index ? 0 : 1); + if (allowed !== false) { + this.values(index, newVal, ( event.type == 'mousedown' && this.options.animate ), true); + } + } + + } else { + + if (newVal != this.value()) { + // A slide can be canceled by returning false from the slide callback + var allowed = this._trigger("slide", event, { + handle: this.handles[index], + value: newVal + }); + if (allowed !== false) { + this._setData('value', newVal, ( event.type == 'mousedown' && this.options.animate )); + } + + } + + } + + }, + + _stop: function(event, index) { + var uiHash = { + handle: this.handles[index], + value: this.value() + }; + if (this.options.values && this.options.values.length) { + uiHash.value = this.values(index); + uiHash.values = this.values(); + } + this._trigger("stop", event, uiHash); + }, + + _change: function(event, index) { + var uiHash = { + handle: this.handles[index], + value: this.value() + }; + if (this.options.values && this.options.values.length) { + uiHash.value = this.values(index); + uiHash.values = this.values(); + } + this._trigger("change", event, uiHash); + }, + + value: function(newValue) { + + if (arguments.length) { + this._setData("value", newValue); + this._change(null, 0); + } + + return this._value(); + + }, + + values: function(index, newValue, animated, noPropagation) { + + if (arguments.length > 1) { + this.options.values[index] = newValue; + this._refreshValue(animated); + if(!noPropagation) this._change(null, index); + } + + if (arguments.length) { + if (this.options.values && this.options.values.length) { + return this._values(index); + } else { + return this.value(); + } + } else { + return this._values(); + } + + }, + + _setData: function(key, value, animated) { + + $.widget.prototype._setData.apply(this, arguments); + + switch (key) { + case 'disabled': + if (value) { + this.handles.filter(".ui-state-focus").blur(); + this.handles.removeClass("ui-state-hover"); + this.handles.attr("disabled", "disabled"); + } else { + this.handles.removeAttr("disabled"); + } + case 'orientation': + + this._detectOrientation(); + + this.element + .removeClass("ui-slider-horizontal ui-slider-vertical") + .addClass("ui-slider-" + this.orientation); + this._refreshValue(animated); + break; + case 'value': + this._refreshValue(animated); + break; + } + + }, + + _step: function() { + var step = this.options.step; + return step; + }, + + _value: function() { + + var val = this.options.value; + if (val < this._valueMin()) val = this._valueMin(); + if (val > this._valueMax()) val = this._valueMax(); + + return val; + + }, + + _values: function(index) { + + if (arguments.length) { + var val = this.options.values[index]; + if (val < this._valueMin()) val = this._valueMin(); + if (val > this._valueMax()) val = this._valueMax(); + + return val; + } else { + return this.options.values; + } + + }, + + _valueMin: function() { + var valueMin = this.options.min; + return valueMin; + }, + + _valueMax: function() { + var valueMax = this.options.max; + return valueMax; + }, + + _refreshValue: function(animate) { + + var oRange = this.options.range, o = this.options, self = this; + + if (this.options.values && this.options.values.length) { + var vp0, vp1; + this.handles.each(function(i, j) { + var valPercent = (self.values(i) - self._valueMin()) / (self._valueMax() - self._valueMin()) * 100; + var _set = {}; _set[self.orientation == 'horizontal' ? 'left' : 'bottom'] = valPercent + '%'; + $(this).stop(1,1)[animate ? 'animate' : 'css'](_set, o.animate); + if (self.options.range === true) { + if (self.orientation == 'horizontal') { + (i == 0) && self.range.stop(1,1)[animate ? 'animate' : 'css']({ left: valPercent + '%' }, o.animate); + (i == 1) && self.range[animate ? 'animate' : 'css']({ width: (valPercent - lastValPercent) + '%' }, { queue: false, duration: o.animate }); + } else { + (i == 0) && self.range.stop(1,1)[animate ? 'animate' : 'css']({ bottom: (valPercent) + '%' }, o.animate); + (i == 1) && self.range[animate ? 'animate' : 'css']({ height: (valPercent - lastValPercent) + '%' }, { queue: false, duration: o.animate }); + } + } + lastValPercent = valPercent; + }); + } else { + var value = this.value(), + valueMin = this._valueMin(), + valueMax = this._valueMax(), + valPercent = valueMax != valueMin + ? (value - valueMin) / (valueMax - valueMin) * 100 + : 0; + var _set = {}; _set[self.orientation == 'horizontal' ? 'left' : 'bottom'] = valPercent + '%'; + this.handle.stop(1,1)[animate ? 'animate' : 'css'](_set, o.animate); + + (oRange == "min") && (this.orientation == "horizontal") && this.range.stop(1,1)[animate ? 'animate' : 'css']({ width: valPercent + '%' }, o.animate); + (oRange == "max") && (this.orientation == "horizontal") && this.range[animate ? 'animate' : 'css']({ width: (100 - valPercent) + '%' }, { queue: false, duration: o.animate }); + (oRange == "min") && (this.orientation == "vertical") && this.range.stop(1,1)[animate ? 'animate' : 'css']({ height: valPercent + '%' }, o.animate); + (oRange == "max") && (this.orientation == "vertical") && this.range[animate ? 'animate' : 'css']({ height: (100 - valPercent) + '%' }, { queue: false, duration: o.animate }); + } + + } + +})); + +$.extend($.ui.slider, { + getter: "value values", + version: "1.7.2", + eventPrefix: "slide", + defaults: { + animate: false, + delay: 0, + distance: 0, + max: 100, + min: 0, + orientation: 'horizontal', + range: false, + step: 1, + value: 0, + values: null + } +}); + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.sortable.js b/media/js/development-bundle/ui/ui.sortable.js new file mode 100644 index 0000000..5460850 --- /dev/null +++ b/media/js/development-bundle/ui/ui.sortable.js @@ -0,0 +1,1019 @@ +/* + * jQuery UI Sortable 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Sortables + * + * Depends: + * ui.core.js + */ +(function($) { + +$.widget("ui.sortable", $.extend({}, $.ui.mouse, { + _init: function() { + + var o = this.options; + this.containerCache = {}; + this.element.addClass("ui-sortable"); + + //Get the items + this.refresh(); + + //Let's determine if the items are floating + this.floating = this.items.length ? (/left|right/).test(this.items[0].item.css('float')) : false; + + //Let's determine the parent's offset + this.offset = this.element.offset(); + + //Initialize mouse events for interaction + this._mouseInit(); + + }, + + destroy: function() { + this.element + .removeClass("ui-sortable ui-sortable-disabled") + .removeData("sortable") + .unbind(".sortable"); + this._mouseDestroy(); + + for ( var i = this.items.length - 1; i >= 0; i-- ) + this.items[i].item.removeData("sortable-item"); + }, + + _mouseCapture: function(event, overrideHandle) { + + if (this.reverting) { + return false; + } + + if(this.options.disabled || this.options.type == 'static') return false; + + //We have to refresh the items data once first + this._refreshItems(event); + + //Find out if the clicked node (or one of its parents) is a actual item in this.items + var currentItem = null, self = this, nodes = $(event.target).parents().each(function() { + if($.data(this, 'sortable-item') == self) { + currentItem = $(this); + return false; + } + }); + if($.data(event.target, 'sortable-item') == self) currentItem = $(event.target); + + if(!currentItem) return false; + if(this.options.handle && !overrideHandle) { + var validHandle = false; + + $(this.options.handle, currentItem).find("*").andSelf().each(function() { if(this == event.target) validHandle = true; }); + if(!validHandle) return false; + } + + this.currentItem = currentItem; + this._removeCurrentsFromItems(); + return true; + + }, + + _mouseStart: function(event, overrideHandle, noActivation) { + + var o = this.options, self = this; + this.currentContainer = this; + + //We only need to call refreshPositions, because the refreshItems call has been moved to mouseCapture + this.refreshPositions(); + + //Create and append the visible helper + this.helper = this._createHelper(event); + + //Cache the helper size + this._cacheHelperProportions(); + + /* + * - Position generation - + * This block generates everything position related - it's the core of draggables. + */ + + //Cache the margins of the original element + this._cacheMargins(); + + //Get the next scrolling parent + this.scrollParent = this.helper.scrollParent(); + + //The element's absolute position on the page minus margins + this.offset = this.currentItem.offset(); + this.offset = { + top: this.offset.top - this.margins.top, + left: this.offset.left - this.margins.left + }; + + // Only after we got the offset, we can change the helper's position to absolute + // TODO: Still need to figure out a way to make relative sorting possible + this.helper.css("position", "absolute"); + this.cssPosition = this.helper.css("position"); + + $.extend(this.offset, { + click: { //Where the click happened, relative to the element + left: event.pageX - this.offset.left, + top: event.pageY - this.offset.top + }, + parent: this._getParentOffset(), + relative: this._getRelativeOffset() //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helper + }); + + //Generate the original position + this.originalPosition = this._generatePosition(event); + this.originalPageX = event.pageX; + this.originalPageY = event.pageY; + + //Adjust the mouse offset relative to the helper if 'cursorAt' is supplied + if(o.cursorAt) + this._adjustOffsetFromHelper(o.cursorAt); + + //Cache the former DOM position + this.domPosition = { prev: this.currentItem.prev()[0], parent: this.currentItem.parent()[0] }; + + //If the helper is not the original, hide the original so it's not playing any role during the drag, won't cause anything bad this way + if(this.helper[0] != this.currentItem[0]) { + this.currentItem.hide(); + } + + //Create the placeholder + this._createPlaceholder(); + + //Set a containment if given in the options + if(o.containment) + this._setContainment(); + + if(o.cursor) { // cursor option + if ($('body').css("cursor")) this._storedCursor = $('body').css("cursor"); + $('body').css("cursor", o.cursor); + } + + if(o.opacity) { // opacity option + if (this.helper.css("opacity")) this._storedOpacity = this.helper.css("opacity"); + this.helper.css("opacity", o.opacity); + } + + if(o.zIndex) { // zIndex option + if (this.helper.css("zIndex")) this._storedZIndex = this.helper.css("zIndex"); + this.helper.css("zIndex", o.zIndex); + } + + //Prepare scrolling + if(this.scrollParent[0] != document && this.scrollParent[0].tagName != 'HTML') + this.overflowOffset = this.scrollParent.offset(); + + //Call callbacks + this._trigger("start", event, this._uiHash()); + + //Recache the helper size + if(!this._preserveHelperProportions) + this._cacheHelperProportions(); + + + //Post 'activate' events to possible containers + if(!noActivation) { + for (var i = this.containers.length - 1; i >= 0; i--) { this.containers[i]._trigger("activate", event, self._uiHash(this)); } + } + + //Prepare possible droppables + if($.ui.ddmanager) + $.ui.ddmanager.current = this; + + if ($.ui.ddmanager && !o.dropBehaviour) + $.ui.ddmanager.prepareOffsets(this, event); + + this.dragging = true; + + this.helper.addClass("ui-sortable-helper"); + this._mouseDrag(event); //Execute the drag once - this causes the helper not to be visible before getting its correct position + return true; + + }, + + _mouseDrag: function(event) { + + //Compute the helpers position + this.position = this._generatePosition(event); + this.positionAbs = this._convertPositionTo("absolute"); + + if (!this.lastPositionAbs) { + this.lastPositionAbs = this.positionAbs; + } + + //Do scrolling + if(this.options.scroll) { + var o = this.options, scrolled = false; + if(this.scrollParent[0] != document && this.scrollParent[0].tagName != 'HTML') { + + if((this.overflowOffset.top + this.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) + this.scrollParent[0].scrollTop = scrolled = this.scrollParent[0].scrollTop + o.scrollSpeed; + else if(event.pageY - this.overflowOffset.top < o.scrollSensitivity) + this.scrollParent[0].scrollTop = scrolled = this.scrollParent[0].scrollTop - o.scrollSpeed; + + if((this.overflowOffset.left + this.scrollParent[0].offsetWidth) - event.pageX < o.scrollSensitivity) + this.scrollParent[0].scrollLeft = scrolled = this.scrollParent[0].scrollLeft + o.scrollSpeed; + else if(event.pageX - this.overflowOffset.left < o.scrollSensitivity) + this.scrollParent[0].scrollLeft = scrolled = this.scrollParent[0].scrollLeft - o.scrollSpeed; + + } else { + + if(event.pageY - $(document).scrollTop() < o.scrollSensitivity) + scrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed); + else if($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) + scrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed); + + if(event.pageX - $(document).scrollLeft() < o.scrollSensitivity) + scrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed); + else if($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) + scrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed); + + } + + if(scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) + $.ui.ddmanager.prepareOffsets(this, event); + } + + //Regenerate the absolute position used for position checks + this.positionAbs = this._convertPositionTo("absolute"); + + //Set the helper position + if(!this.options.axis || this.options.axis != "y") this.helper[0].style.left = this.position.left+'px'; + if(!this.options.axis || this.options.axis != "x") this.helper[0].style.top = this.position.top+'px'; + + //Rearrange + for (var i = this.items.length - 1; i >= 0; i--) { + + //Cache variables and intersection, continue if no intersection + var item = this.items[i], itemElement = item.item[0], intersection = this._intersectsWithPointer(item); + if (!intersection) continue; + + if(itemElement != this.currentItem[0] //cannot intersect with itself + && this.placeholder[intersection == 1 ? "next" : "prev"]()[0] != itemElement //no useless actions that have been done before + && !$.ui.contains(this.placeholder[0], itemElement) //no action if the item moved is the parent of the item checked + && (this.options.type == 'semi-dynamic' ? !$.ui.contains(this.element[0], itemElement) : true) + ) { + + this.direction = intersection == 1 ? "down" : "up"; + + if (this.options.tolerance == "pointer" || this._intersectsWithSides(item)) { + this._rearrange(event, item); + } else { + break; + } + + this._trigger("change", event, this._uiHash()); + break; + } + } + + //Post events to containers + this._contactContainers(event); + + //Interconnect with droppables + if($.ui.ddmanager) $.ui.ddmanager.drag(this, event); + + //Call callbacks + this._trigger('sort', event, this._uiHash()); + + this.lastPositionAbs = this.positionAbs; + return false; + + }, + + _mouseStop: function(event, noPropagation) { + + if(!event) return; + + //If we are using droppables, inform the manager about the drop + if ($.ui.ddmanager && !this.options.dropBehaviour) + $.ui.ddmanager.drop(this, event); + + if(this.options.revert) { + var self = this; + var cur = self.placeholder.offset(); + + self.reverting = true; + + $(this.helper).animate({ + left: cur.left - this.offset.parent.left - self.margins.left + (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollLeft), + top: cur.top - this.offset.parent.top - self.margins.top + (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollTop) + }, parseInt(this.options.revert, 10) || 500, function() { + self._clear(event); + }); + } else { + this._clear(event, noPropagation); + } + + return false; + + }, + + cancel: function() { + + var self = this; + + if(this.dragging) { + + this._mouseUp(); + + if(this.options.helper == "original") + this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"); + else + this.currentItem.show(); + + //Post deactivating events to containers + for (var i = this.containers.length - 1; i >= 0; i--){ + this.containers[i]._trigger("deactivate", null, self._uiHash(this)); + if(this.containers[i].containerCache.over) { + this.containers[i]._trigger("out", null, self._uiHash(this)); + this.containers[i].containerCache.over = 0; + } + } + + } + + //$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately, it unbinds ALL events from the original node! + if(this.placeholder[0].parentNode) this.placeholder[0].parentNode.removeChild(this.placeholder[0]); + if(this.options.helper != "original" && this.helper && this.helper[0].parentNode) this.helper.remove(); + + $.extend(this, { + helper: null, + dragging: false, + reverting: false, + _noFinalSort: null + }); + + if(this.domPosition.prev) { + $(this.domPosition.prev).after(this.currentItem); + } else { + $(this.domPosition.parent).prepend(this.currentItem); + } + + return true; + + }, + + serialize: function(o) { + + var items = this._getItemsAsjQuery(o && o.connected); + var str = []; o = o || {}; + + $(items).each(function() { + var res = ($(o.item || this).attr(o.attribute || 'id') || '').match(o.expression || (/(.+)[-=_](.+)/)); + if(res) str.push((o.key || res[1]+'[]')+'='+(o.key && o.expression ? res[1] : res[2])); + }); + + return str.join('&'); + + }, + + toArray: function(o) { + + var items = this._getItemsAsjQuery(o && o.connected); + var ret = []; o = o || {}; + + items.each(function() { ret.push($(o.item || this).attr(o.attribute || 'id') || ''); }); + return ret; + + }, + + /* Be careful with the following core functions */ + _intersectsWith: function(item) { + + var x1 = this.positionAbs.left, + x2 = x1 + this.helperProportions.width, + y1 = this.positionAbs.top, + y2 = y1 + this.helperProportions.height; + + var l = item.left, + r = l + item.width, + t = item.top, + b = t + item.height; + + var dyClick = this.offset.click.top, + dxClick = this.offset.click.left; + + var isOverElement = (y1 + dyClick) > t && (y1 + dyClick) < b && (x1 + dxClick) > l && (x1 + dxClick) < r; + + if( this.options.tolerance == "pointer" + || this.options.forcePointerForContainers + || (this.options.tolerance != "pointer" && this.helperProportions[this.floating ? 'width' : 'height'] > item[this.floating ? 'width' : 'height']) + ) { + return isOverElement; + } else { + + return (l < x1 + (this.helperProportions.width / 2) // Right Half + && x2 - (this.helperProportions.width / 2) < r // Left Half + && t < y1 + (this.helperProportions.height / 2) // Bottom Half + && y2 - (this.helperProportions.height / 2) < b ); // Top Half + + } + }, + + _intersectsWithPointer: function(item) { + + var isOverElementHeight = $.ui.isOverAxis(this.positionAbs.top + this.offset.click.top, item.top, item.height), + isOverElementWidth = $.ui.isOverAxis(this.positionAbs.left + this.offset.click.left, item.left, item.width), + isOverElement = isOverElementHeight && isOverElementWidth, + verticalDirection = this._getDragVerticalDirection(), + horizontalDirection = this._getDragHorizontalDirection(); + + if (!isOverElement) + return false; + + return this.floating ? + ( ((horizontalDirection && horizontalDirection == "right") || verticalDirection == "down") ? 2 : 1 ) + : ( verticalDirection && (verticalDirection == "down" ? 2 : 1) ); + + }, + + _intersectsWithSides: function(item) { + + var isOverBottomHalf = $.ui.isOverAxis(this.positionAbs.top + this.offset.click.top, item.top + (item.height/2), item.height), + isOverRightHalf = $.ui.isOverAxis(this.positionAbs.left + this.offset.click.left, item.left + (item.width/2), item.width), + verticalDirection = this._getDragVerticalDirection(), + horizontalDirection = this._getDragHorizontalDirection(); + + if (this.floating && horizontalDirection) { + return ((horizontalDirection == "right" && isOverRightHalf) || (horizontalDirection == "left" && !isOverRightHalf)); + } else { + return verticalDirection && ((verticalDirection == "down" && isOverBottomHalf) || (verticalDirection == "up" && !isOverBottomHalf)); + } + + }, + + _getDragVerticalDirection: function() { + var delta = this.positionAbs.top - this.lastPositionAbs.top; + return delta != 0 && (delta > 0 ? "down" : "up"); + }, + + _getDragHorizontalDirection: function() { + var delta = this.positionAbs.left - this.lastPositionAbs.left; + return delta != 0 && (delta > 0 ? "right" : "left"); + }, + + refresh: function(event) { + this._refreshItems(event); + this.refreshPositions(); + }, + + _connectWith: function() { + var options = this.options; + return options.connectWith.constructor == String + ? [options.connectWith] + : options.connectWith; + }, + + _getItemsAsjQuery: function(connected) { + + var self = this; + var items = []; + var queries = []; + var connectWith = this._connectWith(); + + if(connectWith && connected) { + for (var i = connectWith.length - 1; i >= 0; i--){ + var cur = $(connectWith[i]); + for (var j = cur.length - 1; j >= 0; j--){ + var inst = $.data(cur[j], 'sortable'); + if(inst && inst != this && !inst.options.disabled) { + queries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element) : $(inst.options.items, inst.element).not(".ui-sortable-helper"), inst]); + } + }; + }; + } + + queries.push([$.isFunction(this.options.items) ? this.options.items.call(this.element, null, { options: this.options, item: this.currentItem }) : $(this.options.items, this.element).not(".ui-sortable-helper"), this]); + + for (var i = queries.length - 1; i >= 0; i--){ + queries[i][0].each(function() { + items.push(this); + }); + }; + + return $(items); + + }, + + _removeCurrentsFromItems: function() { + + var list = this.currentItem.find(":data(sortable-item)"); + + for (var i=0; i < this.items.length; i++) { + + for (var j=0; j < list.length; j++) { + if(list[j] == this.items[i].item[0]) + this.items.splice(i,1); + }; + + }; + + }, + + _refreshItems: function(event) { + + this.items = []; + this.containers = [this]; + var items = this.items; + var self = this; + var queries = [[$.isFunction(this.options.items) ? this.options.items.call(this.element[0], event, { item: this.currentItem }) : $(this.options.items, this.element), this]]; + var connectWith = this._connectWith(); + + if(connectWith) { + for (var i = connectWith.length - 1; i >= 0; i--){ + var cur = $(connectWith[i]); + for (var j = cur.length - 1; j >= 0; j--){ + var inst = $.data(cur[j], 'sortable'); + if(inst && inst != this && !inst.options.disabled) { + queries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element[0], event, { item: this.currentItem }) : $(inst.options.items, inst.element), inst]); + this.containers.push(inst); + } + }; + }; + } + + for (var i = queries.length - 1; i >= 0; i--) { + var targetData = queries[i][1]; + var _queries = queries[i][0]; + + for (var j=0, queriesLength = _queries.length; j < queriesLength; j++) { + var item = $(_queries[j]); + + item.data('sortable-item', targetData); // Data for target checking (mouse manager) + + items.push({ + item: item, + instance: targetData, + width: 0, height: 0, + left: 0, top: 0 + }); + }; + }; + + }, + + refreshPositions: function(fast) { + + //This has to be redone because due to the item being moved out/into the offsetParent, the offsetParent's position will change + if(this.offsetParent && this.helper) { + this.offset.parent = this._getParentOffset(); + } + + for (var i = this.items.length - 1; i >= 0; i--){ + var item = this.items[i]; + + //We ignore calculating positions of all connected containers when we're not over them + if(item.instance != this.currentContainer && this.currentContainer && item.item[0] != this.currentItem[0]) + continue; + + var t = this.options.toleranceElement ? $(this.options.toleranceElement, item.item) : item.item; + + if (!fast) { + item.width = t.outerWidth(); + item.height = t.outerHeight(); + } + + var p = t.offset(); + item.left = p.left; + item.top = p.top; + }; + + if(this.options.custom && this.options.custom.refreshContainers) { + this.options.custom.refreshContainers.call(this); + } else { + for (var i = this.containers.length - 1; i >= 0; i--){ + var p = this.containers[i].element.offset(); + this.containers[i].containerCache.left = p.left; + this.containers[i].containerCache.top = p.top; + this.containers[i].containerCache.width = this.containers[i].element.outerWidth(); + this.containers[i].containerCache.height = this.containers[i].element.outerHeight(); + }; + } + + }, + + _createPlaceholder: function(that) { + + var self = that || this, o = self.options; + + if(!o.placeholder || o.placeholder.constructor == String) { + var className = o.placeholder; + o.placeholder = { + element: function() { + + var el = $(document.createElement(self.currentItem[0].nodeName)) + .addClass(className || self.currentItem[0].className+" ui-sortable-placeholder") + .removeClass("ui-sortable-helper")[0]; + + if(!className) + el.style.visibility = "hidden"; + + return el; + }, + update: function(container, p) { + + // 1. If a className is set as 'placeholder option, we don't force sizes - the class is responsible for that + // 2. The option 'forcePlaceholderSize can be enabled to force it even if a class name is specified + if(className && !o.forcePlaceholderSize) return; + + //If the element doesn't have a actual height by itself (without styles coming from a stylesheet), it receives the inline height from the dragged item + if(!p.height()) { p.height(self.currentItem.innerHeight() - parseInt(self.currentItem.css('paddingTop')||0, 10) - parseInt(self.currentItem.css('paddingBottom')||0, 10)); }; + if(!p.width()) { p.width(self.currentItem.innerWidth() - parseInt(self.currentItem.css('paddingLeft')||0, 10) - parseInt(self.currentItem.css('paddingRight')||0, 10)); }; + } + }; + } + + //Create the placeholder + self.placeholder = $(o.placeholder.element.call(self.element, self.currentItem)); + + //Append it after the actual current item + self.currentItem.after(self.placeholder); + + //Update the size of the placeholder (TODO: Logic to fuzzy, see line 316/317) + o.placeholder.update(self, self.placeholder); + + }, + + _contactContainers: function(event) { + for (var i = this.containers.length - 1; i >= 0; i--){ + + if(this._intersectsWith(this.containers[i].containerCache)) { + if(!this.containers[i].containerCache.over) { + + if(this.currentContainer != this.containers[i]) { + + //When entering a new container, we will find the item with the least distance and append our item near it + var dist = 10000; var itemWithLeastDistance = null; var base = this.positionAbs[this.containers[i].floating ? 'left' : 'top']; + for (var j = this.items.length - 1; j >= 0; j--) { + if(!$.ui.contains(this.containers[i].element[0], this.items[j].item[0])) continue; + var cur = this.items[j][this.containers[i].floating ? 'left' : 'top']; + if(Math.abs(cur - base) < dist) { + dist = Math.abs(cur - base); itemWithLeastDistance = this.items[j]; + } + } + + if(!itemWithLeastDistance && !this.options.dropOnEmpty) //Check if dropOnEmpty is enabled + continue; + + this.currentContainer = this.containers[i]; + itemWithLeastDistance ? this._rearrange(event, itemWithLeastDistance, null, true) : this._rearrange(event, null, this.containers[i].element, true); + this._trigger("change", event, this._uiHash()); + this.containers[i]._trigger("change", event, this._uiHash(this)); + + //Update the placeholder + this.options.placeholder.update(this.currentContainer, this.placeholder); + + } + + this.containers[i]._trigger("over", event, this._uiHash(this)); + this.containers[i].containerCache.over = 1; + } + } else { + if(this.containers[i].containerCache.over) { + this.containers[i]._trigger("out", event, this._uiHash(this)); + this.containers[i].containerCache.over = 0; + } + } + + }; + }, + + _createHelper: function(event) { + + var o = this.options; + var helper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [event, this.currentItem])) : (o.helper == 'clone' ? this.currentItem.clone() : this.currentItem); + + if(!helper.parents('body').length) //Add the helper to the DOM if that didn't happen already + $(o.appendTo != 'parent' ? o.appendTo : this.currentItem[0].parentNode)[0].appendChild(helper[0]); + + if(helper[0] == this.currentItem[0]) + this._storedCSS = { width: this.currentItem[0].style.width, height: this.currentItem[0].style.height, position: this.currentItem.css("position"), top: this.currentItem.css("top"), left: this.currentItem.css("left") }; + + if(helper[0].style.width == '' || o.forceHelperSize) helper.width(this.currentItem.width()); + if(helper[0].style.height == '' || o.forceHelperSize) helper.height(this.currentItem.height()); + + return helper; + + }, + + _adjustOffsetFromHelper: function(obj) { + if(obj.left != undefined) this.offset.click.left = obj.left + this.margins.left; + if(obj.right != undefined) this.offset.click.left = this.helperProportions.width - obj.right + this.margins.left; + if(obj.top != undefined) this.offset.click.top = obj.top + this.margins.top; + if(obj.bottom != undefined) this.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top; + }, + + _getParentOffset: function() { + + + //Get the offsetParent and cache its position + this.offsetParent = this.helper.offsetParent(); + var po = this.offsetParent.offset(); + + // This is a special case where we need to modify a offset calculated on start, since the following happened: + // 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent + // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that + // the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag + if(this.cssPosition == 'absolute' && this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) { + po.left += this.scrollParent.scrollLeft(); + po.top += this.scrollParent.scrollTop(); + } + + if((this.offsetParent[0] == document.body) //This needs to be actually done for all browsers, since pageX/pageY includes this information + || (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() == 'html' && $.browser.msie)) //Ugly IE fix + po = { top: 0, left: 0 }; + + return { + top: po.top + (parseInt(this.offsetParent.css("borderTopWidth"),10) || 0), + left: po.left + (parseInt(this.offsetParent.css("borderLeftWidth"),10) || 0) + }; + + }, + + _getRelativeOffset: function() { + + if(this.cssPosition == "relative") { + var p = this.currentItem.position(); + return { + top: p.top - (parseInt(this.helper.css("top"),10) || 0) + this.scrollParent.scrollTop(), + left: p.left - (parseInt(this.helper.css("left"),10) || 0) + this.scrollParent.scrollLeft() + }; + } else { + return { top: 0, left: 0 }; + } + + }, + + _cacheMargins: function() { + this.margins = { + left: (parseInt(this.currentItem.css("marginLeft"),10) || 0), + top: (parseInt(this.currentItem.css("marginTop"),10) || 0) + }; + }, + + _cacheHelperProportions: function() { + this.helperProportions = { + width: this.helper.outerWidth(), + height: this.helper.outerHeight() + }; + }, + + _setContainment: function() { + + var o = this.options; + if(o.containment == 'parent') o.containment = this.helper[0].parentNode; + if(o.containment == 'document' || o.containment == 'window') this.containment = [ + 0 - this.offset.relative.left - this.offset.parent.left, + 0 - this.offset.relative.top - this.offset.parent.top, + $(o.containment == 'document' ? document : window).width() - this.helperProportions.width - this.margins.left, + ($(o.containment == 'document' ? document : window).height() || document.body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top + ]; + + if(!(/^(document|window|parent)$/).test(o.containment)) { + var ce = $(o.containment)[0]; + var co = $(o.containment).offset(); + var over = ($(ce).css("overflow") != 'hidden'); + + this.containment = [ + co.left + (parseInt($(ce).css("borderLeftWidth"),10) || 0) + (parseInt($(ce).css("paddingLeft"),10) || 0) - this.margins.left, + co.top + (parseInt($(ce).css("borderTopWidth"),10) || 0) + (parseInt($(ce).css("paddingTop"),10) || 0) - this.margins.top, + co.left+(over ? Math.max(ce.scrollWidth,ce.offsetWidth) : ce.offsetWidth) - (parseInt($(ce).css("borderLeftWidth"),10) || 0) - (parseInt($(ce).css("paddingRight"),10) || 0) - this.helperProportions.width - this.margins.left, + co.top+(over ? Math.max(ce.scrollHeight,ce.offsetHeight) : ce.offsetHeight) - (parseInt($(ce).css("borderTopWidth"),10) || 0) - (parseInt($(ce).css("paddingBottom"),10) || 0) - this.helperProportions.height - this.margins.top + ]; + } + + }, + + _convertPositionTo: function(d, pos) { + + if(!pos) pos = this.position; + var mod = d == "absolute" ? 1 : -1; + var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); + + return { + top: ( + pos.top // The absolute mouse position + + this.offset.relative.top * mod // Only for relative positioned nodes: Relative offset from element to offset parent + + this.offset.parent.top * mod // The offsetParent's offset without borders (offset + border) + - ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ) * mod) + ), + left: ( + pos.left // The absolute mouse position + + this.offset.relative.left * mod // Only for relative positioned nodes: Relative offset from element to offset parent + + this.offset.parent.left * mod // The offsetParent's offset without borders (offset + border) + - ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ) * mod) + ) + }; + + }, + + _generatePosition: function(event) { + + var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); + + // This is another very weird special case that only happens for relative elements: + // 1. If the css position is relative + // 2. and the scroll parent is the document or similar to the offset parent + // we have to refresh the relative offset during the scroll so there are no jumps + if(this.cssPosition == 'relative' && !(this.scrollParent[0] != document && this.scrollParent[0] != this.offsetParent[0])) { + this.offset.relative = this._getRelativeOffset(); + } + + var pageX = event.pageX; + var pageY = event.pageY; + + /* + * - Position constraining - + * Constrain the position to a mix of grid, containment. + */ + + if(this.originalPosition) { //If we are not dragging yet, we won't check for options + + if(this.containment) { + if(event.pageX - this.offset.click.left < this.containment[0]) pageX = this.containment[0] + this.offset.click.left; + if(event.pageY - this.offset.click.top < this.containment[1]) pageY = this.containment[1] + this.offset.click.top; + if(event.pageX - this.offset.click.left > this.containment[2]) pageX = this.containment[2] + this.offset.click.left; + if(event.pageY - this.offset.click.top > this.containment[3]) pageY = this.containment[3] + this.offset.click.top; + } + + if(o.grid) { + var top = this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1]; + pageY = this.containment ? (!(top - this.offset.click.top < this.containment[1] || top - this.offset.click.top > this.containment[3]) ? top : (!(top - this.offset.click.top < this.containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top; + + var left = this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0]; + pageX = this.containment ? (!(left - this.offset.click.left < this.containment[0] || left - this.offset.click.left > this.containment[2]) ? left : (!(left - this.offset.click.left < this.containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left; + } + + } + + return { + top: ( + pageY // The absolute mouse position + - this.offset.click.top // Click offset (relative to the element) + - this.offset.relative.top // Only for relative positioned nodes: Relative offset from element to offset parent + - this.offset.parent.top // The offsetParent's offset without borders (offset + border) + + ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) )) + ), + left: ( + pageX // The absolute mouse position + - this.offset.click.left // Click offset (relative to the element) + - this.offset.relative.left // Only for relative positioned nodes: Relative offset from element to offset parent + - this.offset.parent.left // The offsetParent's offset without borders (offset + border) + + ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() )) + ) + }; + + }, + + _rearrange: function(event, i, a, hardRefresh) { + + a ? a[0].appendChild(this.placeholder[0]) : i.item[0].parentNode.insertBefore(this.placeholder[0], (this.direction == 'down' ? i.item[0] : i.item[0].nextSibling)); + + //Various things done here to improve the performance: + // 1. we create a setTimeout, that calls refreshPositions + // 2. on the instance, we have a counter variable, that get's higher after every append + // 3. on the local scope, we copy the counter variable, and check in the timeout, if it's still the same + // 4. this lets only the last addition to the timeout stack through + this.counter = this.counter ? ++this.counter : 1; + var self = this, counter = this.counter; + + window.setTimeout(function() { + if(counter == self.counter) self.refreshPositions(!hardRefresh); //Precompute after each DOM insertion, NOT on mousemove + },0); + + }, + + _clear: function(event, noPropagation) { + + this.reverting = false; + // We delay all events that have to be triggered to after the point where the placeholder has been removed and + // everything else normalized again + var delayedTriggers = [], self = this; + + // We first have to update the dom position of the actual currentItem + // Note: don't do it if the current item is already removed (by a user), or it gets reappended (see #4088) + if(!this._noFinalSort && this.currentItem[0].parentNode) this.placeholder.before(this.currentItem); + this._noFinalSort = null; + + if(this.helper[0] == this.currentItem[0]) { + for(var i in this._storedCSS) { + if(this._storedCSS[i] == 'auto' || this._storedCSS[i] == 'static') this._storedCSS[i] = ''; + } + this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"); + } else { + this.currentItem.show(); + } + + if(this.fromOutside && !noPropagation) delayedTriggers.push(function(event) { this._trigger("receive", event, this._uiHash(this.fromOutside)); }); + if((this.fromOutside || this.domPosition.prev != this.currentItem.prev().not(".ui-sortable-helper")[0] || this.domPosition.parent != this.currentItem.parent()[0]) && !noPropagation) delayedTriggers.push(function(event) { this._trigger("update", event, this._uiHash()); }); //Trigger update callback if the DOM position has changed + if(!$.ui.contains(this.element[0], this.currentItem[0])) { //Node was moved out of the current element + if(!noPropagation) delayedTriggers.push(function(event) { this._trigger("remove", event, this._uiHash()); }); + for (var i = this.containers.length - 1; i >= 0; i--){ + if($.ui.contains(this.containers[i].element[0], this.currentItem[0]) && !noPropagation) { + delayedTriggers.push((function(c) { return function(event) { c._trigger("receive", event, this._uiHash(this)); }; }).call(this, this.containers[i])); + delayedTriggers.push((function(c) { return function(event) { c._trigger("update", event, this._uiHash(this)); }; }).call(this, this.containers[i])); + } + }; + }; + + //Post events to containers + for (var i = this.containers.length - 1; i >= 0; i--){ + if(!noPropagation) delayedTriggers.push((function(c) { return function(event) { c._trigger("deactivate", event, this._uiHash(this)); }; }).call(this, this.containers[i])); + if(this.containers[i].containerCache.over) { + delayedTriggers.push((function(c) { return function(event) { c._trigger("out", event, this._uiHash(this)); }; }).call(this, this.containers[i])); + this.containers[i].containerCache.over = 0; + } + } + + //Do what was originally in plugins + if(this._storedCursor) $('body').css("cursor", this._storedCursor); //Reset cursor + if(this._storedOpacity) this.helper.css("opacity", this._storedOpacity); //Reset cursor + if(this._storedZIndex) this.helper.css("zIndex", this._storedZIndex == 'auto' ? '' : this._storedZIndex); //Reset z-index + + this.dragging = false; + if(this.cancelHelperRemoval) { + if(!noPropagation) { + this._trigger("beforeStop", event, this._uiHash()); + for (var i=0; i < delayedTriggers.length; i++) { delayedTriggers[i].call(this, event); }; //Trigger all delayed events + this._trigger("stop", event, this._uiHash()); + } + return false; + } + + if(!noPropagation) this._trigger("beforeStop", event, this._uiHash()); + + //$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately, it unbinds ALL events from the original node! + this.placeholder[0].parentNode.removeChild(this.placeholder[0]); + + if(this.helper[0] != this.currentItem[0]) this.helper.remove(); this.helper = null; + + if(!noPropagation) { + for (var i=0; i < delayedTriggers.length; i++) { delayedTriggers[i].call(this, event); }; //Trigger all delayed events + this._trigger("stop", event, this._uiHash()); + } + + this.fromOutside = false; + return true; + + }, + + _trigger: function() { + if ($.widget.prototype._trigger.apply(this, arguments) === false) { + this.cancel(); + } + }, + + _uiHash: function(inst) { + var self = inst || this; + return { + helper: self.helper, + placeholder: self.placeholder || $([]), + position: self.position, + absolutePosition: self.positionAbs, //deprecated + offset: self.positionAbs, + item: self.currentItem, + sender: inst ? inst.element : null + }; + } + +})); + +$.extend($.ui.sortable, { + getter: "serialize toArray", + version: "1.7.2", + eventPrefix: "sort", + defaults: { + appendTo: "parent", + axis: false, + cancel: ":input,option", + connectWith: false, + containment: false, + cursor: 'auto', + cursorAt: false, + delay: 0, + distance: 1, + dropOnEmpty: true, + forcePlaceholderSize: false, + forceHelperSize: false, + grid: false, + handle: false, + helper: "original", + items: '> *', + opacity: false, + placeholder: false, + revert: false, + scroll: true, + scrollSensitivity: 20, + scrollSpeed: 20, + scope: "default", + tolerance: "intersect", + zIndex: 1000 + } +}); + +})(jQuery); diff --git a/media/js/development-bundle/ui/ui.tabs.js b/media/js/development-bundle/ui/ui.tabs.js new file mode 100644 index 0000000..d914b3e --- /dev/null +++ b/media/js/development-bundle/ui/ui.tabs.js @@ -0,0 +1,685 @@ +/* + * jQuery UI Tabs 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Tabs + * + * Depends: + * ui.core.js + */ +(function($) { + +$.widget("ui.tabs", { + + _init: function() { + if (this.options.deselectable !== undefined) { + this.options.collapsible = this.options.deselectable; + } + this._tabify(true); + }, + + _setData: function(key, value) { + if (key == 'selected') { + if (this.options.collapsible && value == this.options.selected) { + return; + } + this.select(value); + } + else { + this.options[key] = value; + if (key == 'deselectable') { + this.options.collapsible = value; + } + this._tabify(); + } + }, + + _tabId: function(a) { + return a.title && a.title.replace(/\s/g, '_').replace(/[^A-Za-z0-9\-_:\.]/g, '') || + this.options.idPrefix + $.data(a); + }, + + _sanitizeSelector: function(hash) { + return hash.replace(/:/g, '\\:'); // we need this because an id may contain a ":" + }, + + _cookie: function() { + var cookie = this.cookie || (this.cookie = this.options.cookie.name || 'ui-tabs-' + $.data(this.list[0])); + return $.cookie.apply(null, [cookie].concat($.makeArray(arguments))); + }, + + _ui: function(tab, panel) { + return { + tab: tab, + panel: panel, + index: this.anchors.index(tab) + }; + }, + + _cleanup: function() { + // restore all former loading tabs labels + this.lis.filter('.ui-state-processing').removeClass('ui-state-processing') + .find('span:data(label.tabs)') + .each(function() { + var el = $(this); + el.html(el.data('label.tabs')).removeData('label.tabs'); + }); + }, + + _tabify: function(init) { + + this.list = this.element.children('ul:first'); + this.lis = $('li:has(a[href])', this.list); + this.anchors = this.lis.map(function() { return $('a', this)[0]; }); + this.panels = $([]); + + var self = this, o = this.options; + + var fragmentId = /^#.+/; // Safari 2 reports '#' for an empty hash + this.anchors.each(function(i, a) { + var href = $(a).attr('href'); + + // For dynamically created HTML that contains a hash as href IE < 8 expands + // such href to the full page url with hash and then misinterprets tab as ajax. + // Same consideration applies for an added tab with a fragment identifier + // since a[href=#fragment-identifier] does unexpectedly not match. + // Thus normalize href attribute... + var hrefBase = href.split('#')[0], baseEl; + if (hrefBase && (hrefBase === location.toString().split('#')[0] || + (baseEl = $('base')[0]) && hrefBase === baseEl.href)) { + href = a.hash; + a.href = href; + } + + // inline tab + if (fragmentId.test(href)) { + self.panels = self.panels.add(self._sanitizeSelector(href)); + } + + // remote tab + else if (href != '#') { // prevent loading the page itself if href is just "#" + $.data(a, 'href.tabs', href); // required for restore on destroy + + // TODO until #3808 is fixed strip fragment identifier from url + // (IE fails to load from such url) + $.data(a, 'load.tabs', href.replace(/#.*$/, '')); // mutable data + + var id = self._tabId(a); + a.href = '#' + id; + var $panel = $('#' + id); + if (!$panel.length) { + $panel = $(o.panelTemplate).attr('id', id).addClass('ui-tabs-panel ui-widget-content ui-corner-bottom') + .insertAfter(self.panels[i - 1] || self.list); + $panel.data('destroy.tabs', true); + } + self.panels = self.panels.add($panel); + } + + // invalid tab href + else { + o.disabled.push(i); + } + }); + + // initialization from scratch + if (init) { + + // attach necessary classes for styling + this.element.addClass('ui-tabs ui-widget ui-widget-content ui-corner-all'); + this.list.addClass('ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all'); + this.lis.addClass('ui-state-default ui-corner-top'); + this.panels.addClass('ui-tabs-panel ui-widget-content ui-corner-bottom'); + + // Selected tab + // use "selected" option or try to retrieve: + // 1. from fragment identifier in url + // 2. from cookie + // 3. from selected class attribute on
  • + if (o.selected === undefined) { + if (location.hash) { + this.anchors.each(function(i, a) { + if (a.hash == location.hash) { + o.selected = i; + return false; // break + } + }); + } + if (typeof o.selected != 'number' && o.cookie) { + o.selected = parseInt(self._cookie(), 10); + } + if (typeof o.selected != 'number' && this.lis.filter('.ui-tabs-selected').length) { + o.selected = this.lis.index(this.lis.filter('.ui-tabs-selected')); + } + o.selected = o.selected || 0; + } + else if (o.selected === null) { // usage of null is deprecated, TODO remove in next release + o.selected = -1; + } + + // sanity check - default to first tab... + o.selected = ((o.selected >= 0 && this.anchors[o.selected]) || o.selected < 0) ? o.selected : 0; + + // Take disabling tabs via class attribute from HTML + // into account and update option properly. + // A selected tab cannot become disabled. + o.disabled = $.unique(o.disabled.concat( + $.map(this.lis.filter('.ui-state-disabled'), + function(n, i) { return self.lis.index(n); } ) + )).sort(); + + if ($.inArray(o.selected, o.disabled) != -1) { + o.disabled.splice($.inArray(o.selected, o.disabled), 1); + } + + // highlight selected tab + this.panels.addClass('ui-tabs-hide'); + this.lis.removeClass('ui-tabs-selected ui-state-active'); + if (o.selected >= 0 && this.anchors.length) { // check for length avoids error when initializing empty list + this.panels.eq(o.selected).removeClass('ui-tabs-hide'); + this.lis.eq(o.selected).addClass('ui-tabs-selected ui-state-active'); + + // seems to be expected behavior that the show callback is fired + self.element.queue("tabs", function() { + self._trigger('show', null, self._ui(self.anchors[o.selected], self.panels[o.selected])); + }); + + this.load(o.selected); + } + + // clean up to avoid memory leaks in certain versions of IE 6 + $(window).bind('unload', function() { + self.lis.add(self.anchors).unbind('.tabs'); + self.lis = self.anchors = self.panels = null; + }); + + } + // update selected after add/remove + else { + o.selected = this.lis.index(this.lis.filter('.ui-tabs-selected')); + } + + // update collapsible + this.element[o.collapsible ? 'addClass' : 'removeClass']('ui-tabs-collapsible'); + + // set or update cookie after init and add/remove respectively + if (o.cookie) { + this._cookie(o.selected, o.cookie); + } + + // disable tabs + for (var i = 0, li; (li = this.lis[i]); i++) { + $(li)[$.inArray(i, o.disabled) != -1 && + !$(li).hasClass('ui-tabs-selected') ? 'addClass' : 'removeClass']('ui-state-disabled'); + } + + // reset cache if switching from cached to not cached + if (o.cache === false) { + this.anchors.removeData('cache.tabs'); + } + + // remove all handlers before, tabify may run on existing tabs after add or option change + this.lis.add(this.anchors).unbind('.tabs'); + + if (o.event != 'mouseover') { + var addState = function(state, el) { + if (el.is(':not(.ui-state-disabled)')) { + el.addClass('ui-state-' + state); + } + }; + var removeState = function(state, el) { + el.removeClass('ui-state-' + state); + }; + this.lis.bind('mouseover.tabs', function() { + addState('hover', $(this)); + }); + this.lis.bind('mouseout.tabs', function() { + removeState('hover', $(this)); + }); + this.anchors.bind('focus.tabs', function() { + addState('focus', $(this).closest('li')); + }); + this.anchors.bind('blur.tabs', function() { + removeState('focus', $(this).closest('li')); + }); + } + + // set up animations + var hideFx, showFx; + if (o.fx) { + if ($.isArray(o.fx)) { + hideFx = o.fx[0]; + showFx = o.fx[1]; + } + else { + hideFx = showFx = o.fx; + } + } + + // Reset certain styles left over from animation + // and prevent IE's ClearType bug... + function resetStyle($el, fx) { + $el.css({ display: '' }); + if ($.browser.msie && fx.opacity) { + $el[0].style.removeAttribute('filter'); + } + } + + // Show a tab... + var showTab = showFx ? + function(clicked, $show) { + $(clicked).closest('li').removeClass('ui-state-default').addClass('ui-tabs-selected ui-state-active'); + $show.hide().removeClass('ui-tabs-hide') // avoid flicker that way + .animate(showFx, showFx.duration || 'normal', function() { + resetStyle($show, showFx); + self._trigger('show', null, self._ui(clicked, $show[0])); + }); + } : + function(clicked, $show) { + $(clicked).closest('li').removeClass('ui-state-default').addClass('ui-tabs-selected ui-state-active'); + $show.removeClass('ui-tabs-hide'); + self._trigger('show', null, self._ui(clicked, $show[0])); + }; + + // Hide a tab, $show is optional... + var hideTab = hideFx ? + function(clicked, $hide) { + $hide.animate(hideFx, hideFx.duration || 'normal', function() { + self.lis.removeClass('ui-tabs-selected ui-state-active').addClass('ui-state-default'); + $hide.addClass('ui-tabs-hide'); + resetStyle($hide, hideFx); + self.element.dequeue("tabs"); + }); + } : + function(clicked, $hide, $show) { + self.lis.removeClass('ui-tabs-selected ui-state-active').addClass('ui-state-default'); + $hide.addClass('ui-tabs-hide'); + self.element.dequeue("tabs"); + }; + + // attach tab event handler, unbind to avoid duplicates from former tabifying... + this.anchors.bind(o.event + '.tabs', function() { + var el = this, $li = $(this).closest('li'), $hide = self.panels.filter(':not(.ui-tabs-hide)'), + $show = $(self._sanitizeSelector(this.hash)); + + // If tab is already selected and not collapsible or tab disabled or + // or is already loading or click callback returns false stop here. + // Check if click handler returns false last so that it is not executed + // for a disabled or loading tab! + if (($li.hasClass('ui-tabs-selected') && !o.collapsible) || + $li.hasClass('ui-state-disabled') || + $li.hasClass('ui-state-processing') || + self._trigger('select', null, self._ui(this, $show[0])) === false) { + this.blur(); + return false; + } + + o.selected = self.anchors.index(this); + + self.abort(); + + // if tab may be closed + if (o.collapsible) { + if ($li.hasClass('ui-tabs-selected')) { + o.selected = -1; + + if (o.cookie) { + self._cookie(o.selected, o.cookie); + } + + self.element.queue("tabs", function() { + hideTab(el, $hide); + }).dequeue("tabs"); + + this.blur(); + return false; + } + else if (!$hide.length) { + if (o.cookie) { + self._cookie(o.selected, o.cookie); + } + + self.element.queue("tabs", function() { + showTab(el, $show); + }); + + self.load(self.anchors.index(this)); // TODO make passing in node possible, see also http://dev.jqueryui.com/ticket/3171 + + this.blur(); + return false; + } + } + + if (o.cookie) { + self._cookie(o.selected, o.cookie); + } + + // show new tab + if ($show.length) { + if ($hide.length) { + self.element.queue("tabs", function() { + hideTab(el, $hide); + }); + } + self.element.queue("tabs", function() { + showTab(el, $show); + }); + + self.load(self.anchors.index(this)); + } + else { + throw 'jQuery UI Tabs: Mismatching fragment identifier.'; + } + + // Prevent IE from keeping other link focussed when using the back button + // and remove dotted border from clicked link. This is controlled via CSS + // in modern browsers; blur() removes focus from address bar in Firefox + // which can become a usability and annoying problem with tabs('rotate'). + if ($.browser.msie) { + this.blur(); + } + + }); + + // disable click in any case + this.anchors.bind('click.tabs', function(){return false;}); + + }, + + destroy: function() { + var o = this.options; + + this.abort(); + + this.element.unbind('.tabs') + .removeClass('ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible') + .removeData('tabs'); + + this.list.removeClass('ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all'); + + this.anchors.each(function() { + var href = $.data(this, 'href.tabs'); + if (href) { + this.href = href; + } + var $this = $(this).unbind('.tabs'); + $.each(['href', 'load', 'cache'], function(i, prefix) { + $this.removeData(prefix + '.tabs'); + }); + }); + + this.lis.unbind('.tabs').add(this.panels).each(function() { + if ($.data(this, 'destroy.tabs')) { + $(this).remove(); + } + else { + $(this).removeClass([ + 'ui-state-default', + 'ui-corner-top', + 'ui-tabs-selected', + 'ui-state-active', + 'ui-state-hover', + 'ui-state-focus', + 'ui-state-disabled', + 'ui-tabs-panel', + 'ui-widget-content', + 'ui-corner-bottom', + 'ui-tabs-hide' + ].join(' ')); + } + }); + + if (o.cookie) { + this._cookie(null, o.cookie); + } + }, + + add: function(url, label, index) { + if (index === undefined) { + index = this.anchors.length; // append by default + } + + var self = this, o = this.options, + $li = $(o.tabTemplate.replace(/#\{href\}/g, url).replace(/#\{label\}/g, label)), + id = !url.indexOf('#') ? url.replace('#', '') : this._tabId($('a', $li)[0]); + + $li.addClass('ui-state-default ui-corner-top').data('destroy.tabs', true); + + // try to find an existing element before creating a new one + var $panel = $('#' + id); + if (!$panel.length) { + $panel = $(o.panelTemplate).attr('id', id).data('destroy.tabs', true); + } + $panel.addClass('ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide'); + + if (index >= this.lis.length) { + $li.appendTo(this.list); + $panel.appendTo(this.list[0].parentNode); + } + else { + $li.insertBefore(this.lis[index]); + $panel.insertBefore(this.panels[index]); + } + + o.disabled = $.map(o.disabled, + function(n, i) { return n >= index ? ++n : n; }); + + this._tabify(); + + if (this.anchors.length == 1) { // after tabify + $li.addClass('ui-tabs-selected ui-state-active'); + $panel.removeClass('ui-tabs-hide'); + this.element.queue("tabs", function() { + self._trigger('show', null, self._ui(self.anchors[0], self.panels[0])); + }); + + this.load(0); + } + + // callback + this._trigger('add', null, this._ui(this.anchors[index], this.panels[index])); + }, + + remove: function(index) { + var o = this.options, $li = this.lis.eq(index).remove(), + $panel = this.panels.eq(index).remove(); + + // If selected tab was removed focus tab to the right or + // in case the last tab was removed the tab to the left. + if ($li.hasClass('ui-tabs-selected') && this.anchors.length > 1) { + this.select(index + (index + 1 < this.anchors.length ? 1 : -1)); + } + + o.disabled = $.map($.grep(o.disabled, function(n, i) { return n != index; }), + function(n, i) { return n >= index ? --n : n; }); + + this._tabify(); + + // callback + this._trigger('remove', null, this._ui($li.find('a')[0], $panel[0])); + }, + + enable: function(index) { + var o = this.options; + if ($.inArray(index, o.disabled) == -1) { + return; + } + + this.lis.eq(index).removeClass('ui-state-disabled'); + o.disabled = $.grep(o.disabled, function(n, i) { return n != index; }); + + // callback + this._trigger('enable', null, this._ui(this.anchors[index], this.panels[index])); + }, + + disable: function(index) { + var self = this, o = this.options; + if (index != o.selected) { // cannot disable already selected tab + this.lis.eq(index).addClass('ui-state-disabled'); + + o.disabled.push(index); + o.disabled.sort(); + + // callback + this._trigger('disable', null, this._ui(this.anchors[index], this.panels[index])); + } + }, + + select: function(index) { + if (typeof index == 'string') { + index = this.anchors.index(this.anchors.filter('[href$=' + index + ']')); + } + else if (index === null) { // usage of null is deprecated, TODO remove in next release + index = -1; + } + if (index == -1 && this.options.collapsible) { + index = this.options.selected; + } + + this.anchors.eq(index).trigger(this.options.event + '.tabs'); + }, + + load: function(index) { + var self = this, o = this.options, a = this.anchors.eq(index)[0], url = $.data(a, 'load.tabs'); + + this.abort(); + + // not remote or from cache + if (!url || this.element.queue("tabs").length !== 0 && $.data(a, 'cache.tabs')) { + this.element.dequeue("tabs"); + return; + } + + // load remote from here on + this.lis.eq(index).addClass('ui-state-processing'); + + if (o.spinner) { + var span = $('span', a); + span.data('label.tabs', span.html()).html(o.spinner); + } + + this.xhr = $.ajax($.extend({}, o.ajaxOptions, { + url: url, + success: function(r, s) { + $(self._sanitizeSelector(a.hash)).html(r); + + // take care of tab labels + self._cleanup(); + + if (o.cache) { + $.data(a, 'cache.tabs', true); // if loaded once do not load them again + } + + // callbacks + self._trigger('load', null, self._ui(self.anchors[index], self.panels[index])); + try { + o.ajaxOptions.success(r, s); + } + catch (e) {} + + // last, so that load event is fired before show... + self.element.dequeue("tabs"); + } + })); + }, + + abort: function() { + // stop possibly running animations + this.element.queue([]); + this.panels.stop(false, true); + + // terminate pending requests from other tabs + if (this.xhr) { + this.xhr.abort(); + delete this.xhr; + } + + // take care of tab labels + this._cleanup(); + + }, + + url: function(index, url) { + this.anchors.eq(index).removeData('cache.tabs').data('load.tabs', url); + }, + + length: function() { + return this.anchors.length; + } + +}); + +$.extend($.ui.tabs, { + version: '1.7.2', + getter: 'length', + defaults: { + ajaxOptions: null, + cache: false, + cookie: null, // e.g. { expires: 7, path: '/', domain: 'jquery.com', secure: true } + collapsible: false, + disabled: [], + event: 'click', + fx: null, // e.g. { height: 'toggle', opacity: 'toggle', duration: 200 } + idPrefix: 'ui-tabs-', + panelTemplate: '
    ', + spinner: 'Loading…', + tabTemplate: '
  • #{label}
  • ' + } +}); + +/* + * Tabs Extensions + */ + +/* + * Rotate + */ +$.extend($.ui.tabs.prototype, { + rotation: null, + rotate: function(ms, continuing) { + + var self = this, o = this.options; + + var rotate = self._rotate || (self._rotate = function(e) { + clearTimeout(self.rotation); + self.rotation = setTimeout(function() { + var t = o.selected; + self.select( ++t < self.anchors.length ? t : 0 ); + }, ms); + + if (e) { + e.stopPropagation(); + } + }); + + var stop = self._unrotate || (self._unrotate = !continuing ? + function(e) { + if (e.clientX) { // in case of a true click + self.rotate(null); + } + } : + function(e) { + t = o.selected; + rotate(); + }); + + // start rotation + if (ms) { + this.element.bind('tabsshow', rotate); + this.anchors.bind(o.event + '.tabs', stop); + rotate(); + } + // stop rotation + else { + clearTimeout(self.rotation); + this.element.unbind('tabsshow', rotate); + this.anchors.unbind(o.event + '.tabs', stop); + delete this._rotate; + delete this._unrotate; + } + } +}); + +})(jQuery); diff --git a/media/js/development-bundle/version.txt b/media/js/development-bundle/version.txt new file mode 100644 index 0000000..0a182f2 --- /dev/null +++ b/media/js/development-bundle/version.txt @@ -0,0 +1 @@ +1.7.2 \ No newline at end of file diff --git a/media/js/gmaps.CircleOverlay.js b/media/js/gmaps.CircleOverlay.js new file mode 100644 index 0000000..344281d --- /dev/null +++ b/media/js/gmaps.CircleOverlay.js @@ -0,0 +1,66 @@ +// This file adds a new circle overlay to GMaps2 +// it is really a many-pointed polygon, but look smooth enough to be a circle. +var CircleOverlay = function(latLng, radius, strokeColor, strokeWidth, strokeOpacity, fillColor, fillOpacity) { + this.latLng = latLng; + this.radius = radius; + this.strokeColor = strokeColor; + this.strokeWidth = strokeWidth; + this.strokeOpacity = strokeOpacity; + this.fillColor = fillColor; + this.fillOpacity = fillOpacity; +} + +// Implements GOverlay interface +CircleOverlay.prototype = GOverlay; + +CircleOverlay.prototype.initialize = function(map) { + this.map = map; +} + +CircleOverlay.prototype.clear = function() { + if(this.polygon != null && this.map != null) { + this.map.removeOverlay(this.polygon); + } +} + +// Calculate all the points and draw them +CircleOverlay.prototype.redraw = function(force) { + var d2r = Math.PI / 180; + circleLatLngs = new Array(); + var circleLat = (this.radius+1) * 0.009052; // Convert statute miles into degrees latitude 0.014483 + var circleLng = circleLat / Math.cos(this.latLng.lat() * d2r); + var numPoints = 40; + + // 2PI = 360 degrees, +1 so that the end points meet + for (var i = 0; i < numPoints + 1; i++) { + var theta = Math.PI * (i / (numPoints / 2)); + var vertexLat = this.latLng.lat() + (circleLat * Math.sin(theta)); + var vertexLng = this.latLng.lng() + (circleLng * Math.cos(theta)); + var vertextLatLng = new GLatLng(vertexLat, vertexLng); + circleLatLngs.push(vertextLatLng); + } + + this.clear(); + this.polygon = new GPolygon(circleLatLngs, this.strokeColor, this.strokeWidth, this.strokeOpacity, this.fillColor, this.fillOpacity); + this.map.addOverlay(this.polygon); +} + +CircleOverlay.prototype.remove = function() { + this.clear(); +} + +CircleOverlay.prototype.containsLatLng = function(latLng) { + // Polygon Point in poly + if(this.polygon.containsLatLng) { + return this.polygon.containsLatLng(latLng); + } +} + +CircleOverlay.prototype.setRadius = function(radius) { + this.radius = radius; +} + +CircleOverlay.prototype.setLatLng = function(latLng) { + this.latLng = latLng; +} + diff --git a/media/js/index.html b/media/js/index.html new file mode 100644 index 0000000..8a08438 --- /dev/null +++ b/media/js/index.html @@ -0,0 +1,367 @@ + + + + + jQuery UI Example Page + + + + + + + +

    Welcome to jQuery UI!

    +

    This page demonstrates the widgets you downloaded using the theme you selected in the download builder. We've included and linked to minified versions of jQuery, your personalized copy of jQuery UI (js/jquery-ui-1.7.2.custom.min.js), and css/ui-lightness/jquery-ui-1.7.2.custom.css which imports the entire jQuery UI CSS Framework. You can choose to link a subset of the CSS Framework depending on your needs.

    +

    You've downloaded components and a theme that are compatible with jQuery 1.3+. Please make sure you are using jQuery 1.3+ in your production environment. If you need jQuery UI components that work with an earlier version of jQuery, you can choose an older version in the jQuery UI download builder.

    + +

    YOUR COMPONENTS:

    + + +

    Accordion

    +
    +
    +

    First

    +
    Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.
    +
    +
    +

    Second

    +
    Phasellus mattis tincidunt nibh.
    +
    +
    +

    Third

    +
    Nam dui erat, auctor a, dignissim quis.
    +
    +
    + + +

    Tabs

    +
    + +
    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
    +
    Phasellus mattis tincidunt nibh. Cras orci urna, blandit id, pretium vel, aliquet ornare, felis. Maecenas scelerisque sem non nisl. Fusce sed lorem in enim dictum bibendum.
    +
    Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis. Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum, lacus. Mauris porttitor ullamcorper augue.
    +
    + + +

    Dialog

    +

    Open Dialog

    + + +

    Overlay and Shadow Classes (not currently used in UI widgets)

    +
    +

    Lorem ipsum dolor sit amet, Nulla nec tortor. Donec id elit quis purus consectetur consequat.

    Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. Aliquam ante. Suspendisse scelerisque dui nec velit. Duis augue augue, gravida euismod, vulputate ac, facilisis id, sem. Morbi in orci.

    Nulla purus lacus, pulvinar vel, malesuada ac, mattis nec, quam. Nam molestie scelerisque quam. Nullam feugiat cursus lacus.orem ipsum dolor sit amet, consectetur adipiscing elit. Donec libero risus, commodo vitae, pharetra mollis, posuere eu, pede. Nulla nec tortor. Donec id elit quis purus consectetur consequat.

    Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. Aliquam ante. Suspendisse scelerisque dui nec velit. Duis augue augue, gravida euismod, vulputate ac, facilisis id, sem. Morbi in orci. Nulla purus lacus, pulvinar vel, malesuada ac, mattis nec, quam. Nam molestie scelerisque quam.

    Nullam feugiat cursus lacus.orem ipsum dolor sit amet, consectetur adipiscing elit. Donec libero risus, commodo vitae, pharetra mollis, posuere eu, pede. Nulla nec tortor. Donec id elit quis purus consectetur consequat. Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. Aliquam ante.

    Suspendisse scelerisque dui nec velit. Duis augue augue, gravida euismod, vulputate ac, facilisis id, sem. Morbi in orci. Nulla purus lacus, pulvinar vel, malesuada ac, mattis nec, quam. Nam molestie scelerisque quam. Nullam feugiat cursus lacus.orem ipsum dolor sit amet, consectetur adipiscing elit. Donec libero risus, commodo vitae, pharetra mollis, posuere eu, pede. Nulla nec tortor. Donec id elit quis purus consectetur consequat. Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi.

    + + +
    +
    +
    +

    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    +
    +
    + +
    + + + +
    +

    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    +
    + + + +

    Framework Icons (content color preview)

    +
      + +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    + + + +

    Slider

    +
    + + +

    Datepicker

    +
    + + +

    Progressbar

    +
    + + +

    Highlight / Error

    +
    +
    +

    + Hey! Sample ui-state-highlight style.

    +
    +
    +
    +
    +
    +

    + Alert: Sample ui-state-error style.

    +
    +
    + + + + + diff --git a/media/js/index_progbar.html b/media/js/index_progbar.html new file mode 100644 index 0000000..1ad2c03 --- /dev/null +++ b/media/js/index_progbar.html @@ -0,0 +1,232 @@ + + + + + jsProgressBarHandler Demo | Javascript Progress/Percentage Bar + + + + + + + + + + + + + + + +
    + +

    Looking for the ajax demo?

    + +

    jsProgressBarHandler 0.3.3 | Javascript Progress/Percentage Bar

    + +
    + +

    1. Automatically created Progress Bars (Default Styling)

    + Program Efficiency
    + 15% + + + + + + + « Select Options +

    + + + Website Projects Progress
    + 35% + + + + + + + « Select Options +

    + + Weight Loss Progress
    + 50% + + + + + + + « Select Options +

    + + Upload Progress Bar
    + 80% + + + + + + + « Select Options +

    + +

    2. Manually created Progress Bars (Custom Styling)

    + + Custom Progress Bar (without text, without animation)
    + 50% + + + + + + + « Select Options +

    + + Multi Color Bar
    + [ Loading Progress Bar ] + + + + + + + « Select Options +

    + + + +
    + +

    This page is a testpage of jsProgressBarHandler - see http://www.bram.us/projects/js_bramus/jsprogressbarhandler/ for details

    + +
    + + + + + + + + + diff --git a/media/js/jqbrowser-compressed.js b/media/js/jqbrowser-compressed.js new file mode 100644 index 0000000..ae11d6e --- /dev/null +++ b/media/js/jqbrowser-compressed.js @@ -0,0 +1,2 @@ +// jQBrowser v0.2: http://davecardwell.co.uk/javascript/jquery/plugins/jquery-browserdetect/ +eval(function(p,a,c,k,e,d){e=function(c){return(c)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("",""]||!O.indexOf("",""]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"","
    "]||!O.indexOf("",""]||(!O.indexOf("",""]||!O.indexOf("",""]||!o.support.htmlSerialize&&[1,"div
    ","
    "]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}}); +/* + * Sizzle CSS Selector Engine - v0.9.3 + * Copyright 2009, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return UT[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="

    ";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="
    ";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("
    ").append(M.responseText.replace(//g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='
    ';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})(); \ No newline at end of file diff --git a/media/js/jquery-ui-1.7.2.custom.min.js b/media/js/jquery-ui-1.7.2.custom.min.js new file mode 100644 index 0000000..cf19f30 --- /dev/null +++ b/media/js/jquery-ui-1.7.2.custom.min.js @@ -0,0 +1,298 @@ +/* + * jQuery UI 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI + */ +jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;/* + * jQuery UI Draggable 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Draggables + * + * Depends: + * ui.core.js + */ +(function(a){a.widget("ui.draggable",a.extend({},a.ui.mouse,{_init:function(){if(this.options.helper=="original"&&!(/^(?:r|a|f)/).test(this.element.css("position"))){this.element[0].style.position="relative"}(this.options.addClasses&&this.element.addClass("ui-draggable"));(this.options.disabled&&this.element.addClass("ui-draggable-disabled"));this._mouseInit()},destroy:function(){if(!this.element.data("draggable")){return}this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled");this._mouseDestroy()},_mouseCapture:function(b){var c=this.options;if(this.helper||c.disabled||a(b.target).is(".ui-resizable-handle")){return false}this.handle=this._getHandle(b);if(!this.handle){return false}return true},_mouseStart:function(b){var c=this.options;this.helper=this._createHelper(b);this._cacheHelperProportions();if(a.ui.ddmanager){a.ui.ddmanager.current=this}this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.element.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(b);this.originalPageX=b.pageX;this.originalPageY=b.pageY;if(c.cursorAt){this._adjustOffsetFromHelper(c.cursorAt)}if(c.containment){this._setContainment()}this._trigger("start",b);this._cacheHelperProportions();if(a.ui.ddmanager&&!c.dropBehaviour){a.ui.ddmanager.prepareOffsets(this,b)}this.helper.addClass("ui-draggable-dragging");this._mouseDrag(b,true);return true},_mouseDrag:function(b,d){this.position=this._generatePosition(b);this.positionAbs=this._convertPositionTo("absolute");if(!d){var c=this._uiHash();this._trigger("drag",b,c);this.position=c.position}if(!this.options.axis||this.options.axis!="y"){this.helper[0].style.left=this.position.left+"px"}if(!this.options.axis||this.options.axis!="x"){this.helper[0].style.top=this.position.top+"px"}if(a.ui.ddmanager){a.ui.ddmanager.drag(this,b)}return false},_mouseStop:function(c){var d=false;if(a.ui.ddmanager&&!this.options.dropBehaviour){d=a.ui.ddmanager.drop(this,c)}if(this.dropped){d=this.dropped;this.dropped=false}if((this.options.revert=="invalid"&&!d)||(this.options.revert=="valid"&&d)||this.options.revert===true||(a.isFunction(this.options.revert)&&this.options.revert.call(this.element,d))){var b=this;a(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){b._trigger("stop",c);b._clear()})}else{this._trigger("stop",c);this._clear()}return false},_getHandle:function(b){var c=!this.options.handle||!a(this.options.handle,this.element).length?true:false;a(this.options.handle,this.element).find("*").andSelf().each(function(){if(this==b.target){c=true}});return c},_createHelper:function(c){var d=this.options;var b=a.isFunction(d.helper)?a(d.helper.apply(this.element[0],[c])):(d.helper=="clone"?this.element.clone():this.element);if(!b.parents("body").length){b.appendTo((d.appendTo=="parent"?this.element[0].parentNode:d.appendTo))}if(b[0]!=this.element[0]&&!(/(fixed|absolute)/).test(b.css("position"))){b.css("position","absolute")}return b},_adjustOffsetFromHelper:function(b){if(b.left!=undefined){this.offset.click.left=b.left+this.margins.left}if(b.right!=undefined){this.offset.click.left=this.helperProportions.width-b.right+this.margins.left}if(b.top!=undefined){this.offset.click.top=b.top+this.margins.top}if(b.bottom!=undefined){this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top}},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])){b.left+=this.scrollParent.scrollLeft();b.top+=this.scrollParent.scrollTop()}if((this.offsetParent[0]==document.body)||(this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)){b={top:0,left:0}}return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var b=this.element.position();return{top:b.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:b.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else{return{top:0,left:0}}},_cacheMargins:function(){this.margins={left:(parseInt(this.element.css("marginLeft"),10)||0),top:(parseInt(this.element.css("marginTop"),10)||0)}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e=this.options;if(e.containment=="parent"){e.containment=this.helper[0].parentNode}if(e.containment=="document"||e.containment=="window"){this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,a(e.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a(e.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]}if(!(/^(document|window|parent)$/).test(e.containment)&&e.containment.constructor!=Array){var c=a(e.containment)[0];if(!c){return}var d=a(e.containment).offset();var b=(a(c).css("overflow")!="hidden");this.containment=[d.left+(parseInt(a(c).css("borderLeftWidth"),10)||0)+(parseInt(a(c).css("paddingLeft"),10)||0)-this.margins.left,d.top+(parseInt(a(c).css("borderTopWidth"),10)||0)+(parseInt(a(c).css("paddingTop"),10)||0)-this.margins.top,d.left+(b?Math.max(c.scrollWidth,c.offsetWidth):c.offsetWidth)-(parseInt(a(c).css("borderLeftWidth"),10)||0)-(parseInt(a(c).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,d.top+(b?Math.max(c.scrollHeight,c.offsetHeight):c.offsetHeight)-(parseInt(a(c).css("borderTopWidth"),10)||0)-(parseInt(a(c).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}else{if(e.containment.constructor==Array){this.containment=e.containment}}},_convertPositionTo:function(f,h){if(!h){h=this.position}var c=f=="absolute"?1:-1;var e=this.options,b=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=(/(html|body)/i).test(b[0].tagName);return{top:(h.top+this.offset.relative.top*c+this.offset.parent.top*c-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():(g?0:b.scrollTop()))*c)),left:(h.left+this.offset.relative.left*c+this.offset.parent.left*c-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:b.scrollLeft())*c))}},_generatePosition:function(e){var h=this.options,b=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,i=(/(html|body)/i).test(b[0].tagName);if(this.cssPosition=="relative"&&!(this.scrollParent[0]!=document&&this.scrollParent[0]!=this.offsetParent[0])){this.offset.relative=this._getRelativeOffset()}var d=e.pageX;var c=e.pageY;if(this.originalPosition){if(this.containment){if(e.pageX-this.offset.click.leftthis.containment[2]){d=this.containment[2]+this.offset.click.left}if(e.pageY-this.offset.click.top>this.containment[3]){c=this.containment[3]+this.offset.click.top}}if(h.grid){var g=this.originalPageY+Math.round((c-this.originalPageY)/h.grid[1])*h.grid[1];c=this.containment?(!(g-this.offset.click.topthis.containment[3])?g:(!(g-this.offset.click.topthis.containment[2])?f:(!(f-this.offset.click.left
    ').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1000}).css(a(this).offset()).appendTo("body")})},stop:function(b,c){a("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)})}});a.ui.plugin.add("draggable","opacity",{start:function(c,d){var b=a(d.helper),e=a(this).data("draggable").options;if(b.css("opacity")){e._opacity=b.css("opacity")}b.css("opacity",e.opacity)},stop:function(b,c){var d=a(this).data("draggable").options;if(d._opacity){a(c.helper).css("opacity",d._opacity)}}});a.ui.plugin.add("draggable","scroll",{start:function(c,d){var b=a(this).data("draggable");if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!="HTML"){b.overflowOffset=b.scrollParent.offset()}},drag:function(d,e){var c=a(this).data("draggable"),f=c.options,b=false;if(c.scrollParent[0]!=document&&c.scrollParent[0].tagName!="HTML"){if(!f.axis||f.axis!="x"){if((c.overflowOffset.top+c.scrollParent[0].offsetHeight)-d.pageY=0;v--){var s=g.snapElements[v].left,n=s+g.snapElements[v].width,m=g.snapElements[v].top,A=m+g.snapElements[v].height;if(!((s-y=p&&n<=k)||(m>=p&&m<=k)||(nk))&&((e>=g&&e<=c)||(d>=g&&d<=c)||(ec));break;default:return false;break}};a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(e,g){var b=a.ui.ddmanager.droppables[e.options.scope];var f=g?g.type:null;var h=(e.currentItem||e.element).find(":data(droppable)").andSelf();droppablesLoop:for(var d=0;d
    ').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=j.handles||(!c(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all"){this.handles="n,e,s,w,se,sw,ne,nw"}var k=this.handles.split(",");this.handles={};for(var f=0;f
    ');if(/sw|se|ne|nw/.test(h)){g.css({zIndex:++j.zIndex})}if("se"==h){g.addClass("ui-icon ui-icon-gripsmall-diagonal-se")}this.handles[h]=".ui-resizable-"+h;this.element.append(g)}}this._renderAxis=function(p){p=p||this.element;for(var m in this.handles){if(this.handles[m].constructor==String){this.handles[m]=c(this.handles[m],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var n=c(this.handles[m],this.element),o=0;o=/sw|ne|nw|se|n|s/.test(m)?n.outerHeight():n.outerWidth();var l=["padding",/ne|nw|n/.test(m)?"Top":/se|sw|s/.test(m)?"Bottom":/^e$/.test(m)?"Right":"Left"].join("");p.css(l,o);this._proportionallyResize()}if(!c(this.handles[m]).length){continue}}};this._renderAxis(this.element);this._handles=c(".ui-resizable-handle",this.element).disableSelection();this._handles.mouseover(function(){if(!e.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}e.axis=i&&i[1]?i[1]:"se"}});if(j.autoHide){this._handles.hide();c(this.element).addClass("ui-resizable-autohide").hover(function(){c(this).removeClass("ui-resizable-autohide");e._handles.show()},function(){if(!e.resizing){c(this).addClass("ui-resizable-autohide");e._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var d=function(f){c(f).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){d(this.element);var e=this.element;e.parent().append(this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")})).end().remove()}this.originalElement.css("resize",this.originalResizeStyle);d(this.originalElement)},_mouseCapture:function(e){var f=false;for(var d in this.handles){if(c(this.handles[d])[0]==e.target){f=true}}return this.options.disabled||!!f},_mouseStart:function(f){var i=this.options,e=this.element.position(),d=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(d.is(".ui-draggable")||(/absolute/).test(d.css("position"))){d.css({position:"absolute",top:e.top,left:e.left})}if(c.browser.opera&&(/relative/).test(d.css("position"))){d.css({position:"relative",top:"auto",left:"auto"})}this._renderProxy();var j=b(this.helper.css("left")),g=b(this.helper.css("top"));if(i.containment){j+=c(i.containment).scrollLeft()||0;g+=c(i.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:j,top:g};this.size=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalSize=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalPosition={left:j,top:g};this.sizeDiff={width:d.outerWidth()-d.width(),height:d.outerHeight()-d.height()};this.originalMousePosition={left:f.pageX,top:f.pageY};this.aspectRatio=(typeof i.aspectRatio=="number")?i.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var h=c(".ui-resizable-"+this.axis).css("cursor");c("body").css("cursor",h=="auto"?this.axis+"-resize":h);d.addClass("ui-resizable-resizing");this._propagate("start",f);return true},_mouseDrag:function(d){var g=this.helper,f=this.options,l={},p=this,i=this.originalMousePosition,m=this.axis;var q=(d.pageX-i.left)||0,n=(d.pageY-i.top)||0;var h=this._change[m];if(!h){return false}var k=h.apply(this,[d,q,n]),j=c.browser.msie&&c.browser.version<7,e=this.sizeDiff;if(this._aspectRatio||d.shiftKey){k=this._updateRatio(k,d)}k=this._respectSize(k,d);this._propagate("resize",d);g.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(k);this._trigger("resize",d,this.ui());return false},_mouseStop:function(g){this.resizing=false;var h=this.options,l=this;if(this._helper){var f=this._proportionallyResizeElements,d=f.length&&(/textarea/i).test(f[0].nodeName),e=d&&c.ui.hasScroll(f[0],"left")?0:l.sizeDiff.height,j=d?0:l.sizeDiff.width;var m={width:(l.size.width-j),height:(l.size.height-e)},i=(parseInt(l.element.css("left"),10)+(l.position.left-l.originalPosition.left))||null,k=(parseInt(l.element.css("top"),10)+(l.position.top-l.originalPosition.top))||null;if(!h.animate){this.element.css(c.extend(m,{top:k,left:i}))}l.helper.height(l.size.height);l.helper.width(l.size.width);if(this._helper&&!h.animate){this._proportionallyResize()}}c("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",g);if(this._helper){this.helper.remove()}return false},_updateCache:function(d){var e=this.options;this.offset=this.helper.offset();if(a(d.left)){this.position.left=d.left}if(a(d.top)){this.position.top=d.top}if(a(d.height)){this.size.height=d.height}if(a(d.width)){this.size.width=d.width}},_updateRatio:function(g,f){var h=this.options,i=this.position,e=this.size,d=this.axis;if(g.height){g.width=(e.height*this.aspectRatio)}else{if(g.width){g.height=(e.width/this.aspectRatio)}}if(d=="sw"){g.left=i.left+(e.width-g.width);g.top=null}if(d=="nw"){g.top=i.top+(e.height-g.height);g.left=i.left+(e.width-g.width)}return g},_respectSize:function(k,f){var i=this.helper,h=this.options,q=this._aspectRatio||f.shiftKey,p=this.axis,s=a(k.width)&&h.maxWidth&&(h.maxWidthk.width),r=a(k.height)&&h.minHeight&&(h.minHeight>k.height);if(g){k.width=h.minWidth}if(r){k.height=h.minHeight}if(s){k.width=h.maxWidth}if(l){k.height=h.maxHeight}var e=this.originalPosition.left+this.originalSize.width,n=this.position.top+this.size.height;var j=/sw|nw|w/.test(p),d=/nw|ne|n/.test(p);if(g&&j){k.left=e-h.minWidth}if(s&&j){k.left=e-h.maxWidth}if(r&&d){k.top=n-h.minHeight}if(l&&d){k.top=n-h.maxHeight}var m=!k.width&&!k.height;if(m&&!k.left&&k.top){k.top=null}else{if(m&&!k.top&&k.left){k.left=null}}return k},_proportionallyResize:function(){var j=this.options;if(!this._proportionallyResizeElements.length){return}var f=this.helper||this.element;for(var e=0;e');var d=c.browser.msie&&c.browser.version<7,f=(d?1:0),g=(d?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+g,height:this.element.outerHeight()+g,position:"absolute",left:this.elementOffset.left-f+"px",top:this.elementOffset.top-f+"px",zIndex:++h.zIndex});this.helper.appendTo("body").disableSelection()}else{this.helper=this.element}},_change:{e:function(f,e,d){return{width:this.originalSize.width+e}},w:function(g,e,d){var i=this.options,f=this.originalSize,h=this.originalPosition;return{left:h.left+e,width:f.width-e}},n:function(g,e,d){var i=this.options,f=this.originalSize,h=this.originalPosition;return{top:h.top+d,height:f.height-d}},s:function(f,e,d){return{height:this.originalSize.height+d}},se:function(f,e,d){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[f,e,d]))},sw:function(f,e,d){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[f,e,d]))},ne:function(f,e,d){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[f,e,d]))},nw:function(f,e,d){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[f,e,d]))}},_propagate:function(e,d){c.ui.plugin.call(this,e,[d,this.ui()]);(e!="resize"&&this._trigger(e,d,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}));c.extend(c.ui.resizable,{version:"1.7.2",eventPrefix:"resize",defaults:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,cancel:":input,option",containment:false,delay:0,distance:1,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000}});c.ui.plugin.add("resizable","alsoResize",{start:function(e,f){var d=c(this).data("resizable"),g=d.options;_store=function(h){c(h).each(function(){c(this).data("resizable-alsoresize",{width:parseInt(c(this).width(),10),height:parseInt(c(this).height(),10),left:parseInt(c(this).css("left"),10),top:parseInt(c(this).css("top"),10)})})};if(typeof(g.alsoResize)=="object"&&!g.alsoResize.parentNode){if(g.alsoResize.length){g.alsoResize=g.alsoResize[0];_store(g.alsoResize)}else{c.each(g.alsoResize,function(h,i){_store(h)})}}else{_store(g.alsoResize)}},resize:function(f,h){var e=c(this).data("resizable"),i=e.options,g=e.originalSize,k=e.originalPosition;var j={height:(e.size.height-g.height)||0,width:(e.size.width-g.width)||0,top:(e.position.top-k.top)||0,left:(e.position.left-k.left)||0},d=function(l,m){c(l).each(function(){var p=c(this),q=c(this).data("resizable-alsoresize"),o={},n=m&&m.length?m:["width","height","top","left"];c.each(n||["width","height","top","left"],function(r,t){var s=(q[t]||0)+(j[t]||0);if(s&&s>=0){o[t]=s||null}});if(/relative/.test(p.css("position"))&&c.browser.opera){e._revertToRelativePosition=true;p.css({position:"absolute",top:"auto",left:"auto"})}p.css(o)})};if(typeof(i.alsoResize)=="object"&&!i.alsoResize.nodeType){c.each(i.alsoResize,function(l,m){d(l,m)})}else{d(i.alsoResize)}},stop:function(e,f){var d=c(this).data("resizable");if(d._revertToRelativePosition&&c.browser.opera){d._revertToRelativePosition=false;el.css({position:"relative"})}c(this).removeData("resizable-alsoresize-start")}});c.ui.plugin.add("resizable","animate",{stop:function(h,m){var n=c(this).data("resizable"),i=n.options;var g=n._proportionallyResizeElements,d=g.length&&(/textarea/i).test(g[0].nodeName),e=d&&c.ui.hasScroll(g[0],"left")?0:n.sizeDiff.height,k=d?0:n.sizeDiff.width;var f={width:(n.size.width-k),height:(n.size.height-e)},j=(parseInt(n.element.css("left"),10)+(n.position.left-n.originalPosition.left))||null,l=(parseInt(n.element.css("top"),10)+(n.position.top-n.originalPosition.top))||null;n.element.animate(c.extend(f,l&&j?{top:l,left:j}:{}),{duration:i.animateDuration,easing:i.animateEasing,step:function(){var o={width:parseInt(n.element.css("width"),10),height:parseInt(n.element.css("height"),10),top:parseInt(n.element.css("top"),10),left:parseInt(n.element.css("left"),10)};if(g&&g.length){c(g[0]).css({width:o.width,height:o.height})}n._updateCache(o);n._propagate("resize",h)}})}});c.ui.plugin.add("resizable","containment",{start:function(e,q){var s=c(this).data("resizable"),i=s.options,k=s.element;var f=i.containment,j=(f instanceof c)?f.get(0):(/parent/.test(f))?k.parent().get(0):f;if(!j){return}s.containerElement=c(j);if(/document/.test(f)||f==document){s.containerOffset={left:0,top:0};s.containerPosition={left:0,top:0};s.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var m=c(j),h=[];c(["Top","Right","Left","Bottom"]).each(function(p,o){h[p]=b(m.css("padding"+o))});s.containerOffset=m.offset();s.containerPosition=m.position();s.containerSize={height:(m.innerHeight()-h[3]),width:(m.innerWidth()-h[1])};var n=s.containerOffset,d=s.containerSize.height,l=s.containerSize.width,g=(c.ui.hasScroll(j,"left")?j.scrollWidth:l),r=(c.ui.hasScroll(j)?j.scrollHeight:d);s.parentData={element:j,left:n.left,top:n.top,width:g,height:r}}},resize:function(f,p){var s=c(this).data("resizable"),h=s.options,e=s.containerSize,n=s.containerOffset,l=s.size,m=s.position,q=s._aspectRatio||f.shiftKey,d={top:0,left:0},g=s.containerElement;if(g[0]!=document&&(/static/).test(g.css("position"))){d=n}if(m.left<(s._helper?n.left:0)){s.size.width=s.size.width+(s._helper?(s.position.left-n.left):(s.position.left-d.left));if(q){s.size.height=s.size.width/h.aspectRatio}s.position.left=h.helper?n.left:0}if(m.top<(s._helper?n.top:0)){s.size.height=s.size.height+(s._helper?(s.position.top-n.top):s.position.top);if(q){s.size.width=s.size.height*h.aspectRatio}s.position.top=s._helper?n.top:0}s.offset.left=s.parentData.left+s.position.left;s.offset.top=s.parentData.top+s.position.top;var k=Math.abs((s._helper?s.offset.left-d.left:(s.offset.left-d.left))+s.sizeDiff.width),r=Math.abs((s._helper?s.offset.top-d.top:(s.offset.top-n.top))+s.sizeDiff.height);var j=s.containerElement.get(0)==s.element.parent().get(0),i=/relative|absolute/.test(s.containerElement.css("position"));if(j&&i){k-=s.parentData.left}if(k+s.size.width>=s.parentData.width){s.size.width=s.parentData.width-k;if(q){s.size.height=s.size.width/s.aspectRatio}}if(r+s.size.height>=s.parentData.height){s.size.height=s.parentData.height-r;if(q){s.size.width=s.size.height*s.aspectRatio}}},stop:function(e,m){var p=c(this).data("resizable"),f=p.options,k=p.position,l=p.containerOffset,d=p.containerPosition,g=p.containerElement;var i=c(p.helper),q=i.offset(),n=i.outerWidth()-p.sizeDiff.width,j=i.outerHeight()-p.sizeDiff.height;if(p._helper&&!f.animate&&(/relative/).test(g.css("position"))){c(this).css({left:q.left-d.left-l.left,width:n,height:j})}if(p._helper&&!f.animate&&(/static/).test(g.css("position"))){c(this).css({left:q.left-d.left-l.left,width:n,height:j})}}});c.ui.plugin.add("resizable","ghost",{start:function(f,g){var d=c(this).data("resizable"),h=d.options,e=d.size;d.ghost=d.originalElement.clone();d.ghost.css({opacity:0.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof h.ghost=="string"?h.ghost:"");d.ghost.appendTo(d.helper)},resize:function(e,f){var d=c(this).data("resizable"),g=d.options;if(d.ghost){d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})}},stop:function(e,f){var d=c(this).data("resizable"),g=d.options;if(d.ghost&&d.helper){d.helper.get(0).removeChild(d.ghost.get(0))}}});c.ui.plugin.add("resizable","grid",{resize:function(d,l){var n=c(this).data("resizable"),g=n.options,j=n.size,h=n.originalSize,i=n.originalPosition,m=n.axis,k=g._aspectRatio||d.shiftKey;g.grid=typeof g.grid=="number"?[g.grid,g.grid]:g.grid;var f=Math.round((j.width-h.width)/(g.grid[0]||1))*(g.grid[0]||1),e=Math.round((j.height-h.height)/(g.grid[1]||1))*(g.grid[1]||1);if(/^(se|s|e)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e}else{if(/^(ne)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e;n.position.top=i.top-e}else{if(/^(sw)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e;n.position.left=i.left-f}else{n.size.width=h.width+f;n.size.height=h.height+e;n.position.top=i.top-e;n.position.left=i.left-f}}}}});var b=function(d){return parseInt(d,10)||0};var a=function(d){return !isNaN(parseInt(d,10))}})(jQuery);;/* + * jQuery UI Selectable 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Selectables + * + * Depends: + * ui.core.js + */ +(function(a){a.widget("ui.selectable",a.extend({},a.ui.mouse,{_init:function(){var b=this;this.element.addClass("ui-selectable");this.dragged=false;var c;this.refresh=function(){c=a(b.options.filter,b.element[0]);c.each(function(){var d=a(this);var e=d.offset();a.data(this,"selectable-item",{element:this,$element:d,left:e.left,top:e.top,right:e.left+d.outerWidth(),bottom:e.top+d.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"),selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecting")})})};this.refresh();this.selectees=c.addClass("ui-selectee");this._mouseInit();this.helper=a(document.createElement("div")).css({border:"1px dotted black"}).addClass("ui-selectable-helper")},destroy:function(){this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy()},_mouseStart:function(d){var b=this;this.opos=[d.pageX,d.pageY];if(this.options.disabled){return}var c=this.options;this.selectees=a(c.filter,this.element[0]);this._trigger("start",d);a(c.appendTo).append(this.helper);this.helper.css({"z-index":100,position:"absolute",left:d.clientX,top:d.clientY,width:0,height:0});if(c.autoRefresh){this.refresh()}this.selectees.filter(".ui-selected").each(function(){var e=a.data(this,"selectable-item");e.startselected=true;if(!d.metaKey){e.$element.removeClass("ui-selected");e.selected=false;e.$element.addClass("ui-unselecting");e.unselecting=true;b._trigger("unselecting",d,{unselecting:e.element})}});a(d.target).parents().andSelf().each(function(){var e=a.data(this,"selectable-item");if(e){e.$element.removeClass("ui-unselecting").addClass("ui-selecting");e.unselecting=false;e.selecting=true;e.selected=true;b._trigger("selecting",d,{selecting:e.element});return false}})},_mouseDrag:function(i){var c=this;this.dragged=true;if(this.options.disabled){return}var e=this.options;var d=this.opos[0],h=this.opos[1],b=i.pageX,g=i.pageY;if(d>b){var f=b;b=d;d=f}if(h>g){var f=g;g=h;h=f}this.helper.css({left:d,top:h,width:b-d,height:g-h});this.selectees.each(function(){var j=a.data(this,"selectable-item");if(!j||j.element==c.element[0]){return}var k=false;if(e.tolerance=="touch"){k=(!(j.left>b||j.rightg||j.bottomd&&j.righth&&j.bottom=0;b--){this.items[b].item.removeData("sortable-item")}},_mouseCapture:function(e,f){if(this.reverting){return false}if(this.options.disabled||this.options.type=="static"){return false}this._refreshItems(e);var d=null,c=this,b=a(e.target).parents().each(function(){if(a.data(this,"sortable-item")==c){d=a(this);return false}});if(a.data(e.target,"sortable-item")==c){d=a(e.target)}if(!d){return false}if(this.options.handle&&!f){var g=false;a(this.options.handle,d).find("*").andSelf().each(function(){if(this==e.target){g=true}});if(!g){return false}}this.currentItem=d;this._removeCurrentsFromItems();return true},_mouseStart:function(e,f,b){var g=this.options,c=this;this.currentContainer=this;this.refreshPositions();this.helper=this._createHelper(e);this._cacheHelperProportions();this._cacheMargins();this.scrollParent=this.helper.scrollParent();this.offset=this.currentItem.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};this.helper.css("position","absolute");this.cssPosition=this.helper.css("position");a.extend(this.offset,{click:{left:e.pageX-this.offset.left,top:e.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(e);this.originalPageX=e.pageX;this.originalPageY=e.pageY;if(g.cursorAt){this._adjustOffsetFromHelper(g.cursorAt)}this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]};if(this.helper[0]!=this.currentItem[0]){this.currentItem.hide()}this._createPlaceholder();if(g.containment){this._setContainment()}if(g.cursor){if(a("body").css("cursor")){this._storedCursor=a("body").css("cursor")}a("body").css("cursor",g.cursor)}if(g.opacity){if(this.helper.css("opacity")){this._storedOpacity=this.helper.css("opacity")}this.helper.css("opacity",g.opacity)}if(g.zIndex){if(this.helper.css("zIndex")){this._storedZIndex=this.helper.css("zIndex")}this.helper.css("zIndex",g.zIndex)}if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){this.overflowOffset=this.scrollParent.offset()}this._trigger("start",e,this._uiHash());if(!this._preserveHelperProportions){this._cacheHelperProportions()}if(!b){for(var d=this.containers.length-1;d>=0;d--){this.containers[d]._trigger("activate",e,c._uiHash(this))}}if(a.ui.ddmanager){a.ui.ddmanager.current=this}if(a.ui.ddmanager&&!g.dropBehaviour){a.ui.ddmanager.prepareOffsets(this,e)}this.dragging=true;this.helper.addClass("ui-sortable-helper");this._mouseDrag(e);return true},_mouseDrag:function(f){this.position=this._generatePosition(f);this.positionAbs=this._convertPositionTo("absolute");if(!this.lastPositionAbs){this.lastPositionAbs=this.positionAbs}if(this.options.scroll){var g=this.options,b=false;if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){if((this.overflowOffset.top+this.scrollParent[0].offsetHeight)-f.pageY=0;d--){var e=this.items[d],c=e.item[0],h=this._intersectsWithPointer(e);if(!h){continue}if(c!=this.currentItem[0]&&this.placeholder[h==1?"next":"prev"]()[0]!=c&&!a.ui.contains(this.placeholder[0],c)&&(this.options.type=="semi-dynamic"?!a.ui.contains(this.element[0],c):true)){this.direction=h==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(e)){this._rearrange(f,e)}else{break}this._trigger("change",f,this._uiHash());break}}this._contactContainers(f);if(a.ui.ddmanager){a.ui.ddmanager.drag(this,f)}this._trigger("sort",f,this._uiHash());this.lastPositionAbs=this.positionAbs;return false},_mouseStop:function(c,d){if(!c){return}if(a.ui.ddmanager&&!this.options.dropBehaviour){a.ui.ddmanager.drop(this,c)}if(this.options.revert){var b=this;var e=b.placeholder.offset();b.reverting=true;a(this.helper).animate({left:e.left-this.offset.parent.left-b.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:e.top-this.offset.parent.top-b.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){b._clear(c)})}else{this._clear(c,d)}return false},cancel:function(){var b=this;if(this.dragging){this._mouseUp();if(this.options.helper=="original"){this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else{this.currentItem.show()}for(var c=this.containers.length-1;c>=0;c--){this.containers[c]._trigger("deactivate",null,b._uiHash(this));if(this.containers[c].containerCache.over){this.containers[c]._trigger("out",null,b._uiHash(this));this.containers[c].containerCache.over=0}}}if(this.placeholder[0].parentNode){this.placeholder[0].parentNode.removeChild(this.placeholder[0])}if(this.options.helper!="original"&&this.helper&&this.helper[0].parentNode){this.helper.remove()}a.extend(this,{helper:null,dragging:false,reverting:false,_noFinalSort:null});if(this.domPosition.prev){a(this.domPosition.prev).after(this.currentItem)}else{a(this.domPosition.parent).prepend(this.currentItem)}return true},serialize:function(d){var b=this._getItemsAsjQuery(d&&d.connected);var c=[];d=d||{};a(b).each(function(){var e=(a(d.item||this).attr(d.attribute||"id")||"").match(d.expression||(/(.+)[-=_](.+)/));if(e){c.push((d.key||e[1]+"[]")+"="+(d.key&&d.expression?e[1]:e[2]))}});return c.join("&")},toArray:function(d){var b=this._getItemsAsjQuery(d&&d.connected);var c=[];d=d||{};b.each(function(){c.push(a(d.item||this).attr(d.attribute||"id")||"")});return c},_intersectsWith:function(m){var e=this.positionAbs.left,d=e+this.helperProportions.width,k=this.positionAbs.top,j=k+this.helperProportions.height;var f=m.left,c=f+m.width,n=m.top,i=n+m.height;var o=this.offset.click.top,h=this.offset.click.left;var g=(k+o)>n&&(k+o)f&&(e+h)m[this.floating?"width":"height"])){return g}else{return(f0?"down":"up")},_getDragHorizontalDirection:function(){var b=this.positionAbs.left-this.lastPositionAbs.left;return b!=0&&(b>0?"right":"left")},refresh:function(b){this._refreshItems(b);this.refreshPositions()},_connectWith:function(){var b=this.options;return b.connectWith.constructor==String?[b.connectWith]:b.connectWith},_getItemsAsjQuery:function(b){var l=this;var g=[];var e=[];var h=this._connectWith();if(h&&b){for(var d=h.length-1;d>=0;d--){var k=a(h[d]);for(var c=k.length-1;c>=0;c--){var f=a.data(k[c],"sortable");if(f&&f!=this&&!f.options.disabled){e.push([a.isFunction(f.options.items)?f.options.items.call(f.element):a(f.options.items,f.element).not(".ui-sortable-helper"),f])}}}}e.push([a.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):a(this.options.items,this.element).not(".ui-sortable-helper"),this]);for(var d=e.length-1;d>=0;d--){e[d][0].each(function(){g.push(this)})}return a(g)},_removeCurrentsFromItems:function(){var d=this.currentItem.find(":data(sortable-item)");for(var c=0;c=0;e--){var m=a(l[e]);for(var d=m.length-1;d>=0;d--){var g=a.data(m[d],"sortable");if(g&&g!=this&&!g.options.disabled){f.push([a.isFunction(g.options.items)?g.options.items.call(g.element[0],b,{item:this.currentItem}):a(g.options.items,g.element),g]);this.containers.push(g)}}}}for(var e=f.length-1;e>=0;e--){var k=f[e][1];var c=f[e][0];for(var d=0,n=c.length;d=0;d--){var e=this.items[d];if(e.instance!=this.currentContainer&&this.currentContainer&&e.item[0]!=this.currentItem[0]){continue}var c=this.options.toleranceElement?a(this.options.toleranceElement,e.item):e.item;if(!b){e.width=c.outerWidth();e.height=c.outerHeight()}var f=c.offset();e.left=f.left;e.top=f.top}if(this.options.custom&&this.options.custom.refreshContainers){this.options.custom.refreshContainers.call(this)}else{for(var d=this.containers.length-1;d>=0;d--){var f=this.containers[d].element.offset();this.containers[d].containerCache.left=f.left;this.containers[d].containerCache.top=f.top;this.containers[d].containerCache.width=this.containers[d].element.outerWidth();this.containers[d].containerCache.height=this.containers[d].element.outerHeight()}}},_createPlaceholder:function(d){var b=d||this,e=b.options;if(!e.placeholder||e.placeholder.constructor==String){var c=e.placeholder;e.placeholder={element:function(){var f=a(document.createElement(b.currentItem[0].nodeName)).addClass(c||b.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];if(!c){f.style.visibility="hidden"}return f},update:function(f,g){if(c&&!e.forcePlaceholderSize){return}if(!g.height()){g.height(b.currentItem.innerHeight()-parseInt(b.currentItem.css("paddingTop")||0,10)-parseInt(b.currentItem.css("paddingBottom")||0,10))}if(!g.width()){g.width(b.currentItem.innerWidth()-parseInt(b.currentItem.css("paddingLeft")||0,10)-parseInt(b.currentItem.css("paddingRight")||0,10))}}}}b.placeholder=a(e.placeholder.element.call(b.element,b.currentItem));b.currentItem.after(b.placeholder);e.placeholder.update(b,b.placeholder)},_contactContainers:function(d){for(var c=this.containers.length-1;c>=0;c--){if(this._intersectsWith(this.containers[c].containerCache)){if(!this.containers[c].containerCache.over){if(this.currentContainer!=this.containers[c]){var h=10000;var g=null;var e=this.positionAbs[this.containers[c].floating?"left":"top"];for(var b=this.items.length-1;b>=0;b--){if(!a.ui.contains(this.containers[c].element[0],this.items[b].item[0])){continue}var f=this.items[b][this.containers[c].floating?"left":"top"];if(Math.abs(f-e)this.containment[2]){d=this.containment[2]+this.offset.click.left}if(e.pageY-this.offset.click.top>this.containment[3]){c=this.containment[3]+this.offset.click.top}}if(h.grid){var g=this.originalPageY+Math.round((c-this.originalPageY)/h.grid[1])*h.grid[1];c=this.containment?(!(g-this.offset.click.topthis.containment[3])?g:(!(g-this.offset.click.topthis.containment[2])?f:(!(f-this.offset.click.left=0;c--){if(a.ui.contains(this.containers[c].element[0],this.currentItem[0])&&!e){f.push((function(g){return function(h){g._trigger("receive",h,this._uiHash(this))}}).call(this,this.containers[c]));f.push((function(g){return function(h){g._trigger("update",h,this._uiHash(this))}}).call(this,this.containers[c]))}}}for(var c=this.containers.length-1;c>=0;c--){if(!e){f.push((function(g){return function(h){g._trigger("deactivate",h,this._uiHash(this))}}).call(this,this.containers[c]))}if(this.containers[c].containerCache.over){f.push((function(g){return function(h){g._trigger("out",h,this._uiHash(this))}}).call(this,this.containers[c]));this.containers[c].containerCache.over=0}}if(this._storedCursor){a("body").css("cursor",this._storedCursor)}if(this._storedOpacity){this.helper.css("opacity",this._storedOpacity)}if(this._storedZIndex){this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex)}this.dragging=false;if(this.cancelHelperRemoval){if(!e){this._trigger("beforeStop",d,this._uiHash());for(var c=0;c *",opacity:false,placeholder:false,revert:false,scroll:true,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1000}})})(jQuery);;/* + * jQuery UI Accordion 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Accordion + * + * Depends: + * ui.core.js + */ +(function(a){a.widget("ui.accordion",{_init:function(){var d=this.options,b=this;this.running=0;if(d.collapsible==a.ui.accordion.defaults.collapsible&&d.alwaysOpen!=a.ui.accordion.defaults.alwaysOpen){d.collapsible=!d.alwaysOpen}if(d.navigation){var c=this.element.find("a").filter(d.navigationFilter);if(c.length){if(c.filter(d.header).length){this.active=c}else{this.active=c.parent().parent().prev();c.addClass("ui-accordion-content-active")}}}this.element.addClass("ui-accordion ui-widget ui-helper-reset");if(this.element[0].nodeName=="UL"){this.element.children("li").addClass("ui-accordion-li-fix")}this.headers=this.element.find(d.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){a(this).removeClass("ui-state-focus")});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");this.active=this._findActive(this.active||d.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass("ui-accordion-content-active");a("").addClass("ui-icon "+d.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(d.icons.header).toggleClass(d.icons.headerSelected);if(a.browser.msie){this.element.find("a").css("zoom","1")}this.resize();this.element.attr("role","tablist");this.headers.attr("role","tab").bind("keydown",function(e){return b._keydown(e)}).next().attr("role","tabpanel");this.headers.not(this.active||"").attr("aria-expanded","false").attr("tabIndex","-1").next().hide();if(!this.active.length){this.headers.eq(0).attr("tabIndex","0")}else{this.active.attr("aria-expanded","true").attr("tabIndex","0")}if(!a.browser.safari){this.headers.find("a").attr("tabIndex","-1")}if(d.event){this.headers.bind((d.event)+".accordion",function(e){return b._clickHandler.call(b,e,this)})}},destroy:function(){var c=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind(".accordion").removeData("accordion");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex");this.headers.find("a").removeAttr("tabindex");this.headers.children(".ui-icon").remove();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(c.autoHeight||c.fillHeight){b.css("height","")}},_setData:function(b,c){if(b=="alwaysOpen"){b="collapsible";c=!c}a.widget.prototype._setData.apply(this,arguments)},_keydown:function(e){var g=this.options,f=a.ui.keyCode;if(g.disabled||e.altKey||e.ctrlKey){return}var d=this.headers.length;var b=this.headers.index(e.target);var c=false;switch(e.keyCode){case f.RIGHT:case f.DOWN:c=this.headers[(b+1)%d];break;case f.LEFT:case f.UP:c=this.headers[(b-1+d)%d];break;case f.SPACE:case f.ENTER:return this._clickHandler({target:e.target},e.target)}if(c){a(e.target).attr("tabIndex","-1");a(c).attr("tabIndex","0");c.focus();return false}return true},resize:function(){var e=this.options,d;if(e.fillSpace){if(a.browser.msie){var b=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}d=this.element.parent().height();if(a.browser.msie){this.element.parent().css("overflow",b)}this.headers.each(function(){d-=a(this).outerHeight()});var c=0;this.headers.next().each(function(){c=Math.max(c,a(this).innerHeight()-a(this).height())}).height(Math.max(0,d-c)).css("overflow","auto")}else{if(e.autoHeight){d=0;this.headers.next().each(function(){d=Math.max(d,a(this).outerHeight())}).height(d)}}},activate:function(b){var c=this._findActive(b)[0];this._clickHandler({target:c},c)},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===false?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,f){var d=this.options;if(d.disabled){return false}if(!b.target&&d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var h=this.active.next(),e={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:h},c=(this.active=a([]));this._toggle(c,h,e);return false}var g=a(b.currentTarget||f);var i=g[0]==this.active[0];if(this.running||(!d.collapsible&&i)){return false}this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");if(!i){g.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);g.next().addClass("ui-accordion-content-active")}var c=g.next(),h=this.active.next(),e={options:d,newHeader:i&&d.collapsible?a([]):g,oldHeader:this.active,newContent:i&&d.collapsible?a([]):c.find("> *"),oldContent:h.find("> *")},j=this.headers.index(this.active[0])>this.headers.index(g[0]);this.active=i?a([]):g;this._toggle(c,h,e,i,j);return false},_toggle:function(b,i,g,j,k){var d=this.options,m=this;this.toShow=b;this.toHide=i;this.data=g;var c=function(){if(!m){return}return m._completed.apply(m,arguments)};this._trigger("changestart",null,this.data);this.running=i.size()===0?b.size():i.size();if(d.animated){var f={};if(d.collapsible&&j){f={toShow:a([]),toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}else{f={toShow:b,toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}if(!d.proxied){d.proxied=d.animated}if(!d.proxiedDuration){d.proxiedDuration=d.duration}d.animated=a.isFunction(d.proxied)?d.proxied(f):d.proxied;d.duration=a.isFunction(d.proxiedDuration)?d.proxiedDuration(f):d.proxiedDuration;var l=a.ui.accordion.animations,e=d.duration,h=d.animated;if(!l[h]){l[h]=function(n){this.slide(n,{easing:h,duration:e||700})}}l[h](f)}else{if(d.collapsible&&j){b.toggle()}else{i.hide();b.show()}c(true)}i.prev().attr("aria-expanded","false").attr("tabIndex","-1").blur();b.prev().attr("aria-expanded","true").attr("tabIndex","0").focus()},_completed:function(b){var c=this.options;this.running=b?0:--this.running;if(this.running){return}if(c.clearStyle){this.toShow.add(this.toHide).css({height:"",overflow:""})}this._trigger("change",null,this.data)}});a.extend(a.ui.accordion,{version:"1.7.2",defaults:{active:null,alwaysOpen:true,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase()}},animations:{slide:function(j,h){j=a.extend({easing:"swing",duration:300},j,h);if(!j.toHide.size()){j.toShow.animate({height:"show"},j);return}if(!j.toShow.size()){j.toHide.animate({height:"hide"},j);return}var c=j.toShow.css("overflow"),g,d={},f={},e=["height","paddingTop","paddingBottom"],b;var i=j.toShow;b=i[0].style.width;i.width(parseInt(i.parent().width(),10)-parseInt(i.css("paddingLeft"),10)-parseInt(i.css("paddingRight"),10)-(parseInt(i.css("borderLeftWidth"),10)||0)-(parseInt(i.css("borderRightWidth"),10)||0));a.each(e,function(k,m){f[m]="hide";var l=(""+a.css(j.toShow[0],m)).match(/^([\d+-.]+)(.*)$/);d[m]={value:l[1],unit:l[2]||"px"}});j.toShow.css({height:0,overflow:"hidden"}).show();j.toHide.filter(":hidden").each(j.complete).end().filter(":visible").animate(f,{step:function(k,l){if(l.prop=="height"){g=(l.now-l.start)/(l.end-l.start)}j.toShow[0].style[l.prop]=(g*d[l.prop].value)+d[l.prop].unit},duration:j.duration,easing:j.easing,complete:function(){if(!j.autoHeight){j.toShow.css("height","")}j.toShow.css("width",b);j.toShow.css({overflow:c});j.complete()}})},bounceslide:function(b){this.slide(b,{easing:b.down?"easeOutBounce":"swing",duration:b.down?1000:200})},easeslide:function(b){this.slide(b,{easing:"easeinout",duration:700})}}})})(jQuery);;/* + * jQuery UI Dialog 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Dialog + * + * Depends: + * ui.core.js + * ui.draggable.js + * ui.resizable.js + */ +(function(c){var b={dragStart:"start.draggable",drag:"drag.draggable",dragStop:"stop.draggable",maxHeight:"maxHeight.resizable",minHeight:"minHeight.resizable",maxWidth:"maxWidth.resizable",minWidth:"minWidth.resizable",resizeStart:"start.resizable",resize:"drag.resizable",resizeStop:"stop.resizable"},a="ui-dialog ui-widget ui-widget-content ui-corner-all ";c.widget("ui.dialog",{_init:function(){this.originalTitle=this.element.attr("title");var l=this,m=this.options,j=m.title||this.originalTitle||" ",e=c.ui.dialog.getTitleId(this.element),k=(this.uiDialog=c("
    ")).appendTo(document.body).hide().addClass(a+m.dialogClass).css({position:"absolute",overflow:"hidden",zIndex:m.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(n){(m.closeOnEscape&&n.keyCode&&n.keyCode==c.ui.keyCode.ESCAPE&&l.close(n))}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(n){l.moveToTop(false,n)}),g=this.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(k),f=(this.uiDialogTitlebar=c("
    ")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(k),i=c('').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){i.addClass("ui-state-hover")},function(){i.removeClass("ui-state-hover")}).focus(function(){i.addClass("ui-state-focus")}).blur(function(){i.removeClass("ui-state-focus")}).mousedown(function(n){n.stopPropagation()}).click(function(n){l.close(n);return false}).appendTo(f),h=(this.uiDialogTitlebarCloseText=c("")).addClass("ui-icon ui-icon-closethick").text(m.closeText).appendTo(i),d=c("").addClass("ui-dialog-title").attr("id",e).html(j).prependTo(f);f.find("*").add(f).disableSelection();(m.draggable&&c.fn.draggable&&this._makeDraggable());(m.resizable&&c.fn.resizable&&this._makeResizable());this._createButtons(m.buttons);this._isOpen=false;(m.bgiframe&&c.fn.bgiframe&&k.bgiframe());(m.autoOpen&&this.open())},destroy:function(){(this.overlay&&this.overlay.destroy());this.uiDialog.hide();this.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");this.uiDialog.remove();(this.originalTitle&&this.element.attr("title",this.originalTitle))},close:function(f){var d=this;if(false===d._trigger("beforeclose",f)){return}(d.overlay&&d.overlay.destroy());d.uiDialog.unbind("keypress.ui-dialog");(d.options.hide?d.uiDialog.hide(d.options.hide,function(){d._trigger("close",f)}):d.uiDialog.hide()&&d._trigger("close",f));c.ui.dialog.overlay.resize();d._isOpen=false;if(d.options.modal){var e=0;c(".ui-dialog").each(function(){if(this!=d.uiDialog[0]){e=Math.max(e,c(this).css("z-index"))}});c.ui.dialog.maxZ=e}},isOpen:function(){return this._isOpen},moveToTop:function(f,e){if((this.options.modal&&!f)||(!this.options.stack&&!this.options.modal)){return this._trigger("focus",e)}if(this.options.zIndex>c.ui.dialog.maxZ){c.ui.dialog.maxZ=this.options.zIndex}(this.overlay&&this.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=++c.ui.dialog.maxZ));var d={scrollTop:this.element.attr("scrollTop"),scrollLeft:this.element.attr("scrollLeft")};this.uiDialog.css("z-index",++c.ui.dialog.maxZ);this.element.attr(d);this._trigger("focus",e)},open:function(){if(this._isOpen){return}var e=this.options,d=this.uiDialog;this.overlay=e.modal?new c.ui.dialog.overlay(this):null;(d.next().length&&d.appendTo("body"));this._size();this._position(e.position);d.show(e.show);this.moveToTop(true);(e.modal&&d.bind("keypress.ui-dialog",function(h){if(h.keyCode!=c.ui.keyCode.TAB){return}var g=c(":tabbable",this),i=g.filter(":first")[0],f=g.filter(":last")[0];if(h.target==f&&!h.shiftKey){setTimeout(function(){i.focus()},1)}else{if(h.target==i&&h.shiftKey){setTimeout(function(){f.focus()},1)}}}));c([]).add(d.find(".ui-dialog-content :tabbable:first")).add(d.find(".ui-dialog-buttonpane :tabbable:first")).add(d).filter(":first").focus();this._trigger("open");this._isOpen=true},_createButtons:function(g){var f=this,d=false,e=c("
    ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix");this.uiDialog.find(".ui-dialog-buttonpane").remove();(typeof g=="object"&&g!==null&&c.each(g,function(){return !(d=true)}));if(d){c.each(g,function(h,i){c('').addClass("ui-state-default ui-corner-all").text(h).click(function(){i.apply(f.element[0],arguments)}).hover(function(){c(this).addClass("ui-state-hover")},function(){c(this).removeClass("ui-state-hover")}).focus(function(){c(this).addClass("ui-state-focus")}).blur(function(){c(this).removeClass("ui-state-focus")}).appendTo(e)});e.appendTo(this.uiDialog)}},_makeDraggable:function(){var d=this,f=this.options,e;this.uiDialog.draggable({cancel:".ui-dialog-content",handle:".ui-dialog-titlebar",containment:"document",start:function(){e=f.height;c(this).height(c(this).height()).addClass("ui-dialog-dragging");(f.dragStart&&f.dragStart.apply(d.element[0],arguments))},drag:function(){(f.drag&&f.drag.apply(d.element[0],arguments))},stop:function(){c(this).removeClass("ui-dialog-dragging").height(e);(f.dragStop&&f.dragStop.apply(d.element[0],arguments));c.ui.dialog.overlay.resize()}})},_makeResizable:function(g){g=(g===undefined?this.options.resizable:g);var d=this,f=this.options,e=typeof g=="string"?g:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",alsoResize:this.element,maxWidth:f.maxWidth,maxHeight:f.maxHeight,minWidth:f.minWidth,minHeight:f.minHeight,start:function(){c(this).addClass("ui-dialog-resizing");(f.resizeStart&&f.resizeStart.apply(d.element[0],arguments))},resize:function(){(f.resize&&f.resize.apply(d.element[0],arguments))},handles:e,stop:function(){c(this).removeClass("ui-dialog-resizing");f.height=c(this).height();f.width=c(this).width();(f.resizeStop&&f.resizeStop.apply(d.element[0],arguments));c.ui.dialog.overlay.resize()}}).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_position:function(i){var e=c(window),f=c(document),g=f.scrollTop(),d=f.scrollLeft(),h=g;if(c.inArray(i,["center","top","right","bottom","left"])>=0){i=[i=="right"||i=="left"?i:"center",i=="top"||i=="bottom"?i:"middle"]}if(i.constructor!=Array){i=["center","middle"]}if(i[0].constructor==Number){d+=i[0]}else{switch(i[0]){case"left":d+=0;break;case"right":d+=e.width()-this.uiDialog.outerWidth();break;default:case"center":d+=(e.width()-this.uiDialog.outerWidth())/2}}if(i[1].constructor==Number){g+=i[1]}else{switch(i[1]){case"top":g+=0;break;case"bottom":g+=e.height()-this.uiDialog.outerHeight();break;default:case"middle":g+=(e.height()-this.uiDialog.outerHeight())/2}}g=Math.max(g,h);this.uiDialog.css({top:g,left:d})},_setData:function(e,f){(b[e]&&this.uiDialog.data(b[e],f));switch(e){case"buttons":this._createButtons(f);break;case"closeText":this.uiDialogTitlebarCloseText.text(f);break;case"dialogClass":this.uiDialog.removeClass(this.options.dialogClass).addClass(a+f);break;case"draggable":(f?this._makeDraggable():this.uiDialog.draggable("destroy"));break;case"height":this.uiDialog.height(f);break;case"position":this._position(f);break;case"resizable":var d=this.uiDialog,g=this.uiDialog.is(":data(resizable)");(g&&!f&&d.resizable("destroy"));(g&&typeof f=="string"&&d.resizable("option","handles",f));(g||this._makeResizable(f));break;case"title":c(".ui-dialog-title",this.uiDialogTitlebar).html(f||" ");break;case"width":this.uiDialog.width(f);break}c.widget.prototype._setData.apply(this,arguments)},_size:function(){var e=this.options;this.element.css({height:0,minHeight:0,width:"auto"});var d=this.uiDialog.css({height:"auto",width:e.width}).height();this.element.css({minHeight:Math.max(e.minHeight-d,0),height:e.height=="auto"?"auto":Math.max(e.height-d,0)})}});c.extend(c.ui.dialog,{version:"1.7.2",defaults:{autoOpen:true,bgiframe:false,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:"center",resizable:true,show:null,stack:true,title:"",width:300,zIndex:1000},getter:"isOpen",uuid:0,maxZ:0,getTitleId:function(d){return"ui-dialog-title-"+(d.attr("id")||++this.uuid)},overlay:function(d){this.$el=c.ui.dialog.overlay.create(d)}});c.extend(c.ui.dialog.overlay,{instances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(d){return d+".dialog-overlay"}).join(" "),create:function(e){if(this.instances.length===0){setTimeout(function(){if(c.ui.dialog.overlay.instances.length){c(document).bind(c.ui.dialog.overlay.events,function(f){var g=c(f.target).parents(".ui-dialog").css("zIndex")||0;return(g>c.ui.dialog.overlay.maxZ)})}},1);c(document).bind("keydown.dialog-overlay",function(f){(e.options.closeOnEscape&&f.keyCode&&f.keyCode==c.ui.keyCode.ESCAPE&&e.close(f))});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var d=c("
    ").appendTo(document.body).addClass("ui-widget-overlay").css({width:this.width(),height:this.height()});(e.options.bgiframe&&c.fn.bgiframe&&d.bgiframe());this.instances.push(d);return d},destroy:function(d){this.instances.splice(c.inArray(this.instances,d),1);if(this.instances.length===0){c([document,window]).unbind(".dialog-overlay")}d.remove();var e=0;c.each(this.instances,function(){e=Math.max(e,this.css("z-index"))});this.maxZ=e},height:function(){if(c.browser.msie&&c.browser.version<7){var e=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);var d=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);if(e
    ");if(!c.values){c.values=[this._valueMin(),this._valueMin()]}if(c.values.length&&c.values.length!=2){c.values=[c.values[0],c.values[0]]}}else{this.range=a("
    ")}this.range.appendTo(this.element).addClass("ui-slider-range");if(c.range=="min"||c.range=="max"){this.range.addClass("ui-slider-range-"+c.range)}this.range.addClass("ui-widget-header")}if(a(".ui-slider-handle",this.element).length==0){a('
    ').appendTo(this.element).addClass("ui-slider-handle")}if(c.values&&c.values.length){while(a(".ui-slider-handle",this.element).length').appendTo(this.element).addClass("ui-slider-handle")}}this.handles=a(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(d){d.preventDefault()}).hover(function(){if(!c.disabled){a(this).addClass("ui-state-hover")}},function(){a(this).removeClass("ui-state-hover")}).focus(function(){if(!c.disabled){a(".ui-slider .ui-state-focus").removeClass("ui-state-focus");a(this).addClass("ui-state-focus")}else{a(this).blur()}}).blur(function(){a(this).removeClass("ui-state-focus")});this.handles.each(function(d){a(this).data("index.ui-slider-handle",d)});this.handles.keydown(function(i){var f=true;var e=a(this).data("index.ui-slider-handle");if(b.options.disabled){return}switch(i.keyCode){case a.ui.keyCode.HOME:case a.ui.keyCode.END:case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:f=false;if(!b._keySliding){b._keySliding=true;a(this).addClass("ui-state-active");b._start(i,e)}break}var g,d,h=b._step();if(b.options.values&&b.options.values.length){g=d=b.values(e)}else{g=d=b.value()}switch(i.keyCode){case a.ui.keyCode.HOME:d=b._valueMin();break;case a.ui.keyCode.END:d=b._valueMax();break;case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:if(g==b._valueMax()){return}d=g+h;break;case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:if(g==b._valueMin()){return}d=g-h;break}b._slide(i,e,d);return f}).keyup(function(e){var d=a(this).data("index.ui-slider-handle");if(b._keySliding){b._stop(e,d);b._change(e,d);b._keySliding=false;a(this).removeClass("ui-state-active")}});this._refreshValue()},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy()},_mouseCapture:function(d){var e=this.options;if(e.disabled){return false}this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();var h={x:d.pageX,y:d.pageY};var j=this._normValueFromMouse(h);var c=this._valueMax()-this._valueMin()+1,f;var k=this,i;this.handles.each(function(l){var m=Math.abs(j-k.values(l));if(c>m){c=m;f=a(this);i=l}});if(e.range==true&&this.values(1)==e.min){f=a(this.handles[++i])}this._start(d,i);k._handleIndex=i;f.addClass("ui-state-active").focus();var g=f.offset();var b=!a(d.target).parents().andSelf().is(".ui-slider-handle");this._clickOffset=b?{left:0,top:0}:{left:d.pageX-g.left-(f.width()/2),top:d.pageY-g.top-(f.height()/2)-(parseInt(f.css("borderTopWidth"),10)||0)-(parseInt(f.css("borderBottomWidth"),10)||0)+(parseInt(f.css("marginTop"),10)||0)};j=this._normValueFromMouse(h);this._slide(d,i,j);return true},_mouseStart:function(b){return true},_mouseDrag:function(d){var b={x:d.pageX,y:d.pageY};var c=this._normValueFromMouse(b);this._slide(d,this._handleIndex,c);return false},_mouseStop:function(b){this.handles.removeClass("ui-state-active");this._stop(b,this._handleIndex);this._change(b,this._handleIndex);this._handleIndex=null;this._clickOffset=null;return false},_detectOrientation:function(){this.orientation=this.options.orientation=="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(d){var c,h;if("horizontal"==this.orientation){c=this.elementSize.width;h=d.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{c=this.elementSize.height;h=d.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}var f=(h/c);if(f>1){f=1}if(f<0){f=0}if("vertical"==this.orientation){f=1-f}var e=this._valueMax()-this._valueMin(),i=f*e,b=i%this.options.step,g=this._valueMin()+i-b;if(b>(this.options.step/2)){g+=this.options.step}return parseFloat(g.toFixed(5))},_start:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("start",d,b)},_slide:function(f,e,d){var g=this.handles[e];if(this.options.values&&this.options.values.length){var b=this.values(e?0:1);if((this.options.values.length==2&&this.options.range===true)&&((e==0&&d>b)||(e==1&&d1){this.options.values[b]=e;this._refreshValue(c);if(!d){this._change(null,b)}}if(arguments.length){if(this.options.values&&this.options.values.length){return this._values(b)}else{return this.value()}}else{return this._values()}},_setData:function(b,d,c){a.widget.prototype._setData.apply(this,arguments);switch(b){case"disabled":if(d){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled")}else{this.handles.removeAttr("disabled")}case"orientation":this._detectOrientation();this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue(c);break;case"value":this._refreshValue(c);break}},_step:function(){var b=this.options.step;return b},_value:function(){var b=this.options.value;if(bthis._valueMax()){b=this._valueMax()}return b},_values:function(b){if(arguments.length){var c=this.options.values[b];if(cthis._valueMax()){c=this._valueMax()}return c}else{return this.options.values}},_valueMin:function(){var b=this.options.min;return b},_valueMax:function(){var b=this.options.max;return b},_refreshValue:function(c){var f=this.options.range,d=this.options,l=this;if(this.options.values&&this.options.values.length){var i,h;this.handles.each(function(p,n){var o=(l.values(p)-l._valueMin())/(l._valueMax()-l._valueMin())*100;var m={};m[l.orientation=="horizontal"?"left":"bottom"]=o+"%";a(this).stop(1,1)[c?"animate":"css"](m,d.animate);if(l.options.range===true){if(l.orientation=="horizontal"){(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({left:o+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({width:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}else{(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({bottom:(o)+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({height:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}}lastValPercent=o})}else{var j=this.value(),g=this._valueMin(),k=this._valueMax(),e=k!=g?(j-g)/(k-g)*100:0;var b={};b[l.orientation=="horizontal"?"left":"bottom"]=e+"%";this.handle.stop(1,1)[c?"animate":"css"](b,d.animate);(f=="min")&&(this.orientation=="horizontal")&&this.range.stop(1,1)[c?"animate":"css"]({width:e+"%"},d.animate);(f=="max")&&(this.orientation=="horizontal")&&this.range[c?"animate":"css"]({width:(100-e)+"%"},{queue:false,duration:d.animate});(f=="min")&&(this.orientation=="vertical")&&this.range.stop(1,1)[c?"animate":"css"]({height:e+"%"},d.animate);(f=="max")&&(this.orientation=="vertical")&&this.range[c?"animate":"css"]({height:(100-e)+"%"},{queue:false,duration:d.animate})}}}));a.extend(a.ui.slider,{getter:"value values",version:"1.7.2",eventPrefix:"slide",defaults:{animate:false,delay:0,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null}})})(jQuery);;/* + * jQuery UI Tabs 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Tabs + * + * Depends: + * ui.core.js + */ +(function(a){a.widget("ui.tabs",{_init:function(){if(this.options.deselectable!==undefined){this.options.collapsible=this.options.deselectable}this._tabify(true)},_setData:function(b,c){if(b=="selected"){if(this.options.collapsible&&c==this.options.selected){return}this.select(c)}else{this.options[b]=c;if(b=="deselectable"){this.options.collapsible=c}this._tabify()}},_tabId:function(b){return b.title&&b.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+a.data(b)},_sanitizeSelector:function(b){return b.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+a.data(this.list[0]));return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(c,b){return{tab:c,panel:b,index:this.anchors.index(c)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(n){this.list=this.element.children("ul:first");this.lis=a("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return a("a",this)[0]});this.panels=a([]);var p=this,d=this.options;var c=/^#.+/;this.anchors.each(function(r,o){var q=a(o).attr("href");var s=q.split("#")[0],u;if(s&&(s===location.toString().split("#")[0]||(u=a("base")[0])&&s===u.href)){q=o.hash;o.href=q}if(c.test(q)){p.panels=p.panels.add(p._sanitizeSelector(q))}else{if(q!="#"){a.data(o,"href.tabs",q);a.data(o,"load.tabs",q.replace(/#.*$/,""));var w=p._tabId(o);o.href="#"+w;var v=a("#"+w);if(!v.length){v=a(d.panelTemplate).attr("id",w).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(p.panels[r-1]||p.list);v.data("destroy.tabs",true)}p.panels=p.panels.add(v)}else{d.disabled.push(r)}}});if(n){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(d.selected===undefined){if(location.hash){this.anchors.each(function(q,o){if(o.hash==location.hash){d.selected=q;return false}})}if(typeof d.selected!="number"&&d.cookie){d.selected=parseInt(p._cookie(),10)}if(typeof d.selected!="number"&&this.lis.filter(".ui-tabs-selected").length){d.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}d.selected=d.selected||0}else{if(d.selected===null){d.selected=-1}}d.selected=((d.selected>=0&&this.anchors[d.selected])||d.selected<0)?d.selected:0;d.disabled=a.unique(d.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(q,o){return p.lis.index(q)}))).sort();if(a.inArray(d.selected,d.disabled)!=-1){d.disabled.splice(a.inArray(d.selected,d.disabled),1)}this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");if(d.selected>=0&&this.anchors.length){this.panels.eq(d.selected).removeClass("ui-tabs-hide");this.lis.eq(d.selected).addClass("ui-tabs-selected ui-state-active");p.element.queue("tabs",function(){p._trigger("show",null,p._ui(p.anchors[d.selected],p.panels[d.selected]))});this.load(d.selected)}a(window).bind("unload",function(){p.lis.add(p.anchors).unbind(".tabs");p.lis=p.anchors=p.panels=null})}else{d.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}this.element[d.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");if(d.cookie){this._cookie(d.selected,d.cookie)}for(var g=0,m;(m=this.lis[g]);g++){a(m)[a.inArray(g,d.disabled)!=-1&&!a(m).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")}if(d.cache===false){this.anchors.removeData("cache.tabs")}this.lis.add(this.anchors).unbind(".tabs");if(d.event!="mouseover"){var f=function(o,i){if(i.is(":not(.ui-state-disabled)")){i.addClass("ui-state-"+o)}};var j=function(o,i){i.removeClass("ui-state-"+o)};this.lis.bind("mouseover.tabs",function(){f("hover",a(this))});this.lis.bind("mouseout.tabs",function(){j("hover",a(this))});this.anchors.bind("focus.tabs",function(){f("focus",a(this).closest("li"))});this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var b,h;if(d.fx){if(a.isArray(d.fx)){b=d.fx[0];h=d.fx[1]}else{b=h=d.fx}}function e(i,o){i.css({display:""});if(a.browser.msie&&o.opacity){i[0].style.removeAttribute("filter")}}var k=h?function(i,o){a(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.hide().removeClass("ui-tabs-hide").animate(h,h.duration||"normal",function(){e(o,h);p._trigger("show",null,p._ui(i,o[0]))})}:function(i,o){a(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.removeClass("ui-tabs-hide");p._trigger("show",null,p._ui(i,o[0]))};var l=b?function(o,i){i.animate(b,b.duration||"normal",function(){p.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");e(i,b);p.element.dequeue("tabs")})}:function(o,i,q){p.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");p.element.dequeue("tabs")};this.anchors.bind(d.event+".tabs",function(){var o=this,r=a(this).closest("li"),i=p.panels.filter(":not(.ui-tabs-hide)"),q=a(p._sanitizeSelector(this.hash));if((r.hasClass("ui-tabs-selected")&&!d.collapsible)||r.hasClass("ui-state-disabled")||r.hasClass("ui-state-processing")||p._trigger("select",null,p._ui(this,q[0]))===false){this.blur();return false}d.selected=p.anchors.index(this);p.abort();if(d.collapsible){if(r.hasClass("ui-tabs-selected")){d.selected=-1;if(d.cookie){p._cookie(d.selected,d.cookie)}p.element.queue("tabs",function(){l(o,i)}).dequeue("tabs");this.blur();return false}else{if(!i.length){if(d.cookie){p._cookie(d.selected,d.cookie)}p.element.queue("tabs",function(){k(o,q)});p.load(p.anchors.index(this));this.blur();return false}}}if(d.cookie){p._cookie(d.selected,d.cookie)}if(q.length){if(i.length){p.element.queue("tabs",function(){l(o,i)})}p.element.queue("tabs",function(){k(o,q)});p.load(p.anchors.index(this))}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(a.browser.msie){this.blur()}});this.anchors.bind("click.tabs",function(){return false})},destroy:function(){var b=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var c=a.data(this,"href.tabs");if(c){this.href=c}var d=a(this).unbind(".tabs");a.each(["href","load","cache"],function(e,f){d.removeData(f+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){if(a.data(this,"destroy.tabs")){a(this).remove()}else{a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}});if(b.cookie){this._cookie(null,b.cookie)}},add:function(e,d,c){if(c===undefined){c=this.anchors.length}var b=this,g=this.options,i=a(g.tabTemplate.replace(/#\{href\}/g,e).replace(/#\{label\}/g,d)),h=!e.indexOf("#")?e.replace("#",""):this._tabId(a("a",i)[0]);i.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var f=a("#"+h);if(!f.length){f=a(g.panelTemplate).attr("id",h).data("destroy.tabs",true)}f.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(c>=this.lis.length){i.appendTo(this.list);f.appendTo(this.list[0].parentNode)}else{i.insertBefore(this.lis[c]);f.insertBefore(this.panels[c])}g.disabled=a.map(g.disabled,function(k,j){return k>=c?++k:k});this._tabify();if(this.anchors.length==1){i.addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){b._trigger("show",null,b._ui(b.anchors[0],b.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[c],this.panels[c]))},remove:function(b){var d=this.options,e=this.lis.eq(b).remove(),c=this.panels.eq(b).remove();if(e.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(b+(b+1=b?--g:g});this._tabify();this._trigger("remove",null,this._ui(e.find("a")[0],c[0]))},enable:function(b){var c=this.options;if(a.inArray(b,c.disabled)==-1){return}this.lis.eq(b).removeClass("ui-state-disabled");c.disabled=a.grep(c.disabled,function(e,d){return e!=b});this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b]))},disable:function(c){var b=this,d=this.options;if(c!=d.selected){this.lis.eq(c).addClass("ui-state-disabled");d.disabled.push(c);d.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[c],this.panels[c]))}},select:function(b){if(typeof b=="string"){b=this.anchors.index(this.anchors.filter("[href$="+b+"]"))}else{if(b===null){b=-1}}if(b==-1&&this.options.collapsible){b=this.options.selected}this.anchors.eq(b).trigger(this.options.event+".tabs")},load:function(e){var c=this,g=this.options,b=this.anchors.eq(e)[0],d=a.data(b,"load.tabs");this.abort();if(!d||this.element.queue("tabs").length!==0&&a.data(b,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(e).addClass("ui-state-processing");if(g.spinner){var f=a("span",b);f.data("label.tabs",f.html()).html(g.spinner)}this.xhr=a.ajax(a.extend({},g.ajaxOptions,{url:d,success:function(i,h){a(c._sanitizeSelector(b.hash)).html(i);c._cleanup();if(g.cache){a.data(b,"cache.tabs",true)}c._trigger("load",null,c._ui(c.anchors[e],c.panels[e]));try{g.ajaxOptions.success(i,h)}catch(j){}c.element.dequeue("tabs")}}))},abort:function(){this.element.queue([]);this.panels.stop(false,true);if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup()},url:function(c,b){this.anchors.eq(c).removeData("cache.tabs").data("load.tabs",b)},length:function(){return this.anchors.length}});a.extend(a.ui.tabs,{version:"1.7.2",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,collapsible:false,disabled:[],event:"click",fx:null,idPrefix:"ui-tabs-",panelTemplate:"
    ",spinner:"Loading…",tabTemplate:'
  • #{label}
  • '}});a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(d,f){var b=this,g=this.options;var c=b._rotate||(b._rotate=function(h){clearTimeout(b.rotation);b.rotation=setTimeout(function(){var i=g.selected;b.select(++i')}$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",log:function(){if(this.debug){console.log.apply("",arguments)}},setDefaults:function(settings){extendRemove(this._defaults,settings||{});return this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase();var inline=(nodeName=="div"||nodeName=="span");if(!target.id){target.id="dp"+(++this.uuid)}var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{});if(nodeName=="input"){this._connectDatepicker(target,inst)}else{if(inline){this._inlineDatepicker(target,inst)}}},_newInst:function(target,inline){var id=target[0].id.replace(/([:\[\]\.])/g,"\\\\$1");return{id:id,input:target,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:inline,dpDiv:(!inline?this.dpDiv:$('
    '))}},_connectDatepicker:function(target,inst){var input=$(target);inst.append=$([]);inst.trigger=$([]);if(input.hasClass(this.markerClassName)){return}var appendText=this._get(inst,"appendText");var isRTL=this._get(inst,"isRTL");if(appendText){inst.append=$(''+appendText+"");input[isRTL?"before":"after"](inst.append)}var showOn=this._get(inst,"showOn");if(showOn=="focus"||showOn=="both"){input.focus(this._showDatepicker)}if(showOn=="button"||showOn=="both"){var buttonText=this._get(inst,"buttonText");var buttonImage=this._get(inst,"buttonImage");inst.trigger=$(this._get(inst,"buttonImageOnly")?$("").addClass(this._triggerClass).attr({src:buttonImage,alt:buttonText,title:buttonText}):$('').addClass(this._triggerClass).html(buttonImage==""?buttonText:$("").attr({src:buttonImage,alt:buttonText,title:buttonText})));input[isRTL?"before":"after"](inst.trigger);inst.trigger.click(function(){if($.datepicker._datepickerShowing&&$.datepicker._lastInput==target){$.datepicker._hideDatepicker()}else{$.datepicker._showDatepicker(target)}return false})}input.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst)},_inlineDatepicker:function(target,inst){var divSpan=$(target);if(divSpan.hasClass(this.markerClassName)){return}divSpan.addClass(this.markerClassName).append(inst.dpDiv).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst);this._setDate(inst,this._getDefaultDate(inst));this._updateDatepicker(inst);this._updateAlternate(inst)},_dialogDatepicker:function(input,dateText,onSelect,settings,pos){var inst=this._dialogInst;if(!inst){var id="dp"+(++this.uuid);this._dialogInput=$('');this._dialogInput.keydown(this._doKeyDown);$("body").append(this._dialogInput);inst=this._dialogInst=this._newInst(this._dialogInput,false);inst.settings={};$.data(this._dialogInput[0],PROP_NAME,inst)}extendRemove(inst.settings,settings||{});this._dialogInput.val(dateText);this._pos=(pos?(pos.length?pos:[pos.pageX,pos.pageY]):null);if(!this._pos){var browserWidth=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth;var browserHeight=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var scrollX=document.documentElement.scrollLeft||document.body.scrollLeft;var scrollY=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[(browserWidth/2)-100+scrollX,(browserHeight/2)-150+scrollY]}this._dialogInput.css("left",this._pos[0]+"px").css("top",this._pos[1]+"px");inst.settings.onSelect=onSelect;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);if($.blockUI){$.blockUI(this.dpDiv)}$.data(this._dialogInput[0],PROP_NAME,inst);return this},_destroyDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();$.removeData(target,PROP_NAME);if(nodeName=="input"){inst.append.remove();inst.trigger.remove();$target.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress)}else{if(nodeName=="div"||nodeName=="span"){$target.removeClass(this.markerClassName).empty()}}},_enableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=false;inst.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().removeClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)})},_disableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=true;inst.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().addClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)});this._disabledInputs[this._disabledInputs.length]=target},_isDisabledDatepicker:function(target){if(!target){return false}for(var i=0;i-1)}},_showDatepicker:function(input){input=input.target||input;if(input.nodeName.toLowerCase()!="input"){input=$("input",input.parentNode)[0]}if($.datepicker._isDisabledDatepicker(input)||$.datepicker._lastInput==input){return}var inst=$.datepicker._getInst(input);var beforeShow=$.datepicker._get(inst,"beforeShow");extendRemove(inst.settings,(beforeShow?beforeShow.apply(input,[input,inst]):{}));$.datepicker._hideDatepicker(null,"");$.datepicker._lastInput=input;$.datepicker._setDateFromField(inst);if($.datepicker._inDialog){input.value=""}if(!$.datepicker._pos){$.datepicker._pos=$.datepicker._findPos(input);$.datepicker._pos[1]+=input.offsetHeight}var isFixed=false;$(input).parents().each(function(){isFixed|=$(this).css("position")=="fixed";return !isFixed});if(isFixed&&$.browser.opera){$.datepicker._pos[0]-=document.documentElement.scrollLeft;$.datepicker._pos[1]-=document.documentElement.scrollTop}var offset={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null;inst.rangeStart=null;inst.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});$.datepicker._updateDatepicker(inst);offset=$.datepicker._checkOffset(inst,offset,isFixed);inst.dpDiv.css({position:($.datepicker._inDialog&&$.blockUI?"static":(isFixed?"fixed":"absolute")),display:"none",left:offset.left+"px",top:offset.top+"px"});if(!inst.inline){var showAnim=$.datepicker._get(inst,"showAnim")||"show";var duration=$.datepicker._get(inst,"duration");var postProcess=function(){$.datepicker._datepickerShowing=true;if($.browser.msie&&parseInt($.browser.version,10)<7){$("iframe.ui-datepicker-cover").css({width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4})}};if($.effects&&$.effects[showAnim]){inst.dpDiv.show(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[showAnim](duration,postProcess)}if(duration==""){postProcess()}if(inst.input[0].type!="hidden"){inst.input[0].focus()}$.datepicker._curInst=inst}},_updateDatepicker:function(inst){var dims={width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4};var self=this;inst.dpDiv.empty().append(this._generateHTML(inst)).find("iframe.ui-datepicker-cover").css({width:dims.width,height:dims.height}).end().find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){$(this).removeClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).removeClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).removeClass("ui-datepicker-next-hover")}}).bind("mouseover",function(){if(!self._isDisabledDatepicker(inst.inline?inst.dpDiv.parent()[0]:inst.input[0])){$(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");$(this).addClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).addClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).addClass("ui-datepicker-next-hover")}}}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end();var numMonths=this._getNumberOfMonths(inst);var cols=numMonths[1];var width=17;if(cols>1){inst.dpDiv.addClass("ui-datepicker-multi-"+cols).css("width",(width*cols)+"em")}else{inst.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("")}inst.dpDiv[(numMonths[0]!=1||numMonths[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");inst.dpDiv[(this._get(inst,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");if(inst.input&&inst.input[0].type!="hidden"&&inst==$.datepicker._curInst){$(inst.input[0]).focus()}},_checkOffset:function(inst,offset,isFixed){var dpWidth=inst.dpDiv.outerWidth();var dpHeight=inst.dpDiv.outerHeight();var inputWidth=inst.input?inst.input.outerWidth():0;var inputHeight=inst.input?inst.input.outerHeight():0;var viewWidth=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)+$(document).scrollLeft();var viewHeight=(window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight)+$(document).scrollTop();offset.left-=(this._get(inst,"isRTL")?(dpWidth-inputWidth):0);offset.left-=(isFixed&&offset.left==inst.input.offset().left)?$(document).scrollLeft():0;offset.top-=(isFixed&&offset.top==(inst.input.offset().top+inputHeight))?$(document).scrollTop():0;offset.left-=(offset.left+dpWidth>viewWidth&&viewWidth>dpWidth)?Math.abs(offset.left+dpWidth-viewWidth):0;offset.top-=(offset.top+dpHeight>viewHeight&&viewHeight>dpHeight)?Math.abs(offset.top+dpHeight+inputHeight*2-viewHeight):0;return offset},_findPos:function(obj){while(obj&&(obj.type=="hidden"||obj.nodeType!=1)){obj=obj.nextSibling}var position=$(obj).offset();return[position.left,position.top]},_hideDatepicker:function(input,duration){var inst=this._curInst;if(!inst||(input&&inst!=$.data(input,PROP_NAME))){return}if(inst.stayOpen){this._selectDate("#"+inst.id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear))}inst.stayOpen=false;if(this._datepickerShowing){duration=(duration!=null?duration:this._get(inst,"duration"));var showAnim=this._get(inst,"showAnim");var postProcess=function(){$.datepicker._tidyDialog(inst)};if(duration!=""&&$.effects&&$.effects[showAnim]){inst.dpDiv.hide(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[(duration==""?"hide":(showAnim=="slideDown"?"slideUp":(showAnim=="fadeIn"?"fadeOut":"hide")))](duration,postProcess)}if(duration==""){this._tidyDialog(inst)}var onClose=this._get(inst,"onClose");if(onClose){onClose.apply((inst.input?inst.input[0]:null),[(inst.input?inst.input.val():""),inst])}this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if($.blockUI){$.unblockUI();$("body").append(this.dpDiv)}}this._inDialog=false}this._curInst=null},_tidyDialog:function(inst){inst.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(event){if(!$.datepicker._curInst){return}var $target=$(event.target);if(($target.parents("#"+$.datepicker._mainDivId).length==0)&&!$target.hasClass($.datepicker.markerClassName)&&!$target.hasClass($.datepicker._triggerClass)&&$.datepicker._datepickerShowing&&!($.datepicker._inDialog&&$.blockUI)){$.datepicker._hideDatepicker(null,"")}},_adjustDate:function(id,offset,period){var target=$(id);var inst=this._getInst(target[0]);if(this._isDisabledDatepicker(target[0])){return}this._adjustInstDate(inst,offset+(period=="M"?this._get(inst,"showCurrentAtPos"):0),period);this._updateDatepicker(inst)},_gotoToday:function(id){var target=$(id);var inst=this._getInst(target[0]);if(this._get(inst,"gotoCurrent")&&inst.currentDay){inst.selectedDay=inst.currentDay;inst.drawMonth=inst.selectedMonth=inst.currentMonth;inst.drawYear=inst.selectedYear=inst.currentYear}else{var date=new Date();inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear()}this._notifyChange(inst);this._adjustDate(target)},_selectMonthYear:function(id,select,period){var target=$(id);var inst=this._getInst(target[0]);inst._selectingMonthYear=false;inst["selected"+(period=="M"?"Month":"Year")]=inst["draw"+(period=="M"?"Month":"Year")]=parseInt(select.options[select.selectedIndex].value,10);this._notifyChange(inst);this._adjustDate(target)},_clickMonthYear:function(id){var target=$(id);var inst=this._getInst(target[0]);if(inst.input&&inst._selectingMonthYear&&!$.browser.msie){inst.input[0].focus()}inst._selectingMonthYear=!inst._selectingMonthYear},_selectDay:function(id,month,year,td){var target=$(id);if($(td).hasClass(this._unselectableClass)||this._isDisabledDatepicker(target[0])){return}var inst=this._getInst(target[0]);inst.selectedDay=inst.currentDay=$("a",td).html();inst.selectedMonth=inst.currentMonth=month;inst.selectedYear=inst.currentYear=year;if(inst.stayOpen){inst.endDay=inst.endMonth=inst.endYear=null}this._selectDate(id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear));if(inst.stayOpen){inst.rangeStart=this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay));this._updateDatepicker(inst)}},_clearDate:function(id){var target=$(id);var inst=this._getInst(target[0]);inst.stayOpen=false;inst.endDay=inst.endMonth=inst.endYear=inst.rangeStart=null;this._selectDate(target,"")},_selectDate:function(id,dateStr){var target=$(id);var inst=this._getInst(target[0]);dateStr=(dateStr!=null?dateStr:this._formatDate(inst));if(inst.input){inst.input.val(dateStr)}this._updateAlternate(inst);var onSelect=this._get(inst,"onSelect");if(onSelect){onSelect.apply((inst.input?inst.input[0]:null),[dateStr,inst])}else{if(inst.input){inst.input.trigger("change")}}if(inst.inline){this._updateDatepicker(inst)}else{if(!inst.stayOpen){this._hideDatepicker(null,this._get(inst,"duration"));this._lastInput=inst.input[0];if(typeof(inst.input[0])!="object"){inst.input[0].focus()}this._lastInput=null}}},_updateAlternate:function(inst){var altField=this._get(inst,"altField");if(altField){var altFormat=this._get(inst,"altFormat")||this._get(inst,"dateFormat");var date=this._getDate(inst);dateStr=this.formatDate(altFormat,date,this._getFormatConfig(inst));$(altField).each(function(){$(this).val(dateStr)})}},noWeekends:function(date){var day=date.getDay();return[(day>0&&day<6),""]},iso8601Week:function(date){var checkDate=new Date(date.getFullYear(),date.getMonth(),date.getDate());var firstMon=new Date(checkDate.getFullYear(),1-1,4);var firstDay=firstMon.getDay()||7;firstMon.setDate(firstMon.getDate()+1-firstDay);if(firstDay<4&&checkDatenew Date(checkDate.getFullYear(),12-1,28)){firstDay=new Date(checkDate.getFullYear()+1,1-1,4).getDay()||7;if(firstDay>4&&(checkDate.getDay()||7)0&&iValue="0"&&value.charAt(iValue)<="9"){num=num*10+parseInt(value.charAt(iValue++),10);size--}if(size==origSize){throw"Missing number at position "+iValue}return num};var getName=function(match,shortNames,longNames){var names=(lookAhead(match)?longNames:shortNames);var size=0;for(var j=0;j0&&iValue-1){month=1;day=doy;do{var dim=this._getDaysInMonth(year,month-1);if(day<=dim){break}month++;day-=dim}while(true)}var date=this._daylightSavingAdjust(new Date(year,month-1,day));if(date.getFullYear()!=year||date.getMonth()+1!=month||date.getDate()!=day){throw"Invalid date"}return date},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TIMESTAMP:"@",W3C:"yy-mm-dd",formatDate:function(format,date,settings){if(!date){return""}var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var lookAhead=function(match){var matches=(iFormat+1=0;m--){doy+=this._getDaysInMonth(date.getFullYear(),m)}output+=formatNumber("o",doy,3);break;case"m":output+=formatNumber("m",date.getMonth()+1,2);break;case"M":output+=formatName("M",date.getMonth(),monthNamesShort,monthNames);break;case"y":output+=(lookAhead("y")?date.getFullYear():(date.getYear()%100<10?"0":"")+date.getYear()%100);break;case"@":output+=date.getTime();break;case"'":if(lookAhead("'")){output+="'"}else{literal=true}break;default:output+=format.charAt(iFormat)}}}}return output},_possibleChars:function(format){var chars="";var literal=false;for(var iFormat=0;iFormatmaxDate?maxDate:date);return date},_determineDate:function(date,defaultDate){var offsetNumeric=function(offset){var date=new Date();date.setDate(date.getDate()+offset);return date};var offsetString=function(offset,getDaysInMonth){var date=new Date();var year=date.getFullYear();var month=date.getMonth();var day=date.getDate();var pattern=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g;var matches=pattern.exec(offset);while(matches){switch(matches[2]||"d"){case"d":case"D":day+=parseInt(matches[1],10);break;case"w":case"W":day+=parseInt(matches[1],10)*7;break;case"m":case"M":month+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break;case"y":case"Y":year+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break}matches=pattern.exec(offset)}return new Date(year,month,day)};date=(date==null?defaultDate:(typeof date=="string"?offsetString(date,this._getDaysInMonth):(typeof date=="number"?(isNaN(date)?defaultDate:offsetNumeric(date)):date)));date=(date&&date.toString()=="Invalid Date"?defaultDate:date);if(date){date.setHours(0);date.setMinutes(0);date.setSeconds(0);date.setMilliseconds(0)}return this._daylightSavingAdjust(date)},_daylightSavingAdjust:function(date){if(!date){return null}date.setHours(date.getHours()>12?date.getHours()+2:0);return date},_setDate:function(inst,date,endDate){var clear=!(date);var origMonth=inst.selectedMonth;var origYear=inst.selectedYear;date=this._determineDate(date,new Date());inst.selectedDay=inst.currentDay=date.getDate();inst.drawMonth=inst.selectedMonth=inst.currentMonth=date.getMonth();inst.drawYear=inst.selectedYear=inst.currentYear=date.getFullYear();if(origMonth!=inst.selectedMonth||origYear!=inst.selectedYear){this._notifyChange(inst)}this._adjustInstDate(inst);if(inst.input){inst.input.val(clear?"":this._formatDate(inst))}},_getDate:function(inst){var startDate=(!inst.currentYear||(inst.input&&inst.input.val()=="")?null:this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return startDate},_generateHTML:function(inst){var today=new Date();today=this._daylightSavingAdjust(new Date(today.getFullYear(),today.getMonth(),today.getDate()));var isRTL=this._get(inst,"isRTL");var showButtonPanel=this._get(inst,"showButtonPanel");var hideIfNoPrevNext=this._get(inst,"hideIfNoPrevNext");var navigationAsDateFormat=this._get(inst,"navigationAsDateFormat");var numMonths=this._getNumberOfMonths(inst);var showCurrentAtPos=this._get(inst,"showCurrentAtPos");var stepMonths=this._get(inst,"stepMonths");var stepBigMonths=this._get(inst,"stepBigMonths");var isMultiMonth=(numMonths[0]!=1||numMonths[1]!=1);var currentDate=this._daylightSavingAdjust((!inst.currentDay?new Date(9999,9,9):new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");var drawMonth=inst.drawMonth-showCurrentAtPos;var drawYear=inst.drawYear;if(drawMonth<0){drawMonth+=12;drawYear--}if(maxDate){var maxDraw=this._daylightSavingAdjust(new Date(maxDate.getFullYear(),maxDate.getMonth()-numMonths[1]+1,maxDate.getDate()));maxDraw=(minDate&&maxDrawmaxDraw){drawMonth--;if(drawMonth<0){drawMonth=11;drawYear--}}}inst.drawMonth=drawMonth;inst.drawYear=drawYear;var prevText=this._get(inst,"prevText");prevText=(!navigationAsDateFormat?prevText:this.formatDate(prevText,this._daylightSavingAdjust(new Date(drawYear,drawMonth-stepMonths,1)),this._getFormatConfig(inst)));var prev=(this._canAdjustMonth(inst,-1,drawYear,drawMonth)?''+prevText+"":(hideIfNoPrevNext?"":''+prevText+""));var nextText=this._get(inst,"nextText");nextText=(!navigationAsDateFormat?nextText:this.formatDate(nextText,this._daylightSavingAdjust(new Date(drawYear,drawMonth+stepMonths,1)),this._getFormatConfig(inst)));var next=(this._canAdjustMonth(inst,+1,drawYear,drawMonth)?''+nextText+"":(hideIfNoPrevNext?"":''+nextText+""));var currentText=this._get(inst,"currentText");var gotoDate=(this._get(inst,"gotoCurrent")&&inst.currentDay?currentDate:today);currentText=(!navigationAsDateFormat?currentText:this.formatDate(currentText,gotoDate,this._getFormatConfig(inst)));var controls=(!inst.inline?'":"");var buttonPanel=(showButtonPanel)?'
    '+(isRTL?controls:"")+(this._isInRange(inst,gotoDate)?'":"")+(isRTL?"":controls)+"
    ":"";var firstDay=parseInt(this._get(inst,"firstDay"),10);firstDay=(isNaN(firstDay)?0:firstDay);var dayNames=this._get(inst,"dayNames");var dayNamesShort=this._get(inst,"dayNamesShort");var dayNamesMin=this._get(inst,"dayNamesMin");var monthNames=this._get(inst,"monthNames");var monthNamesShort=this._get(inst,"monthNamesShort");var beforeShowDay=this._get(inst,"beforeShowDay");var showOtherMonths=this._get(inst,"showOtherMonths");var calculateWeek=this._get(inst,"calculateWeek")||this.iso8601Week;var endDate=inst.endDay?this._daylightSavingAdjust(new Date(inst.endYear,inst.endMonth,inst.endDay)):currentDate;var defaultDate=this._getDefaultDate(inst);var html="";for(var row=0;row'+(/all|left/.test(cornerClass)&&row==0?(isRTL?next:prev):"")+(/all|right/.test(cornerClass)&&row==0?(isRTL?prev:next):"")+this._generateMonthYearHeader(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,row>0||col>0,monthNames,monthNamesShort)+'';var thead="";for(var dow=0;dow<7;dow++){var day=(dow+firstDay)%7;thead+="=5?' class="ui-datepicker-week-end"':"")+'>'+dayNamesMin[day]+""}calender+=thead+"";var daysInMonth=this._getDaysInMonth(drawYear,drawMonth);if(drawYear==inst.selectedYear&&drawMonth==inst.selectedMonth){inst.selectedDay=Math.min(inst.selectedDay,daysInMonth)}var leadDays=(this._getFirstDayOfMonth(drawYear,drawMonth)-firstDay+7)%7;var numRows=(isMultiMonth?6:Math.ceil((leadDays+daysInMonth)/7));var printDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,1-leadDays));for(var dRow=0;dRow";var tbody="";for(var dow=0;dow<7;dow++){var daySettings=(beforeShowDay?beforeShowDay.apply((inst.input?inst.input[0]:null),[printDate]):[true,""]);var otherMonth=(printDate.getMonth()!=drawMonth);var unselectable=otherMonth||!daySettings[0]||(minDate&&printDatemaxDate);tbody+='";printDate.setDate(printDate.getDate()+1);printDate=this._daylightSavingAdjust(printDate)}calender+=tbody+""}drawMonth++;if(drawMonth>11){drawMonth=0;drawYear++}calender+="
    =currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" "+this._currentClass:"")+(printDate.getTime()==today.getTime()?" ui-datepicker-today":""))+'"'+((!otherMonth||showOtherMonths)&&daySettings[2]?' title="'+daySettings[2]+'"':"")+(unselectable?"":" onclick=\"DP_jQuery.datepicker._selectDay('#"+inst.id+"',"+drawMonth+","+drawYear+', this);return false;"')+">"+(otherMonth?(showOtherMonths?printDate.getDate():" "):(unselectable?''+printDate.getDate()+"":'=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" ui-state-active":"")+'" href="#">'+printDate.getDate()+""))+"
    "+(isMultiMonth?""+((numMonths[0]>0&&col==numMonths[1]-1)?'
    ':""):"");group+=calender}html+=group}html+=buttonPanel+($.browser.msie&&parseInt($.browser.version,10)<7&&!inst.inline?'':"");inst._keyEvent=false;return html},_generateMonthYearHeader:function(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,secondary,monthNames,monthNamesShort){minDate=(inst.rangeStart&&minDate&&selectedDate "}else{var inMinYear=(minDate&&minDate.getFullYear()==drawYear);var inMaxYear=(maxDate&&maxDate.getFullYear()==drawYear);monthHtml+='"}if(!showMonthAfterYear){html+=monthHtml+((secondary||changeMonth||changeYear)&&(!(changeMonth&&changeYear))?" ":"")}if(secondary||!changeYear){html+=''+drawYear+""}else{var years=this._get(inst,"yearRange").split(":");var year=0;var endYear=0;if(years.length!=2){year=drawYear-10;endYear=drawYear+10}else{if(years[0].charAt(0)=="+"||years[0].charAt(0)=="-"){year=drawYear+parseInt(years[0],10);endYear=drawYear+parseInt(years[1],10)}else{year=parseInt(years[0],10);endYear=parseInt(years[1],10)}}year=(minDate?Math.max(year,minDate.getFullYear()):year);endYear=(maxDate?Math.min(endYear,maxDate.getFullYear()):endYear);html+='"}if(showMonthAfterYear){html+=(secondary||changeMonth||changeYear?" ":"")+monthHtml}html+="";return html},_adjustInstDate:function(inst,offset,period){var year=inst.drawYear+(period=="Y"?offset:0);var month=inst.drawMonth+(period=="M"?offset:0);var day=Math.min(inst.selectedDay,this._getDaysInMonth(year,month))+(period=="D"?offset:0);var date=this._daylightSavingAdjust(new Date(year,month,day));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&datemaxDate?maxDate:date);inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();if(period=="M"||period=="Y"){this._notifyChange(inst)}},_notifyChange:function(inst){var onChange=this._get(inst,"onChangeMonthYear");if(onChange){onChange.apply((inst.input?inst.input[0]:null),[inst.selectedYear,inst.selectedMonth+1,inst])}},_getNumberOfMonths:function(inst){var numMonths=this._get(inst,"numberOfMonths");return(numMonths==null?[1,1]:(typeof numMonths=="number"?[1,numMonths]:numMonths))},_getMinMaxDate:function(inst,minMax,checkRange){var date=this._determineDate(this._get(inst,minMax+"Date"),null);return(!checkRange||!inst.rangeStart?date:(!date||inst.rangeStart>date?inst.rangeStart:date))},_getDaysInMonth:function(year,month){return 32-new Date(year,month,32).getDate()},_getFirstDayOfMonth:function(year,month){return new Date(year,month,1).getDay()},_canAdjustMonth:function(inst,offset,curYear,curMonth){var numMonths=this._getNumberOfMonths(inst);var date=this._daylightSavingAdjust(new Date(curYear,curMonth+(offset<0?offset:numMonths[1]),1));if(offset<0){date.setDate(this._getDaysInMonth(date.getFullYear(),date.getMonth()))}return this._isInRange(inst,date)},_isInRange:function(inst,date){var newMinDate=(!inst.rangeStart?null:this._daylightSavingAdjust(new Date(inst.selectedYear,inst.selectedMonth,inst.selectedDay)));newMinDate=(newMinDate&&inst.rangeStart=minDate)&&(!maxDate||date<=maxDate))},_getFormatConfig:function(inst){var shortYearCutoff=this._get(inst,"shortYearCutoff");shortYearCutoff=(typeof shortYearCutoff!="string"?shortYearCutoff:new Date().getFullYear()%100+parseInt(shortYearCutoff,10));return{shortYearCutoff:shortYearCutoff,dayNamesShort:this._get(inst,"dayNamesShort"),dayNames:this._get(inst,"dayNames"),monthNamesShort:this._get(inst,"monthNamesShort"),monthNames:this._get(inst,"monthNames")}},_formatDate:function(inst,day,month,year){if(!day){inst.currentDay=inst.selectedDay;inst.currentMonth=inst.selectedMonth;inst.currentYear=inst.selectedYear}var date=(day?(typeof day=="object"?day:this._daylightSavingAdjust(new Date(year,month,day))):this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return this.formatDate(this._get(inst,"dateFormat"),date,this._getFormatConfig(inst))}});function extendRemove(target,props){$.extend(target,props);for(var name in props){if(props[name]==null||props[name]==undefined){target[name]=props[name]}}return target}function isArray(a){return(a&&(($.browser.safari&&typeof a=="object"&&a.length)||(a.constructor&&a.constructor.toString().match(/\Array\(\)/))))}$.fn.datepicker=function(options){if(!$.datepicker.initialized){$(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv);$.datepicker.initialized=true}var otherArgs=Array.prototype.slice.call(arguments,1);if(typeof options=="string"&&(options=="isDisabled"||options=="getDate")){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}if(options=="option"&&arguments.length==2&&typeof arguments[1]=="string"){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}return this.each(function(){typeof options=="string"?$.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this].concat(otherArgs)):$.datepicker._attachDatepicker(this,options)})};$.datepicker=new Datepicker();$.datepicker.initialized=false;$.datepicker.uuid=new Date().getTime();$.datepicker.version="1.7.2";window.DP_jQuery=$})(jQuery);;/* + * jQuery UI Progressbar 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Progressbar + * + * Depends: + * ui.core.js + */ +(function(a){a.widget("ui.progressbar",{_init:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this._valueMin(),"aria-valuemax":this._valueMax(),"aria-valuenow":this._value()});this.valueDiv=a('
    ').appendTo(this.element);this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow").removeData("progressbar").unbind(".progressbar");this.valueDiv.remove();a.widget.prototype.destroy.apply(this,arguments)},value:function(b){if(b===undefined){return this._value()}this._setData("value",b);return this},_setData:function(b,c){switch(b){case"value":this.options.value=c;this._refreshValue();this._trigger("change",null,{});break}a.widget.prototype._setData.apply(this,arguments)},_value:function(){var b=this.options.value;if(bthis._valueMax()){b=this._valueMax()}return b},_valueMin:function(){var b=0;return b},_valueMax:function(){var b=100;return b},_refreshValue:function(){var b=this.value();this.valueDiv[b==this._valueMax()?"addClass":"removeClass"]("ui-corner-right");this.valueDiv.width(b+"%");this.element.attr("aria-valuenow",b)}});a.extend(a.ui.progressbar,{version:"1.7.2",defaults:{value:0}})})(jQuery);;/* + * jQuery UI Effects 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/ + */ +jQuery.effects||(function(d){d.effects={version:"1.7.2",save:function(g,h){for(var f=0;f');var j=f.parent();if(f.css("position")=="static"){j.css({position:"relative"});f.css({position:"relative"})}else{var i=f.css("top");if(isNaN(parseInt(i,10))){i="auto"}var h=f.css("left");if(isNaN(parseInt(h,10))){h="auto"}j.css({position:f.css("position"),top:i,left:h,zIndex:f.css("z-index")}).show();f.css({position:"relative",top:0,left:0})}j.css(g);return j},removeWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent().replaceWith(f)}return f},setTransition:function(g,i,f,h){h=h||{};d.each(i,function(k,j){unit=g.cssUnit(j);if(unit[0]>0){h[j]=unit[0]*f+unit[1]}});return h},animateClass:function(h,i,k,j){var f=(typeof k=="function"?k:(j?j:null));var g=(typeof k=="string"?k:null);return this.each(function(){var q={};var o=d(this);var p=o.attr("style")||"";if(typeof p=="object"){p=p.cssText}if(h.toggle){o.hasClass(h.toggle)?h.remove=h.toggle:h.add=h.toggle}var l=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.addClass(h.add)}if(h.remove){o.removeClass(h.remove)}var m=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.removeClass(h.add)}if(h.remove){o.addClass(h.remove)}for(var r in m){if(typeof m[r]!="function"&&m[r]&&r.indexOf("Moz")==-1&&r.indexOf("length")==-1&&m[r]!=l[r]&&(r.match(/color/i)||(!r.match(/color/i)&&!isNaN(parseInt(m[r],10))))&&(l.position!="static"||(l.position=="static"&&!r.match(/left|top|bottom|right/)))){q[r]=m[r]}}o.animate(q,i,g,function(){if(typeof d(this).attr("style")=="object"){d(this).attr("style")["cssText"]="";d(this).attr("style")["cssText"]=p}else{d(this).attr("style",p)}if(h.add){d(this).addClass(h.add)}if(h.remove){d(this).removeClass(h.remove)}if(f){f.apply(this,arguments)}})})}};function c(g,f){var i=g[1]&&g[1].constructor==Object?g[1]:{};if(f){i.mode=f}var h=g[1]&&g[1].constructor!=Object?g[1]:(i.duration?i.duration:g[2]);h=d.fx.off?0:typeof h==="number"?h:d.fx.speeds[h]||d.fx.speeds._default;var j=i.callback||(d.isFunction(g[1])&&g[1])||(d.isFunction(g[2])&&g[2])||(d.isFunction(g[3])&&g[3]);return[g[0],i,h,j]}d.fn.extend({_show:d.fn.show,_hide:d.fn.hide,__toggle:d.fn.toggle,_addClass:d.fn.addClass,_removeClass:d.fn.removeClass,_toggleClass:d.fn.toggleClass,effect:function(g,f,h,i){return d.effects[g]?d.effects[g].call(this,{method:g,options:f||{},duration:h,callback:i}):null},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._show.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"show"))}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._hide.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"hide"))}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))||(d.isFunction(arguments[0])||typeof arguments[0]=="boolean")){return this.__toggle.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"toggle"))}},addClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{add:g},f,i,h]):this._addClass(g)},removeClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{remove:g},f,i,h]):this._removeClass(g)},toggleClass:function(g,f,i,h){return((typeof f!=="boolean")&&f)?d.effects.animateClass.apply(this,[{toggle:g},f,i,h]):this._toggleClass(g,f)},morph:function(f,h,g,j,i){return d.effects.animateClass.apply(this,[{add:h,remove:f},g,j,i])},switchClass:function(){return this.morph.apply(this,arguments)},cssUnit:function(f){var g=this.css(f),h=[];d.each(["em","px","%","pt"],function(j,k){if(g.indexOf(k)>0){h=[parseFloat(g),k]}});return h}});d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(g,f){d.fx.step[f]=function(h){if(h.state==0){h.start=e(h.elem,f);h.end=b(h.end)}h.elem.style[f]="rgb("+[Math.max(Math.min(parseInt((h.pos*(h.end[0]-h.start[0]))+h.start[0],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[1]-h.start[1]))+h.start[1],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[2]-h.start[2]))+h.start[2],10),255),0)].join(",")+")"}});function b(g){var f;if(g&&g.constructor==Array&&g.length==3){return g}if(f=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(g)){return[parseInt(f[1],10),parseInt(f[2],10),parseInt(f[3],10)]}if(f=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(g)){return[parseFloat(f[1])*2.55,parseFloat(f[2])*2.55,parseFloat(f[3])*2.55]}if(f=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(g)){return[parseInt(f[1],16),parseInt(f[2],16),parseInt(f[3],16)]}if(f=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(g)){return[parseInt(f[1]+f[1],16),parseInt(f[2]+f[2],16),parseInt(f[3]+f[3],16)]}if(f=/rgba\(0, 0, 0, 0\)/.exec(g)){return a.transparent}return a[d.trim(g).toLowerCase()]}function e(h,f){var g;do{g=d.curCSS(h,f);if(g!=""&&g!="transparent"||d.nodeName(h,"body")){break}f="backgroundColor"}while(h=h.parentNode);return b(g)}var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};d.easing.jswing=d.easing.swing;d.extend(d.easing,{def:"easeOutQuad",swing:function(g,h,f,j,i){return d.easing[d.easing.def](g,h,f,j,i)},easeInQuad:function(g,h,f,j,i){return j*(h/=i)*h+f},easeOutQuad:function(g,h,f,j,i){return -j*(h/=i)*(h-2)+f},easeInOutQuad:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h+f}return -j/2*((--h)*(h-2)-1)+f},easeInCubic:function(g,h,f,j,i){return j*(h/=i)*h*h+f},easeOutCubic:function(g,h,f,j,i){return j*((h=h/i-1)*h*h+1)+f},easeInOutCubic:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h+f}return j/2*((h-=2)*h*h+2)+f},easeInQuart:function(g,h,f,j,i){return j*(h/=i)*h*h*h+f},easeOutQuart:function(g,h,f,j,i){return -j*((h=h/i-1)*h*h*h-1)+f},easeInOutQuart:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h+f}return -j/2*((h-=2)*h*h*h-2)+f},easeInQuint:function(g,h,f,j,i){return j*(h/=i)*h*h*h*h+f},easeOutQuint:function(g,h,f,j,i){return j*((h=h/i-1)*h*h*h*h+1)+f},easeInOutQuint:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h*h+f}return j/2*((h-=2)*h*h*h*h+2)+f},easeInSine:function(g,h,f,j,i){return -j*Math.cos(h/i*(Math.PI/2))+j+f},easeOutSine:function(g,h,f,j,i){return j*Math.sin(h/i*(Math.PI/2))+f},easeInOutSine:function(g,h,f,j,i){return -j/2*(Math.cos(Math.PI*h/i)-1)+f},easeInExpo:function(g,h,f,j,i){return(h==0)?f:j*Math.pow(2,10*(h/i-1))+f},easeOutExpo:function(g,h,f,j,i){return(h==i)?f+j:j*(-Math.pow(2,-10*h/i)+1)+f},easeInOutExpo:function(g,h,f,j,i){if(h==0){return f}if(h==i){return f+j}if((h/=i/2)<1){return j/2*Math.pow(2,10*(h-1))+f}return j/2*(-Math.pow(2,-10*--h)+2)+f},easeInCirc:function(g,h,f,j,i){return -j*(Math.sqrt(1-(h/=i)*h)-1)+f},easeOutCirc:function(g,h,f,j,i){return j*Math.sqrt(1-(h=h/i-1)*h)+f},easeInOutCirc:function(g,h,f,j,i){if((h/=i/2)<1){return -j/2*(Math.sqrt(1-h*h)-1)+f}return j/2*(Math.sqrt(1-(h-=2)*h)+1)+f},easeInElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h").css({position:"absolute",visibility:"visible",left:-d*(g/e),top:-f*(c/k)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:g/e,height:c/k,left:l.left+d*(g/e)+(b.options.mode=="show"?(d-Math.floor(e/2))*(g/e):0),top:l.top+f*(c/k)+(b.options.mode=="show"?(f-Math.floor(k/2))*(c/k):0),opacity:b.options.mode=="show"?0:1}).animate({left:l.left+d*(g/e)+(b.options.mode=="show"?0:(d-Math.floor(e/2))*(g/e)),top:l.top+f*(c/k)+(b.options.mode=="show"?0:(f-Math.floor(k/2))*(c/k)),opacity:b.options.mode=="show"?1:0},b.duration||500)}}setTimeout(function(){b.options.mode=="show"?h.css({visibility:"visible"}):h.css({visibility:"visible"}).hide();if(b.callback){b.callback.apply(h[0])}h.dequeue();a("div.ui-effects-explode").remove()},b.duration||500)})}})(jQuery);;/* + * jQuery UI Effects Fold 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Fold + * + * Depends: + * effects.core.js + */ +(function(a){a.effects.fold=function(b){return this.queue(function(){var e=a(this),k=["position","top","left"];var h=a.effects.setMode(e,b.options.mode||"hide");var o=b.options.size||15;var n=!(!b.options.horizFirst);var g=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(e,k);e.show();var d=a.effects.createWrapper(e).css({overflow:"hidden"});var i=((h=="show")!=n);var f=i?["width","height"]:["height","width"];var c=i?[d.width(),d.height()]:[d.height(),d.width()];var j=/([0-9]+)%/.exec(o);if(j){o=parseInt(j[1],10)/100*c[h=="hide"?0:1]}if(h=="show"){d.css(n?{height:0,width:o}:{height:o,width:0})}var m={},l={};m[f[0]]=h=="show"?c[0]:o;l[f[1]]=h=="show"?c[1]:0;d.animate(m,g,b.options.easing).animate(l,g,b.options.easing,function(){if(h=="hide"){e.hide()}a.effects.restore(e,k);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(e[0],arguments)}e.dequeue()})})}})(jQuery);;/* + * jQuery UI Effects Highlight 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Highlight + * + * Depends: + * effects.core.js + */ +(function(a){a.effects.highlight=function(b){return this.queue(function(){var e=a(this),d=["backgroundImage","backgroundColor","opacity"];var h=a.effects.setMode(e,b.options.mode||"show");var c=b.options.color||"#ffff99";var g=e.css("backgroundColor");a.effects.save(e,d);e.show();e.css({backgroundImage:"none",backgroundColor:c});var f={backgroundColor:g};if(h=="hide"){f.opacity=0}e.animate(f,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(h=="hide"){e.hide()}a.effects.restore(e,d);if(h=="show"&&a.browser.msie){this.style.removeAttribute("filter")}if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;/* + * jQuery UI Effects Pulsate 1.7.2 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Pulsate + * + * Depends: + * effects.core.js + */ +(function(a){a.effects.pulsate=function(b){return this.queue(function(){var d=a(this);var g=a.effects.setMode(d,b.options.mode||"show");var f=b.options.times||5;var e=b.duration?b.duration/2:a.fx.speeds._default/2;if(g=="hide"){f--}if(d.is(":hidden")){d.css("opacity",0);d.show();d.animate({opacity:1},e,b.options.easing);f=f-2}for(var c=0;c').appendTo(document.body).addClass(b.options.className).css({top:d.top,left:d.left,height:f.innerHeight(),width:f.innerWidth(),position:"absolute"}).animate(g,b.duration,b.options.easing,function(){c.remove();(b.callback&&b.callback.apply(f[0],arguments));f.dequeue()})})}})(jQuery);; \ No newline at end of file diff --git a/media/js/jquery.autocomplete.js b/media/js/jquery.autocomplete.js new file mode 100644 index 0000000..9d12a29 --- /dev/null +++ b/media/js/jquery.autocomplete.js @@ -0,0 +1,808 @@ +/* + * jQuery Autocomplete plugin 1.1 + * + * Copyright (c) 2009 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.autocomplete.js 15 2009-08-22 10:30:27Z joern.zaefferer $ + */ + +;(function($) { + +$.fn.extend({ + autocomplete: function(urlOrData, options) { + var isUrl = typeof urlOrData == "string"; + options = $.extend({}, $.Autocompleter.defaults, { + url: isUrl ? urlOrData : null, + data: isUrl ? null : urlOrData, + delay: isUrl ? $.Autocompleter.defaults.delay : 10, + max: options && !options.scroll ? 10 : 150 + }, options); + + // if highlight is set to false, replace it with a do-nothing function + options.highlight = options.highlight || function(value) { return value; }; + + // if the formatMatch option is not specified, then use formatItem for backwards compatibility + options.formatMatch = options.formatMatch || options.formatItem; + + return this.each(function() { + new $.Autocompleter(this, options); + }); + }, + result: function(handler) { + return this.bind("result", handler); + }, + search: function(handler) { + return this.trigger("search", [handler]); + }, + flushCache: function() { + return this.trigger("flushCache"); + }, + setOptions: function(options){ + return this.trigger("setOptions", [options]); + }, + unautocomplete: function() { + return this.trigger("unautocomplete"); + } +}); + +$.Autocompleter = function(input, options) { + + var KEY = { + UP: 38, + DOWN: 40, + DEL: 46, + TAB: 9, + RETURN: 13, + ESC: 27, + COMMA: 188, + PAGEUP: 33, + PAGEDOWN: 34, + BACKSPACE: 8 + }; + + // Create $ object for input element + var $input = $(input).attr("autocomplete", "off").addClass(options.inputClass); + + var timeout; + var previousValue = ""; + var cache = $.Autocompleter.Cache(options); + var hasFocus = 0; + var lastKeyPressCode; + var config = { + mouseDownOnSelect: false + }; + var select = $.Autocompleter.Select(options, input, selectCurrent, config); + + var blockSubmit; + + // prevent form submit in opera when selecting with return key + $.browser.opera && $(input.form).bind("submit.autocomplete", function() { + if (blockSubmit) { + blockSubmit = false; + return false; + } + }); + + // only opera doesn't trigger keydown multiple times while pressed, others don't work with keypress at all + $input.bind(($.browser.opera ? "keypress" : "keydown") + ".autocomplete", function(event) { + // a keypress means the input has focus + // avoids issue where input had focus before the autocomplete was applied + hasFocus = 1; + // track last key pressed + lastKeyPressCode = event.keyCode; + switch(event.keyCode) { + + case KEY.UP: + event.preventDefault(); + if ( select.visible() ) { + select.prev(); + } else { + onChange(0, true); + } + break; + + case KEY.DOWN: + event.preventDefault(); + if ( select.visible() ) { + select.next(); + } else { + onChange(0, true); + } + break; + + case KEY.PAGEUP: + event.preventDefault(); + if ( select.visible() ) { + select.pageUp(); + } else { + onChange(0, true); + } + break; + + case KEY.PAGEDOWN: + event.preventDefault(); + if ( select.visible() ) { + select.pageDown(); + } else { + onChange(0, true); + } + break; + + // matches also semicolon + case options.multiple && $.trim(options.multipleSeparator) == "," && KEY.COMMA: + case KEY.TAB: + case KEY.RETURN: + if( selectCurrent() ) { + // stop default to prevent a form submit, Opera needs special handling + event.preventDefault(); + blockSubmit = true; + return false; + } + break; + + case KEY.ESC: + select.hide(); + break; + + default: + clearTimeout(timeout); + timeout = setTimeout(onChange, options.delay); + break; + } + }).focus(function(){ + // track whether the field has focus, we shouldn't process any + // results if the field no longer has focus + hasFocus++; + }).blur(function() { + hasFocus = 0; + if (!config.mouseDownOnSelect) { + hideResults(); + } + }).click(function() { + // show select when clicking in a focused field + if ( hasFocus++ > 1 && !select.visible() ) { + onChange(0, true); + } + }).bind("search", function() { + // TODO why not just specifying both arguments? + var fn = (arguments.length > 1) ? arguments[1] : null; + function findValueCallback(q, data) { + var result; + if( data && data.length ) { + for (var i=0; i < data.length; i++) { + if( data[i].result.toLowerCase() == q.toLowerCase() ) { + result = data[i]; + break; + } + } + } + if( typeof fn == "function" ) fn(result); + else $input.trigger("result", result && [result.data, result.value]); + } + $.each(trimWords($input.val()), function(i, value) { + request(value, findValueCallback, findValueCallback); + }); + }).bind("flushCache", function() { + cache.flush(); + }).bind("setOptions", function() { + $.extend(options, arguments[1]); + // if we've updated the data, repopulate + if ( "data" in arguments[1] ) + cache.populate(); + }).bind("unautocomplete", function() { + select.unbind(); + $input.unbind(); + $(input.form).unbind(".autocomplete"); + }); + + + function selectCurrent() { + var selected = select.selected(); + if( !selected ) + return false; + + var v = selected.result; + previousValue = v; + + if ( options.multiple ) { + var words = trimWords($input.val()); + if ( words.length > 1 ) { + var seperator = options.multipleSeparator.length; + var cursorAt = $(input).selection().start; + var wordAt, progress = 0; + $.each(words, function(i, word) { + progress += word.length; + if (cursorAt <= progress) { + wordAt = i; + return false; + } + progress += seperator; + }); + words[wordAt] = v; + // TODO this should set the cursor to the right position, but it gets overriden somewhere + //$.Autocompleter.Selection(input, progress + seperator, progress + seperator); + v = words.join( options.multipleSeparator ); + } + v += options.multipleSeparator; + } + + $input.val(v); + hideResultsNow(); + $input.trigger("result", [selected.data, selected.value]); + return true; + } + + function onChange(crap, skipPrevCheck) { + if( lastKeyPressCode == KEY.DEL ) { + select.hide(); + return; + } + + var currentValue = $input.val(); + + if ( !skipPrevCheck && currentValue == previousValue ) + return; + + previousValue = currentValue; + + currentValue = lastWord(currentValue); + if ( currentValue.length >= options.minChars) { + $input.addClass(options.loadingClass); + if (!options.matchCase) + currentValue = currentValue.toLowerCase(); + request(currentValue, receiveData, hideResultsNow); + } else { + stopLoading(); + select.hide(); + } + }; + + function trimWords(value) { + if (!value) + return [""]; + if (!options.multiple) + return [$.trim(value)]; + return $.map(value.split(options.multipleSeparator), function(word) { + return $.trim(value).length ? $.trim(word) : null; + }); + } + + function lastWord(value) { + if ( !options.multiple ) + return value; + var words = trimWords(value); + if (words.length == 1) + return words[0]; + var cursorAt = $(input).selection().start; + if (cursorAt == value.length) { + words = trimWords(value) + } else { + words = trimWords(value.replace(value.substring(cursorAt), "")); + } + return words[words.length - 1]; + } + + // fills in the input box w/the first match (assumed to be the best match) + // q: the term entered + // sValue: the first matching result + function autoFill(q, sValue){ + // autofill in the complete box w/the first match as long as the user hasn't entered in more data + // if the last user key pressed was backspace, don't autofill + if( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) { + // fill in the value (keep the case the user has typed) + $input.val($input.val() + sValue.substring(lastWord(previousValue).length)); + // select the portion of the value not typed by the user (so the next character will erase) + $(input).selection(previousValue.length, previousValue.length + sValue.length); + } + }; + + function hideResults() { + clearTimeout(timeout); + timeout = setTimeout(hideResultsNow, 200); + }; + + function hideResultsNow() { + var wasVisible = select.visible(); + select.hide(); + clearTimeout(timeout); + stopLoading(); + if (options.mustMatch) { + // call search and run callback + $input.search( + function (result){ + // if no value found, clear the input box + if( !result ) { + if (options.multiple) { + var words = trimWords($input.val()).slice(0, -1); + $input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : "") ); + } + else { + $input.val( "" ); + $input.trigger("result", null); + } + } + } + ); + } + }; + + function receiveData(q, data) { + if ( data && data.length && hasFocus ) { + stopLoading(); + select.display(data, q); + autoFill(q, data[0].value); + select.show(); + } else { + hideResultsNow(); + } + }; + + function request(term, success, failure) { + if (!options.matchCase) + term = term.toLowerCase(); + var data = cache.load(term); + // recieve the cached data + if (data && data.length) { + success(term, data); + // if an AJAX url has been supplied, try loading the data now + } else if( (typeof options.url == "string") && (options.url.length > 0) ){ + + var extraParams = { + timestamp: +new Date() + }; + $.each(options.extraParams, function(key, param) { + extraParams[key] = typeof param == "function" ? param() : param; + }); + + $.ajax({ + // try to leverage ajaxQueue plugin to abort previous requests + mode: "abort", + // limit abortion to this input + port: "autocomplete" + input.name, + dataType: options.dataType, + url: options.url, + data: $.extend({ + q: lastWord(term), + limit: options.max + }, extraParams), + success: function(data) { + var parsed = options.parse && options.parse(data) || parse(data); + cache.add(term, parsed); + success(term, parsed); + } + }); + } else { + // if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match + select.emptyList(); + failure(term); + } + }; + + function parse(data) { + var parsed = []; + var rows = data.split("\n"); + for (var i=0; i < rows.length; i++) { + var row = $.trim(rows[i]); + if (row) { + row = row.split("|"); + parsed[parsed.length] = { + data: row, + value: row[0], + result: options.formatResult && options.formatResult(row, row[0]) || row[0] + }; + } + } + return parsed; + }; + + function stopLoading() { + $input.removeClass(options.loadingClass); + }; + +}; + +$.Autocompleter.defaults = { + inputClass: "ac_input", + resultsClass: "ac_results", + loadingClass: "ac_loading", + minChars: 1, + delay: 400, + matchCase: false, + matchSubset: true, + matchContains: false, + cacheLength: 10, + max: 100, + mustMatch: false, + extraParams: {}, + selectFirst: true, + formatItem: function(row) { return row[0]; }, + formatMatch: null, + autoFill: false, + width: 0, + multiple: false, + multipleSeparator: ", ", + highlight: function(value, term) { + return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi, "\\$1") + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "$1"); + }, + scroll: true, + scrollHeight: 180 +}; + +$.Autocompleter.Cache = function(options) { + + var data = {}; + var length = 0; + + function matchSubset(s, sub) { + if (!options.matchCase) + s = s.toLowerCase(); + var i = s.indexOf(sub); + if (options.matchContains == "word"){ + i = s.toLowerCase().search("\\b" + sub.toLowerCase()); + } + if (i == -1) return false; + return i == 0 || options.matchContains; + }; + + function add(q, value) { + if (length > options.cacheLength){ + flush(); + } + if (!data[q]){ + length++; + } + data[q] = value; + } + + function populate(){ + if( !options.data ) return false; + // track the matches + var stMatchSets = {}, + nullData = 0; + + // no url was specified, we need to adjust the cache length to make sure it fits the local data store + if( !options.url ) options.cacheLength = 1; + + // track all options for minChars = 0 + stMatchSets[""] = []; + + // loop through the array and create a lookup structure + for ( var i = 0, ol = options.data.length; i < ol; i++ ) { + var rawValue = options.data[i]; + // if rawValue is a string, make an array otherwise just reference the array + rawValue = (typeof rawValue == "string") ? [rawValue] : rawValue; + + var value = options.formatMatch(rawValue, i+1, options.data.length); + if ( value === false ) + continue; + + var firstChar = value.charAt(0).toLowerCase(); + // if no lookup array for this character exists, look it up now + if( !stMatchSets[firstChar] ) + stMatchSets[firstChar] = []; + + // if the match is a string + var row = { + value: value, + data: rawValue, + result: options.formatResult && options.formatResult(rawValue) || value + }; + + // push the current match into the set list + stMatchSets[firstChar].push(row); + + // keep track of minChars zero items + if ( nullData++ < options.max ) { + stMatchSets[""].push(row); + } + }; + + // add the data items to the cache + $.each(stMatchSets, function(i, value) { + // increase the cache size + options.cacheLength++; + // add to the cache + add(i, value); + }); + } + + // populate any existing data + setTimeout(populate, 25); + + function flush(){ + data = {}; + length = 0; + } + + return { + flush: flush, + add: add, + populate: populate, + load: function(q) { + if (!options.cacheLength || !length) + return null; + /* + * if dealing w/local data and matchContains than we must make sure + * to loop through all the data collections looking for matches + */ + if( !options.url && options.matchContains ){ + // track all matches + var csub = []; + // loop through all the data grids for matches + for( var k in data ){ + // don't search through the stMatchSets[""] (minChars: 0) cache + // this prevents duplicates + if( k.length > 0 ){ + var c = data[k]; + $.each(c, function(i, x) { + // if we've got a match, add it to the array + if (matchSubset(x.value, q)) { + csub.push(x); + } + }); + } + } + return csub; + } else + // if the exact item exists, use it + if (data[q]){ + return data[q]; + } else + if (options.matchSubset) { + for (var i = q.length - 1; i >= options.minChars; i--) { + var c = data[q.substr(0, i)]; + if (c) { + var csub = []; + $.each(c, function(i, x) { + if (matchSubset(x.value, q)) { + csub[csub.length] = x; + } + }); + return csub; + } + } + } + return null; + } + }; +}; + +$.Autocompleter.Select = function (options, input, select, config) { + var CLASSES = { + ACTIVE: "ac_over" + }; + + var listItems, + active = -1, + data, + term = "", + needsInit = true, + element, + list; + + // Create results + function init() { + if (!needsInit) + return; + element = $("
    ") + .hide() + .addClass(options.resultsClass) + .css("position", "absolute") + .appendTo(document.body); + + list = $("
      ").appendTo(element).mouseover( function(event) { + if(target(event).nodeName && target(event).nodeName.toUpperCase() == 'LI') { + active = $("li", list).removeClass(CLASSES.ACTIVE).index(target(event)); + $(target(event)).addClass(CLASSES.ACTIVE); + } + }).click(function(event) { + $(target(event)).addClass(CLASSES.ACTIVE); + select(); + // TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus + input.focus(); + return false; + }).mousedown(function() { + config.mouseDownOnSelect = true; + }).mouseup(function() { + config.mouseDownOnSelect = false; + }); + + if( options.width > 0 ) + element.css("width", options.width); + + needsInit = false; + } + + function target(event) { + var element = event.target; + while(element && element.tagName != "LI") + element = element.parentNode; + // more fun with IE, sometimes event.target is empty, just ignore it then + if(!element) + return []; + return element; + } + + function moveSelect(step) { + listItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE); + movePosition(step); + var activeItem = listItems.slice(active, active + 1).addClass(CLASSES.ACTIVE); + if(options.scroll) { + var offset = 0; + listItems.slice(0, active).each(function() { + offset += this.offsetHeight; + }); + if((offset + activeItem[0].offsetHeight - list.scrollTop()) > list[0].clientHeight) { + list.scrollTop(offset + activeItem[0].offsetHeight - list.innerHeight()); + } else if(offset < list.scrollTop()) { + list.scrollTop(offset); + } + } + }; + + function movePosition(step) { + active += step; + if (active < 0) { + active = listItems.size() - 1; + } else if (active >= listItems.size()) { + active = 0; + } + } + + function limitNumberOfItems(available) { + return options.max && options.max < available + ? options.max + : available; + } + + function fillList() { + list.empty(); + var max = limitNumberOfItems(data.length); + for (var i=0; i < max; i++) { + if (!data[i]) + continue; + var formatted = options.formatItem(data[i].data, i+1, max, data[i].value, term); + if ( formatted === false ) + continue; + var li = $("
    • ").html( options.highlight(formatted, term) ).addClass(i%2 == 0 ? "ac_even" : "ac_odd").appendTo(list)[0]; + $.data(li, "ac_data", data[i]); + } + listItems = list.find("li"); + if ( options.selectFirst ) { + listItems.slice(0, 1).addClass(CLASSES.ACTIVE); + active = 0; + } + // apply bgiframe if available + if ( $.fn.bgiframe ) + list.bgiframe(); + } + + return { + display: function(d, q) { + init(); + data = d; + term = q; + fillList(); + }, + next: function() { + moveSelect(1); + }, + prev: function() { + moveSelect(-1); + }, + pageUp: function() { + if (active != 0 && active - 8 < 0) { + moveSelect( -active ); + } else { + moveSelect(-8); + } + }, + pageDown: function() { + if (active != listItems.size() - 1 && active + 8 > listItems.size()) { + moveSelect( listItems.size() - 1 - active ); + } else { + moveSelect(8); + } + }, + hide: function() { + element && element.hide(); + listItems && listItems.removeClass(CLASSES.ACTIVE); + active = -1; + }, + visible : function() { + return element && element.is(":visible"); + }, + current: function() { + return this.visible() && (listItems.filter("." + CLASSES.ACTIVE)[0] || options.selectFirst && listItems[0]); + }, + show: function() { + var offset = $(input).offset(); + element.css({ + width: typeof options.width == "string" || options.width > 0 ? options.width : $(input).width(), + top: offset.top + input.offsetHeight, + left: offset.left + }).show(); + if(options.scroll) { + list.scrollTop(0); + list.css({ + maxHeight: options.scrollHeight, + overflow: 'auto' + }); + + if($.browser.msie && typeof document.body.style.maxHeight === "undefined") { + var listHeight = 0; + listItems.each(function() { + listHeight += this.offsetHeight; + }); + var scrollbarsVisible = listHeight > options.scrollHeight; + list.css('height', scrollbarsVisible ? options.scrollHeight : listHeight ); + if (!scrollbarsVisible) { + // IE doesn't recalculate width when scrollbar disappears + listItems.width( list.width() - parseInt(listItems.css("padding-left")) - parseInt(listItems.css("padding-right")) ); + } + } + + } + }, + selected: function() { + var selected = listItems && listItems.filter("." + CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE); + return selected && selected.length && $.data(selected[0], "ac_data"); + }, + emptyList: function (){ + list && list.empty(); + }, + unbind: function() { + element && element.remove(); + } + }; +}; + +$.fn.selection = function(start, end) { + if (start !== undefined) { + return this.each(function() { + if( this.createTextRange ){ + var selRange = this.createTextRange(); + if (end === undefined || start == end) { + selRange.move("character", start); + selRange.select(); + } else { + selRange.collapse(true); + selRange.moveStart("character", start); + selRange.moveEnd("character", end); + selRange.select(); + } + } else if( this.setSelectionRange ){ + this.setSelectionRange(start, end); + } else if( this.selectionStart ){ + this.selectionStart = start; + this.selectionEnd = end; + } + }); + } + var field = this[0]; + if ( field.createTextRange ) { + var range = document.selection.createRange(), + orig = field.value, + teststring = "<->", + textLength = range.text.length; + range.text = teststring; + var caretAt = field.value.indexOf(teststring); + field.value = orig; + this.selection(caretAt, caretAt + textLength); + return { + start: caretAt, + end: caretAt + textLength + } + } else if( field.selectionStart !== undefined ){ + return { + start: field.selectionStart, + end: field.selectionEnd + } + } +}; + +})(jQuery); \ No newline at end of file diff --git a/media/js/jquery.autocomplete.min.js b/media/js/jquery.autocomplete.min.js new file mode 100644 index 0000000..4b021c1 --- /dev/null +++ b/media/js/jquery.autocomplete.min.js @@ -0,0 +1,13 @@ +/* + * jQuery Autocomplete plugin 1.1 + * + * Copyright (c) 2009 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.autocomplete.js 15 2009-08-22 10:30:27Z joern.zaefferer $ + */;(function($){$.fn.extend({autocomplete:function(urlOrData,options){var isUrl=typeof urlOrData=="string";options=$.extend({},$.Autocompleter.defaults,{url:isUrl?urlOrData:null,data:isUrl?null:urlOrData,delay:isUrl?$.Autocompleter.defaults.delay:10,max:options&&!options.scroll?10:150},options);options.highlight=options.highlight||function(value){return value;};options.formatMatch=options.formatMatch||options.formatItem;return this.each(function(){new $.Autocompleter(this,options);});},result:function(handler){return this.bind("result",handler);},search:function(handler){return this.trigger("search",[handler]);},flushCache:function(){return this.trigger("flushCache");},setOptions:function(options){return this.trigger("setOptions",[options]);},unautocomplete:function(){return this.trigger("unautocomplete");}});$.Autocompleter=function(input,options){var KEY={UP:38,DOWN:40,DEL:46,TAB:9,RETURN:13,ESC:27,COMMA:188,PAGEUP:33,PAGEDOWN:34,BACKSPACE:8};var $input=$(input).attr("autocomplete","off").addClass(options.inputClass);var timeout;var previousValue="";var cache=$.Autocompleter.Cache(options);var hasFocus=0;var lastKeyPressCode;var config={mouseDownOnSelect:false};var select=$.Autocompleter.Select(options,input,selectCurrent,config);var blockSubmit;$.browser.opera&&$(input.form).bind("submit.autocomplete",function(){if(blockSubmit){blockSubmit=false;return false;}});$input.bind(($.browser.opera?"keypress":"keydown")+".autocomplete",function(event){hasFocus=1;lastKeyPressCode=event.keyCode;switch(event.keyCode){case KEY.UP:event.preventDefault();if(select.visible()){select.prev();}else{onChange(0,true);}break;case KEY.DOWN:event.preventDefault();if(select.visible()){select.next();}else{onChange(0,true);}break;case KEY.PAGEUP:event.preventDefault();if(select.visible()){select.pageUp();}else{onChange(0,true);}break;case KEY.PAGEDOWN:event.preventDefault();if(select.visible()){select.pageDown();}else{onChange(0,true);}break;case options.multiple&&$.trim(options.multipleSeparator)==","&&KEY.COMMA:case KEY.TAB:case KEY.RETURN:if(selectCurrent()){event.preventDefault();blockSubmit=true;return false;}break;case KEY.ESC:select.hide();break;default:clearTimeout(timeout);timeout=setTimeout(onChange,options.delay);break;}}).focus(function(){hasFocus++;}).blur(function(){hasFocus=0;if(!config.mouseDownOnSelect){hideResults();}}).click(function(){if(hasFocus++>1&&!select.visible()){onChange(0,true);}}).bind("search",function(){var fn=(arguments.length>1)?arguments[1]:null;function findValueCallback(q,data){var result;if(data&&data.length){for(var i=0;i1){var seperator=options.multipleSeparator.length;var cursorAt=$(input).selection().start;var wordAt,progress=0;$.each(words,function(i,word){progress+=word.length;if(cursorAt<=progress){wordAt=i;return false;}progress+=seperator;});words[wordAt]=v;v=words.join(options.multipleSeparator);}v+=options.multipleSeparator;}$input.val(v);hideResultsNow();$input.trigger("result",[selected.data,selected.value]);return true;}function onChange(crap,skipPrevCheck){if(lastKeyPressCode==KEY.DEL){select.hide();return;}var currentValue=$input.val();if(!skipPrevCheck&¤tValue==previousValue)return;previousValue=currentValue;currentValue=lastWord(currentValue);if(currentValue.length>=options.minChars){$input.addClass(options.loadingClass);if(!options.matchCase)currentValue=currentValue.toLowerCase();request(currentValue,receiveData,hideResultsNow);}else{stopLoading();select.hide();}};function trimWords(value){if(!value)return[""];if(!options.multiple)return[$.trim(value)];return $.map(value.split(options.multipleSeparator),function(word){return $.trim(value).length?$.trim(word):null;});}function lastWord(value){if(!options.multiple)return value;var words=trimWords(value);if(words.length==1)return words[0];var cursorAt=$(input).selection().start;if(cursorAt==value.length){words=trimWords(value)}else{words=trimWords(value.replace(value.substring(cursorAt),""));}return words[words.length-1];}function autoFill(q,sValue){if(options.autoFill&&(lastWord($input.val()).toLowerCase()==q.toLowerCase())&&lastKeyPressCode!=KEY.BACKSPACE){$input.val($input.val()+sValue.substring(lastWord(previousValue).length));$(input).selection(previousValue.length,previousValue.length+sValue.length);}};function hideResults(){clearTimeout(timeout);timeout=setTimeout(hideResultsNow,200);};function hideResultsNow(){var wasVisible=select.visible();select.hide();clearTimeout(timeout);stopLoading();if(options.mustMatch){$input.search(function(result){if(!result){if(options.multiple){var words=trimWords($input.val()).slice(0,-1);$input.val(words.join(options.multipleSeparator)+(words.length?options.multipleSeparator:""));}else{$input.val("");$input.trigger("result",null);}}});}};function receiveData(q,data){if(data&&data.length&&hasFocus){stopLoading();select.display(data,q);autoFill(q,data[0].value);select.show();}else{hideResultsNow();}};function request(term,success,failure){if(!options.matchCase)term=term.toLowerCase();var data=cache.load(term);if(data&&data.length){success(term,data);}else if((typeof options.url=="string")&&(options.url.length>0)){var extraParams={timestamp:+new Date()};$.each(options.extraParams,function(key,param){extraParams[key]=typeof param=="function"?param():param;});$.ajax({mode:"abort",port:"autocomplete"+input.name,dataType:options.dataType,url:options.url,data:$.extend({q:lastWord(term),limit:options.max},extraParams),success:function(data){var parsed=options.parse&&options.parse(data)||parse(data);cache.add(term,parsed);success(term,parsed);}});}else{select.emptyList();failure(term);}};function parse(data){var parsed=[];var rows=data.split("\n");for(var i=0;i]*)("+term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi,"\\$1")+")(?![^<>]*>)(?![^&;]+;)","gi"),"$1");},scroll:true,scrollHeight:180};$.Autocompleter.Cache=function(options){var data={};var length=0;function matchSubset(s,sub){if(!options.matchCase)s=s.toLowerCase();var i=s.indexOf(sub);if(options.matchContains=="word"){i=s.toLowerCase().search("\\b"+sub.toLowerCase());}if(i==-1)return false;return i==0||options.matchContains;};function add(q,value){if(length>options.cacheLength){flush();}if(!data[q]){length++;}data[q]=value;}function populate(){if(!options.data)return false;var stMatchSets={},nullData=0;if(!options.url)options.cacheLength=1;stMatchSets[""]=[];for(var i=0,ol=options.data.length;i0){var c=data[k];$.each(c,function(i,x){if(matchSubset(x.value,q)){csub.push(x);}});}}return csub;}else +if(data[q]){return data[q];}else +if(options.matchSubset){for(var i=q.length-1;i>=options.minChars;i--){var c=data[q.substr(0,i)];if(c){var csub=[];$.each(c,function(i,x){if(matchSubset(x.value,q)){csub[csub.length]=x;}});return csub;}}}return null;}};};$.Autocompleter.Select=function(options,input,select,config){var CLASSES={ACTIVE:"ac_over"};var listItems,active=-1,data,term="",needsInit=true,element,list;function init(){if(!needsInit)return;element=$("
      ").hide().addClass(options.resultsClass).css("position","absolute").appendTo(document.body);list=$("
        ").appendTo(element).mouseover(function(event){if(target(event).nodeName&&target(event).nodeName.toUpperCase()=='LI'){active=$("li",list).removeClass(CLASSES.ACTIVE).index(target(event));$(target(event)).addClass(CLASSES.ACTIVE);}}).click(function(event){$(target(event)).addClass(CLASSES.ACTIVE);select();input.focus();return false;}).mousedown(function(){config.mouseDownOnSelect=true;}).mouseup(function(){config.mouseDownOnSelect=false;});if(options.width>0)element.css("width",options.width);needsInit=false;}function target(event){var element=event.target;while(element&&element.tagName!="LI")element=element.parentNode;if(!element)return[];return element;}function moveSelect(step){listItems.slice(active,active+1).removeClass(CLASSES.ACTIVE);movePosition(step);var activeItem=listItems.slice(active,active+1).addClass(CLASSES.ACTIVE);if(options.scroll){var offset=0;listItems.slice(0,active).each(function(){offset+=this.offsetHeight;});if((offset+activeItem[0].offsetHeight-list.scrollTop())>list[0].clientHeight){list.scrollTop(offset+activeItem[0].offsetHeight-list.innerHeight());}else if(offset=listItems.size()){active=0;}}function limitNumberOfItems(available){return options.max&&options.max").html(options.highlight(formatted,term)).addClass(i%2==0?"ac_even":"ac_odd").appendTo(list)[0];$.data(li,"ac_data",data[i]);}listItems=list.find("li");if(options.selectFirst){listItems.slice(0,1).addClass(CLASSES.ACTIVE);active=0;}if($.fn.bgiframe)list.bgiframe();}return{display:function(d,q){init();data=d;term=q;fillList();},next:function(){moveSelect(1);},prev:function(){moveSelect(-1);},pageUp:function(){if(active!=0&&active-8<0){moveSelect(-active);}else{moveSelect(-8);}},pageDown:function(){if(active!=listItems.size()-1&&active+8>listItems.size()){moveSelect(listItems.size()-1-active);}else{moveSelect(8);}},hide:function(){element&&element.hide();listItems&&listItems.removeClass(CLASSES.ACTIVE);active=-1;},visible:function(){return element&&element.is(":visible");},current:function(){return this.visible()&&(listItems.filter("."+CLASSES.ACTIVE)[0]||options.selectFirst&&listItems[0]);},show:function(){var offset=$(input).offset();element.css({width:typeof options.width=="string"||options.width>0?options.width:$(input).width(),top:offset.top+input.offsetHeight,left:offset.left}).show();if(options.scroll){list.scrollTop(0);list.css({maxHeight:options.scrollHeight,overflow:'auto'});if($.browser.msie&&typeof document.body.style.maxHeight==="undefined"){var listHeight=0;listItems.each(function(){listHeight+=this.offsetHeight;});var scrollbarsVisible=listHeight>options.scrollHeight;list.css('height',scrollbarsVisible?options.scrollHeight:listHeight);if(!scrollbarsVisible){listItems.width(list.width()-parseInt(listItems.css("padding-left"))-parseInt(listItems.css("padding-right")));}}}},selected:function(){var selected=listItems&&listItems.filter("."+CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);return selected&&selected.length&&$.data(selected[0],"ac_data");},emptyList:function(){list&&list.empty();},unbind:function(){element&&element.remove();}};};$.fn.selection=function(start,end){if(start!==undefined){return this.each(function(){if(this.createTextRange){var selRange=this.createTextRange();if(end===undefined||start==end){selRange.move("character",start);selRange.select();}else{selRange.collapse(true);selRange.moveStart("character",start);selRange.moveEnd("character",end);selRange.select();}}else if(this.setSelectionRange){this.setSelectionRange(start,end);}else if(this.selectionStart){this.selectionStart=start;this.selectionEnd=end;}});}var field=this[0];if(field.createTextRange){var range=document.selection.createRange(),orig=field.value,teststring="<->",textLength=range.text.length;range.text=teststring;var caretAt=field.value.indexOf(teststring);field.value=orig;this.selection(caretAt,caretAt+textLength);return{start:caretAt,end:caretAt+textLength}}else if(field.selectionStart!==undefined){return{start:field.selectionStart,end:field.selectionEnd}}};})(jQuery); \ No newline at end of file diff --git a/media/js/jquery.autocomplete.pack.js b/media/js/jquery.autocomplete.pack.js new file mode 100644 index 0000000..2d09b00 --- /dev/null +++ b/media/js/jquery.autocomplete.pack.js @@ -0,0 +1,12 @@ +/* + * jQuery Autocomplete plugin 1.1 + * + * Copyright (c) 2009 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.autocomplete.js 15 2009-08-22 10:30:27Z joern.zaefferer $ + */ +eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(3($){$.2e.1u({19:3(b,d){5 c=W b=="1B";d=$.1u({},$.M.1T,{Y:c?b:P,y:c?P:b,1J:c?$.M.1T.1J:10,X:d&&!d.1D?10:48},d);d.1y=d.1y||3(a){6 a};d.1v=d.1v||d.1R;6 A.I(3(){1M $.M(A,d)})},L:3(a){6 A.11("L",a)},1k:3(a){6 A.14("1k",[a])},2b:3(){6 A.14("2b")},28:3(a){6 A.14("28",[a])},24:3(){6 A.14("24")}});$.M=3(o,r){5 t={2Y:38,2S:40,2N:46,2I:9,2E:13,2B:27,2x:3I,2v:33,2p:34,2n:8};5 u=$(o).3r("19","3o").Q(r.2Q);5 p;5 m="";5 n=$.M.3c(r);5 s=0;5 k;5 h={1F:C};5 l=$.M.32(r,o,1Z,h);5 j;$.1Y.2X&&$(o.2U).11("45.19",3(){4(j){j=C;6 C}});u.11(($.1Y.2X?"43":"42")+".19",3(a){s=1;k=a.2M;3V(a.2M){O t.2Y:a.1d();4(l.N()){l.30()}w{12(0,D)}R;O t.2S:a.1d();4(l.N()){l.2D()}w{12(0,D)}R;O t.2v:a.1d();4(l.N()){l.2C()}w{12(0,D)}R;O t.2p:a.1d();4(l.N()){l.2A()}w{12(0,D)}R;O r.17&&$.1c(r.S)==","&&t.2x:O t.2I:O t.2E:4(1Z()){a.1d();j=D;6 C}R;O t.2B:l.Z();R;3J:1P(p);p=1O(12,r.1J);R}}).2t(3(){s++}).3E(3(){s=0;4(!h.1F){2r()}}).2q(3(){4(s++>1&&!l.N()){12(0,D)}}).11("1k",3(){5 c=(1r.7>1)?1r[1]:P;3 1N(q,a){5 b;4(a&&a.7){16(5 i=0;i1){5 f=r.S.7;5 c=$(o).18().1I;5 d,1H=0;$.I(b,3(i,a){1H+=a.7;4(c<=1H){d=i;6 C}1H+=f});b[d]=v;v=b.3f(r.S)}v+=r.S}u.K(v);1l();u.14("L",[e.y,e.F]);6 D}3 12(b,c){4(k==t.2N){l.Z();6}5 a=u.K();4(!c&&a==m)6;m=a;a=1m(a);4(a.7>=r.29){u.Q(r.26);4(!r.1s)a=a.J();21(a,3a,1l)}w{1q();l.Z()}};3 15(b){4(!b)6[""];4(!r.17)6[$.1c(b)];6 $.4h(b.23(r.S),3(a){6 $.1c(b).7?$.1c(a):P})}3 1m(a){4(!r.17)6 a;5 c=15(a);4(c.7==1)6 c[0];5 b=$(o).18().1I;4(b==a.7){c=15(a)}w{c=15(a.22(a.37(b),""))}6 c[c.7-1]}3 1G(q,a){4(r.1G&&(1m(u.K()).J()==q.J())&&k!=t.2n){u.K(u.K()+a.37(1m(m).7));$(o).18(m.7,m.7+a.7)}};3 2r(){1P(p);p=1O(1l,4g)};3 1l(){5 c=l.N();l.Z();1P(p);1q();4(r.36){u.1k(3(a){4(!a){4(r.17){5 b=15(u.K()).1n(0,-1);u.K(b.3f(r.S)+(b.7?r.S:""))}w{u.K("");u.14("L",P)}}})}};3 3a(q,a){4(a&&a.7&&s){1q();l.35(a,q);1G(q,a[0].F);l.20()}w{1l()}};3 21(f,d,g){4(!r.1s)f=f.J();5 e=n.31(f);4(e&&e.7){d(f,e)}w 4((W r.Y=="1B")&&(r.Y.7>0)){5 c={4f:+1M 4e()};$.I(r.2Z,3(a,b){c[a]=W b=="3"?b():b});$.4d({4c:"4b",4a:"19"+o.49,2V:r.2V,Y:r.Y,y:$.1u({q:1m(f),47:r.X},c),44:3(a){5 b=r.1A&&r.1A(a)||1A(a);n.1i(f,b);d(f,b)}})}w{l.2T();g(f)}};3 1A(c){5 d=[];5 b=c.23("\\n");16(5 i=0;i]*)("+a.22(/([\\^\\$\\(\\)\\[\\]\\{\\}\\*\\.\\+\\?\\|\\\\])/2K,"\\\\$1")+")(?![^<>]*>)(?![^&;]+;)","2K"),"<2J>$1")},1D:D,1E:3S};$.M.3c=3(g){5 h={};5 j=0;3 1f(s,a){4(!g.1s)s=s.J();5 i=s.2H(a);4(g.1w=="3R"){i=s.J().1k("\\\\b"+a.J())}4(i==-1)6 C;6 i==0||g.1w};3 1i(q,a){4(j>g.1g){1o()}4(!h[q]){j++}h[q]=a}3 1e(){4(!g.y)6 C;5 f={},2G=0;4(!g.Y)g.1g=1;f[""]=[];16(5 i=0,2F=g.y.7;i<2F;i++){5 c=g.y[i];c=(W c=="1B")?[c]:c;5 d=g.1v(c,i+1,g.y.7);4(d===C)1V;5 e=d.3Q(0).J();4(!f[e])f[e]=[];5 b={F:d,y:c,L:g.1z&&g.1z(c)||d};f[e].1U(b);4(2G++0){5 c=h[k];$.I(c,3(i,x){4(1f(x.F,q)){a.1U(x)}})}}6 a}w 4(h[q]){6 h[q]}w 4(g.1f){16(5 i=q.7-1;i>=g.29;i--){5 c=h[q.3O(0,i)];4(c){5 a=[];$.I(c,3(i,x){4(1f(x.F,q)){a[a.7]=x}});6 a}}}6 P}}};$.M.32=3(e,g,f,k){5 h={H:"3N"};5 j,z=-1,y,1t="",1S=D,G,B;3 2y(){4(!1S)6;G=$("<3M/>").Z().Q(e.2P).T("3L","3K").1Q(1K.2w);B=$("<3H/>").1Q(G).3G(3(a){4(U(a).2u&&U(a).2u.3F()==\'2s\'){z=$("1L",B).1h(h.H).3D(U(a));$(U(a)).Q(h.H)}}).2q(3(a){$(U(a)).Q(h.H);f();g.2t();6 C}).3C(3(){k.1F=D}).3B(3(){k.1F=C});4(e.E>0)G.T("E",e.E);1S=C}3 U(a){5 b=a.U;3A(b&&b.3z!="2s")b=b.3y;4(!b)6[];6 b}3 V(b){j.1n(z,z+1).1h(h.H);2o(b);5 a=j.1n(z,z+1).Q(h.H);4(e.1D){5 c=0;j.1n(0,z).I(3(){c+=A.1a});4((c+a[0].1a-B.1b())>B[0].3x){B.1b(c+a[0].1a-B.3w())}w 4(c=j.1j()){z=0}}3 2m(a){6 e.X&&e.X").3v(e.1y(a,1t)).Q(i%2==0?"3u":"3P").1Q(B)[0];$.y(c,"2k",y[i])}j=B.3t("1L");4(e.1X){j.1n(0,1).Q(h.H);z=0}4($.2e.2W)B.2W()}6{35:3(d,q){2y();y=d;1t=q;2l()},2D:3(){V(1)},30:3(){V(-1)},2C:3(){4(z!=0&&z-8<0){V(-z)}w{V(-8)}},2A:3(){4(z!=j.1j()-1&&z+8>j.1j()){V(j.1j()-1-z)}w{V(8)}},Z:3(){G&&G.Z();j&&j.1h(h.H);z=-1},N:3(){6 G&&G.3s(":N")},3q:3(){6 A.N()&&(j.2j("."+h.H)[0]||e.1X&&j[0])},20:3(){5 a=$(g).3p();G.T({E:W e.E=="1B"||e.E>0?e.E:$(g).E(),2i:a.2i+g.1a,1W:a.1W}).20();4(e.1D){B.1b(0);B.T({2L:e.1E,3n:\'3X\'});4($.1Y.3m&&W 1K.2w.3l.2L==="1x"){5 c=0;j.I(3(){c+=A.1a});5 b=c>e.1E;B.T(\'3k\',b?e.1E:c);4(!b){j.E(B.E()-2R(j.T("2O-1W"))-2R(j.T("2O-3j")))}}}},2g:3(){5 a=j&&j.2j("."+h.H).1h(h.H);6 a&&a.7&&$.y(a[0],"2k")},2T:3(){B&&B.2z()},1p:3(){G&&G.3i()}}};$.2e.18=3(b,f){4(b!==1x){6 A.I(3(){4(A.2d){5 a=A.2d();4(f===1x||b==f){a.4n("2c",b);a.3h()}w{a.4m(D);a.4l("2c",b);a.4k("2c",f);a.3h()}}w 4(A.3g){A.3g(b,f)}w 4(A.1C){A.1C=b;A.3e=f}})}5 c=A[0];4(c.2d){5 e=1K.18.4j(),3d=c.F,2a="<->",2f=e.3b.7;e.3b=2a;5 d=c.F.2H(2a);c.F=3d;A.18(d,d+2f);6{1I:d,39:d+2f}}w 4(c.1C!==1x){6{1I:c.1C,39:c.3e}}}})(4i);',62,272,'|||function|if|var|return|length|||||||||||||||||||||||||else||data|active|this|list|false|true|width|value|element|ACTIVE|each|toLowerCase|val|result|Autocompleter|visible|case|null|addClass|break|multipleSeparator|css|target|moveSelect|typeof|max|url|hide||bind|onChange||trigger|trimWords|for|multiple|selection|autocomplete|offsetHeight|scrollTop|trim|preventDefault|populate|matchSubset|cacheLength|removeClass|add|size|search|hideResultsNow|lastWord|slice|flush|unbind|stopLoading|arguments|matchCase|term|extend|formatMatch|matchContains|undefined|highlight|formatResult|parse|string|selectionStart|scroll|scrollHeight|mouseDownOnSelect|autoFill|progress|start|delay|document|li|new|findValueCallback|setTimeout|clearTimeout|appendTo|formatItem|needsInit|defaults|push|continue|left|selectFirst|browser|selectCurrent|show|request|replace|split|unautocomplete||loadingClass||setOptions|minChars|teststring|flushCache|character|createTextRange|fn|textLength|selected|in|top|filter|ac_data|fillList|limitNumberOfItems|BACKSPACE|movePosition|PAGEDOWN|click|hideResults|LI|focus|nodeName|PAGEUP|body|COMMA|init|empty|pageDown|ESC|pageUp|next|RETURN|ol|nullData|indexOf|TAB|strong|gi|maxHeight|keyCode|DEL|padding|resultsClass|inputClass|parseInt|DOWN|emptyList|form|dataType|bgiframe|opera|UP|extraParams|prev|load|Select|||display|mustMatch|substring||end|receiveData|text|Cache|orig|selectionEnd|join|setSelectionRange|select|remove|right|height|style|msie|overflow|off|offset|current|attr|is|find|ac_even|html|innerHeight|clientHeight|parentNode|tagName|while|mouseup|mousedown|index|blur|toUpperCase|mouseover|ul|188|default|absolute|position|div|ac_over|substr|ac_odd|charAt|word|180|RegExp|100|switch|400|auto|ac_loading|ac_results||ac_input|keydown|keypress|success|submit||limit|150|name|port|abort|mode|ajax|Date|timestamp|200|map|jQuery|createRange|moveEnd|moveStart|collapse|move'.split('|'),0,{})) \ No newline at end of file diff --git a/media/js/jquery.ba-dotimeout.js b/media/js/jquery.ba-dotimeout.js new file mode 100644 index 0000000..ff5c0f2 --- /dev/null +++ b/media/js/jquery.ba-dotimeout.js @@ -0,0 +1,262 @@ +/*! + * jQuery doTimeout: Like setTimeout, but better! - v0.4 - 7/15/2009 + * http://benalman.com/projects/jquery-dotimeout-plugin/ + * + * Copyright (c) 2009 "Cowboy" Ben Alman + * Licensed under the MIT license + * http://benalman.com/about/license/ + */ + +// Script: jQuery doTimeout: Like setTimeout, but better! +// +// *Version: 0.4, Last updated: 7/15/2009* +// +// Project Home - http://benalman.com/projects/jquery-dotimeout-plugin/ +// GitHub - http://github.com/cowboy/jquery-dotimeout/ +// Source - http://github.com/cowboy/jquery-dotimeout/raw/master/jquery.ba-dotimeout.js +// (Minified) - http://github.com/cowboy/jquery-dotimeout/raw/master/jquery.ba-dotimeout.min.js (0.9kb) +// +// About: License +// +// Copyright (c) 2009 "Cowboy" Ben Alman, +// Licensed under the MIT license. +// http://benalman.com/about/license/ +// +// About: Examples +// +// These working examples, complete with fully commented code, illustrate a few +// ways in which this plugin can be used. +// +// Debouncing - http://benalman.com/code/projects/jquery-dotimeout/examples/debouncing/ +// Delays, Polling - http://benalman.com/code/projects/jquery-dotimeout/examples/delay-poll/ +// Hover Intent - http://benalman.com/code/projects/jquery-dotimeout/examples/hoverintent/ +// +// About: Support and Testing +// +// Information about what version or versions of jQuery this plugin has been +// tested with, what browsers it has been tested in, and where the unit tests +// reside (so you can test it yourself). +// +// jQuery Versions - 1.3.2 +// Browsers Tested - Internet Explorer 6-8, Firefox 3, Safari 3-4, Chrome, Opera 9. +// Unit Tests - http://benalman.com/code/projects/jquery-dotimeout/unit/ +// +// About: Release History +// +// 0.4 - (7/15/2009) Made the "id" argument optional, some other minor tweaks +// 0.3 - (6/25/2009) Initial release + +(function($){ + '$:nomunge'; // Used by YUI compressor. + + var cache = {}, + + // Reused internal string. + doTimeout = 'doTimeout', + + // A convenient shortcut. + aps = Array.prototype.slice; + + // Method: jQuery.doTimeout + // + // Initialize, cancel, or force execution of a callback after a delay. + // + // If delay and callback are specified, a doTimeout is initialized. The + // callback will execute, asynchronously, after the delay. If an id is + // specified, this doTimeout will override and cancel any existing doTimeout + // with the same id. Any additional arguments will be passed into callback + // when it is executed. + // + // If the callback returns true, the doTimeout loop will execute again, after + // the delay, creating a polling loop until the callback returns false. + // + // Note that if an id is not passed as the first argument, this doTimeout will + // NOT be able to be manually canceled or forced. (for debouncing, be sure to + // specify an id). + // + // If id is specified, but delay and callback are not, the doTimeout will be + // canceled without executing the callback. If force_mode is specified, the + // callback will be executed, synchronously, but will only be allowed to + // continue a polling loop if force_mode is true (provided the callback + // returns true, of course). If force_mode is false, no polling loop will + // continue, even if the callback returns true. + // + // Usage: + // + // > jQuery.doTimeout( [ id, ] delay, callback [, arg ... ] ); + // > jQuery.doTimeout( id [, force_mode ] ); + // + // Arguments: + // + // id - (String) An optional unique identifier for this doTimeout. If id is + // not specified, the doTimeout will NOT be able to be manually canceled or + // forced. + // delay - (Number) A zero-or-greater delay in milliseconds after which + // callback will be executed. + // callback - (Function) A function to be executed after delay milliseconds. + // force_mode - (Boolean) If true, execute that id's doTimeout callback + // immediately and synchronously, continuing any callback return-true + // polling loop. If false, execute the callback immediately and + // synchronously but do NOT continue a callback return-true polling loop. + // If omitted, cancel that id's doTimeout. + // + // Returns: + // + // If force_mode is true, false or undefined and there is a + // yet-to-be-executed callback to cancel, true is returned, but if no + // callback remains to be executed, undefined is returned. + + $[doTimeout] = function() { + return p_doTimeout.apply( window, [ 0 ].concat( aps.call( arguments ) ) ); + }; + + // Method: jQuery.fn.doTimeout + // + // Initialize, cancel, or force execution of a callback after a delay. + // Operates like , but the passed callback executes in the + // context of the jQuery collection of elements, and the id is stored as data + // on the first element in that collection. + // + // If delay and callback are specified, a doTimeout is initialized. The + // callback will execute, asynchronously, after the delay. If an id is + // specified, this doTimeout will override and cancel any existing doTimeout + // with the same id. Any additional arguments will be passed into callback + // when it is executed. + // + // If the callback returns true, the doTimeout loop will execute again, after + // the delay, creating a polling loop until the callback returns false. + // + // Note that if an id is not passed as the first argument, this doTimeout will + // NOT be able to be manually canceled or forced (for debouncing, be sure to + // specify an id). + // + // If id is specified, but delay and callback are not, the doTimeout will be + // canceled without executing the callback. If force_mode is specified, the + // callback will be executed, synchronously, but will only be allowed to + // continue a polling loop if force_mode is true (provided the callback + // returns true, of course). If force_mode is false, no polling loop will + // continue, even if the callback returns true. + // + // Usage: + // + // > jQuery('selector').doTimeout( [ id, ] delay, callback [, arg ... ] ); + // > jQuery('selector').doTimeout( id [, force_mode ] ); + // + // Arguments: + // + // id - (String) An optional unique identifier for this doTimeout, stored as + // jQuery data on the element. If id is not specified, the doTimeout will + // NOT be able to be manually canceled or forced. + // delay - (Number) A zero-or-greater delay in milliseconds after which + // callback will be executed. + // callback - (Function) A function to be executed after delay milliseconds. + // force_mode - (Boolean) If true, execute that id's doTimeout callback + // immediately and synchronously, continuing any callback return-true + // polling loop. If false, execute the callback immediately and + // synchronously but do NOT continue a callback return-true polling loop. + // If omitted, cancel that id's doTimeout. + // + // Returns: + // + // When creating a , the initial jQuery collection of + // elements is returned. Otherwise, if force_mode is true, false or undefined + // and there is a yet-to-be-executed callback to cancel, true is returned, + // but if no callback remains to be executed, undefined is returned. + + $.fn[doTimeout] = function() { + var args = aps.call( arguments ), + result = p_doTimeout.apply( this, [ doTimeout + args[0] ].concat( args ) ); + + return typeof args[0] === 'number' || typeof args[1] === 'number' + ? this + : result; + }; + + function p_doTimeout( jquery_data_key ) { + var that = this, + elem, + data = {}, + + // Any additional arguments will be passed to the callback. + args = arguments, + slice_args = 4, + + id = args[1], + delay = args[2], + callback = args[3]; + + if ( typeof id !== 'string' ) { + slice_args--; + + id = jquery_data_key = 0; + delay = args[1]; + callback = args[2]; + } + + // If id is passed, store a data reference either as .data on the first + // element in a jQuery collection, or in the internal cache. + if ( jquery_data_key ) { // Note: key is 'doTimeout' + id + + // Get id-object from the first element's data, otherwise initialize it to {}. + elem = that.eq(0); + elem.data( jquery_data_key, data = elem.data( jquery_data_key ) || {} ); + + } else if ( id ) { + // Get id-object from the cache, otherwise initialize it to {}. + data = cache[ id ] || ( cache[ id ] = {} ); + } + + // Clear any existing timeout for this id. + data.id && clearTimeout( data.id ); + delete data.id; + + // Clean up when necessary. + function cleanup() { + if ( jquery_data_key ) { + elem.removeData( jquery_data_key ); + } else if ( id ) { + delete cache[ id ]; + } + }; + + // Yes, there actually is a setTimeout call in here! + function actually_setTimeout() { + data.id = setTimeout( function(){ data.fn(); }, delay ); + }; + + if ( callback ) { + // A callback (and delay) were specified. Store the callback reference for + // possible later use, and then setTimeout. + data.fn = function( no_polling_loop ) { + callback.apply( that, aps.call( args, slice_args ) ) && !no_polling_loop + + // Since the callback returned true, and we're not specifically + // canceling a polling loop, do it again! + ? actually_setTimeout() + + // Otherwise, clean up and quit. + : cleanup(); + }; + + // Set that timeout! + actually_setTimeout(); + + } else if ( data.fn ) { + // No callback passed. If force_mode (delay) is true, execute the data.fn + // callback immediately, continuing any callback return-true polling loop. + // If force_mode is false, execute the data.fn callback immediately but do + // NOT continue a callback return-true polling loop. If force_mode is + // undefined, simply clean up. Since data.fn was still defined, whatever + // was supposed to happen hadn't yet, so return true. + delay === undefined ? cleanup() : data.fn( delay === false ); + return true; + + } else { + // Since no callback was passed, and data.fn isn't defined, it looks like + // whatever was supposed to happen already did. Clean up and quit! + cleanup(); + } + + }; + +})(jQuery); diff --git a/media/js/jquery.ba-dotimeout.min.js b/media/js/jquery.ba-dotimeout.min.js new file mode 100644 index 0000000..df4b17d --- /dev/null +++ b/media/js/jquery.ba-dotimeout.min.js @@ -0,0 +1,9 @@ +/* + * jQuery doTimeout: Like setTimeout, but better! - v0.4 - 7/15/2009 + * http://benalman.com/projects/jquery-dotimeout-plugin/ + * + * Copyright (c) 2009 "Cowboy" Ben Alman + * Licensed under the MIT license + * http://benalman.com/about/license/ + */ +(function($){var a={},c="doTimeout",d=Array.prototype.slice;$[c]=function(){return b.apply(window,[0].concat(d.call(arguments)))};$.fn[c]=function(){var e=d.call(arguments),f=b.apply(this,[c+e[0]].concat(e));return typeof e[0]==="number"||typeof e[1]==="number"?this:f};function b(l){var m=this,h,k={},n=arguments,i=4,g=n[1],j=n[2],o=n[3];if(typeof g!=="string"){i--;g=l=0;j=n[1];o=n[2]}if(l){h=m.eq(0);h.data(l,k=h.data(l)||{})}else{if(g){k=a[g]||(a[g]={})}}k.id&&clearTimeout(k.id);delete k.id;function f(){if(l){h.removeData(l)}else{if(g){delete a[g]}}}function e(){k.id=setTimeout(function(){k.fn()},j)}if(o){k.fn=function(p){o.apply(m,d.call(n,i))&&!p?e():f()};e()}else{if(k.fn){j===undefined?f():k.fn(j===false);return true}else{f()}}}})(jQuery); \ No newline at end of file diff --git a/media/js/jquery.countdown.css b/media/js/jquery.countdown.css new file mode 100644 index 0000000..b427659 --- /dev/null +++ b/media/js/jquery.countdown.css @@ -0,0 +1,51 @@ +/* jQuery Countdown styles 1.5.5. */ +.hasCountdown { + border: 1px solid #ccc; + background-color: #eee; +} +.countdown_rtl { + direction: rtl; +} +.countdown_holding span { + background-color: #ccc; +} +.countdown_row { + clear: both; + width: 100%; + padding: 0px 2px; + text-align: center; +} +.countdown_show1 .countdown_section { + width: 98%; +} +.countdown_show2 .countdown_section { + width: 48%; +} +.countdown_show3 .countdown_section { + width: 32.5%; +} +.countdown_show4 .countdown_section { + width: 24.5%; +} +.countdown_show5 .countdown_section { + width: 19.5%; +} +.countdown_show6 .countdown_section { + width: 16.25%; +} +.countdown_show7 .countdown_section { + width: 14%; +} +.countdown_section { + display: block; + float: left; + font-size: 75%; + text-align: center; +} +.countdown_amount { + font-size: 200%; +} +.countdown_descr { + display: block; + width: 100%; +} diff --git a/media/js/jquery.countdown.js b/media/js/jquery.countdown.js new file mode 100644 index 0000000..4f333f4 --- /dev/null +++ b/media/js/jquery.countdown.js @@ -0,0 +1,694 @@ +/* http://keith-wood.name/countdown.html + Countdown for jQuery v1.5.5. + Written by Keith Wood (kbwood{at}iinet.com.au) January 2008. + Dual licensed under the GPL (http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt) and + MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses. + Please attribute the author if you use it. */ + +/* Display a countdown timer. + Attach it with options like: + $('div selector').countdown( + {until: new Date(2009, 1 - 1, 1, 0, 0, 0), onExpiry: happyNewYear}); */ + +(function($) { // Hide scope, no $ conflict + +/* Countdown manager. */ +function Countdown() { + this.regional = []; // Available regional settings, indexed by language code + this.regional[''] = { // Default regional settings + // The display texts for the counters + labels: ['Years', 'Months', 'Weeks', 'Days', 'Hours', 'Minutes', 'Seconds'], + // The display texts for the counters if only one + labels1: ['Year', 'Month', 'Week', 'Day', 'Hour', 'Minute', 'Second'], + compactLabels: ['y', 'm', 'w', 'd'], // The compact texts for the counters + timeSeparator: ':', // Separator for time periods + isRTL: false // True for right-to-left languages, false for left-to-right + }; + this._defaults = { + until: null, // new Date(year, mth - 1, day, hr, min, sec) - date/time to count down to + // or numeric for seconds offset, or string for unit offset(s): + // 'Y' years, 'O' months, 'W' weeks, 'D' days, 'H' hours, 'M' minutes, 'S' seconds + since: null, // new Date(year, mth - 1, day, hr, min, sec) - date/time to count up from + // or numeric for seconds offset, or string for unit offset(s): + // 'Y' years, 'O' months, 'W' weeks, 'D' days, 'H' hours, 'M' minutes, 'S' seconds + timezone: null, // The timezone (hours or minutes from GMT) for the target times, + // or null for client local + serverSync: null, // A function to retrieve the current server time for synchronisation + format: 'dHMS', // Format for display - upper case for always, lower case only if non-zero, + // 'Y' years, 'O' months, 'W' weeks, 'D' days, 'H' hours, 'M' minutes, 'S' seconds + layout: '', // Build your own layout for the countdown + compact: false, // True to display in a compact format, false for an expanded one + description: '', // The description displayed for the countdown + expiryUrl: '', // A URL to load upon expiry, replacing the current page + expiryText: '', // Text to display upon expiry, replacing the countdown + alwaysExpire: false, // True to trigger onExpiry even if never counted down + onExpiry: null, // Callback when the countdown expires - + // receives no parameters and 'this' is the containing division + onTick: null // Callback when the countdown is updated - + // receives int[7] being the breakdown by period (based on format) + // and 'this' is the containing division + }; + $.extend(this._defaults, this.regional['']); +} + +var PROP_NAME = 'countdown'; + +var Y = 0; // Years +var O = 1; // Months +var W = 2; // Weeks +var D = 3; // Days +var H = 4; // Hours +var M = 5; // Minutes +var S = 6; // Seconds + +$.extend(Countdown.prototype, { + /* Class name added to elements to indicate already configured with countdown. */ + markerClassName: 'hasCountdown', + + /* Shared timer for all countdowns. */ + _timer: setInterval(function() { $.countdown._updateTargets(); }, 980), + /* List of currently active countdown targets. */ + _timerTargets: [], + + /* Override the default settings for all instances of the countdown widget. + @param options (object) the new settings to use as defaults */ + setDefaults: function(options) { + this._resetExtraLabels(this._defaults, options); + extendRemove(this._defaults, options || {}); + }, + + /* Convert a date/time to UTC. + @param tz (number) the hour or minute offset from GMT, e.g. +9, -360 + @param year (Date) the date/time in that timezone or + (number) the year in that timezone + @param month (number, optional) the month (0 - 11) (omit if year is a Date) + @param day (number, optional) the day (omit if year is a Date) + @param hours (number, optional) the hour (omit if year is a Date) + @param mins (number, optional) the minute (omit if year is a Date) + @param secs (number, optional) the second (omit if year is a Date) + @param ms (number, optional) the millisecond (omit if year is a Date) + @return (Date) the equivalent UTC date/time */ + UTCDate: function(tz, year, month, day, hours, mins, secs, ms) { + if (typeof year == 'object' && year.constructor == Date) { + ms = year.getMilliseconds(); + secs = year.getSeconds(); + mins = year.getMinutes(); + hours = year.getHours(); + day = year.getDate(); + month = year.getMonth(); + year = year.getFullYear(); + } + var d = new Date(); + d.setUTCFullYear(year); + d.setUTCDate(1); + d.setUTCMonth(month || 0); + d.setUTCDate(day || 1); + d.setUTCHours(hours || 0); + d.setUTCMinutes((mins || 0) - (Math.abs(tz) < 30 ? tz * 60 : tz)); + d.setUTCSeconds(secs || 0); + d.setUTCMilliseconds(ms || 0); + return d; + }, + + /* Retrieve one or more settings values. + @param name (string, optional) the name of the setting to retrieve + or 'all' for all instance settings or omit for all default settings + @return (any) the requested setting(s) */ + _settingsCountdown: function(target, name) { + if (!name) { + return $.countdown._defaults; + } + var inst = $.data(target, PROP_NAME); + return (name == 'all' ? inst.options : inst.options[name]); + }, + + /* Attach the countdown widget to a div. + @param target (element) the containing division + @param options (object) the initial settings for the countdown */ + _attachCountdown: function(target, options) { + var $target = $(target); + if ($target.hasClass(this.markerClassName)) { + return; + } + $target.addClass(this.markerClassName); + var inst = {options: $.extend({}, options), + _periods: [0, 0, 0, 0, 0, 0, 0]}; + $.data(target, PROP_NAME, inst); + this._changeCountdown(target); + }, + + /* Add a target to the list of active ones. + @param target (element) the countdown target */ + _addTarget: function(target) { + if (!this._hasTarget(target)) { + this._timerTargets.push(target); + } + }, + + /* See if a target is in the list of active ones. + @param target (element) the countdown target + @return (boolean) true if present, false if not */ + _hasTarget: function(target) { + return ($.inArray(target, this._timerTargets) > -1); + }, + + /* Remove a target from the list of active ones. + @param target (element) the countdown target */ + _removeTarget: function(target) { + this._timerTargets = $.map(this._timerTargets, + function(value) { return (value == target ? null : value); }); // delete entry + }, + + /* Update each active timer target. */ + _updateTargets: function() { + for (var i = 0; i < this._timerTargets.length; i++) { + this._updateCountdown(this._timerTargets[i]); + } + }, + + /* Redisplay the countdown with an updated display. + @param target (jQuery) the containing division + @param inst (object) the current settings for this instance */ + _updateCountdown: function(target, inst) { + var $target = $(target); + inst = inst || $.data(target, PROP_NAME); + if (!inst) { + return; + } + $target.html(this._generateHTML(inst)); + $target[(this._get(inst, 'isRTL') ? 'add' : 'remove') + 'Class']('countdown_rtl'); + var onTick = this._get(inst, 'onTick'); + if (onTick) { + onTick.apply(target, [inst._hold != 'lap' ? inst._periods : + this._calculatePeriods(inst, inst._show, new Date())]); + } + var expired = inst._hold != 'pause' && + (inst._since ? inst._now.getTime() <= inst._since.getTime() : + inst._now.getTime() >= inst._until.getTime()); + if (expired && !inst._expiring) { + inst._expiring = true; + if (this._hasTarget(target) || this._get(inst, 'alwaysExpire')) { + this._removeTarget(target); + var onExpiry = this._get(inst, 'onExpiry'); + if (onExpiry) { + onExpiry.apply(target, []); + } + var expiryText = this._get(inst, 'expiryText'); + if (expiryText) { + var layout = this._get(inst, 'layout'); + inst.options.layout = expiryText; + this._updateCountdown(target, inst); + inst.options.layout = layout; + } + var expiryUrl = this._get(inst, 'expiryUrl'); + if (expiryUrl) { + window.location = expiryUrl; + } + } + inst._expiring = false; + } + else if (inst._hold == 'pause') { + this._removeTarget(target); + } + $.data(target, PROP_NAME, inst); + }, + + /* Reconfigure the settings for a countdown div. + @param target (element) the containing division + @param options (object) the new settings for the countdown or + (string) an individual property name + @param value (any) the individual property value + (omit if options is an object) */ + _changeCountdown: function(target, options, value) { + options = options || {}; + if (typeof options == 'string') { + var name = options; + options = {}; + options[name] = value; + } + var inst = $.data(target, PROP_NAME); + if (inst) { + this._resetExtraLabels(inst.options, options); + extendRemove(inst.options, options); + this._adjustSettings(target, inst); + $.data(target, PROP_NAME, inst); + var now = new Date(); + if ((inst._since && inst._since < now) || + (inst._until && inst._until > now)) { + this._addTarget(target); + } + this._updateCountdown(target, inst); + } + }, + + /* Reset any extra labelsn and compactLabelsn entries if changing labels. + @param base (object) the options to be updated + @param options (object) the new option values */ + _resetExtraLabels: function(base, options) { + var changingLabels = false; + for (var n in options) { + if (n.match(/[Ll]abels/)) { + changingLabels = true; + break; + } + } + if (changingLabels) { + for (var n in base) { // Remove custom numbered labels + if (n.match(/[Ll]abels[0-9]/)) { + base[n] = null; + } + } + } + }, + + /* Calculate interal settings for an instance. + @param target (element) the containing division + @param inst (object) the current settings for this instance */ + _adjustSettings: function(target, inst) { + var serverSync = this._get(inst, 'serverSync'); + serverSync = (serverSync ? serverSync.apply(target, []) : null); + var now = new Date(); + var timezone = this._get(inst, 'timezone'); + timezone = (timezone == null ? -now.getTimezoneOffset() : timezone); + inst._since = this._get(inst, 'since'); + if (inst._since) { + inst._since = this.UTCDate(timezone, this._determineTime(inst._since, null)); + if (inst._since && serverSync) { + inst._since.setMilliseconds(inst._since.getMilliseconds() + + now.getTime() - serverSync.getTime()); + } + } + inst._until = this.UTCDate(timezone, this._determineTime(this._get(inst, 'until'), now)); + if (serverSync) { + inst._until.setMilliseconds(inst._until.getMilliseconds() + + now.getTime() - serverSync.getTime()); + } + inst._show = this._determineShow(inst); + }, + + /* Remove the countdown widget from a div. + @param target (element) the containing division */ + _destroyCountdown: function(target) { + var $target = $(target); + if (!$target.hasClass(this.markerClassName)) { + return; + } + this._removeTarget(target); + $target.removeClass(this.markerClassName).empty(); + $.removeData(target, PROP_NAME); + }, + + /* Pause a countdown widget at the current time. + Stop it running but remember and display the current time. + @param target (element) the containing division */ + _pauseCountdown: function(target) { + this._hold(target, 'pause'); + }, + + /* Pause a countdown widget at the current time. + Stop the display but keep the countdown running. + @param target (element) the containing division */ + _lapCountdown: function(target) { + this._hold(target, 'lap'); + }, + + /* Resume a paused countdown widget. + @param target (element) the containing division */ + _resumeCountdown: function(target) { + this._hold(target, null); + }, + + /* Pause or resume a countdown widget. + @param target (element) the containing division + @param hold (string) the new hold setting */ + _hold: function(target, hold) { + var inst = $.data(target, PROP_NAME); + if (inst) { + if (inst._hold == 'pause' && !hold) { + inst._periods = inst._savePeriods; + var sign = (inst._since ? '-' : '+'); + inst[inst._since ? '_since' : '_until'] = + this._determineTime(sign + inst._periods[0] + 'y' + + sign + inst._periods[1] + 'o' + sign + inst._periods[2] + 'w' + + sign + inst._periods[3] + 'd' + sign + inst._periods[4] + 'h' + + sign + inst._periods[5] + 'm' + sign + inst._periods[6] + 's'); + this._addTarget(target); + } + inst._hold = hold; + inst._savePeriods = (hold == 'pause' ? inst._periods : null); + $.data(target, PROP_NAME, inst); + this._updateCountdown(target, inst); + } + }, + + /* Return the current time periods. + @param target (element) the containing division + @return (number[7]) the current periods for the countdown */ + _getTimesCountdown: function(target) { + var inst = $.data(target, PROP_NAME); + return (!inst ? null : (!inst._hold ? inst._periods : + this._calculatePeriods(inst, inst._show, new Date()))); + }, + + /* Get a setting value, defaulting if necessary. + @param inst (object) the current settings for this instance + @param name (string) the name of the required setting + @return (any) the setting's value or a default if not overridden */ + _get: function(inst, name) { + return (inst.options[name] != null ? + inst.options[name] : $.countdown._defaults[name]); + }, + + /* A time may be specified as an exact value or a relative one. + @param setting (string or number or Date) - the date/time value + as a relative or absolute value + @param defaultTime (Date) the date/time to use if no other is supplied + @return (Date) the corresponding date/time */ + _determineTime: function(setting, defaultTime) { + var offsetNumeric = function(offset) { // e.g. +300, -2 + var time = new Date(); + time.setTime(time.getTime() + offset * 1000); + return time; + }; + var offsetString = function(offset) { // e.g. '+2d', '-4w', '+3h +30m' + offset = offset.toLowerCase(); + var time = new Date(); + var year = time.getFullYear(); + var month = time.getMonth(); + var day = time.getDate(); + var hour = time.getHours(); + var minute = time.getMinutes(); + var second = time.getSeconds(); + var pattern = /([+-]?[0-9]+)\s*(s|m|h|d|w|o|y)?/g; + var matches = pattern.exec(offset); + while (matches) { + switch (matches[2] || 's') { + case 's': second += parseInt(matches[1], 10); break; + case 'm': minute += parseInt(matches[1], 10); break; + case 'h': hour += parseInt(matches[1], 10); break; + case 'd': day += parseInt(matches[1], 10); break; + case 'w': day += parseInt(matches[1], 10) * 7; break; + case 'o': + month += parseInt(matches[1], 10); + day = Math.min(day, $.countdown._getDaysInMonth(year, month)); + break; + case 'y': + year += parseInt(matches[1], 10); + day = Math.min(day, $.countdown._getDaysInMonth(year, month)); + break; + } + matches = pattern.exec(offset); + } + return new Date(year, month, day, hour, minute, second, 0); + }; + var time = (setting == null ? defaultTime : + (typeof setting == 'string' ? offsetString(setting) : + (typeof setting == 'number' ? offsetNumeric(setting) : setting))); + if (time) time.setMilliseconds(0); + return time; + }, + + /* Determine the number of days in a month. + @param year (number) the year + @param month (number) the month + @return (number) the days in that month */ + _getDaysInMonth: function(year, month) { + return 32 - new Date(year, month, 32).getDate(); + }, + + /* Generate the HTML to display the countdown widget. + @param inst (object) the current settings for this instance + @return (string) the new HTML for the countdown display */ + _generateHTML: function(inst) { + // Determine what to show + inst._periods = periods = (inst._hold ? inst._periods : + this._calculatePeriods(inst, inst._show, new Date())); + // Show all 'asNeeded' after first non-zero value + var shownNonZero = false; + var showCount = 0; + for (var period = 0; period < inst._show.length; period++) { + shownNonZero |= (inst._show[period] == '?' && periods[period] > 0); + inst._show[period] = (inst._show[period] == '?' && !shownNonZero ? null : inst._show[period]); + showCount += (inst._show[period] ? 1 : 0); + } + var compact = this._get(inst, 'compact'); + var layout = this._get(inst, 'layout'); + var labels = (compact ? this._get(inst, 'compactLabels') : this._get(inst, 'labels')); + var timeSeparator = this._get(inst, 'timeSeparator'); + var description = this._get(inst, 'description') || ''; + var showCompact = function(period) { + var labelsNum = $.countdown._get(inst, 'compactLabels' + periods[period]); + return (inst._show[period] ? periods[period] + + (labelsNum ? labelsNum[period] : labels[period]) + ' ' : ''); + }; + var showFull = function(period) { + var labelsNum = $.countdown._get(inst, 'labels' + periods[period]); + return (inst._show[period] ? + '' + + periods[period] + '
        ' + + (labelsNum ? labelsNum[period] : labels[period]) + '
        ' : ''); + }; + return (layout ? this._buildLayout(inst, layout, compact) : + ((compact ? // Compact version + '' + + showCompact(Y) + showCompact(O) + showCompact(W) + showCompact(D) + + (inst._show[H] ? this._minDigits(periods[H], 2) : '') + + (inst._show[M] ? (inst._show[H] ? timeSeparator : '') + + this._minDigits(periods[M], 2) : '') + + (inst._show[S] ? (inst._show[H] || inst._show[M] ? timeSeparator : '') + + this._minDigits(periods[S], 2) : '') : + // Full version + '' + + showFull(Y) + showFull(O) + showFull(W) + showFull(D) + + showFull(H) + showFull(M) + showFull(S)) + '' + + (description ? '' + description + '' : ''))); + }, + + /* Construct a custom layout. + @param inst (object) the current settings for this instance + @param layout (string) the customised layout + @param compact (boolean) true if using compact labels + @return (string) the custom HTML */ + _buildLayout: function(inst, layout, compact) { + var labels = this._get(inst, (compact ? 'compactLabels' : 'labels')); + var labelFor = function(index) { + return ($.countdown._get(inst, + (compact ? 'compactLabels' : 'labels') + inst._periods[index]) || + labels)[index]; + }; + var digit = function(value, position) { + return Math.floor(value / position) % 10; + }; + var subs = {desc: this._get(inst, 'description'), sep: this._get(inst, 'timeSeparator'), + yl: labelFor(Y), yn: inst._periods[Y], ynn: this._minDigits(inst._periods[Y], 2), + ynnn: this._minDigits(inst._periods[Y], 3), y1: digit(inst._periods[Y], 1), + y10: digit(inst._periods[Y], 10), y100: digit(inst._periods[Y], 100), + y1000: digit(inst._periods[Y], 1000), + ol: labelFor(O), on: inst._periods[O], onn: this._minDigits(inst._periods[O], 2), + onnn: this._minDigits(inst._periods[O], 3), o1: digit(inst._periods[O], 1), + o10: digit(inst._periods[O], 10), o100: digit(inst._periods[O], 100), + o1000: digit(inst._periods[O], 1000), + wl: labelFor(W), wn: inst._periods[W], wnn: this._minDigits(inst._periods[W], 2), + wnnn: this._minDigits(inst._periods[W], 3), w1: digit(inst._periods[W], 1), + w10: digit(inst._periods[W], 10), w100: digit(inst._periods[W], 100), + w1000: digit(inst._periods[W], 1000), + dl: labelFor(D), dn: inst._periods[D], dnn: this._minDigits(inst._periods[D], 2), + dnnn: this._minDigits(inst._periods[D], 3), d1: digit(inst._periods[D], 1), + d10: digit(inst._periods[D], 10), d100: digit(inst._periods[D], 100), + d1000: digit(inst._periods[D], 1000), + hl: labelFor(H), hn: inst._periods[H], hnn: this._minDigits(inst._periods[H], 2), + hnnn: this._minDigits(inst._periods[H], 3), h1: digit(inst._periods[H], 1), + h10: digit(inst._periods[H], 10), h100: digit(inst._periods[H], 100), + h1000: digit(inst._periods[H], 1000), + ml: labelFor(M), mn: inst._periods[M], mnn: this._minDigits(inst._periods[M], 2), + mnnn: this._minDigits(inst._periods[M], 3), m1: digit(inst._periods[M], 1), + m10: digit(inst._periods[M], 10), m100: digit(inst._periods[M], 100), + m1000: digit(inst._periods[M], 1000), + sl: labelFor(S), sn: inst._periods[S], snn: this._minDigits(inst._periods[S], 2), + snnn: this._minDigits(inst._periods[S], 3), s1: digit(inst._periods[S], 1), + s10: digit(inst._periods[S], 10), s100: digit(inst._periods[S], 100), + s1000: digit(inst._periods[S], 1000)}; + var html = layout; + // Replace period containers: {p<}...{p>} + for (var i = 0; i < 7; i++) { + var period = 'yowdhms'.charAt(i); + var re = new RegExp('\\{' + period + '<\\}(.*)\\{' + period + '>\\}', 'g'); + html = html.replace(re, (inst._show[i] ? '$1' : '')); + } + // Replace period values: {pn} + $.each(subs, function(n, v) { + var re = new RegExp('\\{' + n + '\\}', 'g'); + html = html.replace(re, v); + }); + return html; + }, + + /* Ensure a numeric value has at least n digits for display. + @param value (number) the value to display + @param len (number) the minimum length + @return (string) the display text */ + _minDigits: function(value, len) { + value = '' + value; + if (value.length >= len) { + return value; + } + value = '0000000000' + value; + return value.substr(value.length - len); + }, + + /* Translate the format into flags for each period. + @param inst (object) the current settings for this instance + @return (string[7]) flags indicating which periods are requested (?) or + required (!) by year, month, week, day, hour, minute, second */ + _determineShow: function(inst) { + var format = this._get(inst, 'format'); + var show = []; + show[Y] = (format.match('y') ? '?' : (format.match('Y') ? '!' : null)); + show[O] = (format.match('o') ? '?' : (format.match('O') ? '!' : null)); + show[W] = (format.match('w') ? '?' : (format.match('W') ? '!' : null)); + show[D] = (format.match('d') ? '?' : (format.match('D') ? '!' : null)); + show[H] = (format.match('h') ? '?' : (format.match('H') ? '!' : null)); + show[M] = (format.match('m') ? '?' : (format.match('M') ? '!' : null)); + show[S] = (format.match('s') ? '?' : (format.match('S') ? '!' : null)); + return show; + }, + + /* Calculate the requested periods between now and the target time. + @param inst (object) the current settings for this instance + @param show (string[7]) flags indicating which periods are requested/required + @param now (Date) the current date and time + @return (number[7]) the current time periods (always positive) + by year, month, week, day, hour, minute, second */ + _calculatePeriods: function(inst, show, now) { + // Find endpoints + inst._now = now; + inst._now.setMilliseconds(0); + var until = new Date(inst._now.getTime()); + if (inst._since) { + if (now.getTime() < inst._since.getTime()) { + inst._now = now = until; + } + else { + now = inst._since; + } + } + else { + until.setTime(inst._until.getTime()); + if (now.getTime() > inst._until.getTime()) { + inst._now = now = until; + } + } + // Calculate differences by period + var periods = [0, 0, 0, 0, 0, 0, 0]; + if (show[Y] || show[O]) { + // Treat end of months as the same + var lastNow = $.countdown._getDaysInMonth(now.getFullYear(), now.getMonth()); + var lastUntil = $.countdown._getDaysInMonth(until.getFullYear(), until.getMonth()); + var sameDay = (until.getDate() == now.getDate() || + (until.getDate() >= Math.min(lastNow, lastUntil) && + now.getDate() >= Math.min(lastNow, lastUntil))); + var getSecs = function(date) { + return (date.getHours() * 60 + date.getMinutes()) * 60 + date.getSeconds(); + }; + var months = Math.max(0, + (until.getFullYear() - now.getFullYear()) * 12 + until.getMonth() - now.getMonth() + + ((until.getDate() < now.getDate() && !sameDay) || + (sameDay && getSecs(until) < getSecs(now)) ? -1 : 0)); + periods[Y] = (show[Y] ? Math.floor(months / 12) : 0); + periods[O] = (show[O] ? months - periods[Y] * 12 : 0); + // Adjust for months difference and end of month if necessary + var adjustDate = function(date, offset, last) { + var wasLastDay = (date.getDate() == last); + var lastDay = $.countdown._getDaysInMonth(date.getFullYear() + offset * periods[Y], + date.getMonth() + offset * periods[O]); + if (date.getDate() > lastDay) { + date.setDate(lastDay); + } + date.setFullYear(date.getFullYear() + offset * periods[Y]); + date.setMonth(date.getMonth() + offset * periods[O]); + if (wasLastDay) { + date.setDate(lastDay); + } + return date; + }; + if (inst._since) { + until = adjustDate(until, -1, lastUntil); + } + else { + now = adjustDate(new Date(now.getTime()), +1, lastNow); + } + } + var diff = Math.floor((until.getTime() - now.getTime()) / 1000); + var extractPeriod = function(period, numSecs) { + periods[period] = (show[period] ? Math.floor(diff / numSecs) : 0); + diff -= periods[period] * numSecs; + }; + extractPeriod(W, 604800); + extractPeriod(D, 86400); + extractPeriod(H, 3600); + extractPeriod(M, 60); + extractPeriod(S, 1); + if (diff > 0 && !inst._since) { // Round up if left overs + var multiplier = [1, 12, 4.3482, 7, 24, 60, 60]; + var lastShown = S; + var max = 1; + for (var period = S; period >= Y; period--) { + if (show[period]) { + if (periods[lastShown] >= max) { + periods[lastShown] = 0; + diff = 1; + } + if (diff > 0) { + periods[period]++; + diff = 0; + lastShown = period; + max = 1; + } + } + max *= multiplier[period]; + } + } + return periods; + } +}); + +/* jQuery extend now ignores nulls! + @param target (object) the object to update + @param props (object) the new settings + @return (object) the updated object */ +function extendRemove(target, props) { + $.extend(target, props); + for (var name in props) { + if (props[name] == null) { + target[name] = null; + } + } + return target; +} + +/* Process the countdown functionality for a jQuery selection. + @param command (string) the command to run (optional, default 'attach') + @param options (object) the new settings to use for these countdown instances + @return (jQuery) for chaining further calls */ +$.fn.countdown = function(options) { + var otherArgs = Array.prototype.slice.call(arguments, 1); + if (options == 'getTimes' || options == 'settings') { + return $.countdown['_' + options + 'Countdown']. + apply($.countdown, [this[0]].concat(otherArgs)); + } + return this.each(function() { + if (typeof options == 'string') { + $.countdown['_' + options + 'Countdown'].apply($.countdown, [this].concat(otherArgs)); + } + else { + $.countdown._attachCountdown(this, options); + } + }); +}; + +/* Initialise the countdown functionality. */ +$.countdown = new Countdown(); // singleton instance + +})(jQuery); diff --git a/media/js/jquery.countdown.min.js b/media/js/jquery.countdown.min.js new file mode 100644 index 0000000..1895c58 --- /dev/null +++ b/media/js/jquery.countdown.min.js @@ -0,0 +1,7 @@ +/* http://keith-wood.name/countdown.html + Countdown for jQuery v1.5.5. + Written by Keith Wood (kbwood{at}iinet.com.au) January 2008. + Dual licensed under the GPL (http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt) and + MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses. + Please attribute the author if you use it. */ +(function($){function Countdown(){this.regional=[];this.regional['']={labels:['Years','Months','Weeks','Days','Hours','Minutes','Seconds'],labels1:['Year','Month','Week','Day','Hour','Minute','Second'],compactLabels:['y','m','w','d'],timeSeparator:':',isRTL:false};this._defaults={until:null,since:null,timezone:null,serverSync:null,format:'dHMS',layout:'',compact:false,description:'',expiryUrl:'',expiryText:'',alwaysExpire:false,onExpiry:null,onTick:null};$.extend(this._defaults,this.regional[''])}var w='countdown';var Y=0;var O=1;var W=2;var D=3;var H=4;var M=5;var S=6;$.extend(Countdown.prototype,{markerClassName:'hasCountdown',_timer:setInterval(function(){$.countdown._updateTargets()},980),_timerTargets:[],setDefaults:function(a){this._resetExtraLabels(this._defaults,a);extendRemove(this._defaults,a||{})},UTCDate:function(a,b,c,e,f,g,h,i){if(typeof b=='object'&&b.constructor==Date){i=b.getMilliseconds();h=b.getSeconds();g=b.getMinutes();f=b.getHours();e=b.getDate();c=b.getMonth();b=b.getFullYear()}var d=new Date();d.setUTCFullYear(b);d.setUTCDate(1);d.setUTCMonth(c||0);d.setUTCDate(e||1);d.setUTCHours(f||0);d.setUTCMinutes((g||0)-(Math.abs(a)<30?a*60:a));d.setUTCSeconds(h||0);d.setUTCMilliseconds(i||0);return d},_settingsCountdown:function(a,b){if(!b){return $.countdown._defaults}var c=$.data(a,w);return(b=='all'?c.options:c.options[b])},_attachCountdown:function(a,b){var c=$(a);if(c.hasClass(this.markerClassName)){return}c.addClass(this.markerClassName);var d={options:$.extend({},b),_periods:[0,0,0,0,0,0,0]};$.data(a,w,d);this._changeCountdown(a)},_addTarget:function(a){if(!this._hasTarget(a)){this._timerTargets.push(a)}},_hasTarget:function(a){return($.inArray(a,this._timerTargets)>-1)},_removeTarget:function(b){this._timerTargets=$.map(this._timerTargets,function(a){return(a==b?null:a)})},_updateTargets:function(){for(var i=0;i=b._until.getTime());if(e&&!b._expiring){b._expiring=true;if(this._hasTarget(a)||this._get(b,'alwaysExpire')){this._removeTarget(a);var f=this._get(b,'onExpiry');if(f){f.apply(a,[])}var g=this._get(b,'expiryText');if(g){var h=this._get(b,'layout');b.options.layout=g;this._updateCountdown(a,b);b.options.layout=h}var i=this._get(b,'expiryUrl');if(i){window.location=i}}b._expiring=false}else if(b._hold=='pause'){this._removeTarget(a)}$.data(a,w,b)},_changeCountdown:function(a,b,c){b=b||{};if(typeof b=='string'){var d=b;b={};b[d]=c}var e=$.data(a,w);if(e){this._resetExtraLabels(e.options,b);extendRemove(e.options,b);this._adjustSettings(a,e);$.data(a,w,e);var f=new Date();if((e._since&&e._sincef)){this._addTarget(a)}this._updateCountdown(a,e)}},_resetExtraLabels:function(a,b){var c=false;for(var n in b){if(n.match(/[Ll]abels/)){c=true;break}}if(c){for(var n in a){if(n.match(/[Ll]abels[0-9]/)){a[n]=null}}}},_adjustSettings:function(a,b){var c=this._get(b,'serverSync');c=(c?c.apply(a,[]):null);var d=new Date();var e=this._get(b,'timezone');e=(e==null?-d.getTimezoneOffset():e);b._since=this._get(b,'since');if(b._since){b._since=this.UTCDate(e,this._determineTime(b._since,null));if(b._since&&c){b._since.setMilliseconds(b._since.getMilliseconds()+d.getTime()-c.getTime())}}b._until=this.UTCDate(e,this._determineTime(this._get(b,'until'),d));if(c){b._until.setMilliseconds(b._until.getMilliseconds()+d.getTime()-c.getTime())}b._show=this._determineShow(b)},_destroyCountdown:function(a){var b=$(a);if(!b.hasClass(this.markerClassName)){return}this._removeTarget(a);b.removeClass(this.markerClassName).empty();$.removeData(a,w)},_pauseCountdown:function(a){this._hold(a,'pause')},_lapCountdown:function(a){this._hold(a,'lap')},_resumeCountdown:function(a){this._hold(a,null)},_hold:function(a,b){var c=$.data(a,w);if(c){if(c._hold=='pause'&&!b){c._periods=c._savePeriods;var d=(c._since?'-':'+');c[c._since?'_since':'_until']=this._determineTime(d+c._periods[0]+'y'+d+c._periods[1]+'o'+d+c._periods[2]+'w'+d+c._periods[3]+'d'+d+c._periods[4]+'h'+d+c._periods[5]+'m'+d+c._periods[6]+'s');this._addTarget(a)}c._hold=b;c._savePeriods=(b=='pause'?c._periods:null);$.data(a,w,c);this._updateCountdown(a,c)}},_getTimesCountdown:function(a){var b=$.data(a,w);return(!b?null:(!b._hold?b._periods:this._calculatePeriods(b,b._show,new Date())))},_get:function(a,b){return(a.options[b]!=null?a.options[b]:$.countdown._defaults[b])},_determineTime:function(k,l){var m=function(a){var b=new Date();b.setTime(b.getTime()+a*1000);return b};var n=function(a){a=a.toLowerCase();var b=new Date();var c=b.getFullYear();var d=b.getMonth();var e=b.getDate();var f=b.getHours();var g=b.getMinutes();var h=b.getSeconds();var i=/([+-]?[0-9]+)\s*(s|m|h|d|w|o|y)?/g;var j=i.exec(a);while(j){switch(j[2]||'s'){case's':h+=parseInt(j[1],10);break;case'm':g+=parseInt(j[1],10);break;case'h':f+=parseInt(j[1],10);break;case'd':e+=parseInt(j[1],10);break;case'w':e+=parseInt(j[1],10)*7;break;case'o':d+=parseInt(j[1],10);e=Math.min(e,$.countdown._getDaysInMonth(c,d));break;case'y':c+=parseInt(j[1],10);e=Math.min(e,$.countdown._getDaysInMonth(c,d));break}j=i.exec(a)}return new Date(c,d,e,f,g,h,0)};var o=(k==null?l:(typeof k=='string'?n(k):(typeof k=='number'?m(k):k)));if(o)o.setMilliseconds(0);return o},_getDaysInMonth:function(a,b){return 32-new Date(a,b,32).getDate()},_generateHTML:function(c){c._periods=periods=(c._hold?c._periods:this._calculatePeriods(c,c._show,new Date()));var d=false;var e=0;for(var f=0;f0);c._show[f]=(c._show[f]=='?'&&!d?null:c._show[f]);e+=(c._show[f]?1:0)}var g=this._get(c,'compact');var h=this._get(c,'layout');var i=(g?this._get(c,'compactLabels'):this._get(c,'labels'));var j=this._get(c,'timeSeparator');var k=this._get(c,'description')||'';var l=function(a){var b=$.countdown._get(c,'compactLabels'+periods[a]);return(c._show[a]?periods[a]+(b?b[a]:i[a])+' ':'')};var m=function(a){var b=$.countdown._get(c,'labels'+periods[a]);return(c._show[a]?''+periods[a]+'
        '+(b?b[a]:i[a])+'
        ':'')};return(h?this._buildLayout(c,h,g):((g?''+l(Y)+l(O)+l(W)+l(D)+(c._show[H]?this._minDigits(periods[H],2):'')+(c._show[M]?(c._show[H]?j:'')+this._minDigits(periods[M],2):'')+(c._show[S]?(c._show[H]||c._show[M]?j:'')+this._minDigits(periods[S],2):''):''+m(Y)+m(O)+m(W)+m(D)+m(H)+m(M)+m(S))+''+(k?''+k+'':'')))},_buildLayout:function(c,d,e){var f=this._get(c,(e?'compactLabels':'labels'));var g=function(a){return($.countdown._get(c,(e?'compactLabels':'labels')+c._periods[a])||f)[a]};var h=function(a,b){return Math.floor(a/b)%10};var j={desc:this._get(c,'description'),sep:this._get(c,'timeSeparator'),yl:g(Y),yn:c._periods[Y],ynn:this._minDigits(c._periods[Y],2),ynnn:this._minDigits(c._periods[Y],3),y1:h(c._periods[Y],1),y10:h(c._periods[Y],10),y100:h(c._periods[Y],100),y1000:h(c._periods[Y],1000),ol:g(O),on:c._periods[O],onn:this._minDigits(c._periods[O],2),onnn:this._minDigits(c._periods[O],3),o1:h(c._periods[O],1),o10:h(c._periods[O],10),o100:h(c._periods[O],100),o1000:h(c._periods[O],1000),wl:g(W),wn:c._periods[W],wnn:this._minDigits(c._periods[W],2),wnnn:this._minDigits(c._periods[W],3),w1:h(c._periods[W],1),w10:h(c._periods[W],10),w100:h(c._periods[W],100),w1000:h(c._periods[W],1000),dl:g(D),dn:c._periods[D],dnn:this._minDigits(c._periods[D],2),dnnn:this._minDigits(c._periods[D],3),d1:h(c._periods[D],1),d10:h(c._periods[D],10),d100:h(c._periods[D],100),d1000:h(c._periods[D],1000),hl:g(H),hn:c._periods[H],hnn:this._minDigits(c._periods[H],2),hnnn:this._minDigits(c._periods[H],3),h1:h(c._periods[H],1),h10:h(c._periods[H],10),h100:h(c._periods[H],100),h1000:h(c._periods[H],1000),ml:g(M),mn:c._periods[M],mnn:this._minDigits(c._periods[M],2),mnnn:this._minDigits(c._periods[M],3),m1:h(c._periods[M],1),m10:h(c._periods[M],10),m100:h(c._periods[M],100),m1000:h(c._periods[M],1000),sl:g(S),sn:c._periods[S],snn:this._minDigits(c._periods[S],2),snnn:this._minDigits(c._periods[S],3),s1:h(c._periods[S],1),s10:h(c._periods[S],10),s100:h(c._periods[S],100),s1000:h(c._periods[S],1000)};var k=d;for(var i=0;i<7;i++){var l='yowdhms'.charAt(i);var m=new RegExp('\\{'+l+'<\\}(.*)\\{'+l+'>\\}','g');k=k.replace(m,(c._show[i]?'$1':''))}$.each(j,function(n,v){var a=new RegExp('\\{'+n+'\\}','g');k=k.replace(a,v)});return k},_minDigits:function(a,b){a=''+a;if(a.length>=b){return a}a='0000000000'+a;return a.substr(a.length-b)},_determineShow:function(a){var b=this._get(a,'format');var c=[];c[Y]=(b.match('y')?'?':(b.match('Y')?'!':null));c[O]=(b.match('o')?'?':(b.match('O')?'!':null));c[W]=(b.match('w')?'?':(b.match('W')?'!':null));c[D]=(b.match('d')?'?':(b.match('D')?'!':null));c[H]=(b.match('h')?'?':(b.match('H')?'!':null));c[M]=(b.match('m')?'?':(b.match('M')?'!':null));c[S]=(b.match('s')?'?':(b.match('S')?'!':null));return c},_calculatePeriods:function(f,g,h){f._now=h;f._now.setMilliseconds(0);var i=new Date(f._now.getTime());if(f._since){if(h.getTime()f._until.getTime()){f._now=h=i}}var j=[0,0,0,0,0,0,0];if(g[Y]||g[O]){var k=$.countdown._getDaysInMonth(h.getFullYear(),h.getMonth());var l=$.countdown._getDaysInMonth(i.getFullYear(),i.getMonth());var m=(i.getDate()==h.getDate()||(i.getDate()>=Math.min(k,l)&&h.getDate()>=Math.min(k,l)));var n=function(a){return(a.getHours()*60+a.getMinutes())*60+a.getSeconds()};var o=Math.max(0,(i.getFullYear()-h.getFullYear())*12+i.getMonth()-h.getMonth()+((i.getDate()e){a.setDate(e)}a.setFullYear(a.getFullYear()+b*j[Y]);a.setMonth(a.getMonth()+b*j[O]);if(d){a.setDate(e)}return a};if(f._since){i=p(i,-1,l)}else{h=p(new Date(h.getTime()),+1,k)}}var q=Math.floor((i.getTime()-h.getTime())/1000);var r=function(a,b){j[a]=(g[a]?Math.floor(q/b):0);q-=j[a]*b};r(W,604800);r(D,86400);r(H,3600);r(M,60);r(S,1);if(q>0&&!f._since){var s=[1,12,4.3482,7,24,60,60];var t=S;var u=1;for(var v=S;v>=Y;v--){if(g[v]){if(j[t]>=u){j[t]=0;q=1}if(q>0){j[v]++;q=0;t=v;u=1}}u*=s[v]}}return j}});function extendRemove(a,b){$.extend(a,b);for(var c in b){if(b[c]==null){a[c]=null}}return a}$.fn.countdown=function(a){var b=Array.prototype.slice.call(arguments,1);if(a=='getTimes'||a=='settings'){return $.countdown['_'+a+'Countdown'].apply($.countdown,[this[0]].concat(b))}return this.each(function(){if(typeof a=='string'){$.countdown['_'+a+'Countdown'].apply($.countdown,[this].concat(b))}else{$.countdown._attachCountdown(this,a)}})};$.countdown=new Countdown()})(jQuery); \ No newline at end of file diff --git a/media/js/jquery.countdown.pack.js b/media/js/jquery.countdown.pack.js new file mode 100644 index 0000000..dc49870 --- /dev/null +++ b/media/js/jquery.countdown.pack.js @@ -0,0 +1,7 @@ +/* http://keith-wood.name/countdown.html + Countdown for jQuery v1.5.5. + Written by Keith Wood (kbwood{at}iinet.com.au) January 2008. + Dual licensed under the GPL (http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt) and + MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses. + Please attribute the author if you use it. */ +eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(A($){A 1i(){8.1B=[];8.1B[\'\']={1j:[\'2t\',\'2u\',\'2v\',\'2w\',\'2x\',\'2y\',\'2z\'],2A:[\'2B\',\'2C\',\'2D\',\'2E\',\'2F\',\'2G\',\'2H\'],1k:[\'y\',\'m\',\'w\',\'d\'],1C:\':\',1R:1e};8.1f={1S:E,1T:E,1U:E,1V:E,1W:\'2I\',1l:\'\',1X:1e,1D:\'\',1Y:\'\',1Z:\'\',20:1e,21:E,22:E};$.1t(8.1f,8.1B[\'\'])}x w=\'G\';x Y=0;x O=1;x W=2;x D=3;x H=4;x M=5;x S=6;$.1t(1i.23,{1m:\'2J\',2K:2L(A(){$.G.25()},2M),18:[],2N:A(a){8.1E(8.1f,a);1F(8.1f,a||{})},1G:A(a,b,c,e,f,g,h,i){B(1n b==\'2O\'&&b.2P==Q){i=b.1H();h=b.1I();g=b.1J();f=b.1K();e=b.T();c=b.15();b=b.16()}x d=P Q();d.2Q(b);d.26(1);d.2R(c||0);d.26(e||1);d.2S(f||0);d.2T((g||0)-(U.2U(a)<30?a*1g:a));d.2V(h||0);d.2W(i||0);C d},2X:A(a,b){B(!b){C $.G.1f}x c=$.V(a,w);C(b==\'2Y\'?c.X:c.X[b])},27:A(a,b){x c=$(a);B(c.28(8.1m)){C}c.2Z(8.1m);x d={X:$.1t({},b),z:[0,0,0,0,0,0,0]};$.V(a,w,d);8.29(a)},1L:A(a){B(!8.1M(a)){8.18.31(a)}},1M:A(a){C($.33(a,8.18)>-1)},1u:A(b){8.18=$.34(8.18,A(a){C(a==b?E:a)})},25:A(){19(x i=0;i<8.18.1v;i++){8.1o(8.18[i])}},1o:A(a,b){x c=$(a);b=b||$.V(a,w);B(!b){C}c.35(8.2a(b));c[(8.F(b,\'1R\')?\'36\':\'37\')+\'38\'](\'39\');x d=8.F(b,\'22\');B(d){d.1p(a,[b.R!=\'2b\'?b.z:8.1w(b,b.I,P Q())])}x e=b.R!=\'1q\'&&(b.J?b.1a.K()<=b.J.K():b.1a.K()>=b.Z.K());B(e&&!b.1N){b.1N=2c;B(8.1M(a)||8.F(b,\'20\')){8.1u(a);x f=8.F(b,\'21\');B(f){f.1p(a,[])}x g=8.F(b,\'1Z\');B(g){x h=8.F(b,\'1l\');b.X.1l=g;8.1o(a,b);b.X.1l=h}x i=8.F(b,\'1Y\');B(i){3a.3b=i}}b.1N=1e}1r B(b.R==\'1q\'){8.1u(a)}$.V(a,w,b)},29:A(a,b,c){b=b||{};B(1n b==\'1O\'){x d=b;b={};b[d]=c}x e=$.V(a,w);B(e){8.1E(e.X,b);1F(e.X,b);8.2d(a,e);$.V(a,w,e);x f=P Q();B((e.J&&e.Jf)){8.1L(a)}8.1o(a,e)}},1E:A(a,b){x c=1e;19(x n 1P b){B(n.N(/[2e]2f/)){c=2c;17}}B(c){19(x n 1P a){B(n.N(/[2e]2f[0-9]/)){a[n]=E}}}},2d:A(a,b){x c=8.F(b,\'1V\');c=(c?c.1p(a,[]):E);x d=P Q();x e=8.F(b,\'1U\');e=(e==E?-d.3c():e);b.J=8.F(b,\'1T\');B(b.J){b.J=8.1G(e,8.1x(b.J,E));B(b.J&&c){b.J.1y(b.J.1H()+d.K()-c.K())}}b.Z=8.1G(e,8.1x(8.F(b,\'1S\'),d));B(c){b.Z.1y(b.Z.1H()+d.K()-c.K())}b.I=8.2g(b)},3d:A(a){x b=$(a);B(!b.28(8.1m)){C}8.1u(a);b.3e(8.1m).3f();$.3g(a,w)},3h:A(a){8.R(a,\'1q\')},3i:A(a){8.R(a,\'2b\')},3j:A(a){8.R(a,E)},R:A(a,b){x c=$.V(a,w);B(c){B(c.R==\'1q\'&&!b){c.z=c.2h;x d=(c.J?\'-\':\'+\');c[c.J?\'J\':\'Z\']=8.1x(d+c.z[0]+\'y\'+d+c.z[1]+\'o\'+d+c.z[2]+\'w\'+d+c.z[3]+\'d\'+d+c.z[4]+\'h\'+d+c.z[5]+\'m\'+d+c.z[6]+\'s\');8.1L(a)}c.R=b;c.2h=(b==\'1q\'?c.z:E);$.V(a,w,c);8.1o(a,c)}},3k:A(a){x b=$.V(a,w);C(!b?E:(!b.R?b.z:8.1w(b,b.I,P Q())))},F:A(a,b){C(a.X[b]!=E?a.X[b]:$.G.1f[b])},1x:A(k,l){x m=A(a){x b=P Q();b.2i(b.K()+a*11);C b};x n=A(a){a=a.3l();x b=P Q();x c=b.16();x d=b.15();x e=b.T();x f=b.1K();x g=b.1J();x h=b.1I();x i=/([+-]?[0-9]+)\\s*(s|m|h|d|w|o|y)?/g;x j=i.2j(a);3m(j){3n(j[2]||\'s\'){1b\'s\':h+=1c(j[1],10);17;1b\'m\':g+=1c(j[1],10);17;1b\'h\':f+=1c(j[1],10);17;1b\'d\':e+=1c(j[1],10);17;1b\'w\':e+=1c(j[1],10)*7;17;1b\'o\':d+=1c(j[1],10);e=U.1z(e,$.G.1h(c,d));17;1b\'y\':c+=1c(j[1],10);e=U.1z(e,$.G.1h(c,d));17}j=i.2j(a)}C P Q(c,d,e,f,g,h,0)};x o=(k==E?l:(1n k==\'1O\'?n(k):(1n k==\'3o\'?m(k):k)));B(o)o.1y(0);C o},1h:A(a,b){C 32-P Q(a,b,32).T()},2a:A(c){c.z=13=(c.R?c.z:8.1w(c,c.I,P Q()));x d=1e;x e=0;19(x f=0;f0);c.I[f]=(c.I[f]==\'?\'&&!d?E:c.I[f]);e+=(c.I[f]?1:0)}x g=8.F(c,\'1X\');x h=8.F(c,\'1l\');x i=(g?8.F(c,\'1k\'):8.F(c,\'1j\'));x j=8.F(c,\'1C\');x k=8.F(c,\'1D\')||\'\';x l=A(a){x b=$.G.F(c,\'1k\'+13[a]);C(c.I[a]?13[a]+(b?b[a]:i[a])+\' \':\'\')};x m=A(a){x b=$.G.F(c,\'1j\'+13[a]);C(c.I[a]?\'<14 1s="3p"><14 1s="2k">\'+13[a]+\'<3q/>\'+(b?b[a]:i[a])+\'\':\'\')};C(h?8.2l(c,h,g):((g?\'<14 1s="1Q 2k\'+(c.R?\' 2m\':\'\')+\'">\'+l(Y)+l(O)+l(W)+l(D)+(c.I[H]?8.L(13[H],2):\'\')+(c.I[M]?(c.I[H]?j:\'\')+8.L(13[M],2):\'\')+(c.I[S]?(c.I[H]||c.I[M]?j:\'\')+8.L(13[S],2):\'\'):\'<14 1s="1Q 3r\'+e+(c.R?\' 2m\':\'\')+\'">\'+m(Y)+m(O)+m(W)+m(D)+m(H)+m(M)+m(S))+\'\'+(k?\'<14 1s="1Q 3s">\'+k+\'\':\'\')))},2l:A(c,d,e){x f=8.F(c,(e?\'1k\':\'1j\'));x g=A(a){C($.G.F(c,(e?\'1k\':\'1j\')+c.z[a])||f)[a]};x h=A(a,b){C U.1A(a/b)%10};x j={3t:8.F(c,\'1D\'),3u:8.F(c,\'1C\'),3v:g(Y),3w:c.z[Y],3x:8.L(c.z[Y],2),3y:8.L(c.z[Y],3),3z:h(c.z[Y],1),3A:h(c.z[Y],10),3B:h(c.z[Y],1d),3C:h(c.z[Y],11),3D:g(O),3E:c.z[O],3F:8.L(c.z[O],2),3G:8.L(c.z[O],3),3H:h(c.z[O],1),3I:h(c.z[O],10),3J:h(c.z[O],1d),3K:h(c.z[O],11),3L:g(W),3M:c.z[W],3N:8.L(c.z[W],2),3O:8.L(c.z[W],3),3P:h(c.z[W],1),3Q:h(c.z[W],10),3R:h(c.z[W],1d),3S:h(c.z[W],11),3T:g(D),3U:c.z[D],3V:8.L(c.z[D],2),3W:8.L(c.z[D],3),3X:h(c.z[D],1),3Y:h(c.z[D],10),3Z:h(c.z[D],1d),40:h(c.z[D],11),41:g(H),42:c.z[H],43:8.L(c.z[H],2),44:8.L(c.z[H],3),45:h(c.z[H],1),46:h(c.z[H],10),47:h(c.z[H],1d),48:h(c.z[H],11),49:g(M),4a:c.z[M],4b:8.L(c.z[M],2),4c:8.L(c.z[M],3),4d:h(c.z[M],1),4e:h(c.z[M],10),4f:h(c.z[M],1d),4g:h(c.z[M],11),4h:g(S),4i:c.z[S],4j:8.L(c.z[S],2),4k:8.L(c.z[S],3),4l:h(c.z[S],1),4m:h(c.z[S],10),4n:h(c.z[S],1d),4o:h(c.z[S],11)};x k=d;19(x i=0;i<7;i++){x l=\'4p\'.4q(i);x m=P 2n(\'\\\\{\'+l+\'<\\\\}(.*)\\\\{\'+l+\'>\\\\}\',\'g\');k=k.2o(m,(c.I[i]?\'$1\':\'\'))}$.2p(j,A(n,v){x a=P 2n(\'\\\\{\'+n+\'\\\\}\',\'g\');k=k.2o(a,v)});C k},L:A(a,b){a=\'\'+a;B(a.1v>=b){C a}a=\'4r\'+a;C a.4s(a.1v-b)},2g:A(a){x b=8.F(a,\'1W\');x c=[];c[Y]=(b.N(\'y\')?\'?\':(b.N(\'Y\')?\'!\':E));c[O]=(b.N(\'o\')?\'?\':(b.N(\'O\')?\'!\':E));c[W]=(b.N(\'w\')?\'?\':(b.N(\'W\')?\'!\':E));c[D]=(b.N(\'d\')?\'?\':(b.N(\'D\')?\'!\':E));c[H]=(b.N(\'h\')?\'?\':(b.N(\'H\')?\'!\':E));c[M]=(b.N(\'m\')?\'?\':(b.N(\'M\')?\'!\':E));c[S]=(b.N(\'s\')?\'?\':(b.N(\'S\')?\'!\':E));C c},1w:A(f,g,h){f.1a=h;f.1a.1y(0);x i=P Q(f.1a.K());B(f.J){B(h.K()f.Z.K()){f.1a=h=i}}x j=[0,0,0,0,0,0,0];B(g[Y]||g[O]){x k=$.G.1h(h.16(),h.15());x l=$.G.1h(i.16(),i.15());x m=(i.T()==h.T()||(i.T()>=U.1z(k,l)&&h.T()>=U.1z(k,l)));x n=A(a){C(a.1K()*1g+a.1J())*1g+a.1I()};x o=U.4t(0,(i.16()-h.16())*12+i.15()-h.15()+((i.T()e){a.2q(e)}a.4u(a.16()+b*j[Y]);a.4v(a.15()+b*j[O]);B(d){a.2q(e)}C a};B(f.J){i=p(i,-1,l)}1r{h=p(P Q(h.K()),+1,k)}}x q=U.1A((i.K()-h.K())/11);x r=A(a,b){j[a]=(g[a]?U.1A(q/b):0);q-=j[a]*b};r(W,4w);r(D,4x);r(H,4y);r(M,1g);r(S,1);B(q>0&&!f.J){x s=[1,12,4.4z,7,24,1g,1g];x t=S;x u=1;19(x v=S;v>=Y;v--){B(g[v]){B(j[t]>=u){j[t]=0;q=1}B(q>0){j[v]++;q=0;t=v;u=1}}u*=s[v]}}C j}});A 1F(a,b){$.1t(a,b);19(x c 1P b){B(b[c]==E){a[c]=E}}C a}$.4A.G=A(a){x b=4B.23.4C.4D(4E,1);B(a==\'4F\'||a==\'4G\'){C $.G[\'2r\'+a+\'1i\'].1p($.G,[8[0]].2s(b))}C 8.2p(A(){B(1n a==\'1O\'){$.G[\'2r\'+a+\'1i\'].1p($.G,[8].2s(b))}1r{$.G.27(8,a)}})};$.G=P 1i()})(4H);',62,292,'||||||||this|||||||||||||||||||||||||var||_periods|function|if|return||null|_get|countdown||_show|_since|getTime|_minDigits||match||new|Date|_hold||getDate|Math|data||options||_until||1000||periods|span|getMonth|getFullYear|break|_timerTargets|for|_now|case|parseInt|100|false|_defaults|60|_getDaysInMonth|Countdown|labels|compactLabels|layout|markerClassName|typeof|_updateCountdown|apply|pause|else|class|extend|_removeTarget|length|_calculatePeriods|_determineTime|setMilliseconds|min|floor|regional|timeSeparator|description|_resetExtraLabels|extendRemove|UTCDate|getMilliseconds|getSeconds|getMinutes|getHours|_addTarget|_hasTarget|_expiring|string|in|countdown_row|isRTL|until|since|timezone|serverSync|format|compact|expiryUrl|expiryText|alwaysExpire|onExpiry|onTick|prototype||_updateTargets|setUTCDate|_attachCountdown|hasClass|_changeCountdown|_generateHTML|lap|true|_adjustSettings|Ll|abels|_determineShow|_savePeriods|setTime|exec|countdown_amount|_buildLayout|countdown_holding|RegExp|replace|each|setDate|_|concat|Years|Months|Weeks|Days|Hours|Minutes|Seconds|labels1|Year|Month|Week|Day|Hour|Minute|Second|dHMS|hasCountdown|_timer|setInterval|980|setDefaults|object|constructor|setUTCFullYear|setUTCMonth|setUTCHours|setUTCMinutes|abs|setUTCSeconds|setUTCMilliseconds|_settingsCountdown|all|addClass||push||inArray|map|html|add|remove|Class|countdown_rtl|window|location|getTimezoneOffset|_destroyCountdown|removeClass|empty|removeData|_pauseCountdown|_lapCountdown|_resumeCountdown|_getTimesCountdown|toLowerCase|while|switch|number|countdown_section|br|countdown_show|countdown_descr|desc|sep|yl|yn|ynn|ynnn|y1|y10|y100|y1000|ol|on|onn|onnn|o1|o10|o100|o1000|wl|wn|wnn|wnnn|w1|w10|w100|w1000|dl|dn|dnn|dnnn|d1|d10|d100|d1000|hl|hn|hnn|hnnn|h1|h10|h100|h1000|ml|mn|mnn|mnnn|m1|m10|m100|m1000|sl|sn|snn|snnn|s1|s10|s100|s1000|yowdhms|charAt|0000000000|substr|max|setFullYear|setMonth|604800|86400|3600|3482|fn|Array|slice|call|arguments|getTimes|settings|jQuery'.split('|'),0,{})) \ No newline at end of file diff --git a/media/js/jquery.progressbar/demo.php b/media/js/jquery.progressbar/demo.php new file mode 100644 index 0000000..6317448 --- /dev/null +++ b/media/js/jquery.progressbar/demo.php @@ -0,0 +1,173 @@ + + + + + Jquery WITS Form + + + + + + + + + + + + +
        +
        download me at http://t.wits.sg
        +
        +

        Progress Bars & Controls

        + + + + + + +
        Default Multicolored Bar75%
        Yellow Bar35%
        Orange Bar (No Text)55%
        Red Bar (No Text)85%
        Default Multicolored Bar with max value of 200032
        + Some controls: + 20 | + 40 | + 60 | + 80 | + 100 +
        + +
        +

        Usage:

        +
        
        +$(document).ready(function() {
        +	$("#pb1").progressBar();
        +	$("#pb2").progressBar({ barImage: 'images/progressbg_yellow.gif'} );
        +	$("#pb3").progressBar({ barImage: 'images/progressbg_orange.gif', showText: false} );
        +	$("#pb4").progressBar(65, { showText: false, barImage: 'images/progressbg_red.gif'} );
        +	$(".pb5").progressBar({ max: 2000, textFormat: 'fraction', callback: function(data) { if (data.running_value == data.value) { alert("Callback example: Target reached!"); } }} );
        +	$("#uploadprogressbar").progressBar();
        +});
        +
        + +
        +
        +

        Progress Bars Form Example

        + Download the PHP Source here +
        +
        + + + + + + + + + + + + + + + + +
        *
        *
        *
        +
        + 0% +
        +
        +
        +
        + +
        +

        Upload Form Javascript:

        +
        
        +var progress_key = '';
        +
        +// this sets up the progress bar
        +$(document).ready(function() {
        +	$("#uploadprogressbar").progressBar();
        +});
        +
        +// fades in the progress bar and starts polling the upload progress after 1.5seconds
        +function beginUpload() {
        +	// uses ajax to poll the uploadprogress.php page with the id
        +	// deserializes the json string, and computes the percentage (integer)
        +	// update the jQuery progress bar
        +	// sets a timer for the next poll in 750ms
        +	$("#uploadprogressbar").fadeIn();
        +
        +	var i = setInterval(function() { 
        +		$.getJSON("demo.php?id=" + progress_key, function(data) {
        +			if (data == null) {
        +				clearInterval(i);
        +				location.reload(true);
        +				return;
        +			}
        +
        +			var percentage = Math.floor(100 * parseInt(data.bytes_uploaded) / parseInt(data.bytes_total));
        +			$("#uploadprogressbar").progressBar(percentage);
        +		});
        +	}, 1500);
        +}
        +
        +
        +
        + + + + diff --git a/media/js/jquery.progressbar/demo.txt b/media/js/jquery.progressbar/demo.txt new file mode 100644 index 0000000..6317448 --- /dev/null +++ b/media/js/jquery.progressbar/demo.txt @@ -0,0 +1,173 @@ + + + + + Jquery WITS Form + + + + + + + + + + + + +
        +
        download me at http://t.wits.sg
        +
        +

        Progress Bars & Controls

        + + + + + + +
        Default Multicolored Bar75%
        Yellow Bar35%
        Orange Bar (No Text)55%
        Red Bar (No Text)85%
        Default Multicolored Bar with max value of 200032
        + Some controls: + 20 | + 40 | + 60 | + 80 | + 100 +
        + +
        +

        Usage:

        +
        
        +$(document).ready(function() {
        +	$("#pb1").progressBar();
        +	$("#pb2").progressBar({ barImage: 'images/progressbg_yellow.gif'} );
        +	$("#pb3").progressBar({ barImage: 'images/progressbg_orange.gif', showText: false} );
        +	$("#pb4").progressBar(65, { showText: false, barImage: 'images/progressbg_red.gif'} );
        +	$(".pb5").progressBar({ max: 2000, textFormat: 'fraction', callback: function(data) { if (data.running_value == data.value) { alert("Callback example: Target reached!"); } }} );
        +	$("#uploadprogressbar").progressBar();
        +});
        +
        + +
        +
        +

        Progress Bars Form Example

        + Download the PHP Source here +
        +
        + + + + + + + + + + + + + + + + +
        *
        *
        *
        +
        + 0% +
        +
        +
        +
        + +
        +

        Upload Form Javascript:

        +
        
        +var progress_key = '';
        +
        +// this sets up the progress bar
        +$(document).ready(function() {
        +	$("#uploadprogressbar").progressBar();
        +});
        +
        +// fades in the progress bar and starts polling the upload progress after 1.5seconds
        +function beginUpload() {
        +	// uses ajax to poll the uploadprogress.php page with the id
        +	// deserializes the json string, and computes the percentage (integer)
        +	// update the jQuery progress bar
        +	// sets a timer for the next poll in 750ms
        +	$("#uploadprogressbar").fadeIn();
        +
        +	var i = setInterval(function() { 
        +		$.getJSON("demo.php?id=" + progress_key, function(data) {
        +			if (data == null) {
        +				clearInterval(i);
        +				location.reload(true);
        +				return;
        +			}
        +
        +			var percentage = Math.floor(100 * parseInt(data.bytes_uploaded) / parseInt(data.bytes_total));
        +			$("#uploadprogressbar").progressBar(percentage);
        +		});
        +	}, 1500);
        +}
        +
        +
        +
        + + + + diff --git a/media/js/jquery.progressbar/js/jquery.js b/media/js/jquery.progressbar/js/jquery.js new file mode 100644 index 0000000..b1ae21d --- /dev/null +++ b/media/js/jquery.progressbar/js/jquery.js @@ -0,0 +1,19 @@ +/* + * jQuery JavaScript Library v1.3.2 + * http://jquery.com/ + * + * Copyright (c) 2009 John Resig + * Dual licensed under the MIT and GPL licenses. + * http://docs.jquery.com/License + * + * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009) + * Revision: 6246 + */ +(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("",""]||!O.indexOf("",""]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"","
        "]||!O.indexOf("",""]||(!O.indexOf("",""]||!O.indexOf("",""]||!o.support.htmlSerialize&&[1,"div
        ","
        "]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}}); +/* + * Sizzle CSS Selector Engine - v0.9.3 + * Copyright 2009, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return UT[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="

        ";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="
        ";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("
        ").append(M.responseText.replace(//g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='
        ';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})(); \ No newline at end of file diff --git a/media/js/jquery.progressbar/js/jquery.progressbar.js b/media/js/jquery.progressbar/js/jquery.progressbar.js new file mode 100644 index 0000000..8795ba2 --- /dev/null +++ b/media/js/jquery.progressbar/js/jquery.progressbar.js @@ -0,0 +1,183 @@ +/* + * jQuery Progress Bar plugin + * Version 2.0 (06/22/2009) + * @requires jQuery v1.2.1 or later + * + * Copyright (c) 2008 Gary Teo + * http://t.wits.sg + +USAGE: + $(".someclass").progressBar(); + $("#progressbar").progressBar(); + $("#progressbar").progressBar(45); // percentage + $("#progressbar").progressBar({showText: false }); // percentage with config + $("#progressbar").progressBar(45, {showText: false }); // percentage with config +*/ +(function($) { + $.extend({ + progressBar: new function() { + + this.defaults = { + steps : 100, // steps taken to reach target + step_duration : 20, + max : 100, // Upon 100% i'd assume, but configurable + showText : true, // show text with percentage in next to the progressbar? - default : true + textFormat : 'percentage', // Or otherwise, set to 'fraction' + width : 120, // Width of the progressbar - don't forget to adjust your image too!!! // Image to use in the progressbar. Can be a single image too: 'images/progressbg_green.gif' + height : 12, // Height of the progressbar - don't forget to adjust your image too!!! + callback : null, // Calls back with the config object that has the current percentage, target percentage, current image, etc + boxImage : '/media/images/progressbar.gif', // boxImage : image around the progress bar + barImage : { + 0: '/media/images/progressbg_red.gif', + 30: '/media/images/progressbg_orange.gif', + 70: '/media/images/progressbg_green.gif' + }, + + + // Internal use + running_value : 0, + value : 0, + image : null + }; + + /* public methods */ + this.construct = function(arg1, arg2) { + var argvalue = null; + var argconfig = null; + + if (arg1 != null) { + if (!isNaN(arg1)) { + argvalue = arg1; + if (arg2 != null) { + argconfig = arg2; + } + } else { + argconfig = arg1; + } + } + + return this.each(function(child) { + var pb = this; + var config = this.config; + + if (argvalue != null && this.bar != null && this.config != null) { + this.config.value = argvalue + if (argconfig != null) + pb.config = $.extend(this.config, argconfig); + config = pb.config; + } else { + var $this = $(this); + var config = $.extend({}, $.progressBar.defaults, argconfig); + config.id = $this.attr('id') ? $this.attr('id') : Math.ceil(Math.random() * 100000); // random id, if none provided + + if (argvalue == null) + argvalue = $this.html().replace("%","") // parse percentage + + config.value = argvalue; + config.running_value = 0; + config.image = getBarImage(config); + + $this.html(""); + var bar = document.createElement('img'); + var text = document.createElement('span'); + var $bar = $(bar); + var $text = $(text); + pb.bar = $bar; + + $bar.attr('id', config.id + "_pbImage"); + $text.attr('id', config.id + "_pbText"); + $text.html(getText(config)); + $bar.attr('title', getText(config)); + $bar.attr('alt', getText(config)); + $bar.attr('src', config.boxImage); + $bar.attr('width', config.width); + $bar.css("width", config.width + "px"); + $bar.css("height", config.height + "px"); + $bar.css("background-image", "url(" + config.image + ")"); + $bar.css("background-position", ((config.width * -1)) + 'px 50%'); + $bar.css("padding", "0"); + $bar.css("margin", "0"); + $this.append($bar); + $this.append($text); + } + + function getPercentage(config) { + return config.running_value * 100 / config.max; + } + + function getBarImage(config) { + var image = config.barImage; + if (typeof(config.barImage) == 'object') { + for (var i in config.barImage) { + if (config.running_value >= parseInt(i)) { + image = config.barImage[i]; + } else { break; } + } + } + return image; + } + + function getText(config) { + if (config.showText) { + if (config.textFormat == 'percentage') { + return " " + Math.round(config.running_value) + "%"; + } else if (config.textFormat == 'fraction') { + return " " + config.running_value + '/' + config.max; + } + } + } + + config.increment = Math.round((config.value - config.running_value)/config.steps); + if (config.increment < 0) + config.increment *= -1; + if (config.increment < 1) + config.increment = 1; + + var t = setInterval(function() { + var pixels = config.width / 100; // Define how many pixels go into 1% + var stop = false; + + if (config.running_value > config.value) { + if (config.running_value - config.increment < config.value) { + config.running_value = config.value; + } else { + config.running_value -= config.increment; + } + } + else if (config.running_value < config.value) { + if (config.running_value + config.increment > config.value) { + config.running_value = config.value; + } else { + config.running_value += config.increment; + } + } + + if (config.running_value == config.value) + clearInterval(t); + + var $bar = $("#" + config.id + "_pbImage"); + var $text = $("#" + config.id + "_pbText"); + var image = getBarImage(config); + if (image != config.image) { + $bar.css("background-image", "url(" + image + ")"); + config.image = image; + } + $bar.css("background-position", (((config.width * -1)) + (getPercentage(config) * pixels)) + 'px 50%'); + $bar.attr('title', getText(config)); + $text.html(getText(config)); + + if (config.callback != null && typeof(config.callback) == 'function') + config.callback(config); + + pb.config = config; + }, config.step_duration); + }); + }; + } + }); + + $.fn.extend({ + progressBar: $.progressBar.construct + }); + +})(jQuery); diff --git a/media/js/jquery.progressbar/js/jquery.progressbar.min.js b/media/js/jquery.progressbar/js/jquery.progressbar.min.js new file mode 100644 index 0000000..487eec7 --- /dev/null +++ b/media/js/jquery.progressbar/js/jquery.progressbar.min.js @@ -0,0 +1,19 @@ + +(function($){$.extend({progressBar:new function(){this.defaults={steps:20,step_duration:20,max:100,showText:true,textFormat:'percentage',width:120,height:12,callback:null,boxImage:'images/progressbar.gif',barImage:{0:'images/progressbg_red.gif',30:'images/progressbg_orange.gif',70:'images/progressbg_green.gif'},running_value:0,value:0,image:null};this.construct=function(arg1,arg2){var argvalue=null;var argconfig=null;if(arg1!=null){if(!isNaN(arg1)){argvalue=arg1;if(arg2!=null){argconfig=arg2;}}else{argconfig=arg1;}} +return this.each(function(child){var pb=this;var config=this.config;if(argvalue!=null&&this.bar!=null&&this.config!=null){this.config.value=argvalue +if(argconfig!=null) +pb.config=$.extend(this.config,argconfig);config=pb.config;}else{var $this=$(this);var config=$.extend({},$.progressBar.defaults,argconfig);config.id=$this.attr('id')?$this.attr('id'):Math.ceil(Math.random()*100000);if(argvalue==null) +argvalue=$this.html().replace("%","") +config.value=argvalue;config.running_value=0;config.image=getBarImage(config);$this.html("");var bar=document.createElement('img');var text=document.createElement('span');var $bar=$(bar);var $text=$(text);pb.bar=$bar;$bar.attr('id',config.id+"_pbImage");$text.attr('id',config.id+"_pbText");$text.html(getText(config));$bar.attr('title',getText(config));$bar.attr('alt',getText(config));$bar.attr('src',config.boxImage);$bar.attr('width',config.width);$bar.css("width",config.width+"px");$bar.css("height",config.height+"px");$bar.css("background-image","url("+config.image+")");$bar.css("background-position",((config.width*-1))+'px 50%');$bar.css("padding","0");$bar.css("margin","0");$this.append($bar);$this.append($text);} +function getPercentage(config){return config.running_value*100/config.max;} +function getBarImage(config){var image=config.barImage;if(typeof(config.barImage)=='object'){for(var i in config.barImage){if(config.running_value>=parseInt(i)){image=config.barImage[i];}else{break;}}} +return image;} +function getText(config){if(config.showText){if(config.textFormat=='percentage'){return" "+Math.round(config.running_value)+"%";}else if(config.textFormat=='fraction'){return" "+config.running_value+'/'+config.max;}}} +config.increment=Math.round((config.value-config.running_value)/config.steps);if(config.increment<0) +config.increment*=-1;if(config.increment<1) +config.increment=1;var t=setInterval(function(){var pixels=config.width/100;var stop=false;if(config.running_value>config.value){if(config.running_value-config.incrementconfig.value){config.running_value=config.value;}else{config.running_value+=config.increment;}} +if(config.running_value==config.value) +clearInterval(t);var $bar=$("#"+config.id+"_pbImage");var $text=$("#"+config.id+"_pbText");var image=getBarImage(config);if(image!=config.image){$bar.css("background-image","url("+image+")");config.image=image;} +$bar.css("background-position",(((config.width*-1))+(getPercentage(config)*pixels))+'px 50%');$bar.attr('title',getText(config));$text.html(getText(config));if(config.callback!=null&&typeof(config.callback)=='function') +config.callback(config);pb.config=config;},config.step_duration);});};}});$.fn.extend({progressBar:$.progressBar.construct});})(jQuery); \ No newline at end of file diff --git a/media/js/jquery.qtip-1.0.0-rc3.min.js b/media/js/jquery.qtip-1.0.0-rc3.min.js new file mode 100644 index 0000000..f50d843 --- /dev/null +++ b/media/js/jquery.qtip-1.0.0-rc3.min.js @@ -0,0 +1,15 @@ +/* + * jquery.qtip. The jQuery tooltip plugin + * + * Copyright (c) 2009 Craig Thompson + * http://craigsworks.com + * + * Licensed under MIT + * http://www.opensource.org/licenses/mit-license.php + * + * Launch : February 2009 + * Version : 1.0.0-rc3 + * Released: Tuesday 12th May, 2009 - 00:00 + * Debug: jquery.qtip.debug.js + */ +(function(f){f.fn.qtip=function(B,u){var y,t,A,s,x,w,v,z;if(typeof B=="string"){if(typeof f(this).data("qtip")!=="object"){f.fn.qtip.log.error.call(self,1,f.fn.qtip.constants.NO_TOOLTIP_PRESENT,false)}if(B=="api"){return f(this).data("qtip").interfaces[f(this).data("qtip").current]}else{if(B=="interfaces"){return f(this).data("qtip").interfaces}}}else{if(!B){B={}}if(typeof B.content!=="object"||(B.content.jquery&&B.content.length>0)){B.content={text:B.content}}if(typeof B.content.title!=="object"){B.content.title={text:B.content.title}}if(typeof B.position!=="object"){B.position={corner:B.position}}if(typeof B.position.corner!=="object"){B.position.corner={target:B.position.corner,tooltip:B.position.corner}}if(typeof B.show!=="object"){B.show={when:B.show}}if(typeof B.show.when!=="object"){B.show.when={event:B.show.when}}if(typeof B.show.effect!=="object"){B.show.effect={type:B.show.effect}}if(typeof B.hide!=="object"){B.hide={when:B.hide}}if(typeof B.hide.when!=="object"){B.hide.when={event:B.hide.when}}if(typeof B.hide.effect!=="object"){B.hide.effect={type:B.hide.effect}}if(typeof B.style!=="object"){B.style={name:B.style}}B.style=c(B.style);s=f.extend(true,{},f.fn.qtip.defaults,B);s.style=a.call({options:s},s.style);s.user=f.extend(true,{},B)}return f(this).each(function(){if(typeof B=="string"){w=B.toLowerCase();A=f(this).qtip("interfaces");if(typeof A=="object"){if(u===true&&w=="destroy"){while(A.length>0){A[A.length-1].destroy()}}else{if(u!==true){A=[f(this).qtip("api")]}for(y=0;y0))}if(typeof s.options.show.solo=="object"){z=f(s.options.show.solo)}else{if(s.options.show.solo===true){z=f("div.qtip").not(s.elements.tooltip)}}if(z){z.each(function(){if(f(this).qtip("api").status.rendered===true){f(this).qtip("api").hide()}})}if(typeof s.options.show.effect.type=="function"){s.options.show.effect.type.call(s.elements.tooltip,s.options.show.effect.length);s.elements.tooltip.queue(function(){w();f(this).dequeue()})}else{switch(s.options.show.effect.type.toLowerCase()){case"fade":s.elements.tooltip.fadeIn(s.options.show.effect.length,w);break;case"slide":s.elements.tooltip.slideDown(s.options.show.effect.length,function(){w();if(s.options.position.type!=="static"){s.updatePosition(y,true)}});break;case"grow":s.elements.tooltip.show(s.options.show.effect.length,w);break;default:s.elements.tooltip.show(null,w);break}s.elements.tooltip.addClass(s.options.style.classes.active)}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_SHOWN,"show")},hide:function(y){var x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"hide")}else{if(s.elements.tooltip.css("display")==="none"){return s}}clearTimeout(s.timers.show);s.elements.tooltip.stop(true,false);x=s.beforeHide.call(s,y);if(x===false){return s}function w(){s.onHide.call(s,y)}s.cache.toggle=0;if(typeof s.options.hide.effect.type=="function"){s.options.hide.effect.type.call(s.elements.tooltip,s.options.hide.effect.length);s.elements.tooltip.queue(function(){w();f(this).dequeue()})}else{switch(s.options.hide.effect.type.toLowerCase()){case"fade":s.elements.tooltip.fadeOut(s.options.hide.effect.length,w);break;case"slide":s.elements.tooltip.slideUp(s.options.hide.effect.length,w);break;case"grow":s.elements.tooltip.hide(s.options.hide.effect.length,w);break;default:s.elements.tooltip.hide(null,w);break}s.elements.tooltip.removeClass(s.options.style.classes.active)}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_HIDDEN,"hide")},updatePosition:function(w,x){var C,G,L,J,H,E,y,I,B,D,K,A,F,z;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updatePosition")}else{if(s.options.position.type=="static"){return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.CANNOT_POSITION_STATIC,"updatePosition")}}G={position:{left:0,top:0},dimensions:{height:0,width:0},corner:s.options.position.corner.target};L={position:s.getPosition(),dimensions:s.getDimensions(),corner:s.options.position.corner.tooltip};if(s.options.position.target!=="mouse"){if(s.options.position.target.get(0).nodeName.toLowerCase()=="area"){J=s.options.position.target.attr("coords").split(",");for(C=0;CG.dimensions.width){G.dimensions.width=J[C]}if(J[C]G.dimensions.height){G.dimensions.height=J[C]}if(J[C]0){if(L.corner.search(/Left/)!==-1){y.left-=s.options.style.border.radius}else{if(L.corner.search(/Right/)!==-1){y.left+=s.options.style.border.radius}}if(L.corner.search(/Top/)!==-1){y.top-=s.options.style.border.radius}else{if(L.corner.search(/Bottom/)!==-1){y.top+=s.options.style.border.radius}}}if(I){if(L.corner.search(/top/)!==-1){y.top-=I}else{if(L.corner.search(/bottom/)!==-1){y.top+=I}}if(L.corner.search(/left/)!==-1){y.left-=I}else{if(L.corner.search(/right/)!==-1){y.left+=I}}if(L.corner.search(/leftMiddle|rightMiddle/)!==-1){y.top-=1}}if(s.options.position.adjust.screen===true){y=o.call(s,y,G,L)}if(s.options.position.target==="mouse"&&s.options.position.adjust.mouse===true){if(s.options.position.adjust.screen===true&&s.elements.tip){K=s.elements.tip.attr("rel")}else{K=s.options.position.corner.tooltip}y.left+=(K.search(/right/i)!==-1)?-6:6;y.top+=(K.search(/bottom/i)!==-1)?-6:6}if(!s.elements.bgiframe&&f.browser.msie&&parseInt(f.browser.version.charAt(0))==6){f("select, object").each(function(){A=f(this).offset();A.bottom=A.top+f(this).height();A.right=A.left+f(this).width();if(y.top+L.dimensions.height>=A.top&&y.left+L.dimensions.width>=A.left){k.call(s)}})}y.left+=s.options.position.adjust.x;y.top+=s.options.position.adjust.y;F=s.getPosition();if(y.left!=F.left||y.top!=F.top){z=s.beforePositionUpdate.call(s,w);if(z===false){return s}s.cache.position=y;if(x===true){s.status.animated=true;s.elements.tooltip.animate(y,200,"swing",function(){s.status.animated=false})}else{s.elements.tooltip.css(y)}s.onPositionUpdate.call(s,w);if(typeof w!=="undefined"&&w.type&&w.type!=="mousemove"){f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_POSITION_UPDATED,"updatePosition")}}return s},updateWidth:function(w){var x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateWidth")}else{if(w&&typeof w!=="number"){return f.fn.qtip.log.error.call(s,2,"newWidth must be of type number","updateWidth")}}x=s.elements.contentWrapper.siblings().add(s.elements.tip).add(s.elements.button);if(!w){if(typeof s.options.style.width.value=="number"){w=s.options.style.width.value}else{s.elements.tooltip.css({width:"auto"});x.hide();if(f.browser.msie){s.elements.wrapper.add(s.elements.contentWrapper.children()).css({zoom:"normal"})}w=s.getDimensions().width+1;if(!s.options.style.width.value){if(w>s.options.style.width.max){w=s.options.style.width.max}if(w").get(0).getContext){z=s.elements.tooltip.find(".qtip-tip canvas:first");x=z.get(0).getContext("2d");x.clearRect(0,0,300,300);y=z.parent("div[rel]:first").attr("rel");B=b(y,s.options.style.tip.size.width,s.options.style.tip.size.height);h.call(s,z,B,s.options.style.tip.color||s.options.style.border.color)}else{if(f.browser.msie){z=s.elements.tooltip.find('.qtip-tip [nodeName="shape"]');z.attr("fillcolor",s.options.style.tip.color||s.options.style.border.color)}}}if(s.options.style.border.radius>0){s.elements.tooltip.find(".qtip-betweenCorners").css({backgroundColor:s.options.style.border.color});if(f("").get(0).getContext){A=g(s.options.style.border.radius);s.elements.tooltip.find(".qtip-wrapper canvas").each(function(){x=f(this).get(0).getContext("2d");x.clearRect(0,0,300,300);y=f(this).parent("div[rel]:first").attr("rel");r.call(s,f(this),A[y],s.options.style.border.radius,s.options.style.border.color)})}else{if(f.browser.msie){s.elements.tooltip.find('.qtip-wrapper [nodeName="arc"]').each(function(){f(this).attr("fillcolor",s.options.style.border.color)})}}}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_STYLE_UPDATED,"updateStyle")},updateContent:function(A,y){var z,x,w;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateContent")}else{if(!A){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.NO_CONTENT_PROVIDED,"updateContent")}}z=s.beforeContentUpdate.call(s,A);if(typeof z=="string"){A=z}else{if(z===false){return}}if(f.browser.msie){s.elements.contentWrapper.children().css({zoom:"normal"})}if(A.jquery&&A.length>0){A.clone(true).appendTo(s.elements.content).show()}else{s.elements.content.html(A)}x=s.elements.content.find("img[complete=false]");if(x.length>0){w=0;x.each(function(C){f('').load(function(){if(++w==x.length){B()}})})}else{B()}function B(){s.updateWidth();if(y!==false){if(s.options.position.type!=="static"){s.updatePosition(s.elements.tooltip.is(":visible"),true)}if(s.options.style.tip.corner!==false){n.call(s)}}}s.onContentUpdate.call(s);return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_CONTENT_UPDATED,"loadContent")},loadContent:function(w,z,A){var y;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"loadContent")}y=s.beforeContentLoad.call(s);if(y===false){return s}if(A=="post"){f.post(w,z,x)}else{f.get(w,z,x)}function x(B){s.onContentLoad.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_CONTENT_LOADED,"loadContent");s.updateContent(B)}return s},updateTitle:function(w){if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateTitle")}else{if(!w){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.NO_CONTENT_PROVIDED,"updateTitle")}}returned=s.beforeTitleUpdate.call(s);if(returned===false){return s}if(s.elements.button){s.elements.button=s.elements.button.clone(true)}s.elements.title.html(w);if(s.elements.button){s.elements.title.prepend(s.elements.button)}s.onTitleUpdate.call(s);return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_TITLE_UPDATED,"updateTitle")},focus:function(A){var y,x,w,z;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"focus")}else{if(s.options.position.type=="static"){return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.CANNOT_FOCUS_STATIC,"focus")}}y=parseInt(s.elements.tooltip.css("z-index"));x=6000+f("div.qtip[qtip]").length-1;if(!s.status.focused&&y!==x){z=s.beforeFocus.call(s,A);if(z===false){return s}f("div.qtip[qtip]").not(s.elements.tooltip).each(function(){if(f(this).qtip("api").status.rendered===true){w=parseInt(f(this).css("z-index"));if(typeof w=="number"&&w>-1){f(this).css({zIndex:parseInt(f(this).css("z-index"))-1})}f(this).qtip("api").status.focused=false}});s.elements.tooltip.css({zIndex:x});s.status.focused=true;s.onFocus.call(s,A);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_FOCUSED,"focus")}return s},disable:function(w){if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"disable")}if(w){if(!s.status.disabled){s.status.disabled=true;f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_DISABLED,"disable")}else{f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.TOOLTIP_ALREADY_DISABLED,"disable")}}else{if(s.status.disabled){s.status.disabled=false;f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_ENABLED,"disable")}else{f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.TOOLTIP_ALREADY_ENABLED,"disable")}}return s},destroy:function(){var w,x,y;x=s.beforeDestroy.call(s);if(x===false){return s}if(s.status.rendered){s.options.show.when.target.unbind("mousemove.qtip",s.updatePosition);s.options.show.when.target.unbind("mouseout.qtip",s.hide);s.options.show.when.target.unbind(s.options.show.when.event+".qtip");s.options.hide.when.target.unbind(s.options.hide.when.event+".qtip");s.elements.tooltip.unbind(s.options.hide.when.event+".qtip");s.elements.tooltip.unbind("mouseover.qtip",s.focus);s.elements.tooltip.remove()}else{s.options.show.when.target.unbind(s.options.show.when.event+".qtip-create")}if(typeof s.elements.target.data("qtip")=="object"){y=s.elements.target.data("qtip").interfaces;if(typeof y=="object"&&y.length>0){for(w=0;w0){s.elements.target.data("qtip").current=y.length-1}else{s.elements.target.removeData("qtip")}s.onDestroy.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_DESTROYED,"destroy");return s.elements.target},getPosition:function(){var w,x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"getPosition")}w=(s.elements.tooltip.css("display")!=="none")?false:true;if(w){s.elements.tooltip.css({visiblity:"hidden"}).show()}x=s.elements.tooltip.offset();if(w){s.elements.tooltip.css({visiblity:"visible"}).hide()}return x},getDimensions:function(){var w,x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"getDimensions")}w=(!s.elements.tooltip.is(":visible"))?true:false;if(w){s.elements.tooltip.css({visiblity:"hidden"}).show()}x={height:s.elements.tooltip.outerHeight(),width:s.elements.tooltip.outerWidth()};if(w){s.elements.tooltip.css({visiblity:"visible"}).hide()}return x}})}function p(){var s,w,u,t,v,y,x;s=this;s.beforeRender.call(s);s.status.rendered=true;s.elements.tooltip='';s.elements.tooltip=f(s.elements.tooltip);s.elements.tooltip.appendTo(s.options.position.container);s.elements.tooltip.data("qtip",{current:0,interfaces:[s]});s.elements.wrapper=s.elements.tooltip.children("div:first");s.elements.contentWrapper=s.elements.wrapper.children("div:first").css({background:s.options.style.background});s.elements.content=s.elements.contentWrapper.children("div:first").css(q(s.options.style));if(f.browser.msie){s.elements.wrapper.add(s.elements.content).css({zoom:1})}if(s.options.hide.when.event=="unfocus"){s.elements.tooltip.attr("unfocus",true)}if(typeof s.options.style.width.value=="number"){s.updateWidth()}if(f("").get(0).getContext||f.browser.msie){if(s.options.style.border.radius>0){m.call(s)}else{s.elements.contentWrapper.css({border:s.options.style.border.width+"px solid "+s.options.style.border.color})}if(s.options.style.tip.corner!==false){e.call(s)}}else{s.elements.contentWrapper.css({border:s.options.style.border.width+"px solid "+s.options.style.border.color});s.options.style.border.radius=0;s.options.style.tip.corner=false;f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.CANVAS_VML_NOT_SUPPORTED,"render")}if((typeof s.options.content.text=="string"&&s.options.content.text.length>0)||(s.options.content.text.jquery&&s.options.content.text.length>0)){u=s.options.content.text}else{if(typeof s.elements.target.attr("title")=="string"&&s.elements.target.attr("title").length>0){u=s.elements.target.attr("title").replace("\\n","
        ");s.elements.target.attr("title","")}else{if(typeof s.elements.target.attr("alt")=="string"&&s.elements.target.attr("alt").length>0){u=s.elements.target.attr("alt").replace("\\n","
        ");s.elements.target.attr("alt","")}else{u=" ";f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.NO_VALID_CONTENT,"render")}}}if(s.options.content.title.text!==false){j.call(s)}s.updateContent(u);l.call(s);if(s.options.show.ready===true){s.show()}if(s.options.content.url!==false){t=s.options.content.url;v=s.options.content.data;y=s.options.content.method||"get";s.loadContent(t,v,y)}s.onRender.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_RENDERED,"render")}function m(){var F,z,t,B,x,E,u,G,D,y,w,C,A,s,v;F=this;F.elements.wrapper.find(".qtip-borderBottom, .qtip-borderTop").remove();t=F.options.style.border.width;B=F.options.style.border.radius;x=F.options.style.border.color||F.options.style.tip.color;E=g(B);u={};for(z in E){u[z]='
        ';if(f("").get(0).getContext){u[z]+=''}else{if(f.browser.msie){G=B*2+3;u[z]+=''}}u[z]+="
        "}D=F.getDimensions().width-(Math.max(t,B)*2);y='
        ';w='
        '+u.topLeft+u.topRight+y;F.elements.wrapper.prepend(w);C='
        '+u.bottomLeft+u.bottomRight+y;F.elements.wrapper.append(C);if(f("").get(0).getContext){F.elements.wrapper.find("canvas").each(function(){A=E[f(this).parent("[rel]:first").attr("rel")];r.call(F,f(this),A,B,x)})}else{if(f.browser.msie){F.elements.tooltip.append('')}}s=Math.max(B,(B+(t-B)));v=Math.max(t-B,0);F.elements.contentWrapper.css({border:"0px solid "+x,borderWidth:v+"px "+s+"px"})}function r(u,w,s,t){var v=u.get(0).getContext("2d");v.fillStyle=t;v.beginPath();v.arc(w[0],w[1],s,0,Math.PI*2,false);v.fill()}function e(v){var t,s,x,u,w;t=this;if(t.elements.tip!==null){t.elements.tip.remove()}s=t.options.style.tip.color||t.options.style.border.color;if(t.options.style.tip.corner===false){return}else{if(!v){v=t.options.style.tip.corner}}x=b(v,t.options.style.tip.size.width,t.options.style.tip.size.height);t.elements.tip='
        ';if(f("").get(0).getContext){t.elements.tip+=''}else{if(f.browser.msie){u=t.options.style.tip.size.width+","+t.options.style.tip.size.height;w="m"+x[0][0]+","+x[0][1];w+=" l"+x[1][0]+","+x[1][1];w+=" "+x[2][0]+","+x[2][1];w+=" xe";t.elements.tip+='';t.elements.tip+='';t.elements.contentWrapper.css("position","relative")}}t.elements.tooltip.prepend(t.elements.tip+"
        ");t.elements.tip=t.elements.tooltip.find("."+t.options.style.classes.tip).eq(0);if(f("").get(0).getContext){h.call(t,t.elements.tip.find("canvas:first"),x,s)}if(v.search(/top/)!==-1&&f.browser.msie&&parseInt(f.browser.version.charAt(0))===6){t.elements.tip.css({marginTop:-4})}n.call(t,v)}function h(t,v,s){var u=t.get(0).getContext("2d");u.fillStyle=s;u.beginPath();u.moveTo(v[0][0],v[0][1]);u.lineTo(v[1][0],v[1][1]);u.lineTo(v[2][0],v[2][1]);u.fill()}function n(u){var t,w,s,x,v;t=this;if(t.options.style.tip.corner===false||!t.elements.tip){return}if(!u){u=t.elements.tip.attr("rel")}w=positionAdjust=(f.browser.msie)?1:0;t.elements.tip.css(u.match(/left|right|top|bottom/)[0],0);if(u.search(/top|bottom/)!==-1){if(f.browser.msie){if(parseInt(f.browser.version.charAt(0))===6){positionAdjust=(u.search(/top/)!==-1)?-3:1}else{positionAdjust=(u.search(/top/)!==-1)?1:2}}if(u.search(/Middle/)!==-1){t.elements.tip.css({left:"50%",marginLeft:-(t.options.style.tip.size.width/2)})}else{if(u.search(/Left/)!==-1){t.elements.tip.css({left:t.options.style.border.radius-w})}else{if(u.search(/Right/)!==-1){t.elements.tip.css({right:t.options.style.border.radius+w})}}}if(u.search(/top/)!==-1){t.elements.tip.css({top:-positionAdjust})}else{t.elements.tip.css({bottom:positionAdjust})}}else{if(u.search(/left|right/)!==-1){if(f.browser.msie){positionAdjust=(parseInt(f.browser.version.charAt(0))===6)?1:((u.search(/left/)!==-1)?1:2)}if(u.search(/Middle/)!==-1){t.elements.tip.css({top:"50%",marginTop:-(t.options.style.tip.size.height/2)})}else{if(u.search(/Top/)!==-1){t.elements.tip.css({top:t.options.style.border.radius-w})}else{if(u.search(/Bottom/)!==-1){t.elements.tip.css({bottom:t.options.style.border.radius+w})}}}if(u.search(/left/)!==-1){t.elements.tip.css({left:-positionAdjust})}else{t.elements.tip.css({right:positionAdjust})}}}s="padding-"+u.match(/left|right|top|bottom/)[0];x=t.options.style.tip.size[(s.search(/left|right/)!==-1)?"width":"height"];t.elements.tooltip.css("padding",0);t.elements.tooltip.css(s,x);if(f.browser.msie&&parseInt(f.browser.version.charAt(0))==6){v=parseInt(t.elements.tip.css("margin-top"))||0;v+=parseInt(t.elements.content.css("margin-top"))||0;t.elements.tip.css({marginTop:v})}}function j(){var s=this;if(s.elements.title!==null){s.elements.title.remove()}s.elements.title=f('
        ').css(q(s.options.style.title,true)).css({zoom:(f.browser.msie)?1:0}).prependTo(s.elements.contentWrapper);if(s.options.content.title.text){s.updateTitle.call(s,s.options.content.title.text)}if(s.options.content.title.button!==false&&typeof s.options.content.title.button=="string"){s.elements.button=f('').css(q(s.options.style.button,true)).html(s.options.content.title.button).prependTo(s.elements.title).click(function(t){if(!s.status.disabled){s.hide(t)}})}}function l(){var t,v,u,s;t=this;v=t.options.show.when.target;u=t.options.hide.when.target;if(t.options.hide.fixed){u=u.add(t.elements.tooltip)}if(t.options.hide.when.event=="inactive"){s=["click","dblclick","mousedown","mouseup","mousemove","mouseout","mouseenter","mouseleave","mouseover"];function y(z){if(t.status.disabled===true){return}clearTimeout(t.timers.inactive);t.timers.inactive=setTimeout(function(){f(s).each(function(){u.unbind(this+".qtip-inactive");t.elements.content.unbind(this+".qtip-inactive")});t.hide(z)},t.options.hide.delay)}}else{if(t.options.hide.fixed===true){t.elements.tooltip.bind("mouseover.qtip",function(){if(t.status.disabled===true){return}clearTimeout(t.timers.hide)})}}function x(z){if(t.status.disabled===true){return}if(t.options.hide.when.event=="inactive"){f(s).each(function(){u.bind(this+".qtip-inactive",y);t.elements.content.bind(this+".qtip-inactive",y)});y()}clearTimeout(t.timers.show);clearTimeout(t.timers.hide);t.timers.show=setTimeout(function(){t.show(z)},t.options.show.delay)}function w(z){if(t.status.disabled===true){return}if(t.options.hide.fixed===true&&t.options.hide.when.event.search(/mouse(out|leave)/i)!==-1&&f(z.relatedTarget).parents("div.qtip[qtip]").length>0){z.stopPropagation();z.preventDefault();clearTimeout(t.timers.hide);return false}clearTimeout(t.timers.show);clearTimeout(t.timers.hide);t.elements.tooltip.stop(true,true);t.timers.hide=setTimeout(function(){t.hide(z)},t.options.hide.delay)}if((t.options.show.when.target.add(t.options.hide.when.target).length===1&&t.options.show.when.event==t.options.hide.when.event&&t.options.hide.when.event!=="inactive")||t.options.hide.when.event=="unfocus"){t.cache.toggle=0;v.bind(t.options.show.when.event+".qtip",function(z){if(t.cache.toggle==0){x(z)}else{w(z)}})}else{v.bind(t.options.show.when.event+".qtip",x);if(t.options.hide.when.event!=="inactive"){u.bind(t.options.hide.when.event+".qtip",w)}}if(t.options.position.type.search(/(fixed|absolute)/)!==-1){t.elements.tooltip.bind("mouseover.qtip",t.focus)}if(t.options.position.target==="mouse"&&t.options.position.type!=="static"){v.bind("mousemove.qtip",function(z){t.cache.mouse={x:z.pageX,y:z.pageY};if(t.status.disabled===false&&t.options.position.adjust.mouse===true&&t.options.position.type!=="static"&&t.elements.tooltip.css("display")!=="none"){t.updatePosition(z)}})}}function o(u,v,A){var z,s,x,y,t,w;z=this;if(A.corner=="center"){return v.position}s=f.extend({},u);y={x:false,y:false};t={left:(s.left=f.fn.qtip.cache.screen.width+f.fn.qtip.cache.screen.scroll.left),top:(s.top=f.fn.qtip.cache.screen.height+f.fn.qtip.cache.screen.scroll.top)};x={left:(t.left&&(A.corner.search(/right/i)!=-1||(A.corner.search(/right/i)==-1&&!t.right))),right:(t.right&&(A.corner.search(/left/i)!=-1||(A.corner.search(/left/i)==-1&&!t.left))),top:(t.top&&A.corner.search(/top/i)==-1),bottom:(t.bottom&&A.corner.search(/bottom/i)==-1)};if(x.left){if(z.options.position.target!=="mouse"){s.left=v.position.left+v.dimensions.width}else{s.left=z.cache.mouse.x}y.x="Left"}else{if(x.right){if(z.options.position.target!=="mouse"){s.left=v.position.left-A.dimensions.width}else{s.left=z.cache.mouse.x-A.dimensions.width}y.x="Right"}}if(x.top){if(z.options.position.target!=="mouse"){s.top=v.position.top+v.dimensions.height}else{s.top=z.cache.mouse.y}y.y="top"}else{if(x.bottom){if(z.options.position.target!=="mouse"){s.top=v.position.top-A.dimensions.height}else{s.top=z.cache.mouse.y-A.dimensions.height}y.y="bottom"}}if(s.left<0){s.left=u.left;y.x=false}if(s.top<0){s.top=u.top;y.y=false}if(z.options.style.tip.corner!==false){s.corner=new String(A.corner);if(y.x!==false){s.corner=s.corner.replace(/Left|Right|Middle/,y.x)}if(y.y!==false){s.corner=s.corner.replace(/top|bottom/,y.y)}if(s.corner!==z.elements.tip.attr("rel")){e.call(z,s.corner)}}return s}function q(u,t){var v,s;v=f.extend(true,{},u);for(s in v){if(t===true&&s.search(/(tip|classes)/i)!==-1){delete v[s]}else{if(!t&&s.search(/(width|border|tip|title|classes|user)/i)!==-1){delete v[s]}}}return v}function c(s){if(typeof s.tip!=="object"){s.tip={corner:s.tip}}if(typeof s.tip.size!=="object"){s.tip.size={width:s.tip.size,height:s.tip.size}}if(typeof s.border!=="object"){s.border={width:s.border}}if(typeof s.width!=="object"){s.width={value:s.width}}if(typeof s.width.max=="string"){s.width.max=parseInt(s.width.max.replace(/([0-9]+)/i,"$1"))}if(typeof s.width.min=="string"){s.width.min=parseInt(s.width.min.replace(/([0-9]+)/i,"$1"))}if(typeof s.tip.size.x=="number"){s.tip.size.width=s.tip.size.x;delete s.tip.size.x}if(typeof s.tip.size.y=="number"){s.tip.size.height=s.tip.size.y;delete s.tip.size.y}return s}function a(){var s,t,u,x,v,w;s=this;u=[true,{}];for(t=0;t0){v.tip.size.width+=1}if(v.tip.size.height%2>0){v.tip.size.height+=1}if(v.tip.corner===true){v.tip.corner=(s.options.position.corner.tooltip==="center")?false:s.options.position.corner.tooltip}return v}function b(v,u,t){var s={bottomRight:[[0,0],[u,t],[u,0]],bottomLeft:[[0,0],[u,0],[0,t]],topRight:[[0,t],[u,0],[u,t]],topLeft:[[0,0],[0,t],[u,t]],topMiddle:[[0,t],[u/2,0],[u,t]],bottomMiddle:[[0,0],[u,0],[u/2,t]],rightMiddle:[[0,0],[u,t/2],[0,t]],leftMiddle:[[u,0],[u,t],[0,t/2]]};s.leftTop=s.bottomRight;s.rightTop=s.bottomLeft;s.leftBottom=s.topRight;s.rightBottom=s.topLeft;return s[v]}function g(s){var t;if(f("").get(0).getContext){t={topLeft:[s,s],topRight:[0,s],bottomLeft:[s,0],bottomRight:[0,0]}}else{if(f.browser.msie){t={topLeft:[-90,90,0],topRight:[-90,90,-s],bottomLeft:[90,270,0],bottomRight:[90,270,-s]}}}return t}function k(){var s,t,u;s=this;u=s.getDimensions();t='') + : $(''); + var lyr2 = $(''); + var lyr3 = full ? $('') + : $(''); + + // if we have a message, style it + if (msg) + lyr3.css(css); + + // style the overlay + if (!opts.applyPlatformOpacityRules || !($.browser.mozilla && /Linux/.test(navigator.platform))) + lyr2.css(opts.overlayCSS); + lyr2.css('position', full ? 'fixed' : 'absolute'); + + // make iframe layer transparent in IE + if ($.browser.msie) + lyr1.css('opacity','0.0'); + + $([lyr1[0],lyr2[0],lyr3[0]]).appendTo(full ? 'body' : el); + + // ie7 must use absolute positioning in quirks mode and to account for activex issues (when scrolling) + var expr = $.browser.msie && ($.browser.version < 8 || !$.boxModel) && (!$.boxModel || $('object,embed', full ? null : el).length > 0); + if (ie6 || (expr && lyr3[0].style.setExpression)) { + // give body 100% height + if (full && opts.allowBodyStretch && $.boxModel) + $('html,body').css('height','100%'); + + // fix ie6 issue when blocked element has a border width + if ((ie6 || !$.boxModel) && !full) { + var t = sz(el,'borderTopWidth'), l = sz(el,'borderLeftWidth'); + var fixT = t ? '(0 - '+t+')' : 0; + var fixL = l ? '(0 - '+l+')' : 0; + } + + // simulate fixed position + $.each([lyr1,lyr2,lyr3], function(i,o) { + var s = o[0].style; + s.position = 'absolute'; + if (i < 2) { + full ? s.setExpression('height','Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.boxModel?0:'+opts.quirksmodeOffsetHack+') + "px"') + : s.setExpression('height','this.parentNode.offsetHeight + "px"'); + full ? s.setExpression('width','jQuery.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"') + : s.setExpression('width','this.parentNode.offsetWidth + "px"'); + if (fixL) s.setExpression('left', fixL); + if (fixT) s.setExpression('top', fixT); + } + else if (opts.centerY) { + if (full) s.setExpression('top','(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"'); + s.marginTop = 0; + } + else if (!opts.centerY && full) { + var top = (opts.css && opts.css.top) ? parseInt(opts.css.top) : 0; + var expression = '((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + "px"'; + s.setExpression('top',expression); + } + }); + } + + // show the message + if (msg) { + lyr3.append(msg); + if (msg.jquery || msg.nodeType) + $(msg).show(); + } + + if ($.browser.msie && opts.showOverlay) + lyr1.show(); // opacity is zero + if (opts.fadeIn) { + if (opts.showOverlay) + lyr2._fadeIn(opts.fadeIn); + if (msg) + lyr3.fadeIn(opts.fadeIn); + } + else { + if (opts.showOverlay) + lyr2.show(); + if (msg) + lyr3.show(); + } + + // bind key and mouse events + bind(1, el, opts); + + if (full) { + pageBlock = lyr3[0]; + pageBlockEls = $(':input:enabled:visible',pageBlock); + if (opts.focusInput) + setTimeout(focus, 20); + } + else + center(lyr3[0], opts.centerX, opts.centerY); + + if (opts.timeout) { + // auto-unblock + var to = setTimeout(function() { + full ? $.unblockUI(opts) : $(el).unblock(opts); + }, opts.timeout); + $(el).data('blockUI.timeout', to); + } +}; + +// remove the block +function remove(el, opts) { + var full = el == window; + var $el = $(el); + var data = $el.data('blockUI.history'); + var to = $el.data('blockUI.timeout'); + if (to) { + clearTimeout(to); + $el.removeData('blockUI.timeout'); + } + opts = $.extend({}, $.blockUI.defaults, opts || {}); + bind(0, el, opts); // unbind events + var els = full ? $('body').children().filter('.blockUI') : $('.blockUI', el); + + if (full) + pageBlock = pageBlockEls = null; + + if (opts.fadeOut) { + els.fadeOut(opts.fadeOut); + setTimeout(function() { reset(els,data,opts,el); }, opts.fadeOut); + } + else + reset(els, data, opts, el); +}; + +// move blocking element back into the DOM where it started +function reset(els,data,opts,el) { + els.each(function(i,o) { + // remove via DOM calls so we don't lose event handlers + if (this.parentNode) + this.parentNode.removeChild(this); + }); + + if (data && data.el) { + data.el.style.display = data.display; + data.el.style.position = data.position; + if (data.parent) + data.parent.appendChild(data.el); + $(data.el).removeData('blockUI.history'); + } + + if (typeof opts.onUnblock == 'function') + opts.onUnblock(el,opts); +}; + +// bind/unbind the handler +function bind(b, el, opts) { + var full = el == window, $el = $(el); + + // don't bother unbinding if there is nothing to unbind + if (!b && (full && !pageBlock || !full && !$el.data('blockUI.isBlocked'))) + return; + if (!full) + $el.data('blockUI.isBlocked', b); + + if (b && !opts.showOverlay) // don't prevent events when overlay not in use + return; + + // bind anchors and inputs for mouse and key events + var events = 'mousedown mouseup keydown keypress'; + b ? $(document).bind(events, opts, handler) : $(document).unbind(events, handler); + +// former impl... +// var $e = $('a,:input'); +// b ? $e.bind(events, opts, handler) : $e.unbind(events, handler); +}; + +// event handler to suppress keyboard/mouse events when blocking +function handler(e) { + // allow tab navigation (conditionally) + if (e.keyCode && e.keyCode == 9) { + if (pageBlock && e.data.constrainTabKey) { + var els = pageBlockEls; + var fwd = !e.shiftKey && e.target == els[els.length-1]; + var back = e.shiftKey && e.target == els[0]; + if (fwd || back) { + setTimeout(function(){focus(back)},10); + return false; + } + } + } + // allow events within the message content + if ($(e.target).parents('div.blockMsg').length > 0) + return true; + + // allow events for content that is not being blocked + return $(e.target).parents().children().filter('div.blockUI').length == 0; +}; + +function focus(back) { + if (!pageBlockEls) + return; + var e = pageBlockEls[back===true ? pageBlockEls.length-1 : 0]; + if (e) + e.focus(); +}; + +function center(el, x, y) { + var p = el.parentNode, s = el.style; + var l = ((p.offsetWidth - el.offsetWidth)/2) - sz(p,'borderLeftWidth'); + var t = ((p.offsetHeight - el.offsetHeight)/2) - sz(p,'borderTopWidth'); + if (x) s.left = l > 0 ? (l+'px') : '0'; + if (y) s.top = t > 0 ? (t+'px') : '0'; +}; + +function sz(el, p) { + return parseInt($.css(el,p))||0; +}; + +})(jQuery); \ No newline at end of file diff --git a/media/js/multiup/jquery.form.js b/media/js/multiup/jquery.form.js new file mode 100644 index 0000000..8c4fdac --- /dev/null +++ b/media/js/multiup/jquery.form.js @@ -0,0 +1,632 @@ +/* + * jQuery Form Plugin + * version: 2.18 (06-JAN-2009) + * @requires jQuery v1.2.2 or later + * + * Examples and documentation at: http://malsup.com/jquery/form/ + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.form.js 16 2009-05-12 11:20:56Z diego.alto $ + */ +;(function($) { + +/* + Usage Note: + ----------- + Do not use both ajaxSubmit and ajaxForm on the same form. These + functions are intended to be exclusive. Use ajaxSubmit if you want + to bind your own submit handler to the form. For example, + + $(document).ready(function() { + $('#myForm').bind('submit', function() { + $(this).ajaxSubmit({ + target: '#output' + }); + return false; // <-- important! + }); + }); + + Use ajaxForm when you want the plugin to manage all the event binding + for you. For example, + + $(document).ready(function() { + $('#myForm').ajaxForm({ + target: '#output' + }); + }); + + When using ajaxForm, the ajaxSubmit function will be invoked for you + at the appropriate time. +*/ + +/** + * ajaxSubmit() provides a mechanism for immediately submitting + * an HTML form using AJAX. + */ +$.fn.ajaxSubmit = function(options) { + // fast fail if nothing selected (http://dev.jquery.com/ticket/2752) + if (!this.length) { + log('ajaxSubmit: skipping submit process - no element selected'); + return this; + } + + if (typeof options == 'function') + options = { success: options }; + + options = $.extend({ + url: this.attr('action') || window.location.toString(), + type: this.attr('method') || 'GET' + }, options || {}); + + // hook for manipulating the form data before it is extracted; + // convenient for use with rich editors like tinyMCE or FCKEditor + var veto = {}; + this.trigger('form-pre-serialize', [this, options, veto]); + if (veto.veto) { + log('ajaxSubmit: submit vetoed via form-pre-serialize trigger'); + return this; + } + + // provide opportunity to alter form data before it is serialized + if (options.beforeSerialize && options.beforeSerialize(this, options) === false) { + log('ajaxSubmit: submit aborted via beforeSerialize callback'); + return this; + } + + var a = this.formToArray(options.semantic); + if (options.data) { + options.extraData = options.data; + for (var n in options.data) { + if(options.data[n] instanceof Array) { + for (var k in options.data[n]) + a.push( { name: n, value: options.data[n][k] } ) + } + else + a.push( { name: n, value: options.data[n] } ); + } + } + + // give pre-submit callback an opportunity to abort the submit + if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) { + log('ajaxSubmit: submit aborted via beforeSubmit callback'); + return this; + } + + // fire vetoable 'validate' event + this.trigger('form-submit-validate', [a, this, options, veto]); + if (veto.veto) { + log('ajaxSubmit: submit vetoed via form-submit-validate trigger'); + return this; + } + + var q = $.param(a); + + if (options.type.toUpperCase() == 'GET') { + options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q; + options.data = null; // data is null for 'get' + } + else + options.data = q; // data is the query string for 'post' + + var $form = this, callbacks = []; + if (options.resetForm) callbacks.push(function() { $form.resetForm(); }); + if (options.clearForm) callbacks.push(function() { $form.clearForm(); }); + + // perform a load on the target only if dataType is not provided + if (!options.dataType && options.target) { + var oldSuccess = options.success || function(){}; + callbacks.push(function(data) { + $(options.target).html(data).each(oldSuccess, arguments); + }); + } + else if (options.success) + callbacks.push(options.success); + + options.success = function(data, status) { + for (var i=0, max=callbacks.length; i < max; i++) + callbacks[i].apply(options, [data, status, $form]); + }; + + // are there files to upload? + var files = $('input:file', this).fieldValue(); + var found = false; + for (var j=0; j < files.length; j++) + if (files[j]) + found = true; + + // options.iframe allows user to force iframe mode + if (options.iframe || found) { + // hack to fix Safari hang (thanks to Tim Molendijk for this) + // see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d + if ($.browser.safari && options.closeKeepAlive) + $.get(options.closeKeepAlive, fileUpload); + else + fileUpload(); + } + else + $.ajax(options); + + // fire 'notify' event + this.trigger('form-submit-notify', [this, options]); + return this; + + + // private function for handling file uploads (hat tip to YAHOO!) + function fileUpload() { + var form = $form[0]; + + if ($(':input[name=submit]', form).length) { + alert('Error: Form elements must not be named "submit".'); + return; + } + + var opts = $.extend({}, $.ajaxSettings, options); + var s = jQuery.extend(true, {}, $.extend(true, {}, $.ajaxSettings), opts); + + var id = 'jqFormIO' + (new Date().getTime()); + var $io = $('