Repository: codingforentrepreneurs/ecommerce Branch: master Commit: 80e38cb5319c Files: 267 Total size: 841.2 KB Directory structure: gitextract_e8nnqks8/ ├── .gitignore ├── README.md ├── ecommerce.code-workspace ├── ecommerce.sublime-project ├── ecommerce.sublime-workspace ├── fasttracktojquery/ │ └── index.html ├── notes/ │ └── checkout_process.md ├── parse_git_log.py ├── pyvenv.cfg ├── src/ │ ├── .gitignore │ ├── Procfile │ ├── accounts/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_user_full_name.py │ │ │ ├── 0003_user_is_active.py │ │ │ ├── 0004_remove_user_active.py │ │ │ ├── 0005_emailactivation.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── passwords/ │ │ │ ├── __init__.py │ │ │ └── urls.py │ │ ├── signals.py │ │ ├── templates/ │ │ │ └── accounts/ │ │ │ ├── detail-update-view.html │ │ │ ├── home.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── snippets/ │ │ │ └── form.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── addresses/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20171107_0055.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates/ │ │ │ └── addresses/ │ │ │ ├── form.html │ │ │ ├── list.html │ │ │ ├── prev_addresses.html │ │ │ └── update.html │ │ ├── tests.py │ │ └── views.py │ ├── analytics/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_usersession.py │ │ │ └── __init__.py │ │ ├── mixins.py │ │ ├── models.py │ │ ├── signals.py │ │ ├── templates/ │ │ │ └── analytics/ │ │ │ └── sales.html │ │ ├── tests.py │ │ ├── utils.py │ │ └── views.py │ ├── billing/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20170928_2052.py │ │ │ ├── 0003_billingprofile_customer_id.py │ │ │ ├── 0004_card.py │ │ │ ├── 0005_card_default.py │ │ │ ├── 0006_charge.py │ │ │ ├── 0007_auto_20171012_1935.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates/ │ │ │ └── billing/ │ │ │ └── payment-method.html │ │ ├── tests.py │ │ └── views.py │ ├── carts/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_cart_subtotal.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates/ │ │ │ └── carts/ │ │ │ ├── checkout-done.html │ │ │ ├── checkout.html │ │ │ ├── home.html │ │ │ └── snippets/ │ │ │ └── remove-product.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── db.sqlite3 │ ├── db2.sqlite3 │ ├── ecommerce/ │ │ ├── __init__.py │ │ ├── aws/ │ │ │ ├── __init__.py │ │ │ ├── conf.py │ │ │ ├── download/ │ │ │ │ ├── __init__.py │ │ │ │ └── utils.py │ │ │ └── utils.py │ │ ├── forms.py │ │ ├── mixins.py │ │ ├── settings/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── local.py │ │ │ └── production.py │ │ ├── urls.py │ │ ├── utils.py │ │ ├── views.py │ │ └── wsgi.py │ ├── manage.py │ ├── marketing/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_marketingpreference_mailchimp_subscribed.py │ │ │ ├── 0003_auto_20171018_0142.py │ │ │ └── __init__.py │ │ ├── mixins.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── utils.py │ │ └── views.py │ ├── orders/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20170928_2224.py │ │ │ ├── 0003_auto_20170929_0013.py │ │ │ ├── 0004_auto_20171025_2216.py │ │ │ ├── 0005_auto_20171107_0035.py │ │ │ ├── 0006_productpurchase_productpurchasemanager.py │ │ │ ├── 0007_auto_20171108_0028.py │ │ │ ├── 0008_delete_productpurchasemanager.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates/ │ │ │ └── orders/ │ │ │ ├── library.html │ │ │ ├── order_detail.html │ │ │ └── order_list.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── products/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures/ │ │ │ └── products.json │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_product_price.py │ │ │ ├── 0003_product_image.py │ │ │ ├── 0004_auto_20170901_2159.py │ │ │ ├── 0005_product_featured.py │ │ │ ├── 0006_auto_20170901_2254.py │ │ │ ├── 0007_auto_20170901_2254.py │ │ │ ├── 0008_auto_20170901_2300.py │ │ │ ├── 0009_product_timestamp.py │ │ │ ├── 0010_product_is_digital.py │ │ │ ├── 0011_productfile.py │ │ │ ├── 0012_auto_20171108_2325.py │ │ │ ├── 0013_auto_20171109_0023.py │ │ │ ├── 0014_auto_20171116_0011.py │ │ │ ├── 0015_productfile_name.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates/ │ │ │ └── products/ │ │ │ ├── detail.html │ │ │ ├── featured-detail.html │ │ │ ├── list.html │ │ │ ├── snippets/ │ │ │ │ ├── card.html │ │ │ │ └── update-cart.html │ │ │ └── user-history.html │ │ ├── tests.py │ │ ├── understanding_crud.md │ │ ├── urls.py │ │ └── views.py │ ├── requirements.txt │ ├── runtime.txt │ ├── search/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates/ │ │ │ └── search/ │ │ │ ├── snippets/ │ │ │ │ └── search-form.html │ │ │ └── view.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── static_my_proj/ │ │ ├── css/ │ │ │ ├── main.css │ │ │ └── stripe-custom-style.css │ │ └── js/ │ │ ├── csrf.ajax.js │ │ ├── ecommerce.js │ │ ├── ecommerce.main.js │ │ └── ecommerce.sales.js │ ├── tags/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── shell_commands.py │ │ ├── tests.py │ │ └── views.py │ └── templates/ │ ├── 400.html │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── base/ │ │ ├── css.html │ │ ├── forms.html │ │ ├── js.html │ │ ├── js_templates.html │ │ └── navbar.html │ ├── base.html │ ├── bootstrap/ │ │ └── example.html │ ├── contact/ │ │ └── view.html │ ├── home_page.html │ └── registration/ │ ├── activation-error.html │ ├── emails/ │ │ ├── verify.html │ │ └── verify.txt │ ├── password_change_done.html │ ├── password_change_form.html │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ ├── password_reset_email.txt │ └── password_reset_form.html └── static_cdn/ ├── media_root/ │ └── products/ │ └── 2473283945/ │ └── 2473283945.sublime-project ├── protected_media/ │ └── product/ │ └── my-awesome-album/ │ ├── basic_audio.m4a │ ├── basic_audio_5W1qjNh.m4a │ ├── basic_audio_5W1qjNh_Ntvw9l5.m4a │ ├── basic_audio_DwLL00o.m4a │ ├── basic_audio_uuyWQIO.m4a │ └── basic_audio_uuyWQIO_soaLtH9.m4a └── static_root/ ├── admin/ │ ├── css/ │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── rtl.css │ │ └── widgets.css │ ├── fonts/ │ │ ├── LICENSE.txt │ │ └── README.txt │ ├── img/ │ │ ├── LICENSE │ │ └── README.txt │ └── js/ │ ├── SelectBox.js │ ├── SelectFilter2.js │ ├── actions.js │ ├── admin/ │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ ├── calendar.js │ ├── cancel.js │ ├── change_form.js │ ├── collapse.js │ ├── core.js │ ├── inlines.js │ ├── jquery.init.js │ ├── popup_response.js │ ├── prepopulate.js │ ├── prepopulate_init.js │ ├── timeparse.js │ ├── urlify.js │ └── vendor/ │ ├── jquery/ │ │ ├── LICENSE-JQUERY.txt │ │ └── jquery.js │ └── xregexp/ │ ├── LICENSE-XREGEXP.txt │ └── xregexp.js ├── css/ │ ├── main.css │ └── stripe-custom-style.css └── js/ ├── csrf.ajax.js ├── ecommerce.js └── ecommerce.main.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ .DS_STORE .env notes/email-activation.py src/ecommerce/aws/ignore2.py # Virtualenv related bin/ include/ pip-selfcheck.json # Django related # src//settings/local.py # static-cdn/ # any collected static files # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # pyenv .python-version # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ ================================================ FILE: README.md ================================================ # eCommerce [![eCommerce Logo](https://cfe2-static.s3-us-west-2.amazonaws.com/media/courses/ecommerce/images/ecommerce_coding_for_entrepreneurs.jpg) ](https://www.codingforentrepreneurs.com/courses/ecommerce/) This course will teach you step-by-step to build a eCommerce site from scratch. We'll be using open-source software to create each aspect of a fully functioning eCommerce business. Full Course is here: [https://www.joincfe.com/courses/ecommerce/](https://www.joincfe.com/courses/ecommerce/) Below you'll find the related lecture code to any given section and lesson. Enjoy! # Code ### Section - Hello World [Intial Commit](../../tree/0927b316e9cdd8b0db01263b6b429e698d38d57a/) ### Section - Products Component [1 - Your first app Module](../../tree/ed8ceb52830b762d50bbf44f680255168c6f5530/) [2 - Understanding CRUD](../../tree/aaa75b9c3ffba674e3661175922b99149fd4bdd9/) [3 - Product Model](../../tree/a80ded7e6ed9a87da9a8029e4e6fe50c18fd4b79/) [4 - Django Admin](../../tree/311291431e55a783532ff3cd9319e22d77ff92c0/) [5 - List View](../../tree/ab27c4cc095ae00d51b71545cf6118813c12828f/) [6 - Detail View](../../tree/b7343749415fb9a6a6a629859684f13a0afbf787/) [7 - ImageField & FileField](../../tree/08a2426622b6536de6ae16637cc9489eeda5e484/) [8 - Understanding Lookups](../../tree/6a1116a90d9c24ca4366a3764b20de61a83f52ac/) [9 - Custom Model Managers](../../tree/f146e4775cb274176897f8e06d842150599aa3c5/) [10 - Featured & Custom QuerySets](../../tree/8f7cf0ea87b89672f1ca745a251de32598ff5754/) [11 - SlugField & Signals](../../tree/dc523d5e9aa18a730edd9819c6202fd3ecc20de7/) [12 - Products URLs](../../tree/959a578bd51964af2a637e2d75423568a8d7972b/) ### Section: Templates [1 Base Template](../../tree/b34bc1692301719be722bb691c1d67df4e98b455/) [2 - Include Tag](../../tree/12fd4dd9fcd8616b7b71d8c93a60013aa01350d9/) [3 Pass Arguments with Include](../../tree/f68b6c15804033937d823f6a707df363901fd6a1/) [4 - Reusable List View Snippets](../../tree/e59e0938d032e68431c60718f27bfa2abbbd36b0/) [5 - Reverse for URLs](../../tree/4add77ea1751952f79aaf358bcfecac366ad6ac2/) [6 - Navbar](../../tree/fc97ee8fd094a47aeb47ad7b25cf2d5a04c78fe8/) [7 - Template Filters](../../tree/670ddd0ec4cec879a424fe05ac594e863b7dea53/) [8 - ForLoop Counter & Cycle](../../tree/e47bec09440f7938246c4b9210bd3f131d290dd0/) ### Section: Bootstrap 1 - Adding Bootstrap (no code) 2 - Container vs Container-Fluid (no code) [3 - Rows And Columns](../../tree/d0e38edee652c5787dc7bf12e2ec2909fa3121f8/) [4 - Column Sizing](../../tree/b06f0a6661ac37d71be3fe38580bb561f71d2e42/) [6 - Desinging for Different Browser Sizes with Breakpoints](../../tree/225b29ccbff4aa3098e58d34a434dda495f7fb53/) [7 - Spacing with Margin & Padding](../../tree/e2eb9bc70e33b4870e87554a81bdee9179f0136d/) [8 - Navbar](../../tree/696987b4e9144296f681fb229e3420219f9a1026/) [10 - Integrate to Django](../../tree/6aa47a5627c5f57b3fca3cb52738c96609cc3746/) ### Section: Search Component [1 - A Basic Search View](../../tree/28aa4043b5ad94a3095ddf3b77fd81a429803ff4/) [2 - Display the Query to the User](../../tree/e499a814c144497145c689be5626e175b2cd9a6d/) [3 - Creating the Search Form](../../tree/147efe3fae7b35702050b3f27907c13379a3f85d/) [4 - Better Lookups with Q](../../tree/54e65447fd0cd9b269c76ac1c9739af9cb1cd7ce/) [5 - Tag Component](../../tree/883d856330fe86d0ad697fa9cfebf19454b163be/) [6 - Shell Commands for a Brief Intro to Foreign Keys](../../tree/a85117d052ceaa054f1b025613bbbc46695ea0c0/) [7 - Search by Related Model](../../tree/908e3e07bc2e3ec5f157f6a06f59ad01395b4a2d/) ### Section: Cart Component [1 - Cart App](../../tree/ab6ba98698080e5290f0c72e94edc6ebea229a4e/) [2 - Django Sessions](../../tree/4b2544743e5b3c650231cf10f8f4ba3f85e10382/) [3 - Cart Model](../../tree/0441dc0e50937eaec64bafa4f9258de70db7efc9/) [4 - Create A Cart in the View](../../tree/35e8bf075b51d32a7c0fcc1c191700736d64edfc/) [5 - Cart Model Manager](../../tree/3f9592bd3209ae09d5aa839c87356d7c1c6bc1bd/) [5 - Cart Model Manager Part 2](../../tree/20368456287ce253d2b51c7f4d2101f52ceb4d35/) [7 - M2M Changed Signal to Calculate Cart Total](../../tree/c64ba909c1b6af3b5b0502412eef20857cdaa25a/) [8 - Cart Update View](../../tree/864ef942a2331669d0a1c2385431688888916b22/) [9 - Add to Cart Form](../../tree/d5cced3c944f39164a36b4ef122ba2369006fc92/) [10 - Display Cart](../../tree/248c772322547fc7b331fa042627285f67a233a1/) [11 - Remove Items from the Cart](../../tree/3d7c0fc7fe264eded57ce3244e3ee86d1550a966/) [12 - Cart Icon & FontAwesome](../../tree/691d5ae69e2b5a8f569be0ede3efd5c9fc7897d3/) ### Section: Checkout Process [1 - The Roadmap for the Checkout Process](../../tree/14bb24d788f96cb5e8593084428de5dcc0bc43b7/) [2 - The Order Component](../../tree/e3edacb39b6b5df4ee0b98297df42909784f86c3/) [3 - Generate the Order ID](../../tree/cfcc598dd86ce7ba795641f7520b58cf21c2e4de/) [4 - Calculate the Order Total](../../tree/00a2b87d1bfc671d62514679881cbccd62bc2494/) [5 - Checkout View](../../tree/40e7c81aa1dc18b1878c6097e486624b5163bc83/) [6 - Math with Decimals and Floats in Python](../../tree/3baac51bf5bf9fe1d1432d140fbdb5de0e3a6752/) [7 - Upgrading Auth to Prep for Checkout](../../tree/182d7a5da10a5799ca7c053849f39cba426a84eb/) [8 - Billing Profile Model"](../../tree/3dd97d4cee6c4540410fda0006768bff523e9970/) [9 - Billing Profile in the Checkout View](../../tree/c0ff6dfdc8991c9a54889a616c327420f1d12939/) [10 - Guest Checkout Profile](../../tree/e4114e17297c3c437f1cd7e50d7f01e716d1af09/) [11 - Associate Billing Profile to Order](../../tree/b920068b6d80245344ab424f1e1b33a4e54888e4/) [12 - Order Manager](../../tree/a0e30cbe85971622c10e8d1bbf930dbaa78695d9/) [13 - Billing Profile Manager](../../tree/91bf2029c4da79168513dd12fe8ef2f6ac7e18e6/) [14 - Addresses App](../../tree/159d284645e99feedf94ce5b3693b4a28994c6d8/) [16 - Associate Addresses to Order](../../tree/3cee508cfe5228a45a919066bbf3bc14c23e824b/) [17 - Finalize Checkout](../../tree/f38442a8b770d0cea454280fd997a60b712d57ea/) [18 - Reuse Addresses for Checkout](../../tree/0ba33ba8e29482ed86ea2fe4a956bf7be01e05dd/) [19 - Checkout Success](../../tree/648e281ed5a8fff4fdf3d9959e0d32ec232a6624/) ### Section: Fast Track to Jquery [1 - Getting Started](../../tree/bb9938c039d604ab39696ec166210f72edc2521e/) [2 - A Basic Selector](../../tree/5640cc849c8db492e1d98cc6070b7efb9c6c201c/) [3 - Selectors Part 2](../../tree/4cd3edb60b092c996de5a5812e007568ac898979/) [4 - Content Overflow Part 1](../../tree/bcbfb9973673f2d22e1c1af094d7e722237a2652/) [5 - Data Types, Iteration and Conditionals](../../tree/ec9b8d3277cea37b225ce81e68d00bd46745f5d7/) [6 - Content Overflow Part 2](../../tree/d4b8fedec4d61d3d6c1f442505c76b43ee613a70/) [7 - Click Events](../../tree/13c278c521032f6266e411bef97ad996b501379b/) [8 - Handling form data in jQuery](../../tree/69201626395880675420d187f55744f6a3c267ca/) ### Section: Products & Async 1 - Sync vs Async (no code) [2 - Ajax-ify a Form](../../tree/1d4d7ca41f515f4c12fed183023fde22463d8058/) [3 - Handle Ajax in Django with JsonResponse](../../tree/d6acdc28e52f47257afb4c4b3dc6e5f398f39e43/) [4 - Cart Item Count](../../tree/9455685b79a7ba829799d6dc700dce71c930c5d3/) [5 - Refresh Cart Ajax](../../tree/dba7c5401106c658a4a29729a1d5fb5efa596c2f/) [6 & 7 - Refresh Cart Ajax Part 2 & 3](../../tree/7f38a87f80d0c9a32e7e10149af1b19e8aa3d362/) [8 - Finalize Cart Updating with Ajax](../../tree/c16e30dbd9af01fddef5614f3857de4a7fcace3b/) [8 - Finalize Cart Updating with Ajax](../../tree/2072edc9f0451a8d9c88e0c6c9394310234331a8/) [9 - Auto Search](../../tree/c433c4a06ab3d0d199e4a46b390cc98a0328bad1/) [10 - Display Errors with jQuery Confirm](../../tree/ab040383aeed92a5ab457d25320fc1dddf72bc5d/) [11 - Ajaxify the Contact Form Part 1 & 2](../../tree/cc35747ceba808fd57350eaf59e51f95a7b091c4/) [13 - Custom eCommerce JS](../../tree/3431064fde1394e586076b23ba76827e03d626ce/) [14 - Ajax CSRF Security for Django](../../tree/82111856925f0d9a83eb08c0e937a95ca788d641/) ## Add Ons ### Custom Django User Model 1 - Before we get started (no code) [2 - Create the Abstract Base User](../../tree/c698e75c82b6145546c93f8d32fec616dfaf1cac/) [3 - Create the User Model Manager](../../tree/968ec0525e27c3d95f9fc033833264437f90a47b/) 4 - Change Auth User Model to our Custom Model (no code) [5 - Reload the Database with Fixtures](../../tree/96261517bc1e4c7b2603232569de479ae4c44a9d/) [6 - Forms & Admin for our Custom User](../../tree/464ff60dd57e8babf0096670f6bb5c62bdaa2e2c/) [7 - Add a Required Field to the User Model](../../tree/c12eebf5e8c5961b18f65f8741880f40f6cfc99b/) [8 - Update Login & Register Forms](../../tree/aefcaac8eb1f4f0d7e6f68dde46eb9f82f7e5ff7/) [9 - Login & Register Views](../../tree/3cccc2c44b9d81fcc4db4ed9bae77a8e23cf263e/) ### Custom Analytics 1 - Getting Started (No Code) [2 - Craft the Object Viewed Model](../../tree/dcea55fce60dcb56dc933fc0485a95a5a44b0c9d/) [3 - Get Client IP Address](../../tree/007dd5190b872ef32ab8164efd7631f7bef3a409/) [4 - A Custom Signal](../../tree/540a9e1f29e896c3145ead7231d76960031bb2c9/) [5 - Object Viewed Mixin](../../tree/73bfc3e04beee52b9ad6cd503d3b7c8d8ebeb71e/) [6 - Handle the Object Viewed Signal](../../tree/73bfc3e04beee52b9ad6cd503d3b7c8d8ebeb71e/) [7 - Handling and Ending User Sessions](../../tree/4c08919bb151553b150b94ae51825517bc2cd460/) ### Stripe Integration [1 - Getting Started](../../tree/249af4dcc7cbc5496aa0ebca17c3a501021cb5e2/) [2 - Create Stripe Customer](../../tree/0a835b238f834758ba54db1c6d4978f517dccdc6/) [3 - Payment Method View & Stripe JS](../../tree/08aab3440a89cea22be0a1053b106b49d8d52f08/) [4 - Improving Payment Method Form](../../tree/ca4245aabaacc0f3c0f7e6e77902f0312a30686e/) [5 - Improving Payment Method Form Part 2](../../tree/0ff716c8a8bda2605cf349b19705d46798bb5d1b/) [6 - Reusable Stripe Module](../../tree/291073b86363a63cb588305e9c258dddc5cad949/) [7 - Add Card to Customer with Stripe](../../tree/1193c2a22da5e591aca057a4f153fdc3388c23fd/) [8 - Save Card in Django](../../tree/606f73653342ce361400a8fdddd8f0d917d6552f/) [9 - Charge the Customer](../../tree/0d4fba2c11c8bf3d4b116c4e619ffb6c41a161de/) [10 - Putting it All Together](../../tree/252524c4b46a2bad8da4cc000af0234a0227cf11/) [11 - Guest Card Checkout](../../tree/78924c3cc4ed3f3ed809a69d40a9320f423e5676/) [12 - Changing Payment Methods](../../tree/90830de29bd3bfcf948527b2fd456f27be37e14c/) [13 - Improve Card UI - Part 1](../../tree/c1a67d9c6d1c29065d1b09a771e14a7b5a0e8fc2/) [14 - Improve Card UI - Part 2](../../tree/c1a67d9c6d1c29065d1b09a771e14a7b5a0e8fc2/) ### Mailchimp Integration [3 - Setup API Keys](../../tree/f540e03ebff55371f40b971d7fed439d5af886bf/) [4 - Marketing App](../../tree/4de0f03100f566797a6ac3a2de6b7764169aad24/) [5 - Mailchimp Class Part 1](../../tree/7ac2eb8e4d747fe7cc4e94c2f01ad87da9b01395/) [6 - Mailchimp Class Part 2](../../tree/26cd4fe4c3b3b1dff4426aae260578a551c5854a/) [7 - Mailchimp Class Part 3](../../tree/08dfcb3f273e0993c935372b91b5a47e66ac77c1/) [8 - Django & Mailchimp](../../tree/128499e857cf64b03a64106eb808b7177d272400/) [9 - User Email Marketing Preference View](../../tree/73756bab33f261106b9489afe1815f8a6377126e) [10 - Mailchimp Webhook Handler](../../tree/a6d88a985e21dcd926acf7fb06808459493ff0b9) ### Go Live 1 - Local vs Production Environments (no code) [2 - New Settings Module](../../tree/f776fc8227c5717b7982274d5de2a12676ab835b/) [3 - Multiple Settings Modules](../../tree/95542fffb0f225e281557d9616fb8caae85f1a06/) [4 - Prepare for HTTPs](../../tree/b772608670c45d6654a84b6b0dd014bd6cacc104/) [5 - The gitignore File](../../tree/0dc38fd34caa8c82850cbab6509b7357b53d904e/) [6 - Requirements File](../../tree/aaad5cda6f3a3170b6b9430d97db11e84ff191c2/) [7 - Setup Git Version Control](../../tree/f65d67029ebad9a22f6e63ef66170e533a385f2e/) [8 - Deploy to Heroku](../../tree/a2041155d977f6d0451aa6220fec0f664bc0cb06/) [9 - AWS S3 for Static Files](../../tree/90044ca398bbe3b06440d937dc7ea0a645ec593b/) [10 - Add Custom Domain & HTTPs on Heroku](../../tree/3689bfcd72670fa59ceaa864d58927f2c2fc53d7/) [11 - Live Environment Variables](../../tree/e3210c4ae568e5e1e48a1d70ad2e9b67cf83aa63/) [12 - Error Views and Templates](../../tree/764a8acba104c60676d83574baf7c0c0806501ad/) [13 - Setup Email to Help Solve Server Errors](../../tree/b151d182dc5ae1e380c2959a09a8eb6e2fe2fcc8/) [14 - Using Heroku Locally](../../tree/6c24c03aaf84a4fb02d9cc855815ab0e581798ff) ### Account & Settings [1 - User Account Home](../../tree/e56ea8420170c40b420780a48cbf1087a5081525/) [2 - Naming & Dropdown](../../tree/dc1dd608ef6407d11b4d5b5e2784220fbe8d1ff4/) [3 - Account Bootstrap Cards](../../tree/c07ba032b597191f043a4ac9cd75d10ee840afcb/) [4 - Link Account Bootstrap Cards](../../tree/287fbca8d84c1a9112e6cb3adeba1c8a15693fcc/) [5 - Password Reset and Change](../../tree/55d62beec3b7374e955df8b9b6e6ddbde5997abc/) [6 - send_email and get_template](../../tree/e3c86dec0b7b985c8b1d403786d0f7a201f2767b/) [7 - Email Activation](../../tree/30f9aa0d6605014b52f80b85d139597ef6b0fcf6/) [8 - Custom QuerySet for Confirmable Activations](../../tree/4fe792b8d5e868a813f8b521cda2660fe61048ed/) [9 - Email Activation View](../../tree/0904726b55184994ac180bc0c0d55edb2a97feaa/) [10 - Email Reactivation](../../tree/3b9e78cece5c834043bd41b319a78109badf2253/) [11 - Improved Login Form & View](../../tree/359119ff0efdb482ec1e6133877ef251e3a4ebf5/) [12 - Login Form for Confirmation Emails](../../tree/a7f53f7598259f711f62957a4588dc187895e07d/) [13 - Upgrading the Guest Checkout Form](../../tree/58cac4150c5c5b724feb2f92e795ded4c162e7df/) [14 - Edit Account Details](../../tree/c471c3a04f46e7b851197de6a217fa6a68ec67b7/) [15 - User Product History View](../../tree/e50e38a7f01c9348866a92e8c7e2e772ba229763/) [16 - Orders & Order Detail](../../tree/e92f5c4ac8413fc9988510b0889a5a582cbae462/) [17 - Final Addresses on Order](../../tree/d076db0f36de01abe10e0474ac09606e33800c44/) [18 - Addresses List View](../../tree/065d6e0fd246aa1510b835d6eb6bf732e104fc8d/) [19 and 20 - Update & Create Addresses Part 1 & 2](../../tree/a89b4cd06d42648b7920a301d7c70969838b9732/) ### Selling Digital Items [1 - Digital Products & Cart](../../tree/69f842b8e19470eba122a5566a2da5d23880d388/) [2 - Shipping-less Checkout](../../tree/14cae3f833034abaf0190259851a09a40efdbc65/) [3 - Product Purchases](../../tree/49bb74466bd5da3464c2cb608d150336ac2eba48/) [4 - Handling Products Being Purchased](../../tree/3cfa6c4d7ffbbd83b8246fc7984bb0f8bb448ea9/) [5 - Display of Refunded Items](../../tree/c2d95bcf338b69eec962cff6aa92a409ad204ec3/) [6 - Library View](../../tree/4d1f98e4c81c9229945a1a3342297b4f52e680d1/) [7 - Library View for Products Only](../../tree/f1e3b4618699c73034e1ac85f4bf27ba4025879a/) [8 - Product File Model](../../tree/1e74caa60b3b6f52ced214a5169e111ac8399e2a/) [9 - Changing File Field Storage to Protected Location](../../tree/a7cfdd8849d8bc22d78f1ce565b653ba32967262/) [10 - Download Product File Part 1](../../tree/e3463e00d6257726d77dcf3ad72caa77e89ed1db/) [11 - Download Product File Part 2](../../tree/91cb57960416e4ab5701f0a2cc4e7b158f47985f/) [12 - Perform the File Download](../../tree/6d92ca188e18eca8d4d4b7e1b017a010300e8c11/) [13 - Checking Download Permissions](../../tree/fe631500b7a4f69ab48b513cbf5d5be89d5a5e5c/) [14 - In Library Display Part 1](../../tree/4f1b64f1df2b67d98bf8a0d81dc57947409ad2ea) [15 - In Library Display Part 2 with Ajax](../../tree/46be780b0f0dd524d6eb4bbea63c9f0b2c4b9b7c) [16 - AWS S3 File Upload](../../tree/96d664722a95dab2895313ef3731c84093d3596d/) [17 - Fixing the Upload Path](../../tree/75c4e175bf0c4516a6ee91e2f1a7280f998ba6bd/) [18 - Creating the AWS Download Class](../../tree/d1d5cb5820d813a87d184b9eb2c34b0ff54d3c76/) [19 - Using the AWS Download Client](../../tree/a879fcc03d0225e343212b17d4c6dcb43578fdc7/) [20 - A Custom Filename](../../tree/ed23c9b95d7b84de9447bcfbeacfd35d4cfdcd08/) ### Graphs and Sales [1 - Setup the View](../../tree/2b65b93648d4211e64cc02022a0988a96ac53b9f/) [2 - Add Context for the Order Data](../../tree/f6e5671c5c9170f3e0fdd3427acb0c49b3f60751/) [3 - Intuitive Recent Order Total](../../tree/50326ef1c082d7bcdbe9351938043b4af28f68b7/) [4 - Aggregate & Annotate](../../tree/0438bd0af6b4559fd1b80b9456a32e5b2262c6d4/) [5 - Get Data by Custom QuerySet](../../tree/8bdec3c85ec8b3a842816efbc4d80223a6d862dd/) [6 - Intro to Datetime Module](../../tree/b9f8bb1775c8037326ba3a095a224a88cf6a0775/) [7 - Filter by Range of Time](../../tree/0a8a304296f926ad0bba4fa66dff566b7e20ecbb/) [8 - Chart-js Intro](../../tree/bd9c8861e58feb5dc2ce13103a1aa21c29e7638b/) [9 - Using Ajax to Render Charts](../../tree/a60c2fb9476111de483a5fcda4c7262a10f66392/) [10 - Display True Data](../../tree/dd8a626fbb6dc43efc0799f652a808f03b7542f8/) [11 - Cleanup](../../tree/fe478427f789ff2ed9110e8e3739d6e9975fe714/) [12 - Inline Js to External](../../tree/f827bac20fc98a85ff84232ed3ea4ec4ea877f56/) ================================================ FILE: ecommerce.code-workspace ================================================ { "folders": [ { "path": "." } ], "settings": {} } ================================================ FILE: ecommerce.sublime-project ================================================ { "folders": [ { "path": "." } ] } ================================================ FILE: ecommerce.sublime-workspace ================================================ { "auto_complete": { "selected_items": [ [ "pos", "postal_code" ], [ "add", "address_line_2" ], [ "line", "line1" ], [ "is", "is_done" ], [ "ship", "shipping_address" ], [ "bil", "billing_address_id" ], [ "Bil", "BillingProfile" ], [ "Bill", "BillingProfileManager" ], [ "obj", "order_obj" ], [ "order", "order_obj" ], [ "billing", "billing_profile" ], [ "car", "cart_removal_qs" ], [ "gues", "guest_email_id" ], [ "cl", "cleaned_data" ], [ "bill", "billing_profile" ], [ "next", "next_post" ], [ "is_", "is_safe_url" ], [ "user", "user_checkout" ], [ "de", "Decimal" ], [ "nu", "num1" ], [ "cart", "cart_obj" ], [ "ran", "random_string_generator" ], [ "pr", "product_id" ], [ "Pr", "ProductDetailSlugView" ], [ "prd", "product_id" ], [ "new", "new_obj" ], [ "Car", "CartManager" ], [ "tag", "tag_set" ], [ "drop", "dropdown-menu" ], [ "nav", "navbar" ], [ "get", "get_object_or_404" ], [ "fea", "featured" ], [ "file", "filename" ], [ "conta", "contact_form" ], [ "con", "contact_form" ], [ "mar", "margin-bottom" ], [ "en", "environ" ], [ "image", "image_path" ], [ "err", "errMsg\tlet" ], [ "in", "instanceof\tkeyword" ], [ "Vid", "VideoManager" ], [ "Vide", "VideoQuerySet" ], [ "q", "query" ], [ "quer", "query" ], [ "u", "unique_slug_generator" ], [ "col-", "col-sm-12" ], [ "h", "homeImageList\tproperty" ], [ "se", "searchQuery\tproperty" ], [ "r", "routeSub\tproperty" ], [ "Av", "ActivatedRoute\talias" ], [ "p", "push\tmethod" ], [ "max", "max-height" ], [ "margin-", "margin-bottom" ], [ "min", "min-height" ], [ "by", "bypassSecurityTrustResourceUrl\tmethod" ], [ "Pip", "PipeTransform\talias" ], [ "imp", "implements\tkeyword" ], [ "cons", "console\tvar" ], [ "rou", "RouterModule\talias" ], [ "Rou", "RouterModule\talias" ], [ "fu", "function\tkeyword" ], [ "bas", "basil3\tlet" ], [ "login", "loginUrl" ], [ "lo", "login" ], [ "data", "dataId" ], [ "gen", "generateEditForm" ], [ "cfe-", "cfe-media-edit" ], [ "auth", "author" ], [ "aut", "author" ], [ "text", "textarea" ], [ "form", "formData" ], [ "object", "objectId" ], [ "co", "contentTxt" ], [ "content", "contentHolder" ], [ "html", "htmlStart_" ], [ "per", "permission_classes" ], [ "a", "authentication" ], [ "re", "responseJSON" ], [ "res", "responseData" ], [ "fo", "formResponse" ], [ "max-", "max-height" ], [ "time", "timestamp" ], [ "like", "likeUrl" ], [ "cu", "customersDjango" ], [ "Lis", "ListView" ], [ "save", "save_path" ], [ "email", "email_message" ], [ "inb", "inbox_item_list" ], [ "ea", "email_message" ], [ "ema", "email_message" ], [ "acc", "access_secret" ], [ "blog", "blog-list" ], [ "BlogList", "blogListController" ], [ "font", "font-size" ], [ "img", "img_r" ], [ "sel", "sel_soup" ], [ "web", "webdriver" ], [ "my", "my_num_list" ], [ "my_", "my_num_list" ], [ "str", "str" ], [ "Post", "PostSerializer" ], [ "query", "queryset" ], [ "read", "read_time_min" ], [ "rea", "read_time_minutes" ], [ "count", "count_words" ], [ "cont", "content_type" ], [ "Co", "CommentForm" ], [ "Commen", "CommentForm" ], [ "H", "HttpResponseRedirect" ], [ "Comm", "CommentManager" ], [ "parent", "parent_qs" ], [ "parent_", "parent_id" ], [ "Ht", "HttpResponseRedirect" ], [ "obje", "objects" ], [ "pare", "parent_id" ], [ "comm", "CommentManager" ], [ "Com", "Comment" ], [ "cle", "clean_parent_id" ], [ "COmm", "CommentManager" ], [ "conten", "content_type" ], [ "conte", "contentItem" ], [ "mark", "markedContent" ], [ "titl", "titleItem" ], [ "tit", "titleValue" ], [ "use", "username" ], [ "get_o", "get_object" ], [ "usr", "username" ], [ "get_obj", "get_object_or_404" ] ] }, "buffers": [ ], "build_system": "", "build_system_choices": [ ], "build_varint": "", "command_palette": { "height": 87.0, "last_filter": "mark", "selected_items": [ [ "mark", "Markdown Preview: Preview in Browser" ], [ "instal", "Package Control: Install Package" ], [ "ins", "Package Control: Install Package" ], [ "pack", "Package Control: Install Package" ], [ "mar", "Markdown Preview: Preview in Browser" ], [ "markd", "Markdown Preview: Preview in Browser" ], [ "markdown", "Markdown Preview: Preview in Browser" ], [ "", "Convert Case: Lower Case" ], [ "package", "Package Control: List Packages" ], [ "install", "Package Control: Install Package" ] ], "width": 485.0 }, "console": { "height": 125.0, "history": [ ] }, "distraction_free": { "menu_visible": true, "show_minimap": false, "show_open_files": false, "show_tabs": false, "side_bar_visible": false, "status_bar_visible": false }, "expanded_folders": [ "/Users/cfe/Dev/ecommerce" ], "file_history": [ "/Users/cfe/Dev/ecommerce/src/ecommerce/settings.py", "/Users/cfe/Dev/ecommerce/src/addresses/admin.py", "/Users/cfe/Dev/ecommerce/src/addresses/forms.py", "/Users/cfe/Dev/ecommerce/src/addresses/models.py", "/Users/cfe/Dev/ecommerce/src/billing/models.py", "/Users/cfe/Dev/ecommerce/src/addresses/templates/addresses/form.html", "/Users/cfe/Dev/ecommerce/src/ecommerce/urls.py", "/Users/cfe/Dev/ecommerce/src/addresses/views.py", "/Users/cfe/Dev/ecommerce/src/accounts/views.py", "/Users/cfe/Dev/ecommerce/src/orders/models.py", "/Users/cfe/Dev/ecommerce/src/addresses/templates/addresses/prev_addresses.html", "/Users/cfe/Dev/ecommerce/src/carts/templates/carts/checkout.html", "/Users/cfe/Dev/ecommerce/src/carts/templates/carts/checkout-done.html", "/Users/cfe/Dev/ecommerce/src/carts/urls.py", "/Users/cfe/Dev/ecommerce/parse_git_log.py", "/Users/cfe/Dev/ecommerce/src/carts/views.py", "/Users/cfe/Dev/ecommerce/README.md", "/Users/cfe/Dev/ecommerce/parsed_log.md", "/Users/cfe/Dev/ecommerce/src/billing/admin.py", "/Users/cfe/Dev/ecommerce/src/accounts/templates/accounts/snippets/form.html", "/Users/cfe/Dev/ecommerce/src/accounts/forms.py", "/Users/cfe/Dev/ecommerce/src/accounts/models.py", "/Users/cfe/Dev/ecommerce/src/accounts/admin.py", "/Users/cfe/Dev/ecommerce/notes/checkout_process.md", "/Users/cfe/Dev/ecommerce/src/ecommerce/views.py", "/Users/cfe/Dev/ecommerce/src/templates/base/navbar.html", "/Users/cfe/Dev/ecommerce/src/ecommerce/forms.py", "/Users/cfe/Dev/ecommerce/src/templates/auth/login.html", "/Users/cfe/Dev/ecommerce/src/carts/models.py", "/Users/cfe/Dev/ecommerce/src/ecommerce/utils.py", "/Users/cfe/Dev/ecommerce/src/products/models.py", "/Users/cfe/Dev/ecommerce/src/tags/models.py", "/Users/cfe/Dev/ecommerce/src/orders/admin.py", "/Users/cfe/Dev/ecommerce/src/carts/templates/carts/home.html", "/Users/cfe/Dev/ecommerce/src/products/utils.py", "/Users/cfe/Dev/ecommerce/src/orders/utils.py", "/Users/cfe/Dev/ecommerce/src/templates/base/css.html", "/Users/cfe/Dev/ecommerce/src/products/views.py", "/Users/cfe/Dev/ecommerce/src/products/templates/products/detail.html", "/Users/cfe/Dev/ecommerce/src/products/templates/products/snippets/update-cart.html", "/Users/cfe/Dev/ecommerce/src/carts/admin.py", "/Users/cfe/Dev/ecommerce/src/search/urls.py", "/Users/cfe/Dev/ecommerce/src/tags/admin.py", "/Users/cfe/Dev/ecommerce/src/tags/shell_commands.py", "/Users/cfe/Dev/ecommerce/src/search/templates/search/view.html", "/Users/cfe/Dev/ecommerce/src/search/templates/search/snippets/search-form.html", "/Users/cfe/Dev/ecommerce/src/search/views.py", "/Users/cfe/Dev/ecommerce/src/search/models.py", "/Users/cfe/Dev/ecommerce/src/search/templates/search/search_form.html", "/Users/cfe/Dev/ecommerce/src/templates/bootstrap/example.html", "/Users/cfe/Dev/ecommerce/src/templates/base.html", "/Users/cfe/Dev/ecommerce/src/templates/home_page.html", "/Users/cfe/Dev/ecommerce/src/products/templates/products/list.html", "/Users/cfe/Dev/ecommerce/src/templates/auth/register.html", "/Users/cfe/Dev/ecommerce/src/templates/bootstrap-section/base.html", "/Users/cfe/Dev/ecommerce/src/templates/contact/view.html", "/Users/cfe/Dev/ecommerce/src/products/urls.py", "/Users/cfe/Dev/ecommerce/src/products/templates/products/snippets/card.html", "/Users/cfe/Dev/ecommerce/src/products/admin.py", "/Users/cfe/Dev/ecommerce/src/templates/base/js.html", "/Users/cfe/Dev/ecommerce/src/products/templates/products/featured-detail.html", "/Users/cfe/Dev/ecommerce/src/products/understanding_crud.md", "/Users/cfe/Dev/ecommerce/src/static_my_proj/css/main.css", "/Users/cfe/Dev/cfe-s3-upload/backend/src/templates/upload.html", "/Users/cfe/Dev/cfe-s3-upload/backend/src/cfehome/urls.py", "/Users/cfe/Dev/cfe-s3-upload/backend/src/files/config_aws.py", "/Users/cfe/Dev/cfe-s3-upload/backend/src/cfehome/settings/base.py", "/Users/cfe/Dev/cfe-s3-upload/backend/src/cfehome/settings/local.py", "/Users/cfe/Dev/cfe-s3-upload/backend/src/cfehome/settings/production.py", "/Users/cfe/Dev/cfe-s3-upload/backend/src/credentials.py", "/Users/cfe/Dev/cfe-s3-upload/backend/src/cfehome/credentials.py", "/Users/cfe/Dev/django-s3-upload/credentials.py", "/Users/cfe/Dev/django-s3-upload/src/credentials.py", "/Users/cfe/Dev/basics/src/templates/posts/listview.html", "/Users/cfe/Dev/basics/src/posts/migrations/0006_auto_20170727_1653.py", "/Users/cfe/Dev/basics/src/pages/models.py", "/Users/cfe/Dev/basics/src/cfebasic/urls.py", "/Users/cfe/Dev/basics/src/templates/navbar.html", "/Users/cfe/Dev/basics/src/templates/javascript.html", "/Users/cfe/Dev/basics/src/templates/base.html", "/Users/cfe/Dev/basics/src/templates/contact.html", "/Users/cfe/Dev/basics/src/templates/about.html", "/Users/cfe/Dev/basics/src/templates/home.html", "/Users/cfe/Dev/basics/src/cfebasic/settings.py", "/Users/cfe/Dev/basics/src/posts/views.py", "/Users/cfe/Dev/basics/src/pages/views.py", "/Users/cfe/Dev/trydjango1-11/README.md", "/Users/cfe/Dev/trydjango1-11/LICENSE", "/Users/cfe/Dev/trydjango1-11/.gitignore", "/Users/cfe/Dev/trydjango1-11/requirements.txt", "/Users/cfe/Dev/trydjango1-11/src/muypicky/settings/__init__.py", "/Users/jmitch/Dropbox/cfe/v2/src/accounts/signals.py", "/Users/jmitch/Dropbox/cfe/v2/src/analytics/models.py", "/Users/jmitch/Dropbox/cfe/v2/src/accounts/views.py", "/Users/cfe/Dev/geo2/.gitignore", "/Users/cfe/Dev/geo2/src", "/Users/cfe/Dev/djangular/backend/src/.env", "/Users/cfe/Dev/djangular/backend/src/tryangular/settings/base.py", "/Users/cfe/Dev/djangular/backend/src/tryangular/aws/utils.py", "/Users/cfe/Dev/djangular/backend/src/tryangular/aws/conf.py", "/Users/cfe/Dev/djangular/backend/src/tryangular/wsgi.py", "/Users/cfe/Dev/djangular/backend/src/tryangular/__init__.py", "/Users/cfe/Dev/djangular/backend/src/tryangular/settings/local.py", "/Users/cfe/Dev/djangular/client/src/app/home/home.component.ts", "/Users/cfe/Dev/djangular/backend/src/videos/models.py", "/Users/cfe/Dev/djangular/backend/src/videos/api/serializers.py", "/Users/cfe/Dev/djangular/backend/src/tryangular/settings/production.py", "/Users/cfe/Dev/djangular/backend/src/videos/migrations/0006_auto_20170426_2258.py", "/Users/cfe/Dev/djangular/backend/src/tryangular/aws/__init__.py", "/Users/cfe/Downloads/credentials (1).csv", "/Users/cfe/Dev/djangular/.gitignore", "/Users/cfe/Dev/djangular/backend/src/tryangular/settings/__init__.py", "/Users/cfe/Dev/djangular/backend/src/runtime.txt", "/Users/cfe/Dev/djangular/backend/src/tryangular/old_settings.py", "/Users/cfe/Dev/djangular/backend/src/staticheroku/mediaheroku/images/blank.txt", "/Users/cfe/Dev/djangular/backend/src/staticheroku/mediaheroku/blank.txt", "/Users/cfe/Dev/djangular/backend/src/requirements.txt", "/Users/cfe/Dev/djangular/backend/src/mediaheroku/blank.txt", "/Users/cfe/Dev/djangular/backend/src/mediaheroku/blank", "/Users/cfe/Dev/djangular/backend/src/Procfile", "/Users/cfe/Dev/djangular/backend/src/.gitignore", "/Users/cfe/Dev/djangular/backend/src/videos/utils.py", "/Users/cfe/Dev/djangular/backend/src/templates/500.html", "/Users/cfe/Dev/djangular/backend/src/templates/404.html", "/Users/cfe/Dev/djangular/backend/src/tryangular/urls.py", "/Users/cfe/Dev/djangular/backend/src/videos/api/urls.py", "/Users/cfe/Dev/djangular/client/src/app/video-detail/video-detail.component.html", "/Users/cfe/Dev/djangular/client/src/app/search/search.component.ts" ], "find": { "height": 40.0 }, "find_in_files": { "height": 132.0, "where_history": [ "/Users/jmitch/Dropbox/cfe/v2/src", "/Users/cfe/Dev/djangular/client/src/app", "/Users/jmitch/Desktop/ecommerce-2/src", "/Users/jmitch/Dropbox/projects/kpj", "/Users/jmitch/Dropbox/projects/kpj/kpj", "/Users/jmitch/Dropbox/projects/", "/Users/jmitch/Dropbox/projects/kpj/kpj", "", "/Users/jmitch/Dropbox/projects/kpj/kpj", "/Users/jmitch/Dropbox/projects/kpj", "/Users/jmitch/Dropbox/cfe/src" ] }, "find_state": { "case_sensitive": false, "find_history": [ "Login", "Session", "fileUploadComplete", "$.alert", "uploadFile", "courseId", "username", "file_bucket", ".send", "end_session", "user_logged_in", "geoip", "object_viewed", "console.log", "videoListDefaultImage", "\"assets/", "from", "jquery", "login", ".load-comments", "load-comments", "parent()", ">Edit", "edit", "formatErrorMsg", "authUsername", "owner", "getComments", "likes", "url", "crispy", "Comment", "charts", "markdown", "comment", "reportlab", "$http", "get_transactions", "ProductUpdateView", "delete all", "jmitch-#", "AddressSelectFormView", "order_address", "\"", "item_it", "trydjango18", "questions_notification", "app.task", "needs_rep", "sendgrid", "celerybeat-schedule.db", "get_next_lecture", "lecture_quiz_result", "quiz", "url", "reverse", "module-box", "slug", "lang", "send_mail", "get_user", "ppe_4", "as_view", "\"join\"", "saftey", "Saftey Trianing i", "Training on new pesticides prior to first use", "transaction", "render_to", "render_to_pdf", "render_to", "DeleteView", "welcome_", "welcome", "all.html", "$.ajax", "ajax", "wistia", "upload", "review", "review now", "review_chemicals", "lectures_admin", "upload_bulk", "ChemicalsViewAdmin", "filter(active=F", "active", "LectureQuizAdminView", "formview", "$.ajax", "ajax", "clean", "keep", "questionanswer", "initial", "get_lecture", "slug", "LectureDetailView", "get_lecture", "get_next_lecture", "lecture_quiz", "edit_lecture", "single_lecture", "single", "form.as", "question.as", "question", "method", "csv", "ceu", "login", "easy", "grand", "pricing", "cost", "paginator", "question", "lecturequestion", "question", "next", "take_quiz", "after ", "href", "take_quiz", "start", "Coding", "Coding For Entrepreneurs", "Coding for Entrepreneurs" ], "highlight": false, "in_selection": false, "preserve_case": false, "regex": false, "replace_history": [ "\"/static/ang/assets/", ".cfe-load-comments", "jmitch=#", "'", "ecommerce2", "Control Guidance Solutions, LLC", "class=\"fa fa-check fa-2x\"", "img/apple-touch-icon-152.png", "{})", "render(request,", "render(", ")", "render(request,", "Coding For Entrepreneurs", "CodingForEntrepreneurs.com", "Coding For Entrepreneurs", "CodingForEntrepreneurs.com" ], "reverse": false, "show_context": false, "use_buffer2": false, "whole_word": false, "wrap": true }, "groups": [ { "sheets": [ ] } ], "incremental_find": { "height": 40.0 }, "input": { "height": 52.0 }, "layout": { "cells": [ [ 0, 0, 1, 1 ] ], "cols": [ 0.0, 1.0 ], "rows": [ 0.0, 1.0 ] }, "menu_visible": true, "output.doc": { "height": 0.0 }, "output.find_results": { "height": 508.0 }, "pinned_build_system": "", "project": "ecommerce.sublime-project", "replace": { "height": 76.0 }, "save_all_on_build": true, "select_file": { "height": 0.0, "last_filter": "", "selected_items": [ [ "email", "templates/team/email_instructions.html" ] ], "width": 0.0 }, "select_project": { "height": 0.0, "last_filter": "", "selected_items": [ ], "width": 0.0 }, "select_symbol": { "height": 0.0, "last_filter": "", "selected_items": [ ], "width": 0.0 }, "selected_group": 0, "settings": { }, "show_minimap": false, "show_open_files": true, "show_tabs": true, "side_bar_visible": true, "side_bar_width": 224.0, "status_bar_visible": true, "template_settings": { } } ================================================ FILE: fasttracktojquery/index.html ================================================

Form






































Hello, world!

Hello, world!

Header 3

Hello, world!

Some Link

Another Paragraph

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam pulvinar eros sed neque maximus, vel volutpat odio facilisis. Pellentesque convallis laoreet dapibus. Fusce sit amet elementum mauris, id fermentum risus. Integer ultrices velit at nunc egestas, vel iaculis est lobortis. Integer mattis sagittis ligula vel viverra. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce nec lectus ultricies, scelerisque nisl ut, ullamcorper libero. Aliquam at lacinia metus, sed hendrerit mi. Etiam euismod ultrices orci, non vestibulum arcu porta rhoncus. Aliquam bibendum auctor magna non consequat. Morbi varius, sapien a finibus mollis, augue enim sodales nisi, vel finibus tellus quam nec quam. Vestibulum venenatis nisl id justo molestie, ac imperdiet quam commodo. Nunc finibus odio sagittis risus tincidunt hendrerit. Etiam sapien nisl, congue eget ex in, egestas scelerisque risus. Quisque odio lectus, scelerisque ac nisl ut, commodo rhoncus magna. Praesent consectetur turpis nec ante maximus, sed tristique enim ultrices. Nulla libero massa, bibendum eget semper vitae, mollis sit amet quam. Suspendisse euismod aliquam dolor at suscipit. Nullam faucibus tincidunt venenatis. Pellentesque id quam aliquam libero lacinia aliquet at id libero. Praesent ut ante ligula. Mauris quis est interdum, elementum nibh nec, condimentum odio. Suspendisse interdum sapien tortor, a efficitur elit varius sed. Phasellus eu nisl enim. Nulla ultricies feugiat eros sit amet finibus. Maecenas tellus eros, pulvinar non luctus ac, faucibus ut neque. Praesent non luctus quam.

================================================ FILE: notes/checkout_process.md ================================================ # Checkout Process 1. Cart -> Checkout View ? - Login/Register or Enter an Email (as Guest) - Shipping Address - Billing Info - Billing Address - Credit Card / Payment 2. Billing App/Component - Billing Profile - User or Email (Guest Email) - generate payment processor token (Stripe or Braintree) 3. Orders / Invoices Component - Connecting the Billing Profile - Shipping / Billing Address - Cart - Status -- Shipped? Cancelled? 4. Backup Fixtures python manage.py dumpdata products --format json --indent 4 > products/fixtures/products.json ================================================ FILE: parse_git_log.py ================================================ ''' This document helps use parse our git commits so we can make them more easily readable and clickable in our Readme. ''' import os import datetime import git # pip install GitPython repo = git.Repo(os.getcwd()) master = repo.head.reference with open("parsed_log.md", "w+") as parsed_log: for commit in master.log(): if "commit" in commit.message: commit_mess = commit.message.replace("commit: ", "").replace("commit (initial): ", "") line = "[{message}](../../tree/{commit}/)".format(message=commit_mess, commit=commit.newhexsha) parsed_log.write(line) parsed_log.write("\n\n") ================================================ FILE: pyvenv.cfg ================================================ home = /Library/Frameworks/Python.framework/Versions/3.8/bin include-system-site-packages = false version = 3.8.2 ================================================ FILE: src/.gitignore ================================================ # Not Ready for Production # marketing/ .env ecommerce/settings/local.py ecommerce/aws/ignore2.py .DS_STORE *.sublime-project fasttracktojquery/ # Virtualenv related bin/ include/ pip-selfcheck.json # Django related # src//settings/local.py # static-cdn/ # any collected static files # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # pyenv .python-version # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ ================================================ FILE: src/Procfile ================================================ web: gunicorn ecommerce.wsgi ================================================ FILE: src/accounts/__init__.py ================================================ ================================================ FILE: src/accounts/admin.py ================================================ from django.contrib import admin from django.contrib.auth import get_user_model from django.contrib.auth.models import Group from django.contrib.auth.admin import UserAdmin as BaseUserAdmin from .forms import UserAdminCreationForm, UserAdminChangeForm from .models import GuestEmail, EmailActivation User = get_user_model() class UserAdmin(BaseUserAdmin): # The forms to add and change user instances form = UserAdminChangeForm add_form = UserAdminCreationForm # The fields to be used in displaying the User model. # These override the definitions on the base UserAdmin # that reference specific fields on auth.User. list_display = ('email', 'admin') list_filter = ('admin', 'staff', 'is_active') fieldsets = ( (None, {'fields': ('full_name', 'email', 'password')}), # ('Full name', {'fields': ()}), ('Permissions', {'fields': ('admin', 'staff', 'is_active',)}), ) # add_fieldsets is not a standard ModelAdmin attribute. UserAdmin # overrides get_fieldsets to use this attribute when creating a user. add_fieldsets = ( (None, { 'classes': ('wide',), 'fields': ('email', 'password1', 'password2')} ), ) search_fields = ('email', 'full_name',) ordering = ('email',) filter_horizontal = () admin.site.register(User, UserAdmin) # Remove Group Model from admin. We're not using it. admin.site.unregister(Group) class EmailActivationAdmin(admin.ModelAdmin): search_fields = ['email'] class Meta: model = EmailActivation admin.site.register(EmailActivation, EmailActivationAdmin) class GuestEmailAdmin(admin.ModelAdmin): search_fields = ['email'] class Meta: model = GuestEmail admin.site.register(GuestEmail, GuestEmailAdmin) ================================================ FILE: src/accounts/apps.py ================================================ from django.apps import AppConfig class AccountsConfig(AppConfig): name = 'accounts' ================================================ FILE: src/accounts/forms.py ================================================ from django import forms from django.contrib.auth import authenticate, login, get_user_model from django.contrib.auth.forms import ReadOnlyPasswordHashField from django.core.urlresolvers import reverse from django.utils.safestring import mark_safe User = get_user_model() from .models import EmailActivation, GuestEmail class ReactivateEmailForm(forms.Form): email = forms.EmailField() def clean_email(self): email = self.cleaned_data.get('email') qs = EmailActivation.objects.email_exists(email) if not qs.exists(): register_link = reverse("register") msg = """This email does not exists, would you like to register? """.format(link=register_link) raise forms.ValidationError(mark_safe(msg)) return email class UserAdminCreationForm(forms.ModelForm): """A form for creating new users. Includes all the required fields, plus a repeated password.""" password1 = forms.CharField(label='Password', widget=forms.PasswordInput) password2 = forms.CharField(label='Password confirmation', widget=forms.PasswordInput) class Meta: model = User fields = ('full_name', 'email',) #'full_name',) def clean_password2(self): # Check that the two password entries match password1 = self.cleaned_data.get("password1") password2 = self.cleaned_data.get("password2") if password1 and password2 and password1 != password2: raise forms.ValidationError("Passwords don't match") return password2 def save(self, commit=True): # Save the provided password in hashed format user = super(UserAdminCreationForm, self).save(commit=False) user.set_password(self.cleaned_data["password1"]) if commit: user.save() return user class UserDetailChangeForm(forms.ModelForm): full_name = forms.CharField(label='Name', required=False, widget=forms.TextInput(attrs={"class": 'form-control'})) class Meta: model = User fields = ['full_name'] class UserAdminChangeForm(forms.ModelForm): """A form for updating users. Includes all the fields on the user, but replaces the password field with admin's password hash display field. """ password = ReadOnlyPasswordHashField() class Meta: model = User fields = ('full_name', 'email', 'password', 'is_active', 'admin') def clean_password(self): # Regardless of what the user provides, return the initial value. # This is done here, rather than on the field, because the # field does not have access to the initial value return self.initial["password"] class GuestForm(forms.ModelForm): #email = forms.EmailField() class Meta: model = GuestEmail fields = [ 'email' ] def __init__(self, request, *args, **kwargs): self.request = request super(GuestForm, self).__init__(*args, **kwargs) def save(self, commit=True): # Save the provided password in hashed format obj = super(GuestForm, self).save(commit=False) if commit: obj.save() request = self.request request.session['guest_email_id'] = obj.id return obj class LoginForm(forms.Form): email = forms.EmailField(label='Email') password = forms.CharField(widget=forms.PasswordInput) def __init__(self, request, *args, **kwargs): self.request = request super(LoginForm, self).__init__(*args, **kwargs) def clean(self): request = self.request data = self.cleaned_data email = data.get("email") password = data.get("password") qs = User.objects.filter(email=email) if qs.exists(): # user email is registered, check active/ not_active = qs.filter(is_active=False) if not_active.exists(): ## not active, check email activation link = reverse("account:resend-activation") reconfirm_msg = """Go to resend confirmation email. """.format(resend_link = link) confirm_email = EmailActivation.objects.filter(email=email) is_confirmable = confirm_email.confirmable().exists() if is_confirmable: msg1 = "Please check your email to confirm your account or " + reconfirm_msg.lower() raise forms.ValidationError(mark_safe(msg1)) email_confirm_exists = EmailActivation.objects.email_exists(email).exists() if email_confirm_exists: msg2 = "Email not confirmed. " + reconfirm_msg raise forms.ValidationError(mark_safe(msg2)) if not is_confirmable and not email_confirm_exists: raise forms.ValidationError("This user is inactive.") user = authenticate(request, username=email, password=password) if user is None: raise forms.ValidationError("Invalid credentials") login(request, user) self.user = user return data # def form_valid(self, form): # request = self.request # next_ = request.GET.get('next') # next_post = request.POST.get('next') # redirect_path = next_ or next_post or None # email = form.cleaned_data.get("email") # password = form.cleaned_data.get("password") # print(user) # if user is not None: # if not user.is_active: # print('inactive user..') # messages.success(request, "This user is inactive") # return super(LoginView, self).form_invalid(form) # login(request, user) # user_logged_in.send(user.__class__, instance=user, request=request) # try: # del request.session['guest_email_id'] # except: # pass # if is_safe_url(redirect_path, request.get_host()): # return redirect(redirect_path) # else: # return redirect("/") # return super(LoginView, self).form_invalid(form) class RegisterForm(forms.ModelForm): """A form for creating new users. Includes all the required fields, plus a repeated password.""" password1 = forms.CharField(label='Password', widget=forms.PasswordInput) password2 = forms.CharField(label='Password confirmation', widget=forms.PasswordInput) class Meta: model = User fields = ('full_name', 'email',) #'full_name',) def clean_password2(self): # Check that the two password entries match password1 = self.cleaned_data.get("password1") password2 = self.cleaned_data.get("password2") if password1 and password2 and password1 != password2: raise forms.ValidationError("Passwords don't match") return password2 def save(self, commit=True): # Save the provided password in hashed format user = super(RegisterForm, self).save(commit=False) user.set_password(self.cleaned_data["password1"]) user.is_active = False # send confirmation email via signals # obj = EmailActivation.objects.create(user=user) # obj.send_activation_email() if commit: user.save() return user ================================================ FILE: src/accounts/migrations/0001_initial.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-09 21:27 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='User', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('password', models.CharField(max_length=128, verbose_name='password')), ('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')), ('email', models.EmailField(max_length=255, unique=True)), ('active', models.BooleanField(default=True)), ('staff', models.BooleanField(default=False)), ('admin', models.BooleanField(default=False)), ('timestamp', models.DateTimeField(auto_now_add=True)), ], options={ 'abstract': False, }, ), migrations.CreateModel( name='GuestEmail', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('email', models.EmailField(max_length=254)), ('active', models.BooleanField(default=True)), ('update', models.DateTimeField(auto_now=True)), ('timestamp', models.DateTimeField(auto_now_add=True)), ], ), ] ================================================ FILE: src/accounts/migrations/0002_user_full_name.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-09 21:44 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('accounts', '0001_initial'), ] operations = [ migrations.AddField( model_name='user', name='full_name', field=models.CharField(blank=True, max_length=255, null=True), ), ] ================================================ FILE: src/accounts/migrations/0003_user_is_active.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-10-23 22:47 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('accounts', '0002_user_full_name'), ] operations = [ migrations.AddField( model_name='user', name='is_active', field=models.BooleanField(default=True), ), ] ================================================ FILE: src/accounts/migrations/0004_remove_user_active.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-10-24 17:09 from __future__ import unicode_literals from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('accounts', '0003_user_is_active'), ] operations = [ migrations.RemoveField( model_name='user', name='active', ), ] ================================================ FILE: src/accounts/migrations/0005_emailactivation.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-10-24 18:13 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('accounts', '0004_remove_user_active'), ] operations = [ migrations.CreateModel( name='EmailActivation', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('email', models.EmailField(max_length=254)), ('key', models.CharField(blank=True, max_length=120, null=True)), ('activated', models.BooleanField(default=False)), ('forced_expired', models.BooleanField(default=False)), ('expires', models.IntegerField(default=7)), ('timestamp', models.DateTimeField(auto_now_add=True)), ('update', models.DateTimeField(auto_now=True)), ('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), ], ), ] ================================================ FILE: src/accounts/migrations/__init__.py ================================================ ================================================ FILE: src/accounts/models.py ================================================ from datetime import timedelta from django.conf import settings from django.core.urlresolvers import reverse from django.db import models from django.db.models import Q from django.db.models.signals import pre_save, post_save from django.contrib.auth.models import ( AbstractBaseUser, BaseUserManager ) from django.core.mail import send_mail from django.template.loader import get_template from django.utils import timezone from ecommerce.utils import random_string_generator, unique_key_generator #send_mail(subject, message, from_email, recipient_list, html_message) DEFAULT_ACTIVATION_DAYS = getattr(settings, 'DEFAULT_ACTIVATION_DAYS', 7) class UserManager(BaseUserManager): def create_user(self, email, full_name=None, password=None, is_active=True, is_staff=False, is_admin=False): if not email: raise ValueError("Users must have an email address") if not password: raise ValueError("Users must have a password") user_obj = self.model( email = self.normalize_email(email), full_name=full_name ) user_obj.set_password(password) # change user password user_obj.staff = is_staff user_obj.admin = is_admin user_obj.is_active = is_active user_obj.save(using=self._db) return user_obj def create_staffuser(self, email,full_name=None, password=None): user = self.create_user( email, full_name=full_name, password=password, is_staff=True ) return user def create_superuser(self, email, full_name=None, password=None): user = self.create_user( email, full_name=full_name, password=password, is_staff=True, is_admin=True ) return user class User(AbstractBaseUser): email = models.EmailField(max_length=255, unique=True) full_name = models.CharField(max_length=255, blank=True, null=True) is_active = models.BooleanField(default=True) # can login staff = models.BooleanField(default=False) # staff user non superuser admin = models.BooleanField(default=False) # superuser timestamp = models.DateTimeField(auto_now_add=True) # confirm = models.BooleanField(default=False) # confirmed_date = models.DateTimeField(default=False) USERNAME_FIELD = 'email' #username # USERNAME_FIELD and password are required by default REQUIRED_FIELDS = [] #['full_name'] #python manage.py createsuperuser objects = UserManager() def __str__(self): return self.email def get_full_name(self): if self.full_name: return self.full_name return self.email def get_short_name(self): return self.email def has_perm(self, perm, obj=None): return True def has_module_perms(self, app_label): return True @property def is_staff(self): if self.is_admin: return True return self.staff @property def is_admin(self): return self.admin # @property # def is_active(self): # return self.active class EmailActivationQuerySet(models.query.QuerySet): def confirmable(self): now = timezone.now() start_range = now - timedelta(days=DEFAULT_ACTIVATION_DAYS) # does my object have a timestamp in here end_range = now return self.filter( activated = False, forced_expired = False ).filter( timestamp__gt=start_range, timestamp__lte=end_range ) class EmailActivationManager(models.Manager): def get_queryset(self): return EmailActivationQuerySet(self.model, using=self._db) def confirmable(self): return self.get_queryset().confirmable() def email_exists(self, email): return self.get_queryset().filter( Q(email=email) | Q(user__email=email) ).filter( activated=False ) class EmailActivation(models.Model): user = models.ForeignKey(User) email = models.EmailField() key = models.CharField(max_length=120, blank=True, null=True) activated = models.BooleanField(default=False) forced_expired = models.BooleanField(default=False) expires = models.IntegerField(default=7) # 7 Days timestamp = models.DateTimeField(auto_now_add=True) update = models.DateTimeField(auto_now=True) objects = EmailActivationManager() def __str__(self): return self.email def can_activate(self): qs = EmailActivation.objects.filter(pk=self.pk).confirmable() # 1 object if qs.exists(): return True return False def activate(self): if self.can_activate(): # pre activation user signal user = self.user user.is_active = True user.save() # post activation signal for user self.activated = True self.save() return True return False def regenerate(self): self.key = None self.save() if self.key is not None: return True return False def send_activation(self): if not self.activated and not self.forced_expired: if self.key: base_url = getattr(settings, 'BASE_URL', 'https://www.pythonecommerce.com') key_path = reverse("account:email-activate", kwargs={'key': self.key}) # use reverse path = "{base}{path}".format(base=base_url, path=key_path) context = { 'path': path, 'email': self.email } txt_ = get_template("registration/emails/verify.txt").render(context) html_ = get_template("registration/emails/verify.html").render(context) subject = '1-Click Email Verification' from_email = settings.DEFAULT_FROM_EMAIL recipient_list = [self.email] sent_mail = send_mail( subject, txt_, from_email, recipient_list, html_message=html_, fail_silently=False, ) return sent_mail return False def pre_save_email_activation(sender, instance, *args, **kwargs): if not instance.activated and not instance.forced_expired: if not instance.key: instance.key = unique_key_generator(instance) pre_save.connect(pre_save_email_activation, sender=EmailActivation) def post_save_user_create_reciever(sender, instance, created, *args, **kwargs): if created: obj = EmailActivation.objects.create(user=instance, email=instance.email) obj.send_activation() post_save.connect(post_save_user_create_reciever, sender=User) class GuestEmail(models.Model): email = models.EmailField() active = models.BooleanField(default=True) update = models.DateTimeField(auto_now=True) timestamp = models.DateTimeField(auto_now_add=True) def __str__(self): return self.email ================================================ FILE: src/accounts/passwords/__init__.py ================================================ ================================================ FILE: src/accounts/passwords/urls.py ================================================ # accounts.passwords.urls.py from django.conf.urls import url from django.contrib.auth import views as auth_views urlpatterns = [ url(r'^password/change/$', auth_views.PasswordChangeView.as_view(), name='password_change'), url(r'^password/change/done/$', auth_views.PasswordChangeDoneView.as_view(), name='password_change_done'), url(r'^password/reset/$', auth_views.PasswordResetView.as_view(), name='password_reset'), url(r'^password/reset/done/$', auth_views.PasswordResetDoneView.as_view(), name='password_reset_done'), url(r'^password/reset/(?P[0-9A-Za-z_\-]+)/(?P[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$', auth_views.PasswordResetConfirmView.as_view(), name='password_reset_confirm'), url(r'^password/reset/complete/$', auth_views.PasswordResetCompleteView.as_view(), name='password_reset_complete'), ] ================================================ FILE: src/accounts/signals.py ================================================ from django.dispatch import Signal user_logged_in = Signal(providing_args=['instance', 'request']) ================================================ FILE: src/accounts/templates/accounts/detail-update-view.html ================================================ {% extends "base.html" %} {% block content %}
{% if title %}

{{ title }}

{% endif %}
{% csrf_token %} {% if next_url %} {% endif %} {{ form.as_p }} Cannot change email
Change Password
{% endblock %} ================================================ FILE: src/accounts/templates/accounts/home.html ================================================ {% extends "base.html" %} {% block content %}

Account


Support

Preferences

History

{% endblock %} ================================================ FILE: src/accounts/templates/accounts/login.html ================================================ {% extends "base.html" %} {% block content %}

Login

{% csrf_token %} {{ form }}
{% endblock %} ================================================ FILE: src/accounts/templates/accounts/register.html ================================================ {% extends "base.html" %} {% block content %}

Register

{% csrf_token %} {{ form }}
{% endblock %} ================================================ FILE: src/accounts/templates/accounts/snippets/form.html ================================================
{% csrf_token %} {% if next_url %} {% endif %} {{ form }}
================================================ FILE: src/accounts/tests.py ================================================ from django.test import TestCase # Create your tests here. ================================================ FILE: src/accounts/urls.py ================================================ from django.conf.urls import url from products.views import UserProductHistoryView from .views import ( AccountHomeView, AccountEmailActivateView, UserDetailUpdateView ) urlpatterns = [ url(r'^$', AccountHomeView.as_view(), name='home'), url(r'^details/$', UserDetailUpdateView.as_view(), name='user-update'), url(r'history/products/$', UserProductHistoryView.as_view(), name='user-product-history'), url(r'^email/confirm/(?P[0-9A-Za-z]+)/$', AccountEmailActivateView.as_view(), name='email-activate'), url(r'^email/resend-activation/$', AccountEmailActivateView.as_view(), name='resend-activation'), ] # account/email/confirm/asdfads/ -> activation view ================================================ FILE: src/accounts/views.py ================================================ from django.contrib.auth import authenticate, login, get_user_model from django.contrib.auth.decorators import login_required from django.contrib.auth.mixins import LoginRequiredMixin from django.contrib import messages from django.core.urlresolvers import reverse from django.utils.decorators import method_decorator from django.views.generic import CreateView, FormView, DetailView, View, UpdateView from django.views.generic.edit import FormMixin from django.http import HttpResponse from django.shortcuts import render,redirect from django.utils.http import is_safe_url from django.utils.safestring import mark_safe from ecommerce.mixins import NextUrlMixin, RequestFormAttachMixin from .forms import LoginForm, RegisterForm, GuestForm, ReactivateEmailForm, UserDetailChangeForm from .models import GuestEmail, EmailActivation from .signals import user_logged_in # @login_required # /accounts/login/?next=/some/path/ # def account_home_view(request): # return render(request, "accounts/home.html", {}) #LoginRequiredMixin, class AccountHomeView(LoginRequiredMixin, DetailView): template_name = 'accounts/home.html' def get_object(self): return self.request.user class AccountEmailActivateView(FormMixin, View): success_url = '/login/' form_class = ReactivateEmailForm key = None def get(self, request, key=None, *args, **kwargs): self.key = key if key is not None: qs = EmailActivation.objects.filter(key__iexact=key) confirm_qs = qs.confirmable() if confirm_qs.count() == 1: obj = confirm_qs.first() obj.activate() messages.success(request, "Your email has been confirmed. Please login.") return redirect("login") else: activated_qs = qs.filter(activated=True) if activated_qs.exists(): reset_link = reverse("password_reset") msg = """Your email has already been confirmed Do you need to reset your password? """.format(link=reset_link) messages.success(request, mark_safe(msg)) return redirect("login") context = {'form': self.get_form(),'key': key} return render(request, 'registration/activation-error.html', context) def post(self, request, *args, **kwargs): # create form to receive an email form = self.get_form() if form.is_valid(): return self.form_valid(form) else: return self.form_invalid(form) def form_valid(self, form): msg = """Activation link sent, please check your email.""" request = self.request messages.success(request, msg) email = form.cleaned_data.get("email") obj = EmailActivation.objects.email_exists(email).first() user = obj.user new_activation = EmailActivation.objects.create(user=user, email=email) new_activation.send_activation() return super(AccountEmailActivateView, self).form_valid(form) def form_invalid(self, form): context = {'form': form, "key": self.key } return render(self.request, 'registration/activation-error.html', context) class GuestRegisterView(NextUrlMixin, RequestFormAttachMixin, CreateView): form_class = GuestForm default_next = '/register/' def get_success_url(self): return self.get_next_url() def form_invalid(self, form): return redirect(self.default_next) class LoginView(NextUrlMixin, RequestFormAttachMixin, FormView): form_class = LoginForm success_url = '/' template_name = 'accounts/login.html' default_next = '/' def form_valid(self, form): next_path = self.get_next_url() return redirect(next_path) class RegisterView(CreateView): form_class = RegisterForm template_name = 'accounts/register.html' success_url = '/login/' class UserDetailUpdateView(LoginRequiredMixin, UpdateView): form_class = UserDetailChangeForm template_name = 'accounts/detail-update-view.html' def get_object(self): return self.request.user def get_context_data(self, *args, **kwargs): context = super(UserDetailUpdateView, self).get_context_data(*args, **kwargs) context['title'] = 'Change Your Account Details' return context def get_success_url(self): return reverse("account:home") # def login_page(request): # form = LoginForm(request.POST or None) # context = { # "form": form # } # next_ = request.GET.get('next') # next_post = request.POST.get('next') # redirect_path = next_ or next_post or None # if form.is_valid(): # username = form.cleaned_data.get("username") # password = form.cleaned_data.get("password") # user = authenticate(request, username=username, password=password) # if user is not None: # login(request, user) # try: # del request.session['guest_email_id'] # except: # pass # if is_safe_url(redirect_path, request.get_host()): # return redirect(redirect_path) # else: # return redirect("/") # else: # # Return an 'invalid login' error message. # print("Error") # return render(request, "accounts/login.html", context) # User = get_user_model() # def register_page(request): # form = RegisterForm(request.POST or None) # context = { # "form": form # } # if form.is_valid(): # form.save() # return render(request, "accounts/register.html", context) ================================================ FILE: src/addresses/__init__.py ================================================ ================================================ FILE: src/addresses/admin.py ================================================ from django.contrib import admin from .models import Address admin.site.register(Address) ================================================ FILE: src/addresses/apps.py ================================================ from django.apps import AppConfig class AddressesConfig(AppConfig): name = 'addresses' ================================================ FILE: src/addresses/forms.py ================================================ from django import forms from .models import Address class AddressForm(forms.ModelForm): """ User-related CRUD form """ class Meta: model = Address fields = [ 'nickname', 'name', #'billing_profile', 'address_type', 'address_line_1', 'address_line_2', 'city', 'country', 'state', 'postal_code' ] class AddressCheckoutForm(forms.ModelForm): """ User-related checkout address create form """ class Meta: model = Address fields = [ 'nickname', 'name', #'billing_profile', #'address_type', 'address_line_1', 'address_line_2', 'city', 'country', 'state', 'postal_code' ] ================================================ FILE: src/addresses/migrations/0001_initial.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-28 23:42 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ('billing', '0002_auto_20170928_2052'), ] operations = [ migrations.CreateModel( name='Address', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('address_type', models.CharField(choices=[('billing', 'Billing'), ('shipping', 'Shipping')], max_length=120)), ('address_line_1', models.CharField(max_length=120)), ('address_line_2', models.CharField(blank=True, max_length=120, null=True)), ('city', models.CharField(max_length=120)), ('country', models.CharField(default='United States of America', max_length=120)), ('state', models.CharField(max_length=120)), ('postal_code', models.CharField(max_length=120)), ('billing_profile', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='billing.BillingProfile')), ], ), ] ================================================ FILE: src/addresses/migrations/0002_auto_20171107_0055.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-07 00:55 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('addresses', '0001_initial'), ] operations = [ migrations.AddField( model_name='address', name='name', field=models.CharField(blank=True, help_text='Shipping to? Who is it for?', max_length=120, null=True), ), migrations.AddField( model_name='address', name='nickname', field=models.CharField(blank=True, help_text='Internal Reference Nickname', max_length=120, null=True), ), migrations.AlterField( model_name='address', name='address_type', field=models.CharField(choices=[('billing', 'Billing address'), ('shipping', 'Shipping address')], max_length=120), ), ] ================================================ FILE: src/addresses/migrations/__init__.py ================================================ ================================================ FILE: src/addresses/models.py ================================================ from django.db import models from django.core.urlresolvers import reverse from billing.models import BillingProfile ADDRESS_TYPES = ( ('billing', 'Billing address'), ('shipping', 'Shipping address'), ) class Address(models.Model): billing_profile = models.ForeignKey(BillingProfile) name = models.CharField(max_length=120, null=True, blank=True, help_text='Shipping to? Who is it for?') nickname = models.CharField(max_length=120, null=True, blank=True, help_text='Internal Reference Nickname') address_type = models.CharField(max_length=120, choices=ADDRESS_TYPES) address_line_1 = models.CharField(max_length=120) address_line_2 = models.CharField(max_length=120, null=True, blank=True) city = models.CharField(max_length=120) country = models.CharField(max_length=120, default='United States of America') state = models.CharField(max_length=120) postal_code = models.CharField(max_length=120) def __str__(self): if self.nickname: return str(self.nickname) return str(self.address_line_1) def get_absolute_url(self): return reverse("address-update", kwargs={"pk": self.pk}) def get_short_address(self): for_name = self.name if self.nickname: for_name = "{} | {},".format( self.nickname, for_name) return "{for_name} {line1}, {city}".format( for_name = for_name or "", line1 = self.address_line_1, city = self.city ) def get_address(self): return "{for_name}\n{line1}\n{line2}\n{city}\n{state}, {postal}\n{country}".format( for_name = self.name or "", line1 = self.address_line_1, line2 = self.address_line_2 or "", city = self.city, state = self.state, postal= self.postal_code, country = self.country ) ================================================ FILE: src/addresses/templates/addresses/form.html ================================================
{% csrf_token %} {% if next_url %} {% endif %} {% if address_type %} {% endif %} {{ form.as_p }}
================================================ FILE: src/addresses/templates/addresses/list.html ================================================ {% extends "base.html" %} {% block content %}

Address{% if object_list.count > 1%}es{% endif %} Create New


{% for obj in object_list %}

{{ obj }}

{{ obj.get_address_type_display }}

Address
{{ obj.get_address|linebreaks }} Edit
{% empty %}

Create New

{% endfor %}
{% endblock %} ================================================ FILE: src/addresses/templates/addresses/prev_addresses.html ================================================ {% if address_qs.exists %}
{% csrf_token %} {% if next_url %} {% endif %} {% if address_type %} {% endif %} {% for address in address_qs %}
{% endfor %}
{% endif %} ================================================ FILE: src/addresses/templates/addresses/update.html ================================================ {% extends "base.html" %} {% block content %}
{% if form.instance.address_line_1 %}

Update Address

{% else %}

Create Address

{% endif %}
{% csrf_token %} {{ form.as_p }}
{% endblock %} ================================================ FILE: src/addresses/tests.py ================================================ from django.test import TestCase # Create your tests here. ================================================ FILE: src/addresses/views.py ================================================ from django.contrib.auth.mixins import LoginRequiredMixin from django.views.generic import ListView, UpdateView, CreateView from django.shortcuts import render, redirect from django.utils.http import is_safe_url # CRUD create update retrieve delete from billing.models import BillingProfile from .forms import AddressCheckoutForm, AddressForm from .models import Address class AddressListView(LoginRequiredMixin, ListView): template_name = 'addresses/list.html' def get_queryset(self): request = self.request billing_profile, billing_profile_created = BillingProfile.objects.new_or_get(request) return Address.objects.filter(billing_profile=billing_profile) class AddressUpdateView(LoginRequiredMixin, UpdateView): template_name = 'addresses/update.html' form_class = AddressForm success_url = '/addresses' def get_queryset(self): request = self.request billing_profile, billing_profile_created = BillingProfile.objects.new_or_get(request) return Address.objects.filter(billing_profile=billing_profile) class AddressCreateView(LoginRequiredMixin, CreateView): template_name = 'addresses/update.html' form_class = AddressForm success_url = '/addresses' def form_valid(self, form): request = self.request billing_profile, billing_profile_created = BillingProfile.objects.new_or_get(request) instance = form.save(commit=False) instance.billing_profile = billing_profile instance.save() return super(AddressCreateView, self).form_valid(form) # def get_queryset(self): # return Address.objects.filter(billing_profile=billing_profile) def checkout_address_create_view(request): form = AddressCheckoutForm(request.POST or None) context = { "form": form } next_ = request.GET.get('next') next_post = request.POST.get('next') redirect_path = next_ or next_post or None if form.is_valid(): print(request.POST) instance = form.save(commit=False) billing_profile, billing_profile_created = BillingProfile.objects.new_or_get(request) if billing_profile is not None: address_type = request.POST.get('address_type', 'shipping') instance.billing_profile = billing_profile instance.address_type = address_type instance.save() request.session[address_type + "_address_id"] = instance.id print(address_type + "_address_id") else: print("Error here") return redirect("cart:checkout") if is_safe_url(redirect_path, request.get_host()): return redirect(redirect_path) return redirect("cart:checkout") def checkout_address_reuse_view(request): if request.user.is_authenticated(): context = {} next_ = request.GET.get('next') next_post = request.POST.get('next') redirect_path = next_ or next_post or None if request.method == "POST": print(request.POST) shipping_address = request.POST.get('shipping_address', None) address_type = request.POST.get('address_type', 'shipping') billing_profile, billing_profile_created = BillingProfile.objects.new_or_get(request) if shipping_address is not None: qs = Address.objects.filter(billing_profile=billing_profile, id=shipping_address) if qs.exists(): request.session[address_type + "_address_id"] = shipping_address if is_safe_url(redirect_path, request.get_host()): return redirect(redirect_path) return redirect("cart:checkout") ================================================ FILE: src/analytics/__init__.py ================================================ ================================================ FILE: src/analytics/admin.py ================================================ from django.contrib import admin from .models import ObjectViewed, UserSession admin.site.register(ObjectViewed) admin.site.register(UserSession) ================================================ FILE: src/analytics/apps.py ================================================ from django.apps import AppConfig class AnalyticsConfig(AppConfig): name = 'analytics' ================================================ FILE: src/analytics/migrations/0001_initial.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-10 21:30 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('contenttypes', '0002_remove_content_type_name'), ] operations = [ migrations.CreateModel( name='ObjectViewed', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('ip_address', models.CharField(blank=True, max_length=220, null=True)), ('object_id', models.PositiveIntegerField()), ('timestamp', models.DateTimeField(auto_now_add=True)), ('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.ContentType')), ('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), ], options={ 'verbose_name': 'Object viewed', 'verbose_name_plural': 'Objects viewed', 'ordering': ['-timestamp'], }, ), ] ================================================ FILE: src/analytics/migrations/0002_usersession.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-10 22:08 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('analytics', '0001_initial'), ] operations = [ migrations.CreateModel( name='UserSession', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('ip_address', models.CharField(blank=True, max_length=220, null=True)), ('session_key', models.CharField(blank=True, max_length=100, null=True)), ('timestamp', models.DateTimeField(auto_now_add=True)), ('active', models.BooleanField(default=True)), ('ended', models.BooleanField(default=False)), ('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), ], ), ] ================================================ FILE: src/analytics/migrations/__init__.py ================================================ ================================================ FILE: src/analytics/mixins.py ================================================ from .signals import object_viewed_signal class ObjectViewedMixin(object): def get_context_data(self, *args, **kwargs): context = super(ObjectViewedMixin, self).get_context_data(*args, **kwargs) request = self.request instance = context.get('object') if instance: object_viewed_signal.send(instance.__class__, instance=instance, request=request) return context ================================================ FILE: src/analytics/models.py ================================================ from django.conf import settings from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.models import ContentType from django.contrib.sessions.models import Session from django.db import models from django.db.models.signals import pre_save, post_save from accounts.signals import user_logged_in from .signals import object_viewed_signal from .utils import get_client_ip User = settings.AUTH_USER_MODEL FORCE_SESSION_TO_ONE = getattr(settings, 'FORCE_SESSION_TO_ONE', False) FORCE_INACTIVE_USER_ENDSESSION= getattr(settings, 'FORCE_INACTIVE_USER_ENDSESSION', False) class ObjectViewedQuerySet(models.query.QuerySet): def by_model(self, model_class, model_queryset=False): c_type = ContentType.objects.get_for_model(model_class) qs = self.filter(content_type=c_type) if model_queryset: viewed_ids = [x.object_id for x in qs] return model_class.objects.filter(pk__in=viewed_ids) return qs class ObjectViewedManager(models.Manager): def get_queryset(self): return ObjectViewedQuerySet(self.model, using=self._db) def by_model(self, model_class, model_queryset=False): return self.get_queryset().by_model(model_class, model_queryset=model_queryset) class ObjectViewed(models.Model): user = models.ForeignKey(User, blank=True, null=True) # User instance instance.id ip_address = models.CharField(max_length=220, blank=True, null=True) #IP Field content_type = models.ForeignKey(ContentType) # User, Product, Order, Cart, Address object_id = models.PositiveIntegerField() # User id, Product id, Order id, content_object = GenericForeignKey('content_type', 'object_id') # Product instance timestamp = models.DateTimeField(auto_now_add=True) objects = ObjectViewedManager() def __str__(self): return "%s viewed on %s" %(self.content_object, self.timestamp) class Meta: ordering = ['-timestamp'] # most recent saved show up first verbose_name = 'Object viewed' verbose_name_plural = 'Objects viewed' def object_viewed_receiver(sender, instance, request, *args, **kwargs): c_type = ContentType.objects.get_for_model(sender) # instance.__class__ user = None if request.user.is_authenticated(): user = request.user new_view_obj = ObjectViewed.objects.create( user = user, content_type=c_type, object_id=instance.id, ip_address = get_client_ip(request) ) object_viewed_signal.connect(object_viewed_receiver) class UserSession(models.Model): user = models.ForeignKey(User, blank=True, null=True) # User instance instance.id ip_address = models.CharField(max_length=220, blank=True, null=True) #IP Field session_key = models.CharField(max_length=100, blank=True, null=True) #min 50 timestamp = models.DateTimeField(auto_now_add=True) active = models.BooleanField(default=True) ended = models.BooleanField(default=False) def end_session(self): session_key = self.session_key ended = self.ended try: Session.objects.get(pk=session_key).delete() self.active = False self.ended = True self.save() except: pass return self.ended def post_save_session_receiver(sender, instance, created, *args, **kwargs): if created: qs = UserSession.objects.filter(user=instance.user, ended=False, active=False).exclude(id=instance.id) for i in qs: i.end_session() if not instance.active and not instance.ended: instance.end_session() if FORCE_SESSION_TO_ONE: post_save.connect(post_save_session_receiver, sender=UserSession) def post_save_user_changed_receiver(sender, instance, created, *args, **kwargs): if not created: if instance.is_active == False: qs = UserSession.objects.filter(user=instance.user, ended=False, active=False) for i in qs: i.end_session() if FORCE_INACTIVE_USER_ENDSESSION: post_save.connect(post_save_user_changed_receiver, sender=User) def user_logged_in_receiver(sender, instance, request, *args, **kwargs): user = instance ip_address = get_client_ip(request) session_key = request.session.session_key # Django 1.11 UserSession.objects.create( user=user, ip_address=ip_address, session_key=session_key ) user_logged_in.connect(user_logged_in_receiver) ================================================ FILE: src/analytics/signals.py ================================================ from django.dispatch import Signal object_viewed_signal = Signal(providing_args=['instance', 'request']) ================================================ FILE: src/analytics/templates/analytics/sales.html ================================================ {% extends "base.html" %} {% block content %}

Sales Data


Today's sales


Recent Total: ${{ today.recent_data.total__sum }}

    {% for order in today.recent|slice:":5" %}
  • Order #{{ order.order_id }}
    ${{ order.total }}
    {{ order.updated|timesince }} ago
  • {% endfor %}

This week's sales


Recent Total: ${{ this_week.recent_data.total__sum }}

    {% for order in this_week.recent|slice:":5" %}
  • Order #{{ order.order_id }}
    ${{ order.total }}
    {{ order.updated|timesince }} ago
  • {% endfor %}

Previous 4 weeks

Orders Total: ${{ last_four_weeks.recent_data.total__sum }}

Shipped Total: {% if last_four_weeks.shipped_data.total__sum %}${{ last_four_weeks.shipped_data.total__sum }} {% endif %}

Paid Totals: ${{ last_four_weeks.paid_data.total__sum }}

{% endblock %} ================================================ FILE: src/analytics/tests.py ================================================ from django.test import TestCase # Create your tests here. ================================================ FILE: src/analytics/utils.py ================================================ def get_client_ip(request): x_forwarded_for = request.META.get('HTTP_X_FORWARDED_FOR') if x_forwarded_for: ip = x_forwarded_for.split(",")[0] else: ip = request.META.get("REMOTE_ADDR", None) return ip ================================================ FILE: src/analytics/views.py ================================================ import random import datetime from django.contrib.auth.mixins import LoginRequiredMixin from django.db.models import Count, Sum, Avg from django.http import HttpResponse, JsonResponse from django.views.generic import TemplateView, View from django.shortcuts import render from django.utils import timezone from orders.models import Order class SalesAjaxView(View): def get(self, request, *args, **kwargs): data = {} if request.user.is_staff: qs = Order.objects.all().by_weeks_range(weeks_ago=5, number_of_weeks=5) if request.GET.get('type') == 'week': days = 7 start_date = timezone.now().today() - datetime.timedelta(days=days-1) datetime_list = [] labels = [] salesItems = [] for x in range(0, days): new_time = start_date + datetime.timedelta(days=x) datetime_list.append( new_time ) labels.append( new_time.strftime("%a") # mon ) new_qs = qs.filter(updated__day=new_time.day, updated__month=new_time.month) day_total = new_qs.totals_data()['total__sum'] or 0 salesItems.append( day_total ) #print(datetime_list) data['labels'] = labels data['data'] = salesItems if request.GET.get('type') == '4weeks': data['labels'] = ["Four Weeks Ago", "Three Weeks Ago", "Two Weeks Ago", "Last Week", "This Week"] current = 5 data['data'] = [] for i in range(0, 5): new_qs = qs.by_weeks_range(weeks_ago=current, number_of_weeks=1) sales_total = new_qs.totals_data()['total__sum'] or 0 data['data'].append(sales_total) current -= 1 return JsonResponse(data) class SalesView(LoginRequiredMixin, TemplateView): template_name = 'analytics/sales.html' def dispatch(self, *args, **kwargs): user = self.request.user if not user.is_staff: return render(self.request, "400.html", {}) return super(SalesView, self).dispatch(*args, **kwargs) def get_context_data(self, *args, **kwargs): context = super(SalesView, self).get_context_data(*args, **kwargs) qs = Order.objects.all().by_weeks_range(weeks_ago=10, number_of_weeks=10) start_date = timezone.now().date() - datetime.timedelta(hours=24) end_date = timezone.now().date() + datetime.timedelta(hours=12) today_data = qs.by_range(start_date=start_date, end_date=end_date).get_sales_breakdown() context['today'] = today_data context['this_week'] = qs.by_weeks_range(weeks_ago=1, number_of_weeks=1).get_sales_breakdown() context['last_four_weeks'] = qs.by_weeks_range(weeks_ago=5, number_of_weeks=4).get_sales_breakdown() return context ================================================ FILE: src/billing/__init__.py ================================================ ================================================ FILE: src/billing/admin.py ================================================ from django.contrib import admin from .models import BillingProfile, Card, Charge admin.site.register(BillingProfile) admin.site.register(Card) admin.site.register(Charge) ================================================ FILE: src/billing/apps.py ================================================ from django.apps import AppConfig class BillingConfig(AppConfig): name = 'billing' ================================================ FILE: src/billing/migrations/0001_initial.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-28 20:50 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ migrations.CreateModel( name='BillingProfile', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('email', models.EmailField(max_length=254)), ('active', models.BooleanField(default=True)), ('update', models.DateTimeField(auto_now=True)), ('timestamp', models.DateTimeField(auto_now_add=True)), ('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, unique=True)), ], ), ] ================================================ FILE: src/billing/migrations/0002_auto_20170928_2052.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-28 20:52 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('billing', '0001_initial'), ] operations = [ migrations.AlterField( model_name='billingprofile', name='user', field=models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL), ), ] ================================================ FILE: src/billing/migrations/0003_billingprofile_customer_id.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-11 19:13 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('billing', '0002_auto_20170928_2052'), ] operations = [ migrations.AddField( model_name='billingprofile', name='customer_id', field=models.CharField(blank=True, max_length=120, null=True), ), ] ================================================ FILE: src/billing/migrations/0004_card.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-11 22:08 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('billing', '0003_billingprofile_customer_id'), ] operations = [ migrations.CreateModel( name='Card', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('stripe_id', models.CharField(max_length=120)), ('brand', models.CharField(blank=True, max_length=120, null=True)), ('country', models.CharField(blank=True, max_length=20, null=True)), ('exp_month', models.IntegerField(blank=True, null=True)), ('exp_year', models.IntegerField(blank=True, null=True)), ('last4', models.CharField(blank=True, max_length=4, null=True)), ('billing_profile', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='billing.BillingProfile')), ], ), ] ================================================ FILE: src/billing/migrations/0005_card_default.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-11 22:10 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('billing', '0004_card'), ] operations = [ migrations.AddField( model_name='card', name='default', field=models.BooleanField(default=True), ), ] ================================================ FILE: src/billing/migrations/0006_charge.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-12 00:06 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('billing', '0005_card_default'), ] operations = [ migrations.CreateModel( name='Charge', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('stripe_id', models.CharField(max_length=120)), ('paid', models.BooleanField(default=False)), ('refunded', models.BooleanField(default=False)), ('outcome', models.TextField(blank=True, null=True)), ('outcome_type', models.CharField(blank=True, max_length=120, null=True)), ('seller_message', models.CharField(blank=True, max_length=120, null=True)), ('risk_level', models.CharField(blank=True, max_length=120, null=True)), ('billing_profile', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='billing.BillingProfile')), ], ), ] ================================================ FILE: src/billing/migrations/0007_auto_20171012_1935.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-12 19:35 from __future__ import unicode_literals from django.db import migrations, models import django.utils.timezone class Migration(migrations.Migration): dependencies = [ ('billing', '0006_charge'), ] operations = [ migrations.AddField( model_name='card', name='active', field=models.BooleanField(default=True), ), migrations.AddField( model_name='card', name='timestamp', field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), preserve_default=False, ), ] ================================================ FILE: src/billing/migrations/__init__.py ================================================ ================================================ FILE: src/billing/models.py ================================================ from django.conf import settings from django.db import models from django.db.models.signals import post_save, pre_save from django.core.urlresolvers import reverse from accounts.models import GuestEmail User = settings.AUTH_USER_MODEL # abc@teamcfe.com -->> 1000000 billing profiles # user abc@teamcfe.com -- 1 billing profile import stripe STRIPE_SECRET_KEY = getattr(settings, "STRIPE_SECRET_KEY", "sk_test_cu1lQmcg1OLffhLvYrSCp5XE") stripe.api_key = STRIPE_SECRET_KEY class BillingProfileManager(models.Manager): def new_or_get(self, request): user = request.user guest_email_id = request.session.get('guest_email_id') created = False obj = None if user.is_authenticated(): 'logged in user checkout; remember payment stuff' obj, created = self.model.objects.get_or_create( user=user, email=user.email) elif guest_email_id is not None: 'guest user checkout; auto reloads payment stuff' guest_email_obj = GuestEmail.objects.get(id=guest_email_id) obj, created = self.model.objects.get_or_create( email=guest_email_obj.email) else: pass return obj, created class BillingProfile(models.Model): user = models.OneToOneField(User, null=True, blank=True) email = models.EmailField() active = models.BooleanField(default=True) update = models.DateTimeField(auto_now=True) timestamp = models.DateTimeField(auto_now_add=True) customer_id = models.CharField(max_length=120, null=True, blank=True) # customer_id in Stripe or Braintree objects = BillingProfileManager() def __str__(self): return self.email def charge(self, order_obj, card=None): return Charge.objects.do(self, order_obj, card) def get_cards(self): return self.card_set.all() def get_payment_method_url(self): return reverse('billing-payment-method') @property def has_card(self): # instance.has_card card_qs = self.get_cards() return card_qs.exists() # True or False @property def default_card(self): default_cards = self.get_cards().filter(active=True, default=True) if default_cards.exists(): return default_cards.first() return None def set_cards_inactive(self): cards_qs = self.get_cards() cards_qs.update(active=False) return cards_qs.filter(active=True).count() def billing_profile_created_receiver(sender, instance, *args, **kwargs): if not instance.customer_id and instance.email: print("ACTUAL API REQUEST Send to stripe/braintree") customer = stripe.Customer.create( email = instance.email ) print(customer) instance.customer_id = customer.id pre_save.connect(billing_profile_created_receiver, sender=BillingProfile) def user_created_receiver(sender, instance, created, *args, **kwargs): if created and instance.email: BillingProfile.objects.get_or_create(user=instance, email=instance.email) post_save.connect(user_created_receiver, sender=User) class CardManager(models.Manager): def all(self, *args, **kwargs): # ModelKlass.objects.all() --> ModelKlass.objects.filter(active=True) return self.get_queryset().filter(active=True) def add_new(self, billing_profile, token): if token: customer = stripe.Customer.retrieve(billing_profile.customer_id) stripe_card_response = customer.sources.create(source=token) new_card = self.model( billing_profile=billing_profile, stripe_id = stripe_card_response.id, brand = stripe_card_response.brand, country = stripe_card_response.country, exp_month = stripe_card_response.exp_month, exp_year = stripe_card_response.exp_year, last4 = stripe_card_response.last4 ) new_card.save() return new_card return None class Card(models.Model): billing_profile = models.ForeignKey(BillingProfile) stripe_id = models.CharField(max_length=120) brand = models.CharField(max_length=120, null=True, blank=True) country = models.CharField(max_length=20, null=True, blank=True) exp_month = models.IntegerField(null=True, blank=True) exp_year = models.IntegerField(null=True, blank=True) last4 = models.CharField(max_length=4, null=True, blank=True) default = models.BooleanField(default=True) active = models.BooleanField(default=True) timestamp = models.DateTimeField(auto_now_add=True) objects = CardManager() def __str__(self): return "{} {}".format(self.brand, self.last4) def new_card_post_save_receiver(sender, instance, created, *args, **kwargs): if instance.default: billing_profile = instance.billing_profile qs = Card.objects.filter(billing_profile=billing_profile).exclude(pk=instance.pk) qs.update(default=False) post_save.connect(new_card_post_save_receiver, sender=Card) # stripe.Charge.create( # amount = int(order_obj.total * 100), # currency = "usd", # customer = BillingProfile.objects.filter(email='hello@teamcfe.com').first().stripe_id, # source = Card.objects.filter(billing_profile__email='hello@teamcfe.com').first().stripe_id, # obtained with Stripe.js # description="Charge for elijah.martin@example.com" # ) class ChargeManager(models.Manager): def do(self, billing_profile, order_obj, card=None): # Charge.objects.do() card_obj = card if card_obj is None: cards = billing_profile.card_set.filter(default=True) # card_obj.billing_profile if cards.exists(): card_obj = cards.first() if card_obj is None: return False, "No cards available" c = stripe.Charge.create( amount = int(order_obj.total * 100), # 39.19 --> 3919 currency = "usd", customer = billing_profile.customer_id, source = card_obj.stripe_id, metadata={"order_id":order_obj.order_id}, ) new_charge_obj = self.model( billing_profile = billing_profile, stripe_id = c.id, paid = c.paid, refunded = c.refunded, outcome = c.outcome, outcome_type = c.outcome['type'], seller_message = c.outcome.get('seller_message'), risk_level = c.outcome.get('risk_level'), ) new_charge_obj.save() return new_charge_obj.paid, new_charge_obj.seller_message class Charge(models.Model): billing_profile = models.ForeignKey(BillingProfile) stripe_id = models.CharField(max_length=120) paid = models.BooleanField(default=False) refunded = models.BooleanField(default=False) outcome = models.TextField(null=True, blank=True) outcome_type = models.CharField(max_length=120, null=True, blank=True) seller_message = models.CharField(max_length=120, null=True, blank=True) risk_level = models.CharField(max_length=120, null=True, blank=True) objects = ChargeManager() ================================================ FILE: src/billing/templates/billing/payment-method.html ================================================ {% extends 'base.html' %} {% block content %}

Add Payment Method

{% endblock %} ================================================ FILE: src/billing/tests.py ================================================ from django.test import TestCase # Create your tests here. ================================================ FILE: src/billing/views.py ================================================ from django.conf import settings from django.http import JsonResponse, HttpResponse from django.shortcuts import render, redirect from django.utils.http import is_safe_url import stripe STRIPE_SECRET_KEY = getattr(settings, "STRIPE_SECRET_KEY", "sk_test_cu1lQmcg1OLffhLvYrSCp5XE") STRIPE_PUB_KEY = getattr(settings, "STRIPE_PUB_KEY", 'pk_test_PrV61avxnHaWIYZEeiYTTVMZ') stripe.api_key = STRIPE_SECRET_KEY from .models import BillingProfile, Card def payment_method_view(request): #next_url = # if request.user.is_authenticated(): # billing_profile = request.user.billingprofile # my_customer_id = billing_profile.customer_id billing_profile, billing_profile_created = BillingProfile.objects.new_or_get(request) if not billing_profile: return redirect("/cart") next_url = None next_ = request.GET.get('next') if is_safe_url(next_, request.get_host()): next_url = next_ return render(request, 'billing/payment-method.html', {"publish_key": STRIPE_PUB_KEY, "next_url": next_url}) def payment_method_createview(request): if request.method == "POST" and request.is_ajax(): billing_profile, billing_profile_created = BillingProfile.objects.new_or_get(request) if not billing_profile: return HttpResponse({"message": "Cannot find this user"}, status_code=401) token = request.POST.get("token") if token is not None: new_card_obj = Card.objects.add_new(billing_profile, token) return JsonResponse({"message": "Success! Your card was added."}) return HttpResponse("error", status_code=401) ================================================ FILE: src/carts/__init__.py ================================================ ================================================ FILE: src/carts/admin.py ================================================ from django.contrib import admin from .models import Cart admin.site.register(Cart) ================================================ FILE: src/carts/apps.py ================================================ from django.apps import AppConfig class CartsConfig(AppConfig): name = 'carts' ================================================ FILE: src/carts/migrations/0001_initial.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-26 00:27 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ('products', '0009_product_timestamp'), migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ migrations.CreateModel( name='Cart', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('total', models.DecimalField(decimal_places=2, default=0.0, max_digits=100)), ('updated', models.DateTimeField(auto_now=True)), ('timestamp', models.DateTimeField(auto_now_add=True)), ('products', models.ManyToManyField(blank=True, to='products.Product')), ('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), ], ), ] ================================================ FILE: src/carts/migrations/0002_cart_subtotal.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-26 01:23 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('carts', '0001_initial'), ] operations = [ migrations.AddField( model_name='cart', name='subtotal', field=models.DecimalField(decimal_places=2, default=0.0, max_digits=100), ), ] ================================================ FILE: src/carts/migrations/__init__.py ================================================ ================================================ FILE: src/carts/models.py ================================================ from decimal import Decimal from django.conf import settings from django.db import models from django.db.models.signals import pre_save, post_save, m2m_changed from products.models import Product User = settings.AUTH_USER_MODEL class CartManager(models.Manager): def new_or_get(self, request): cart_id = request.session.get("cart_id", None) qs = self.get_queryset().filter(id=cart_id) if qs.count() == 1: new_obj = False cart_obj = qs.first() if request.user.is_authenticated() and cart_obj.user is None: cart_obj.user = request.user cart_obj.save() else: cart_obj = Cart.objects.new(user=request.user) new_obj = True request.session['cart_id'] = cart_obj.id return cart_obj, new_obj def new(self, user=None): user_obj = None if user is not None: if user.is_authenticated(): user_obj = user return self.model.objects.create(user=user_obj) class Cart(models.Model): user = models.ForeignKey(User, null=True, blank=True) products = models.ManyToManyField(Product, blank=True) subtotal = models.DecimalField(default=0.00, max_digits=100, decimal_places=2) total = models.DecimalField(default=0.00, max_digits=100, decimal_places=2) updated = models.DateTimeField(auto_now=True) timestamp = models.DateTimeField(auto_now_add=True) objects = CartManager() def __str__(self): return str(self.id) @property def is_digital(self): qs = self.products.all() #every product new_qs = qs.filter(is_digital=False) # every product that is not digial if new_qs.exists(): return False return True def m2m_changed_cart_receiver(sender, instance, action, *args, **kwargs): if action == 'post_add' or action == 'post_remove' or action == 'post_clear': products = instance.products.all() total = 0 for x in products: total += x.price if instance.subtotal != total: instance.subtotal = total instance.save() m2m_changed.connect(m2m_changed_cart_receiver, sender=Cart.products.through) def pre_save_cart_receiver(sender, instance, *args, **kwargs): if instance.subtotal > 0: instance.total = Decimal(instance.subtotal) * Decimal(1.08) # 8% tax else: instance.total = 0.00 pre_save.connect(pre_save_cart_receiver, sender=Cart) ================================================ FILE: src/carts/templates/carts/checkout-done.html ================================================ {% extends "base.html" %} {% block content %}

Thank you for your order!!!

{% endblock %} ================================================ FILE: src/carts/templates/carts/checkout.html ================================================ {% extends "base.html" %} {% block content %} {% if not billing_profile %}

Login

{% include 'accounts/snippets/form.html' with form=login_form next_url=request.build_absolute_uri %}
Continue as Guest {% url "guest_register" as guest_register_url %} {% include 'accounts/snippets/form.html' with form=guest_form next_url=request.build_absolute_uri action_url=guest_register_url %}
{% else %} {% if not object.shipping_address and shipping_address_required %}

Shipping Address


{% url "checkout_address_create" as checkout_address_create %} {% include 'addresses/form.html' with form=address_form next_url=request.build_absolute_uri action_url=checkout_address_create address_type='shipping' %}'
{% url 'checkout_address_reuse' as checkout_address_reuse %} {% include 'addresses/prev_addresses.html' with address_qs=address_qs next_url=request.build_absolute_uri address_type='shipping' action_url=checkout_address_reuse %}
{% elif not object.billing_address %}

Billing Address


{% url "checkout_address_create" as checkout_address_create %} {% include 'addresses/form.html' with form=address_form next_url=request.build_absolute_uri action_url=checkout_address_create address_type='billing' %}
{% url 'checkout_address_reuse' as checkout_address_reuse %} {% include 'addresses/prev_addresses.html' with address_qs=address_qs next_url=request.build_absolute_uri address_type='billing' action_url=checkout_address_reuse %}
{% else %} {% if not has_card %}
{% else %}

Finalize Checkout

Cart Items: {% for product in object.cart.products.all %}{{ product }}{% if not forloop.last %}, {% endif %}{% endfor %}

Shipping Address: {{ object.shipping_address_final }}

Billing Address: {{ object.billing_address_final }}

Payment Method: {{ billing_profile.default_card }} (Change)

Cart Total: {{ object.cart.total }}

Shipping Total: {{ object.shipping_total }}

Order Total: {{ object.total }}

{% csrf_token %}
{% endif %} {% endif %} {% endif %} {% endblock %} ================================================ FILE: src/carts/templates/carts/home.html ================================================ {% extends "base.html" %} {% block content %}

Cart

{% if cart.products.exists %} {% for product in cart.products.all %} {% endfor %}
# Product Name Product Price
{{ forloop.counter }} {{ product.title }} {% include 'carts/snippets/remove-product.html' with product_id=product.id %} {{ product.price }}
Subtotal ${{ cart.subtotal }}
Total ${{ cart.total }}
Checkout
{% else %}

Cart is empty

{% endif %} {% endblock %} ================================================ FILE: src/carts/templates/carts/snippets/remove-product.html ================================================
{% csrf_token %}
================================================ FILE: src/carts/tests.py ================================================ from django.test import TestCase # Create your tests here. ================================================ FILE: src/carts/urls.py ================================================ from django.conf.urls import url from .views import ( cart_home, cart_update, checkout_home, checkout_done_view ) urlpatterns = [ url(r'^$', cart_home, name='home'), url(r'^checkout/success/$', checkout_done_view, name='success'), url(r'^checkout/$', checkout_home, name='checkout'), url(r'^update/$', cart_update, name='update'), ] ================================================ FILE: src/carts/views.py ================================================ from django.conf import settings from django.http import JsonResponse from django.shortcuts import render, redirect from accounts.forms import LoginForm, GuestForm from accounts.models import GuestEmail from addresses.forms import AddressCheckoutForm from addresses.models import Address from billing.models import BillingProfile from orders.models import Order from products.models import Product from .models import Cart import stripe STRIPE_SECRET_KEY = getattr(settings, "STRIPE_SECRET_KEY", "sk_test_cu1lQmcg1OLffhLvYrSCp5XE") STRIPE_PUB_KEY = getattr(settings, "STRIPE_PUB_KEY", 'pk_test_PrV61avxnHaWIYZEeiYTTVMZ') stripe.api_key = STRIPE_SECRET_KEY def cart_detail_api_view(request): cart_obj, new_obj = Cart.objects.new_or_get(request) products = [{ "id": x.id, "url": x.get_absolute_url(), "name": x.name, "price": x.price } for x in cart_obj.products.all()] cart_data = {"products": products, "subtotal": cart_obj.subtotal, "total": cart_obj.total} return JsonResponse(cart_data) def cart_home(request): cart_obj, new_obj = Cart.objects.new_or_get(request) return render(request, "carts/home.html", {"cart": cart_obj}) def cart_update(request): product_id = request.POST.get('product_id') if product_id is not None: try: product_obj = Product.objects.get(id=product_id) except Product.DoesNotExist: print("Show message to user, product is gone?") return redirect("cart:home") cart_obj, new_obj = Cart.objects.new_or_get(request) if product_obj in cart_obj.products.all(): cart_obj.products.remove(product_obj) added = False else: cart_obj.products.add(product_obj) # cart_obj.products.add(product_id) added = True request.session['cart_items'] = cart_obj.products.count() # return redirect(product_obj.get_absolute_url()) if request.is_ajax(): # Asynchronous JavaScript And XML / JSON print("Ajax request") json_data = { "added": added, "removed": not added, "cartItemCount": cart_obj.products.count() } return JsonResponse(json_data, status=200) # HttpResponse # return JsonResponse({"message": "Error 400"}, status=400) # Django Rest Framework return redirect("cart:home") def checkout_home(request): cart_obj, cart_created = Cart.objects.new_or_get(request) order_obj = None if cart_created or cart_obj.products.count() == 0: return redirect("cart:home") login_form = LoginForm(request=request) guest_form = GuestForm(request=request) address_form = AddressCheckoutForm() billing_address_id = request.session.get("billing_address_id", None) shipping_address_required = not cart_obj.is_digital shipping_address_id = request.session.get("shipping_address_id", None) billing_profile, billing_profile_created = BillingProfile.objects.new_or_get(request) address_qs = None has_card = False if billing_profile is not None: if request.user.is_authenticated(): address_qs = Address.objects.filter(billing_profile=billing_profile) order_obj, order_obj_created = Order.objects.new_or_get(billing_profile, cart_obj) if shipping_address_id: order_obj.shipping_address = Address.objects.get(id=shipping_address_id) del request.session["shipping_address_id"] if billing_address_id: order_obj.billing_address = Address.objects.get(id=billing_address_id) del request.session["billing_address_id"] if billing_address_id or shipping_address_id: order_obj.save() has_card = billing_profile.has_card if request.method == "POST": "check that order is done" is_prepared = order_obj.check_done() if is_prepared: did_charge, crg_msg = billing_profile.charge(order_obj) if did_charge: order_obj.mark_paid() # sort a signal for us request.session['cart_items'] = 0 del request.session['cart_id'] if not billing_profile.user: ''' is this the best spot? ''' billing_profile.set_cards_inactive() return redirect("cart:success") else: print(crg_msg) return redirect("cart:checkout") context = { "object": order_obj, "billing_profile": billing_profile, "login_form": login_form, "guest_form": guest_form, "address_form": address_form, "address_qs": address_qs, "has_card": has_card, "publish_key": STRIPE_PUB_KEY, "shipping_address_required": shipping_address_required, } return render(request, "carts/checkout.html", context) def checkout_done_view(request): return render(request, "carts/checkout-done.html", {}) ================================================ FILE: src/ecommerce/__init__.py ================================================ ================================================ FILE: src/ecommerce/aws/__init__.py ================================================ ================================================ FILE: src/ecommerce/aws/conf.py ================================================ import datetime import os try: from .ignore2 import AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY except: AWS_ACCESS_KEY_ID = os.environ.get("AWS_ACCESS_KEY_ID", "AKIAJARK375PALZJC55Q") AWS_SECRET_ACCESS_KEY = os.environ.get("AWS_SECRET_ACCESS_KEY", "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") AWS_GROUP_NAME = "CFE_eCommerce_Group" AWS_USERNAME = "cfe-ecommerce-user" AWS_FILE_EXPIRE = 200 AWS_PRELOAD_METADATA = True AWS_QUERYSTRING_AUTH = False DEFAULT_FILE_STORAGE = 'ecommerce.aws.utils.MediaRootS3BotoStorage' STATICFILES_STORAGE = 'ecommerce.aws.utils.StaticRootS3BotoStorage' AWS_STORAGE_BUCKET_NAME = 'cfe-ecommerce' S3DIRECT_REGION = 'us-west-2' S3_URL = '//%s.s3.amazonaws.com/' % AWS_STORAGE_BUCKET_NAME MEDIA_URL = '//%s.s3.amazonaws.com/media/' % AWS_STORAGE_BUCKET_NAME MEDIA_ROOT = MEDIA_URL STATIC_URL = S3_URL + 'static/' ADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/' two_months = datetime.timedelta(days=61) date_two_months_later = datetime.date.today() + two_months expires = date_two_months_later.strftime("%A, %d %B %Y 20:00:00 GMT") AWS_HEADERS = { 'Expires': expires, 'Cache-Control': 'max-age=%d' % (int(two_months.total_seconds()), ), } PROTECTED_DIR_NAME = 'protected' PROTECTED_MEDIA_URL = '//%s.s3.amazonaws.com/%s/' %( AWS_STORAGE_BUCKET_NAME, PROTECTED_DIR_NAME) AWS_DOWNLOAD_EXPIRE = 5000 #(0ptional, in milliseconds) ================================================ FILE: src/ecommerce/aws/download/__init__.py ================================================ ================================================ FILE: src/ecommerce/aws/download/utils.py ================================================ import boto import re import os from django.conf import settings from boto.s3.connection import OrdinaryCallingFormat class AWSDownload(object): access_key = None secret_key = None bucket = None region = None expires = getattr(settings, 'AWS_DOWNLOAD_EXPIRE', 5000) def __init__(self, access_key, secret_key, bucket, region, *args, **kwargs): self.bucket = bucket self.access_key = access_key self.secret_key = secret_key self.region = region super(AWSDownload, self).__init__(*args, **kwargs) def s3connect(self): conn = boto.s3.connect_to_region( self.region, aws_access_key_id=self.access_key, aws_secret_access_key=self.secret_key, is_secure=True, calling_format=OrdinaryCallingFormat() ) return conn def get_bucket(self): conn = self.s3connect() bucket_name = self.bucket bucket = conn.get_bucket(bucket_name) return bucket def get_key(self, path): bucket = self.get_bucket() key = bucket.get_key(path) return key def get_filename(self, path, new_filename=None): current_filename = os.path.basename(path) if new_filename is not None: filename, file_extension = os.path.splitext(current_filename) escaped_new_filename_base = re.sub( '[^A-Za-z0-9\#]+', '-', new_filename) escaped_filename = escaped_new_filename_base + file_extension return escaped_filename return current_filename def generate_url(self, path, download=True, new_filename=None): file_url = None aws_obj_key = self.get_key(path) if aws_obj_key: headers = None if download: filename = self.get_filename(path, new_filename=new_filename) headers = { 'response-content-type': 'application/force-download', 'response-content-disposition':'attachment;filename="%s"'%filename } file_url = aws_obj_key.generate_url( response_headers=headers, expires_in=self.expires, method='GET') return file_url ================================================ FILE: src/ecommerce/aws/utils.py ================================================ from storages.backends.s3boto3 import S3Boto3Storage StaticRootS3BotoStorage = lambda: S3Boto3Storage(location='static') MediaRootS3BotoStorage = lambda: S3Boto3Storage(location='media') ProtectedS3Storage = lambda: S3Boto3Storage(location='protected') ================================================ FILE: src/ecommerce/forms.py ================================================ from django import forms from django.contrib.auth import get_user_model User = get_user_model() class ContactForm(forms.Form): fullname = forms.CharField( widget=forms.TextInput( attrs={ "class": "form-control", "placeholder": "Your full name" } ) ) email = forms.EmailField( widget=forms.EmailInput( attrs={ "class": "form-control", "placeholder": "Your email" } ) ) content = forms.CharField( widget=forms.Textarea( attrs={ 'class': 'form-control', "placeholder": "Your message" } ) ) # def clean_email(self): # email = self.cleaned_data.get("email") # if not "gmail.com" in email: # raise forms.ValidationError("Email has to be gmail.com") # return email # def clean_content(self): # raise forms.ValidationError("Content is wrong.") ================================================ FILE: src/ecommerce/mixins.py ================================================ from django.utils.http import is_safe_url class RequestFormAttachMixin(object): def get_form_kwargs(self): kwargs = super(RequestFormAttachMixin, self).get_form_kwargs() kwargs['request'] = self.request return kwargs class NextUrlMixin(object): default_next = "/" def get_next_url(self): request = self.request next_ = request.GET.get('next') next_post = request.POST.get('next') redirect_path = next_ or next_post or None if is_safe_url(redirect_path, request.get_host()): return redirect_path return self.default_next ================================================ FILE: src/ecommerce/settings/__init__.py ================================================ from .base import * from .production import * try: from .local import * except: pass try: from .local_justin import * except: pass ================================================ FILE: src/ecommerce/settings/base.py ================================================ """ Django settings for ecommerce project. Generated by 'django-admin startproject' using Django 1.11.4. For more information on this file, see https://docs.djangoproject.com/en/1.11/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.11/ref/settings/ """ import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = '@!-)jwmuzh8btr380g61=g+#&zzei&dz2(&=xbvxztady)_p(r' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = [] EMAIL_HOST = 'smtp.gmail.com' EMAIL_HOST_USER = 'hungrypy@gmail.com' EMAIL_HOST_PASSWORD = 'yourpassword' EMAIL_PORT = 587 EMAIL_USE_TLS = True DEFAULT_FROM_EMAIL = 'Python ecommerce ' BASE_URL = '127.0.0.1:8000' MANAGERS = ( ('Justin Mitchel', "hungrypy@gmail.com"), ) ADMINS = MANAGERS # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', # third party 'storages', #our apps 'accounts', 'addresses', 'analytics', 'billing', 'carts', 'marketing', 'orders', 'products', 'search', 'tags', ] AUTH_USER_MODEL = 'accounts.User' #changes the built-in user model to ours LOGIN_URL = '/login/' LOGIN_URL_REDIRECT = '/' LOGOUT_URL = '/logout/' FORCE_SESSION_TO_ONE = False FORCE_INACTIVE_USER_ENDSESSION= False MAILCHIMP_API_KEY = "717d0854ed20fed3be3689a3f125915c-us17" MAILCHIMP_DATA_CENTER = "us17" MAILCHIMP_EMAIL_LIST_ID = "e2ef12efee" STRIPE_SECRET_KEY = "sk_test_cu1lQmcg1OLffhLvYrSCp5XE" STRIPE_PUB_KEY = 'pk_test_PrV61avxnHaWIYZEeiYTTVMZ' MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] LOGOUT_REDIRECT_URL = '/login/' ROOT_URLCONF = 'ecommerce.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'ecommerce.wsgi.application' # Database # https://docs.djangoproject.com/en/1.11/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } # Password validation # https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/1.11/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = '/static/' STATICFILES_DIRS = [ os.path.join(BASE_DIR, "static_my_proj"), ] STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn", "static_root") MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn", "media_root") PROTECTED_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn", "protected_media") from ecommerce.aws.conf import * CORS_REPLACE_HTTPS_REFERER = False HOST_SCHEME = "http://" SECURE_PROXY_SSL_HEADER = None SECURE_SSL_REDIRECT = False SESSION_COOKIE_SECURE = False CSRF_COOKIE_SECURE = False SECURE_HSTS_SECONDS = None SECURE_HSTS_INCLUDE_SUBDOMAINS = False SECURE_FRAME_DENY = False ================================================ FILE: src/ecommerce/settings/local.py ================================================ """ Django settings for ecommerce project. Generated by 'django-admin startproject' using Django 1.11.4. For more information on this file, see https://docs.djangoproject.com/en/1.11/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.11/ref/settings/ """ import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = '@!-)jwmuzh8btr380g61=g+#&zzei&dz2(&=xbvxztady)_p(r' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = ['0.0.0.0', '127.0.0.1'] EMAIL_HOST = 'smtp.gmail.com' EMAIL_HOST_USER = 'hungrypy@gmail.com' # sendgrid EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_HOST_PASSWORD', 'yourpassword') EMAIL_PORT = 587 EMAIL_USE_TLS = True DEFAULT_FROM_EMAIL = 'Python ecommerce ' BASE_URL = '127.0.0.1:8000' MANAGERS = ( ('Justin Mitchel', "hungrypy@gmail.com"), ) ADMINS = MANAGERS # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', # third party 'storages', #our apps 'accounts', 'addresses', 'analytics', 'billing', 'carts', 'marketing', 'orders', 'products', 'search', 'tags', ] AUTH_USER_MODEL = 'accounts.User' #changes the built-in user model to ours LOGIN_URL = '/login/' LOGIN_URL_REDIRECT = '/' LOGOUT_URL = '/logout/' FORCE_SESSION_TO_ONE = False FORCE_INACTIVE_USER_ENDSESSION= False MAILCHIMP_API_KEY = os.environ.get("MAILCHIMP_API_KEY") MAILCHIMP_DATA_CENTER = "us17" MAILCHIMP_EMAIL_LIST_ID = os.environ.get("MAILCHIMP_EMAIL_LIST_ID") STRIPE_SECRET_KEY = os.environ.get("STRIPE_SECRET_KEY", "sk_test_cu1lQmcg1OLffhLvYrSCp5XE") STRIPE_PUB_KEY = os.environ.get("STRIPE_PUB_KEY", 'pk_test_PrV61avxnHaWIYZEeiYTTVMZ') MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] LOGOUT_REDIRECT_URL = '/login/' ROOT_URLCONF = 'ecommerce.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'ecommerce.wsgi.application' # Database # https://docs.djangoproject.com/en/1.11/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } # Password validation # https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/1.11/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'America/Los_Angeles' #'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = '/static/' STATICFILES_DIRS = [ os.path.join(BASE_DIR, "static_my_proj"), ] STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn", "static_root") MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn", "media_root") PROTECTED_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn", "protected_media") from ecommerce.aws.conf import * CORS_REPLACE_HTTPS_REFERER = False HOST_SCHEME = "http://" SECURE_PROXY_SSL_HEADER = None SECURE_SSL_REDIRECT = False SESSION_COOKIE_SECURE = False CSRF_COOKIE_SECURE = False SECURE_HSTS_SECONDS = None SECURE_HSTS_INCLUDE_SUBDOMAINS = False SECURE_FRAME_DENY = False ================================================ FILE: src/ecommerce/settings/production.py ================================================ """ Django settings for ecommerce project. Generated by 'django-admin startproject' using Django 1.11.4. For more information on this file, see https://docs.djangoproject.com/en/1.11/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.11/ref/settings/ """ import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = os.environ.get('SECRET_KEY') EMAIL_HOST = 'smtp.gmail.com' EMAIL_HOST_USER = 'hungrypy@gmail.com' EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_HOST_PASSWORD') EMAIL_PORT = 587 EMAIL_USE_TLS = True DEFAULT_FROM_EMAIL = 'Python ecommerce ' BASE_URL = 'https://www.pythonecommerce.com/' MANAGERS = ( ('Justin Mitchel', "hungrypy@gmail.com"), ) ADMINS = MANAGERS # SECURITY WARNING: don't run with debug turned on in production! DEBUG = False ALLOWED_HOSTS = ['.pythonecommerce.com'] # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', # third party 'storages', #our apps 'accounts', 'addresses', 'analytics', 'billing', 'carts', 'marketing', 'orders', 'products', 'search', 'tags', ] AUTH_USER_MODEL = 'accounts.User' #changes the built-in user model to ours LOGIN_URL = '/login/' LOGIN_URL_REDIRECT = '/' LOGOUT_URL = '/logout/' FORCE_SESSION_TO_ONE = False FORCE_INACTIVE_USER_ENDSESSION= False MAILCHIMP_API_KEY = os.environ.get("MAILCHIMP_API_KEY") MAILCHIMP_DATA_CENTER = "us17" MAILCHIMP_EMAIL_LIST_ID = os.environ.get("MAILCHIMP_EMAIL_LIST_ID") STRIPE_SECRET_KEY = os.environ.get("STRIPE_SECRET_KEY", "sk_test_cu1lQmcg1OLffhLvYrSCp5XE") STRIPE_PUB_KEY = os.environ.get("STRIPE_PUB_KEY", 'pk_test_PrV61avxnHaWIYZEeiYTTVMZ') MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] LOGOUT_REDIRECT_URL = '/login/' ROOT_URLCONF = 'ecommerce.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'ecommerce.wsgi.application' # Database # https://docs.djangoproject.com/en/1.11/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } import dj_database_url db_from_env = dj_database_url.config() #postgreSQL Database in heroku DATABASES['default'].update(db_from_env) DATABASES['default']['CONN_MAX_AGE'] = 500 # Password validation # https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/1.11/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = '/static/' STATICFILES_DIRS = [ os.path.join(BASE_DIR, "static_my_proj"), ] STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn", "static_root") MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn", "media_root") PROTECTED_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn", "protected_media") from ecommerce.aws.conf import * # https://kirr.co/vklau5 # Let's Encrypt ssl/tls https CORS_REPLACE_HTTPS_REFERER = True HOST_SCHEME = "https://" SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') SECURE_SSL_REDIRECT = True SESSION_COOKIE_SECURE = True CSRF_COOKIE_SECURE = True SECURE_HSTS_INCLUDE_SUBDOMAINS = True SECURE_HSTS_SECONDS = 1000000 SECURE_FRAME_DENY = True ================================================ FILE: src/ecommerce/urls.py ================================================ """ecommerce URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.11/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.conf.urls import url, include 2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls')) """ from django.conf import settings from django.conf.urls.static import static from django.conf.urls import url, include from django.contrib import admin from django.contrib.auth.views import LogoutView from django.views.generic import TemplateView, RedirectView from accounts.views import LoginView, RegisterView, GuestRegisterView from addresses.views import ( AddressCreateView, AddressListView, AddressUpdateView, checkout_address_create_view, checkout_address_reuse_view ) from analytics.views import SalesView, SalesAjaxView from billing.views import payment_method_view, payment_method_createview from carts.views import cart_detail_api_view from marketing.views import MarketingPreferenceUpdateView, MailchimpWebhookView from orders.views import LibraryView from .views import home_page, about_page, contact_page urlpatterns = [ url(r'^$', home_page, name='home'), url(r'^about/$', about_page, name='about'), #url(r'^accounts/login/$', RedirectView.as_view(url='/login')), url(r'^accounts/$', RedirectView.as_view(url='/account')), url(r'^account/', include("accounts.urls", namespace='account')), url(r'^accounts/', include("accounts.passwords.urls")), url(r'^address/$', RedirectView.as_view(url='/addresses')), url(r'^addresses/$', AddressListView.as_view(), name='addresses'), url(r'^addresses/create/$', AddressCreateView.as_view(), name='address-create'), url(r'^addresses/(?P\d+)/$', AddressUpdateView.as_view(), name='address-update'), url(r'^analytics/sales/$', SalesView.as_view(), name='sales-analytics'), url(r'^analytics/sales/data/$', SalesAjaxView.as_view(), name='sales-analytics-data'), url(r'^contact/$', contact_page, name='contact'), url(r'^login/$', LoginView.as_view(), name='login'), url(r'^checkout/address/create/$', checkout_address_create_view, name='checkout_address_create'), url(r'^checkout/address/reuse/$', checkout_address_reuse_view, name='checkout_address_reuse'), url(r'^register/guest/$', GuestRegisterView.as_view(), name='guest_register'), url(r'^logout/$', LogoutView.as_view(), name='logout'), url(r'^api/cart/$', cart_detail_api_view, name='api-cart'), url(r'^cart/', include("carts.urls", namespace='cart')), url(r'^billing/payment-method/$', payment_method_view, name='billing-payment-method'), url(r'^billing/payment-method/create/$', payment_method_createview, name='billing-payment-method-endpoint'), url(r'^register/$', RegisterView.as_view(), name='register'), url(r'^bootstrap/$', TemplateView.as_view(template_name='bootstrap/example.html')), url(r'^library/$', LibraryView.as_view(), name='library'), url(r'^orders/', include("orders.urls", namespace='orders')), url(r'^products/', include("products.urls", namespace='products')), url(r'^search/', include("search.urls", namespace='search')), url(r'^settings/$', RedirectView.as_view(url='/account')), url(r'^settings/email/$', MarketingPreferenceUpdateView.as_view(), name='marketing-pref'), url(r'^webhooks/mailchimp/$', MailchimpWebhookView.as_view(), name='webhooks-mailchimp'), url(r'^admin/', admin.site.urls), ] if settings.DEBUG: urlpatterns = urlpatterns + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) urlpatterns = urlpatterns + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) ================================================ FILE: src/ecommerce/utils.py ================================================ import datetime import os import random import string from django.utils import timezone from django.utils.text import slugify def get_last_month_data(today): ''' Simple method to get the datetime objects for the start and end of last month. ''' this_month_start = datetime.datetime(today.year, today.month, 1) last_month_end = this_month_start - datetime.timedelta(days=1) last_month_start = datetime.datetime(last_month_end.year, last_month_end.month, 1) return (last_month_start, last_month_end) def get_month_data_range(months_ago=1, include_this_month=False): ''' A method that generates a list of dictionaires that describe any given amout of monthly data. ''' today = datetime.datetime.now().today() dates_ = [] if include_this_month: # get next month's data with: next_month = today.replace(day=28) + datetime.timedelta(days=4) # use next month's data to get this month's data breakdown start, end = get_last_month_data(next_month) dates_.insert(0, { "start": start.timestamp(), "end": end.timestamp(), "start_json": start.isoformat(), "end": end.timestamp(), "end_json": end.isoformat(), "timesince": 0, "year": start.year, "month": str(start.strftime("%B")), }) for x in range(0, months_ago): start, end = get_last_month_data(today) today = start dates_.insert(0, { "start": start.timestamp(), "start_json": start.isoformat(), "end": end.timestamp(), "end_json": end.isoformat(), "timesince": int((datetime.datetime.now() - end).total_seconds()), "year": start.year, "month": str(start.strftime("%B")) }) #dates_.reverse() return dates_ def get_filename(path): #/abc/filename.mp4 return os.path.basename(path) def random_string_generator(size=10, chars=string.ascii_lowercase + string.digits): return ''.join(random.choice(chars) for _ in range(size)) def unique_key_generator(instance): """ This is for a Django project with an key field """ size = random.randint(30, 45) key = random_string_generator(size=size) Klass = instance.__class__ qs_exists = Klass.objects.filter(key=key).exists() if qs_exists: return unique_slug_generator(instance) return key def unique_order_id_generator(instance): """ This is for a Django project with an order_id field """ order_new_id = random_string_generator() Klass = instance.__class__ qs_exists = Klass.objects.filter(order_id=order_new_id).exists() if qs_exists: return unique_slug_generator(instance) return order_new_id def unique_slug_generator(instance, new_slug=None): """ This is for a Django project and it assumes your instance has a model with a slug field and a title character (char) field. """ if new_slug is not None: slug = new_slug else: slug = slugify(instance.title) Klass = instance.__class__ qs_exists = Klass.objects.filter(slug=slug).exists() if qs_exists: new_slug = "{slug}-{randstr}".format( slug=slug, randstr=random_string_generator(size=4) ) return unique_slug_generator(instance, new_slug=new_slug) return slug ================================================ FILE: src/ecommerce/views.py ================================================ from django.contrib.auth import authenticate, login, get_user_model from django.http import HttpResponse, JsonResponse from django.shortcuts import render,redirect from .forms import ContactForm def home_page(request): # print(request.session.get("first_name", "Unknown")) # request.session['first_name'] context = { "title":"Hello World!", "content":" Welcome to the homepage.", } if request.user.is_authenticated(): context["premium_content"] = "YEAHHHHHH" return render(request, "home_page.html", context) def about_page(request): context = { "title":"About Page", "content":" Welcome to the about page." } return render(request, "home_page.html", context) def contact_page(request): contact_form = ContactForm(request.POST or None) context = { "title":"Contact", "content":" Welcome to the contact page.", "form": contact_form, } if contact_form.is_valid(): print(contact_form.cleaned_data) if request.is_ajax(): return JsonResponse({"message": "Thank you for your submission"}) if contact_form.errors: errors = contact_form.errors.as_json() if request.is_ajax(): return HttpResponse(errors, status=400, content_type='application/json') # if request.method == "POST": # #print(request.POST) # print(request.POST.get('fullname')) # print(request.POST.get('email')) # print(request.POST.get('content')) return render(request, "contact/view.html", context) def home_page_old(request): html_ = """

Hello, world!

""" return HttpResponse(html_) ================================================ FILE: src/ecommerce/wsgi.py ================================================ """ WSGI config for ecommerce project. It exposes the WSGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/1.11/howto/deployment/wsgi/ """ import os from django.core.wsgi import get_wsgi_application os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ecommerce.settings") application = get_wsgi_application() ================================================ FILE: src/manage.py ================================================ #!/usr/bin/env python import os import sys if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ecommerce.settings") try: from django.core.management import execute_from_command_line except ImportError: # The above import may fail for some other reason. Ensure that the # issue is really that Django is missing to avoid masking other # exceptions on Python 2. try: import django except ImportError: raise ImportError( "Couldn't import Django. Are you sure it's installed and " "available on your PYTHONPATH environment variable? Did you " "forget to activate a virtual environment?" ) raise execute_from_command_line(sys.argv) ================================================ FILE: src/marketing/__init__.py ================================================ ================================================ FILE: src/marketing/admin.py ================================================ from django.contrib import admin from .models import MarketingPreference class MarketingPreferenceAdmin(admin.ModelAdmin): list_display = ['__str__', 'subscribed', 'updated'] readonly_fields = ['mailchimp_msg', 'mailchimp_subscribed', 'timestamp', 'updated'] class Meta: model = MarketingPreference fields = [ 'user', 'subscribed', 'mailchimp_msg', 'mailchimp_subscribed', 'timestamp', 'updated' ] admin.site.register(MarketingPreference, MarketingPreferenceAdmin) ================================================ FILE: src/marketing/apps.py ================================================ from django.apps import AppConfig class MarketingConfig(AppConfig): name = 'marketing' ================================================ FILE: src/marketing/forms.py ================================================ from django import forms from .models import MarketingPreference class MarketingPreferenceForm(forms.ModelForm): subscribed = forms.BooleanField(label='Receive Marketing Email?', required=False) class Meta: model = MarketingPreference fields = [ 'subscribed' ] ================================================ FILE: src/marketing/migrations/0001_initial.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-18 00:36 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ migrations.CreateModel( name='MarketingPreference', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('subscribed', models.BooleanField(default=True)), ('mailchimp_msg', models.TextField(blank=True, null=True)), ('timestamp', models.DateTimeField(auto_now_add=True)), ('update', models.DateTimeField(auto_now=True)), ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), ], ), ] ================================================ FILE: src/marketing/migrations/0002_marketingpreference_mailchimp_subscribed.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-18 01:34 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('marketing', '0001_initial'), ] operations = [ migrations.AddField( model_name='marketingpreference', name='mailchimp_subscribed', field=models.NullBooleanField(), ), ] ================================================ FILE: src/marketing/migrations/0003_auto_20171018_0142.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-18 01:42 from __future__ import unicode_literals from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('marketing', '0002_marketingpreference_mailchimp_subscribed'), ] operations = [ migrations.RenameField( model_name='marketingpreference', old_name='update', new_name='updated', ), ] ================================================ FILE: src/marketing/migrations/__init__.py ================================================ ================================================ FILE: src/marketing/mixins.py ================================================ from django.utils.decorators import method_decorator from django.views.decorators.csrf import csrf_exempt class CsrfExemptMixin(object): @method_decorator(csrf_exempt) def dispatch(self, request, *args, **kwargs): return super(CsrfExemptMixin, self).dispatch(request, *args, **kwargs) ================================================ FILE: src/marketing/models.py ================================================ from django.conf import settings from django.db import models from django.db.models.signals import post_save, pre_save from .utils import Mailchimp class MarketingPreference(models.Model): user = models.OneToOneField(settings.AUTH_USER_MODEL) subscribed = models.BooleanField(default=True) mailchimp_subscribed = models.NullBooleanField(blank=True) mailchimp_msg = models.TextField(null=True, blank=True) timestamp = models.DateTimeField(auto_now_add=True) updated = models.DateTimeField(auto_now=True) def __str__(self): return self.user.email def marketing_pref_create_receiver(sender, instance, created, *args, **kwargs): if created: status_code, response_data = Mailchimp().subscribe(instance.user.email) print(status_code, response_data) post_save.connect(marketing_pref_create_receiver, sender=MarketingPreference) def marketing_pref_update_receiver(sender, instance, *args, **kwargs): if instance.subscribed != instance.mailchimp_subscribed: if instance.subscribed: # subscribing user status_code, response_data = Mailchimp().subscribe(instance.user.email) else: # unsubscribing user status_code, response_data = Mailchimp().unsubscribe(instance.user.email) if response_data['status'] == 'subscribed': instance.subscribed = True instance.mailchimp_subscribed = True instance.mailchimp_msg = response_data else: instance.subscribed = False instance.mailchimp_subscribed = False instance.mailchimp_msg = response_data pre_save.connect(marketing_pref_update_receiver, sender=MarketingPreference) def make_marketing_pref_receiver(sender, instance, created, *args, **kwargs): ''' User model ''' if created: MarketingPreference.objects.get_or_create(user=instance) post_save.connect(make_marketing_pref_receiver, sender=settings.AUTH_USER_MODEL) ================================================ FILE: src/marketing/tests.py ================================================ from django.test import TestCase # Create your tests here. ================================================ FILE: src/marketing/utils.py ================================================ import hashlib import json import re import requests from django.conf import settings MAILCHIMP_API_KEY = getattr(settings, "MAILCHIMP_API_KEY", None) MAILCHIMP_DATA_CENTER = getattr(settings, "MAILCHIMP_DATA_CENTER", None) MAILCHIMP_EMAIL_LIST_ID = getattr(settings, "MAILCHIMP_EMAIL_LIST_ID", None) def check_email(email): if not re.match(r".+@.+\..+", email): raise ValueError('String passed is not a valid email address') return email def get_subscriber_hash(member_email): check_email(member_email) member_email = member_email.lower().encode() m = hashlib.md5(member_email) return m.hexdigest() class Mailchimp(object): def __init__(self): super(Mailchimp, self).__init__() self.key = MAILCHIMP_API_KEY self.api_url = "https://{dc}.api.mailchimp.com/3.0".format( dc=MAILCHIMP_DATA_CENTER ) self.list_id = MAILCHIMP_EMAIL_LIST_ID self.list_endpoint = '{api_url}/lists/{list_id}'.format( api_url = self.api_url, list_id=self.list_id ) def get_members_endpoint(self): return self.list_endpoint + "/members" def change_subcription_status(self, email, status='unsubscribed'): hashed_email = get_subscriber_hash(email) endpoint = self.get_members_endpoint() + "/" + hashed_email data = { "status": self.check_valid_status(status) } r = requests.put(endpoint, auth=("", self.key), data=json.dumps(data)) return r.status_code, r.json() def check_subcription_status(self, email): hashed_email = get_subscriber_hash(email) endpoint = self.get_members_endpoint() + "/" + hashed_email r = requests.get(endpoint, auth=("", self.key)) return r.status_code, r.json() def check_valid_status(self, status): choices = ['subscribed', 'unsubscribed', 'cleaned', 'pending'] if status not in choices: raise ValueError("Not a valid choice for email status") return status def add_email(self, email): # status = "subscribed" # self.check_valid_status(status) # data = { # "email_address": email, # "status": status # } # endpoint = self.get_members_endpoint() # r = requests.post(endpoint, auth=("", self.key), data=json.dumps(data)) return self.change_subcription_status(email, status='subscribed') def unsubscribe(self, email): return self.change_subcription_status(email, status='unsubscribed') def subscribe(self, email): return self.change_subcription_status(email, status='subscribed') def pending(self, email): return self.change_subcription_status(email, status='pending') ================================================ FILE: src/marketing/views.py ================================================ from django.conf import settings from django.contrib.messages.views import SuccessMessageMixin from django.http import HttpResponse from django.views.generic import UpdateView, View from django.shortcuts import render, redirect from .forms import MarketingPreferenceForm from .mixins import CsrfExemptMixin from .models import MarketingPreference from .utils import Mailchimp MAILCHIMP_EMAIL_LIST_ID = getattr(settings, "MAILCHIMP_EMAIL_LIST_ID", None) class MarketingPreferenceUpdateView(SuccessMessageMixin, UpdateView): form_class = MarketingPreferenceForm template_name = 'base/forms.html' # yeah create this success_url = '/settings/email/' success_message = 'Your email preferences have been updated. Thank you.' def dispatch(self, *args, **kwargs): user = self.request.user if not user.is_authenticated(): return redirect("/login/?next=/settings/email/") # HttpResponse("Not allowed", status=400) return super(MarketingPreferenceUpdateView, self).dispatch(*args, **kwargs) def get_context_data(self, *args, **kwargs): context = super(MarketingPreferenceUpdateView, self).get_context_data(*args, **kwargs) context['title'] = 'Update Email Preferences' return context def get_object(self): user = self.request.user obj, created = MarketingPreference.objects.get_or_create(user=user) # get_absolute_url return obj """ POST METHOD data[list_id]: e2ef12efee fired_at: 2017-10-18 18:49:49 data[merges][FNAME]: data[email]: hello@teamcfe.com data[merges][LNAME]: data[email_type]: html data[reason]: manual data[merges][BIRTHDAY]: data[id]: d686033a32 data[merges][EMAIL]: hello@teamcfe.com data[ip_opt]: 108.184.68.3 data[web_id]: 349661 type: unsubscribe data[action]: unsub """ class MailchimpWebhookView(CsrfExemptMixin, View): # HTTP GET -- def get() CSRF????? # def get(self, request, *args, **kwargs): # return HttpResponse("Thank you", status=200) def post(self, request, *args, **kwargs): data = request.POST list_id = data.get('data[list_id]') if str(list_id) == str(MAILCHIMP_EMAIL_LIST_ID): hook_type = data.get("type") email = data.get('data[email]') response_status, response = Mailchimp().check_subcription_status(email) sub_status = response['status'] is_subbed = None mailchimp_subbed = None if sub_status == "subscribed": is_subbed, mailchimp_subbed = (True, True) elif sub_status == "unsubscribed": is_subbed, mailchimp_subbed = (False, False) if is_subbed is not None and mailchimp_subbed is not None: qs = MarketingPreference.objects.filter(user__email__iexact=email) if qs.exists(): qs.update( subscribed=is_subbed, mailchimp_subscribed=mailchimp_subbed, mailchimp_msg=str(data)) return HttpResponse("Thank you", status=200) # def mailchimp_webhook_view(request): # data = request.POST # list_id = data.get('data[list_id]') # if str(list_id) == str(MAILCHIMP_EMAIL_LIST_ID): # hook_type = data.get("type") # email = data.get('data[email]') # response_status, response = Mailchimp().check_subcription_status(email) # sub_status = response['status'] # is_subbed = None # mailchimp_subbed = None # if sub_status == "subscribed": # is_subbed, mailchimp_subbed = (True, True) # elif sub_status == "unsubscribed": # is_subbed, mailchimp_subbed = (False, False) # if is_subbed is not None and mailchimp_subbed is not None: # qs = MarketingPreference.objects.filter(user__email__iexact=email) # if qs.exists(): # qs.update( # subscribed=is_subbed, # mailchimp_subscribed=mailchimp_subbed, # mailchimp_msg=str(data)) # return HttpResponse("Thank you", status=200) ================================================ FILE: src/orders/__init__.py ================================================ ================================================ FILE: src/orders/admin.py ================================================ from django.contrib import admin from .models import Order, ProductPurchase admin.site.register(Order) admin.site.register(ProductPurchase) ================================================ FILE: src/orders/apps.py ================================================ from django.apps import AppConfig class OrdersConfig(AppConfig): name = 'orders' ================================================ FILE: src/orders/migrations/0001_initial.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-27 23:00 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ('carts', '0002_cart_subtotal'), ] operations = [ migrations.CreateModel( name='Order', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('order_id', models.CharField(blank=True, max_length=120)), ('status', models.CharField(choices=[('created', 'Created'), ('paid', 'Paid'), ('shipped', 'Shipped'), ('refunded', 'Refunded')], default='created', max_length=120)), ('shipping_total', models.DecimalField(decimal_places=2, default=5.99, max_digits=100)), ('total', models.DecimalField(decimal_places=2, default=0.0, max_digits=100)), ('cart', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='carts.Cart')), ], ), ] ================================================ FILE: src/orders/migrations/0002_auto_20170928_2224.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-28 22:24 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('billing', '0002_auto_20170928_2052'), ('orders', '0001_initial'), ] operations = [ migrations.AddField( model_name='order', name='active', field=models.BooleanField(default=True), ), migrations.AddField( model_name='order', name='billing_profile', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='billing.BillingProfile'), ), ] ================================================ FILE: src/orders/migrations/0003_auto_20170929_0013.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-29 00:13 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('addresses', '0001_initial'), ('orders', '0002_auto_20170928_2224'), ] operations = [ migrations.AddField( model_name='order', name='billing_address', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='billing_address', to='addresses.Address'), ), migrations.AddField( model_name='order', name='shipping_address', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='shipping_address', to='addresses.Address'), ), ] ================================================ FILE: src/orders/migrations/0004_auto_20171025_2216.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-10-25 22:16 from __future__ import unicode_literals from django.db import migrations, models import django.utils.timezone class Migration(migrations.Migration): dependencies = [ ('orders', '0003_auto_20170929_0013'), ] operations = [ migrations.AlterModelOptions( name='order', options={'ordering': ['-timestamp', '-updated']}, ), migrations.AddField( model_name='order', name='timestamp', field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), preserve_default=False, ), migrations.AddField( model_name='order', name='updated', field=models.DateTimeField(auto_now=True), ), ] ================================================ FILE: src/orders/migrations/0005_auto_20171107_0035.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-07 00:35 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('orders', '0004_auto_20171025_2216'), ] operations = [ migrations.AddField( model_name='order', name='billing_address_final', field=models.TextField(blank=True, null=True), ), migrations.AddField( model_name='order', name='shipping_address_final', field=models.TextField(blank=True, null=True), ), ] ================================================ FILE: src/orders/migrations/0006_productpurchase_productpurchasemanager.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-08 00:17 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('products', '0010_product_is_digital'), migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('billing', '0007_auto_20171012_1935'), ('orders', '0005_auto_20171107_0035'), ] operations = [ migrations.CreateModel( name='ProductPurchase', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('refunded', models.BooleanField(default=False)), ('updated', models.DateTimeField(auto_now=True)), ('timestamp', models.DateTimeField(auto_now_add=True)), ('billing_profile', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='billing.BillingProfile')), ('product', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='products.Product')), ('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), ], ), migrations.CreateModel( name='ProductPurchaseManager', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ], ), ] ================================================ FILE: src/orders/migrations/0007_auto_20171108_0028.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-08 00:28 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('orders', '0006_productpurchase_productpurchasemanager'), ] operations = [ migrations.RemoveField( model_name='productpurchase', name='user', ), migrations.AddField( model_name='productpurchase', name='order_id', field=models.CharField(default='abc123', max_length=120), preserve_default=False, ), ] ================================================ FILE: src/orders/migrations/0008_delete_productpurchasemanager.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-08 00:39 from __future__ import unicode_literals from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('orders', '0007_auto_20171108_0028'), ] operations = [ migrations.DeleteModel( name='ProductPurchaseManager', ), ] ================================================ FILE: src/orders/migrations/__init__.py ================================================ ================================================ FILE: src/orders/models.py ================================================ import math import datetime from django.conf import settings from django.db import models from django.db.models import Count, Sum, Avg from django.db.models.signals import pre_save, post_save from django.core.urlresolvers import reverse from django.utils import timezone from addresses.models import Address from billing.models import BillingProfile from carts.models import Cart from ecommerce.utils import unique_order_id_generator from products.models import Product ORDER_STATUS_CHOICES = ( ('created', 'Created'), ('paid', 'Paid'), ('shipped', 'Shipped'), ('refunded', 'Refunded'), ) class OrderManagerQuerySet(models.query.QuerySet): def recent(self): return self.order_by("-updated", "-timestamp") def get_sales_breakdown(self): recent = self.recent().not_refunded() recent_data = recent.totals_data() recent_cart_data = recent.cart_data() shipped = recent.not_refunded().by_status(status='shipped') shipped_data = shipped.totals_data() paid = recent.by_status(status='paid') paid_data = paid.totals_data() data = { 'recent': recent, 'recent_data':recent_data, 'recent_cart_data': recent_cart_data, 'shipped': shipped, 'shipped_data': shipped_data, 'paid': paid, 'paid_data': paid_data } return data def by_weeks_range(self, weeks_ago=7, number_of_weeks=2): if number_of_weeks > weeks_ago: number_of_weeks = weeks_ago days_ago_start = weeks_ago * 7 # days_ago_start = 49 days_ago_end = days_ago_start - (number_of_weeks * 7) #days_ago_end = 49 - 14 = 35 start_date = timezone.now() - datetime.timedelta(days=days_ago_start) end_date = timezone.now() - datetime.timedelta(days=days_ago_end) return self.by_range(start_date, end_date=end_date) def by_range(self, start_date, end_date=None): if end_date is None: return self.filter(updated__gte=start_date) return self.filter(updated__gte=start_date).filter(updated__lte=end_date) def by_date(self): now = timezone.now() - datetime.timedelta(days=9) return self.filter(updated__day__gte=now.day) def totals_data(self): return self.aggregate(Sum("total"), Avg("total")) def cart_data(self): return self.aggregate( Sum("cart__products__price"), Avg("cart__products__price"), Count("cart__products") ) def by_status(self, status="shipped"): return self.filter(status=status) def not_refunded(self): return self.exclude(status='refunded') def by_request(self, request): billing_profile, created = BillingProfile.objects.new_or_get(request) return self.filter(billing_profile=billing_profile) def not_created(self): return self.exclude(status='created') class OrderManager(models.Manager): def get_queryset(self): return OrderManagerQuerySet(self.model, using=self._db) def by_request(self, request): return self.get_queryset().by_request(request) def new_or_get(self, billing_profile, cart_obj): created = False qs = self.get_queryset().filter( billing_profile=billing_profile, cart=cart_obj, active=True, status='created' ) if qs.count() == 1: obj = qs.first() else: obj = self.model.objects.create( billing_profile=billing_profile, cart=cart_obj) created = True return obj, created # Random, Unique class Order(models.Model): billing_profile = models.ForeignKey(BillingProfile, null=True, blank=True) order_id = models.CharField(max_length=120, blank=True) # AB31DE3 shipping_address = models.ForeignKey(Address, related_name="shipping_address",null=True, blank=True) billing_address = models.ForeignKey(Address, related_name="billing_address", null=True, blank=True) shipping_address_final = models.TextField(blank=True, null=True) billing_address_final = models.TextField(blank=True, null=True) cart = models.ForeignKey(Cart) status = models.CharField(max_length=120, default='created', choices=ORDER_STATUS_CHOICES) shipping_total = models.DecimalField(default=5.99, max_digits=100, decimal_places=2) total = models.DecimalField(default=0.00, max_digits=100, decimal_places=2) active = models.BooleanField(default=True) updated = models.DateTimeField(auto_now=True) timestamp = models.DateTimeField(auto_now_add=True) def __str__(self): return self.order_id objects = OrderManager() class Meta: ordering = ['-timestamp', '-updated'] def get_absolute_url(self): return reverse("orders:detail", kwargs={'order_id': self.order_id}) def get_status(self): if self.status == "refunded": return "Refunded order" elif self.status == "shipped": return "Shipped" return "Shipping Soon" def update_total(self): cart_total = self.cart.total shipping_total = self.shipping_total new_total = math.fsum([cart_total, shipping_total]) formatted_total = format(new_total, '.2f') self.total = formatted_total self.save() return new_total def check_done(self): shipping_address_required = not self.cart.is_digital shipping_done = False if shipping_address_required and self.shipping_address: shipping_done = True elif shipping_address_required and not self.shipping_address: shipping_done = False else: shipping_done = True billing_profile = self.billing_profile billing_address = self.billing_address total = self.total if billing_profile and shipping_done and billing_address and total > 0: return True return False def update_purchases(self): for p in self.cart.products.all(): obj, created = ProductPurchase.objects.get_or_create( order_id=self.order_id, product=p, billing_profile=self.billing_profile ) return ProductPurchase.objects.filter(order_id=self.order_id).count() def mark_paid(self): if self.status != 'paid': if self.check_done(): self.status = "paid" self.save() self.update_purchases() return self.status def pre_save_create_order_id(sender, instance, *args, **kwargs): if not instance.order_id: instance.order_id = unique_order_id_generator(instance) qs = Order.objects.filter(cart=instance.cart).exclude(billing_profile=instance.billing_profile) if qs.exists(): qs.update(active=False) if instance.shipping_address and not instance.shipping_address_final: instance.shipping_address_final = instance.shipping_address.get_address() if instance.billing_address and not instance.billing_address_final: instance.billing_address_final = instance.billing_address.get_address() pre_save.connect(pre_save_create_order_id, sender=Order) def post_save_cart_total(sender, instance, created, *args, **kwargs): if not created: cart_obj = instance cart_total = cart_obj.total cart_id = cart_obj.id qs = Order.objects.filter(cart__id=cart_id) if qs.count() == 1: order_obj = qs.first() order_obj.update_total() post_save.connect(post_save_cart_total, sender=Cart) def post_save_order(sender, instance, created, *args, **kwargs): #print("running") if created: print("Updating... first") instance.update_total() post_save.connect(post_save_order, sender=Order) class ProductPurchaseQuerySet(models.query.QuerySet): def active(self): return self.filter(refunded=False) def digital(self): return self.filter(product__is_digital=True) def by_request(self, request): billing_profile, created = BillingProfile.objects.new_or_get(request) return self.filter(billing_profile=billing_profile) class ProductPurchaseManager(models.Manager): def get_queryset(self): return ProductPurchaseQuerySet(self.model, using=self._db) def all(self): return self.get_queryset().active() def digital(self): return self.get_queryset().active().digital() def by_request(self, request): return self.get_queryset().by_request(request) def products_by_id(self, request): qs = self.by_request(request).digital() ids_ = [x.product.id for x in qs] return ids_ def products_by_request(self, request): ids_ = self.products_by_id(request) products_qs = Product.objects.filter(id__in=ids_).distinct() return products_qs class ProductPurchase(models.Model): order_id = models.CharField(max_length=120) billing_profile = models.ForeignKey(BillingProfile) # billingprofile.productpurchase_set.all() product = models.ForeignKey(Product) # product.productpurchase_set.count() refunded = models.BooleanField(default=False) updated = models.DateTimeField(auto_now=True) timestamp = models.DateTimeField(auto_now_add=True) objects = ProductPurchaseManager() def __str__(self): return self.product.title ================================================ FILE: src/orders/templates/orders/library.html ================================================ {% extends "base.html" %} {% block content %}

Library

{% for object in object_list %} {% empty %} {% endfor %}
ProductDownload
{{ object.title }} {% for download in object.get_downloads %} {{ download.display_name }}
{% endfor %}

No orders yet.

{% endblock %} ================================================ FILE: src/orders/templates/orders/order_detail.html ================================================ {% extends "base.html" %} {% block content %}

Order {{ object.order_id }}


Items: {% for product in object.cart.products.all %}{{ product }}{% if not forloop.last %}, {% endif %}{% endfor %}

Shipping Address: {{ object.shipping_address_final }}

Billing Address: {{ object.billing_address_final }}

Subtotal: {{ object.cart.total }}

Shipping Total: {{ object.shipping_total }}

Order Total: {{ object.total }}

Order Status: {{ object.get_status }}

{% endblock %} ================================================ FILE: src/orders/templates/orders/order_list.html ================================================ {% extends "base.html" %} {% block content %}

Orders

{% for object in object_list %} {% empty %} {% endfor %}
Order IdStatusTotal
{{ object.order_id }} {{ object.get_status }} {{ object.total }}

No orders yet.

{% endblock %} ================================================ FILE: src/orders/tests.py ================================================ from django.test import TestCase # Create your tests here. ================================================ FILE: src/orders/urls.py ================================================ from django.conf.urls import url from .views import ( OrderListView, OrderDetailView, VerifyOwnership ) urlpatterns = [ url(r'^$', OrderListView.as_view(), name='list'), url(r'^endpoint/verify/ownership/$', VerifyOwnership.as_view(), name='verify-ownership'), url(r'^(?P[0-9A-Za-z]+)/$', OrderDetailView.as_view(), name='detail'), ] ================================================ FILE: src/orders/views.py ================================================ from django.contrib.auth.mixins import LoginRequiredMixin from django.http import Http404, JsonResponse from django.views.generic import View, ListView, DetailView from django.shortcuts import render from billing.models import BillingProfile from .models import Order, ProductPurchase class OrderListView(LoginRequiredMixin, ListView): def get_queryset(self): return Order.objects.by_request(self.request).not_created() class OrderDetailView(LoginRequiredMixin, DetailView): def get_object(self): #return Order.objects.get(id=self.kwargs.get('id')) #return Order.objects.get(slug=self.kwargs.get('slug')) qs = Order.objects.by_request( self.request ).filter( order_id = self.kwargs.get('order_id') ) if qs.count() == 1: return qs.first() raise Http404 class LibraryView(LoginRequiredMixin, ListView): template_name = 'orders/library.html' def get_queryset(self): return ProductPurchase.objects.products_by_request(self.request) #.by_request(self.request).digital() class VerifyOwnership(View): def get(self, request, *args, **kwargs): if request.is_ajax(): data = request.GET product_id = request.GET.get('product_id', None) if product_id is not None: product_id = int(product_id) ownership_ids = ProductPurchase.objects.products_by_id(request) if product_id in ownership_ids: return JsonResponse({'owner': True}) return JsonResponse({'owner': False}) raise Http404 ================================================ FILE: src/products/__init__.py ================================================ ================================================ FILE: src/products/admin.py ================================================ from django.contrib import admin from .models import Product, ProductFile class ProductFileInline(admin.TabularInline): model = ProductFile extra = 1 class ProductAdmin(admin.ModelAdmin): list_display = ['__str__', 'slug', 'is_digital'] inlines = [ProductFileInline] class Meta: model = Product admin.site.register(Product, ProductAdmin) ================================================ FILE: src/products/apps.py ================================================ from django.apps import AppConfig class ProductsConfig(AppConfig): name = 'products' ================================================ FILE: src/products/fixtures/products.json ================================================ [ { "model": "products.product", "pk": 1, "fields": { "title": "T-Shirt", "slug": "t-shirt", "description": "This is an awesome shirt. Buy it. :)", "price": "39.99", "image": "", "featured": false, "active": true, "timestamp": "2017-09-18T19:29:03.347Z" } }, { "model": "products.product", "pk": 3, "fields": { "title": "Hat", "slug": "hat", "description": "This is my awesome hat", "price": "39.99", "image": "products/2969889474/2969889474.jpg", "featured": false, "active": true, "timestamp": "2017-09-18T19:29:03.347Z" } }, { "model": "products.product", "pk": 4, "fields": { "title": "Lorem Ipsum", "slug": "lorem-ipsum", "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed hendrerit venenatis feugiat. Proin blandit odio nec sem dignissim, ac fermentum sapien ornare. Praesent libero sem, mattis id ultricies eu, convallis ac ligula. Nulla porta ornare felis, ac elementum ante dapibus eu. Proin vitae vulputate sapien. Integer interdum dolor ante, in imperdiet est elementum molestie. In eu dui placerat, egestas diam ac, ultrices dui. Vivamus tincidunt, dui faucibus feugiat eleifend, eros sapien mollis metus, finibus gravida arcu sapien eu libero. Donec a ipsum rutrum, fringilla metus eu, sodales nisl. Vivamus eu condimentum sapien, sit amet malesuada nibh. Phasellus blandit, elit ullamcorper facilisis pulvinar, leo nunc congue augue, mollis efficitur eros turpis quis leo.\r\n\r\nMauris rutrum nunc vel libero porta, ut feugiat turpis rhoncus. Vestibulum vel mauris mi. Ut vitae dolor a neque commodo tincidunt semper id augue. Proin vehicula ex justo, vitae aliquet ligula cursus luctus. Vivamus a euismod lorem. Ut lacinia commodo faucibus. Proin malesuada rutrum porttitor. Quisque ac enim quis dui sollicitudin laoreet. Vivamus velit dui, accumsan eget egestas a, pharetra a nibh. Suspendisse ornare nunc quis euismod commodo. Morbi fringilla mauris nec eros placerat tempor. Ut facilisis consectetur lorem, sed imperdiet nulla tristique ac. Duis tristique id odio ut ornare.\r\n\r\nAliquam dui orci, pulvinar sit amet nisi at, blandit ullamcorper libero. Maecenas pharetra diam quis eros mattis, eu rhoncus augue efficitur. Sed cursus nulla ut dolor molestie consectetur. Praesent faucibus dignissim pulvinar. Nulla hendrerit risus in mattis ultricies. Quisque vitae lacinia tellus, ut finibus metus. Donec velit enim, pretium vitae ante blandit, tempus auctor mauris. Donec mattis metus et nisi ullamcorper, non posuere sapien tincidunt. Phasellus molestie pharetra augue. Quisque eget arcu magna. Aliquam mollis tortor tellus, vitae tempus lectus aliquet non. Sed vulputate dolor elit, ac semper velit auctor ac.\r\n\r\nMauris laoreet libero libero, sed sodales turpis euismod et. Maecenas vehicula egestas diam, quis volutpat metus cursus id. Nunc faucibus convallis hendrerit. Integer porttitor elit nec magna dapibus, ac tempus neque lacinia. Donec vel purus quis sem viverra gravida. Maecenas gravida tempor odio, vitae aliquet est facilisis vel. Nam sodales, elit ut ornare iaculis, ipsum orci aliquet tellus, eget consequat enim felis auctor leo. Quisque a mi mauris. Duis euismod justo ut ipsum tincidunt tincidunt. Aliquam erat volutpat. Sed vitae auctor enim, mattis laoreet arcu. Ut finibus sit amet velit vulputate pellentesque. Mauris non facilisis arcu, vel ultrices leo. Etiam fermentum urna vitae eros fermentum, vitae tincidunt arcu tristique.\r\n\r\nAliquam luctus eu massa nec condimentum. Pellentesque augue eros, lacinia at tortor non, feugiat convallis nisi. Morbi volutpat sagittis sapien ut sollicitudin. Nulla iaculis rhoncus neque eget varius. Donec commodo ultricies blandit. Quisque turpis dui, tincidunt in eros eu, sagittis luctus risus. Suspendisse molestie sapien placerat velit laoreet, non consequat mauris eleifend. Cras condimentum fermentum lorem. Donec laoreet neque nibh, ut imperdiet dui ullamcorper quis. Vestibulum at turpis at risus porttitor bibendum et vel dolor.\r\n\r\nPraesent pretium imperdiet leo, eu auctor arcu congue nec. Maecenas feugiat mauris elit. Vivamus vel sollicitudin metus, ut tempus ligula. Suspendisse non aliquet justo. Proin scelerisque cursus metus, in placerat ligula dignissim et. Duis fermentum ante dolor, aliquet malesuada velit feugiat vel. Morbi et sem in elit luctus vehicula vitae a nunc. Fusce ex purus, suscipit ac accumsan sed, scelerisque vel purus. In hac habitasse platea dictumst. Pellentesque eget nulla ac dolor porttitor ultricies. Nam eleifend massa eget justo suscipit viverra. In vel ligula turpis. Vestibulum ultricies, nibh vitae condimentum finibus, odio felis condimentum ipsum, in finibus leo dolor id turpis. Vivamus laoreet libero sit amet pulvinar mattis.\r\n\r\nPellentesque scelerisque imperdiet dui ac lacinia. Vivamus mi quam, condimentum ac gravida vitae, commodo eget turpis. Cras iaculis diam in elementum scelerisque. Maecenas ultricies, est quis posuere tempus, risus libero consequat augue, quis rutrum urna nulla a mauris. Quisque eleifend aliquam consectetur. Nulla consequat blandit molestie. Nam id facilisis tellus. In eget sem ac tellus lobortis pellentesque sagittis ac tellus.\r\n\r\nMorbi a ipsum dolor. Donec augue ipsum, faucibus id mauris nec, bibendum pellentesque magna. Etiam eleifend urna vel libero accumsan consequat. Praesent molestie diam eu urna dignissim, et tristique felis rutrum. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Praesent ante magna, ornare nec fermentum nec, dictum ut nunc. Donec sed nunc rutrum, sollicitudin dolor nec, cursus felis. Integer ut dui sed ligula placerat lobortis in ac felis.\r\n\r\nAenean pretium turpis et ornare egestas. Curabitur egestas, sapien vitae tempor interdum, ante nisl auctor elit, at dictum lectus turpis sit amet lacus. Pellentesque lorem odio, lacinia quis augue ultricies, tincidunt aliquet dui. Fusce blandit nunc id ullamcorper scelerisque. Nunc eget ornare mi. Donec ac odio suscipit, pharetra libero at, hendrerit leo. Duis feugiat sapien eget augue rutrum malesuada. In faucibus, dolor sed congue aliquet, sapien massa gravida ipsum, eu sagittis leo tortor in metus. Ut egestas vehicula mollis.\r\n\r\nNulla tempus mi ac mauris pellentesque, non pellentesque risus luctus. Maecenas non nibh euismod, vestibulum mauris sit amet, malesuada augue. Aenean ut egestas magna. Integer sagittis mattis faucibus. Nulla luctus nisi diam, sit amet euismod magna laoreet a. Ut vehicula nibh ut sem blandit, nec congue ligula cursus. Sed eget nulla at lorem finibus rutrum. Nunc sagittis sem in mattis sagittis. Fusce id tincidunt nibh. Fusce rutrum nisi at leo cursus, eget rhoncus nibh porttitor. Maecenas maximus a augue eu tempor.\r\n\r\nVivamus tristique interdum congue. Phasellus feugiat dui augue, et consectetur erat venenatis nec. Cras ut tempus metus. Sed vestibulum pulvinar odio, eget vehicula orci lobortis at. Nulla purus est, gravida sed libero in, sollicitudin aliquam ante. Mauris non nisi quis sapien laoreet gravida sed sit amet libero. Vestibulum lacinia porttitor felis, quis maximus tortor laoreet quis. Nulla consequat, est eu vestibulum convallis, eros nisi vehicula nibh, sed pulvinar felis risus vitae ex. Proin cursus congue ornare. Duis quis eleifend arcu. Maecenas dictum ligula at risus imperdiet condimentum. Phasellus malesuada neque non mollis auctor. Sed in ultricies risus, non porta ex.\r\n\r\nProin gravida tortor dictum accumsan venenatis. Pellentesque euismod nisl tortor. Nullam interdum felis ut nulla egestas vehicula. Phasellus enim diam, malesuada a nisl vel, pellentesque malesuada massa. Curabitur pellentesque feugiat lorem vel ultrices. Vestibulum felis nisi, semper in augue vitae, blandit feugiat purus. Duis dolor risus, rhoncus ac semper et, finibus a orci. Aliquam hendrerit ligula eget velit consequat tincidunt. Integer mollis sapien in lacus rutrum, ut efficitur dui ultrices. Phasellus ut risus placerat, accumsan massa id, rhoncus augue.\r\n\r\nDonec nisi felis, condimentum in viverra id, pharetra quis augue. Donec ac quam ut dui bibendum viverra. Vivamus vel justo sed elit euismod iaculis. Fusce molestie mattis libero sit amet sagittis. Integer a nisl eu massa porta dignissim. Phasellus lectus risus, sagittis eu lorem eu, elementum ullamcorper tellus. Proin sed orci sed dolor posuere dignissim. Quisque pulvinar purus eu neque pretium, vehicula elementum ligula elementum. Sed gravida consectetur augue, eget dignissim elit euismod a. Sed commodo pulvinar arcu, sit amet ornare tortor placerat venenatis.\r\n\r\nPhasellus in lobortis nulla. Morbi et neque erat. Nunc porta commodo odio, in elementum metus porttitor scelerisque. Vestibulum lacinia tristique lacus eget dictum. Donec in orci mi. Mauris semper sodales mi vitae pellentesque. Donec iaculis congue accumsan. Fusce ut rutrum ex, eget porta turpis. Suspendisse scelerisque ex nec risus fermentum, nec elementum nisl iaculis. Maecenas non leo lacus. Morbi lacinia tortor purus, vel aliquam lorem laoreet eget. Vivamus rhoncus congue urna, at finibus est sodales et. Morbi sodales lacus ut ante consequat, egestas placerat eros tincidunt. Pellentesque maximus ligula leo, sed dictum metus ultrices in.\r\n\r\nInteger sagittis sem non nisl suscipit, sed congue leo ultrices. Vestibulum consectetur interdum venenatis. Donec egestas feugiat erat sed molestie. Vestibulum eleifend lectus nec est dapibus, in egestas ante ultrices. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In iaculis sed sapien at feugiat. Integer enim dolor, iaculis vel tortor nec, fermentum dictum ligula. Cras ornare cursus magna, ut scelerisque mi pellentesque quis.\r\n\r\nMorbi pulvinar, arcu eget vestibulum congue, diam lorem tempus risus, at vehicula nibh dui eget massa. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam aliquam velit dui, non aliquam nulla mattis ac. Suspendisse dapibus pharetra accumsan. Donec sem justo, ullamcorper id volutpat sit amet, placerat lobortis libero. Etiam vestibulum sagittis dui. Aliquam libero ipsum, dictum rhoncus nulla non, pellentesque aliquet mi. Vivamus sed porta ex. Nam finibus orci in porta semper. Donec tincidunt euismod urna et blandit. Vivamus lobortis placerat consectetur. Nullam porttitor, magna ut tincidunt tincidunt, nibh justo facilisis nulla, quis laoreet nisl mauris eu sem. Nunc a lobortis felis.\r\n\r\nInteger at mi sit amet magna venenatis imperdiet. Curabitur interdum quam sit amet urna fringilla, sed tristique velit posuere. Quisque hendrerit laoreet orci vitae rhoncus. Sed finibus, nibh sed hendrerit elementum, purus mi lobortis arcu, a fermentum nisl arcu id quam. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed fermentum erat eleifend risus accumsan faucibus. Fusce ultrices sollicitudin sem vel viverra. Suspendisse sodales ipsum eget ultrices accumsan. Pellentesque vel eros ante. Sed tristique egestas tincidunt. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.\r\n\r\nDonec blandit turpis non justo hendrerit tincidunt. Aliquam dolor metus, volutpat a laoreet vel, efficitur at metus. Nam venenatis sem dui, vitae tincidunt nulla venenatis sit amet. Curabitur tristique, dolor sed aliquet molestie, ex erat semper mi, in ornare nunc mauris ut justo. Integer iaculis sollicitudin magna, sit amet interdum sapien pharetra ut. Mauris aliquam congue eros, non pharetra mi imperdiet nec. Aliquam at porta risus, eu imperdiet ante. Nunc consectetur eu elit ut facilisis. Praesent sed neque risus. Nunc euismod eros mauris, eget congue elit volutpat ut. Nam sit amet neque massa.\r\n\r\nNam sit amet est vel sem sagittis varius. Cras ornare eu turpis vitae varius. Integer sit amet ex sed arcu semper consectetur. Proin ac libero iaculis, porttitor mi vel, accumsan lorem. Maecenas venenatis lobortis justo. Integer aliquet, elit nec faucibus euismod, quam purus suscipit lorem, sit amet sollicitudin nisl purus sit amet ex. Aenean ultrices libero a felis porttitor, id malesuada erat consectetur. Suspendisse velit nulla, egestas sit amet scelerisque eget, elementum eget lectus. Nullam at accumsan ipsum. In placerat, ante vitae scelerisque sollicitudin, dui nisi lobortis diam, eget maximus turpis arcu tristique est. Cras et nibh porta, hendrerit lorem ut, fringilla risus.\r\n\r\nQuisque eu nulla molestie, fermentum arcu nec, pharetra orci. Nulla molestie, neque ac ullamcorper aliquam, mauris lacus aliquam libero, at auctor diam justo sit amet eros. Integer vehicula, mauris sit amet aliquet elementum, libero urna commodo purus, quis commodo dolor orci id diam. Aliquam erat volutpat. Suspendisse quis suscipit libero. Aliquam placerat, dui nec vulputate auctor, mauris tortor fermentum felis, nec lacinia felis metus nec urna. Nulla vitae metus luctus erat fermentum consectetur. Nulla facilisi. Donec turpis ante, luctus vel turpis ut, rutrum sagittis urna. Quisque ut tellus ligula. Mauris eget magna lectus. Fusce at suscipit sapien. Praesent fringilla tincidunt ullamcorper. Duis id sollicitudin neque, sit amet rhoncus sem. Sed lacinia odio neque, nec lacinia ante dictum vitae. Nullam in suscipit augue.\r\n\r\nSed nulla lacus, sagittis quis purus eu, pulvinar tincidunt libero. Etiam sed elementum erat. Donec lacinia nulla sed justo pulvinar ultricies. Suspendisse lorem ante, placerat vitae facilisis sit amet, commodo ac velit. Etiam in sapien commodo, vestibulum augue ac, convallis enim. Aenean ut magna sapien. Praesent fermentum odio risus, imperdiet tempor libero sagittis non. Aliquam euismod bibendum nisi a suscipit. Morbi enim ex, varius vitae lacus et, sodales luctus elit. Phasellus et tellus velit.\r\n\r\nQuisque a nibh ac dolor congue congue. Mauris at tempus sapien. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce dapibus magna sit amet malesuada accumsan. Nullam velit leo, ultricies et interdum convallis, varius ut elit. Cras facilisis faucibus est, vitae tempor ex placerat a. In mattis vel nulla nec volutpat. Maecenas tristique sodales venenatis. In dapibus, urna sit amet aliquam rhoncus, mi neque ultricies dolor, in pretium leo metus quis lacus. Mauris non consectetur lacus, sit amet imperdiet mi. Morbi egestas urna vel enim fermentum, vitae vestibulum neque congue. Vivamus tempus ipsum iaculis congue placerat. Nunc odio quam, bibendum mattis molestie id, sollicitudin consectetur lacus. Cras sagittis pharetra nibh vel scelerisque. Aenean in erat pellentesque, tempus libero non, convallis dolor. Sed et lorem in sapien fermentum condimentum.\r\n\r\nCurabitur eu augue a risus elementum sollicitudin. Aliquam erat volutpat. Fusce porttitor pulvinar ipsum, vel ornare erat pharetra non. Aliquam et metus vitae mi sollicitudin tristique vel vitae nulla. Nullam lobortis arcu eu iaculis eleifend. Vivamus magna nibh, ultrices eu est efficitur, dictum molestie odio. Donec ullamcorper, metus eu hendrerit cursus, erat nulla convallis quam, et efficitur nisi eros eget erat. Sed id metus dui. Nulla facilisi. Nulla facilisi. Pellentesque dignissim venenatis iaculis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\nProin viverra, quam vitae egestas iaculis, tellus est consequat urna, vitae vehicula arcu dolor sit amet nulla. Phasellus sit amet purus eu lorem lacinia iaculis ac id mi. In sollicitudin urna in pellentesque rutrum. Sed efficitur felis at sagittis efficitur. Duis faucibus aliquet est, at commodo ipsum interdum sit amet. Cras eu libero hendrerit, elementum ex a, placerat ligula. Vestibulum nec orci ut metus blandit suscipit vel vel magna. Nulla facilisi. Integer porta rhoncus nulla vitae pharetra.\r\n\r\nMorbi lacinia nulla quis libero viverra efficitur. Sed nec magna in mauris eleifend rutrum ac nec augue. Aliquam accumsan gravida aliquam. Curabitur vel diam at neque luctus hendrerit eget non lacus. In nec ligula lorem. Mauris eget urna rhoncus, hendrerit sapien ut, sagittis urna. Etiam porta, lacus id auctor mattis, nulla diam euismod mauris, vitae fermentum nulla dolor id eros. Pellentesque convallis tellus velit, sed porta augue tincidunt at. Sed efficitur leo quis sapien lobortis aliquam. Aenean ac bibendum felis. Nulla lectus elit, dapibus nec fringilla nec, lacinia sit amet eros. Fusce egestas ipsum felis, id gravida orci dapibus consectetur. Vestibulum sed ultrices metus.\r\n\r\nCurabitur a euismod justo, eget vehicula augue. Morbi at aliquam augue, vitae auctor orci. Nam dignissim posuere nunc a euismod. Nunc iaculis dui ut justo vulputate euismod. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse sodales mi non egestas sollicitudin. Mauris ultricies leo libero, non tincidunt libero sollicitudin non. Morbi dictum eget purus quis placerat. Vestibulum consequat, ipsum molestie venenatis fringilla, orci ex luctus elit, quis bibendum tortor ante a ligula. Nulla at leo rutrum, accumsan diam sed, consectetur ligula. Donec dignissim vitae elit at finibus. Vivamus a euismod lacus. Donec in euismod erat. Quisque tempor augue eleifend, dignissim enim ut, ultrices est. Nulla lacinia pretium augue non lacinia. Aenean auctor odio ac risus elementum tempor.\r\n\r\nCurabitur aliquam orci elit, id consequat nunc consequat quis. Duis sed elit vel magna aliquam convallis. Praesent viverra vel urna vel luctus. Maecenas cursus elit eu suscipit aliquet. Pellentesque sit amet lorem vel erat luctus vestibulum. Proin rhoncus leo a dui ullamcorper consectetur. Curabitur vel nunc nec enim mollis dictum sit amet sit amet lorem. Aliquam pharetra non magna sed viverra.\r\n\r\nUt eu lorem in purus aliquet lacinia at non nulla. Ut auctor interdum nisi, nec aliquam ligula viverra nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque posuere lacus arcu. Sed ipsum orci, tempor quis eleifend a, hendrerit et augue. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam turpis dolor, rhoncus ac aliquam et, maximus ac libero. Vestibulum sollicitudin, eros in iaculis posuere, ante ante vulputate leo, sed venenatis nisi felis eu augue. Donec in sapien non elit ultrices viverra ac at nibh. Vestibulum sagittis rutrum turpis nec luctus. Aliquam sit amet urna ipsum. Sed ornare condimentum ipsum nec bibendum.\r\n\r\nMaecenas et tempor nisi. Sed eleifend lacus sit amet feugiat vestibulum. Vestibulum condimentum lacus vel leo finibus luctus. Maecenas urna dui, feugiat vehicula nibh vitae, gravida consequat tortor. Sed vitae orci vel lacus efficitur accumsan. Aenean tincidunt ligula a nibh pretium, quis viverra nunc laoreet. Cras varius sapien ac nunc vulputate dictum et id lorem. Ut in ante pretium, finibus enim a, malesuada lectus. Curabitur eu nisl venenatis, efficitur tellus vel, tincidunt velit. Aliquam a sem mattis ipsum condimentum venenatis eu ut orci. Curabitur sed justo tristique, varius justo vel, laoreet est. Nullam at felis non lacus faucibus porttitor.\r\n\r\nDonec lobortis dictum hendrerit. Aliquam lacinia mattis ullamcorper. Pellentesque sollicitudin lorem magna, nec interdum leo porttitor non. Nunc risus tellus, commodo nec turpis eget, lacinia venenatis lectus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Mauris eleifend sapien et ullamcorper malesuada. Suspendisse blandit erat ac malesuada malesuada. Phasellus ullamcorper ullamcorper risus quis venenatis. Nulla rutrum nibh magna, a elementum justo ornare ut.", "price": "99.99", "image": "", "featured": true, "active": true, "timestamp": "2017-09-18T19:29:03.347Z" } }, { "model": "products.product", "pk": 5, "fields": { "title": "T-shirt", "slug": "t-shirt-y7f6", "description": "another one?>?", "price": "39.99", "image": "", "featured": false, "active": true, "timestamp": "2017-09-18T19:29:03.347Z" } } ] ================================================ FILE: src/products/migrations/0001_initial.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-01 19:03 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Product', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=120)), ('description', models.TextField()), ], ), ] ================================================ FILE: src/products/migrations/0002_product_price.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-01 19:07 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('products', '0001_initial'), ] operations = [ migrations.AddField( model_name='product', name='price', field=models.DecimalField(decimal_places=2, default=39.99, max_digits=20), ), ] ================================================ FILE: src/products/migrations/0003_product_image.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-01 21:48 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('products', '0002_product_price'), ] operations = [ migrations.AddField( model_name='product', name='image', field=models.FileField(blank=True, null=True, upload_to='products/'), ), ] ================================================ FILE: src/products/migrations/0004_auto_20170901_2159.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-01 21:59 from __future__ import unicode_literals from django.db import migrations, models import products.models class Migration(migrations.Migration): dependencies = [ ('products', '0003_product_image'), ] operations = [ migrations.AlterField( model_name='product', name='image', field=models.ImageField(blank=True, null=True, upload_to=products.models.upload_image_path), ), ] ================================================ FILE: src/products/migrations/0005_product_featured.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-01 22:39 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('products', '0004_auto_20170901_2159'), ] operations = [ migrations.AddField( model_name='product', name='featured', field=models.BooleanField(default=False), ), ] ================================================ FILE: src/products/migrations/0006_auto_20170901_2254.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-01 22:54 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('products', '0005_product_featured'), ] operations = [ migrations.AddField( model_name='product', name='active', field=models.BooleanField(default=True), ), migrations.AddField( model_name='product', name='slug', field=models.SlugField(default='abc'), preserve_default=False, ), ] ================================================ FILE: src/products/migrations/0007_auto_20170901_2254.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-01 22:54 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('products', '0006_auto_20170901_2254'), ] operations = [ migrations.AlterField( model_name='product', name='slug', field=models.SlugField(blank=True), ), ] ================================================ FILE: src/products/migrations/0008_auto_20170901_2300.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-01 23:00 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('products', '0007_auto_20170901_2254'), ] operations = [ migrations.AlterField( model_name='product', name='slug', field=models.SlugField(blank=True, unique=True), ), ] ================================================ FILE: src/products/migrations/0009_product_timestamp.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-18 19:28 from __future__ import unicode_literals from django.db import migrations, models import django.utils.timezone class Migration(migrations.Migration): dependencies = [ ('products', '0008_auto_20170901_2300'), ] operations = [ migrations.AddField( model_name='product', name='timestamp', field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), preserve_default=False, ), ] ================================================ FILE: src/products/migrations/0010_product_is_digital.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-07 22:47 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('products', '0009_product_timestamp'), ] operations = [ migrations.AddField( model_name='product', name='is_digital', field=models.BooleanField(default=False), ), ] ================================================ FILE: src/products/migrations/0011_productfile.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-08 23:07 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('products', '0010_product_is_digital'), ] operations = [ migrations.CreateModel( name='ProductFile', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('file', models.FileField(upload_to='products/')), ('product', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='products.Product')), ], ), ] ================================================ FILE: src/products/migrations/0012_auto_20171108_2325.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-08 23:25 from __future__ import unicode_literals import django.core.files.storage from django.db import migrations, models import products.models class Migration(migrations.Migration): dependencies = [ ('products', '0011_productfile'), ] operations = [ migrations.AlterField( model_name='productfile', name='file', field=models.FileField(storage=django.core.files.storage.FileSystemStorage(location='/Users/cfe/Dev/ecommerce/static_cdn/protected_media'), upload_to=products.models.upload_product_file_loc), ), ] ================================================ FILE: src/products/migrations/0013_auto_20171109_0023.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-09 00:23 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('products', '0012_auto_20171108_2325'), ] operations = [ migrations.AddField( model_name='productfile', name='free', field=models.BooleanField(default=False), ), migrations.AddField( model_name='productfile', name='user_required', field=models.BooleanField(default=False), ), ] ================================================ FILE: src/products/migrations/0014_auto_20171116_0011.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-16 00:11 from __future__ import unicode_literals from django.db import migrations, models import products.models import storages.backends.s3boto3 class Migration(migrations.Migration): dependencies = [ ('products', '0013_auto_20171109_0023'), ] operations = [ migrations.AlterField( model_name='productfile', name='file', field=models.FileField(storage=storages.backends.s3boto3.S3Boto3Storage(location='protected'), upload_to=products.models.upload_product_file_loc), ), ] ================================================ FILE: src/products/migrations/0015_productfile_name.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-16 00:12 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('products', '0014_auto_20171116_0011'), ] operations = [ migrations.AddField( model_name='productfile', name='name', field=models.CharField(blank=True, max_length=120, null=True), ), ] ================================================ FILE: src/products/migrations/__init__.py ================================================ ================================================ FILE: src/products/models.py ================================================ import random import os from django.conf import settings from django.core.files.storage import FileSystemStorage from django.db import models from django.db.models import Q from django.db.models.signals import pre_save, post_save from django.urls import reverse from ecommerce.aws.download.utils import AWSDownload from ecommerce.aws.utils import ProtectedS3Storage from ecommerce.utils import unique_slug_generator, get_filename def get_filename_ext(filepath): base_name = os.path.basename(filepath) name, ext = os.path.splitext(base_name) return name, ext def upload_image_path(instance, filename): # print(instance) #print(filename) new_filename = random.randint(1,3910209312) name, ext = get_filename_ext(filename) final_filename = '{new_filename}{ext}'.format(new_filename=new_filename, ext=ext) return "products/{new_filename}/{final_filename}".format( new_filename=new_filename, final_filename=final_filename ) class ProductQuerySet(models.query.QuerySet): def active(self): return self.filter(active=True) def featured(self): return self.filter(featured=True, active=True) def search(self, query): lookups = (Q(title__icontains=query) | Q(description__icontains=query) | Q(price__icontains=query) | Q(tag__title__icontains=query) ) # tshirt, t-shirt, t shirt, red, green, blue, return self.filter(lookups).distinct() class ProductManager(models.Manager): def get_queryset(self): return ProductQuerySet(self.model, using=self._db) def all(self): return self.get_queryset().active() def featured(self): #Product.objects.featured() return self.get_queryset().featured() def get_by_id(self, id): qs = self.get_queryset().filter(id=id) # Product.objects == self.get_queryset() if qs.count() == 1: return qs.first() return None def search(self, query): return self.get_queryset().active().search(query) class Product(models.Model): title = models.CharField(max_length=120) slug = models.SlugField(blank=True, unique=True) description = models.TextField() price = models.DecimalField(decimal_places=2, max_digits=20, default=39.99) image = models.ImageField(upload_to=upload_image_path, null=True, blank=True) featured = models.BooleanField(default=False) active = models.BooleanField(default=True) timestamp = models.DateTimeField(auto_now_add=True) is_digital = models.BooleanField(default=False) # User Library objects = ProductManager() def get_absolute_url(self): #return "/products/{slug}/".format(slug=self.slug) return reverse("products:detail", kwargs={"slug": self.slug}) def __str__(self): return self.title def __unicode__(self): return self.title @property def name(self): return self.title def get_downloads(self): qs = self.productfile_set.all() return qs def product_pre_save_receiver(sender, instance, *args, **kwargs): if not instance.slug: instance.slug = unique_slug_generator(instance) pre_save.connect(product_pre_save_receiver, sender=Product) def upload_product_file_loc(instance, filename): slug = instance.product.slug #id_ = 0 id_ = instance.id if id_ is None: Klass = instance.__class__ qs = Klass.objects.all().order_by('-pk') if qs.exists(): id_ = qs.first().id + 1 else: id_ = 0 if not slug: slug = unique_slug_generator(instance.product) location = "product/{slug}/{id}/".format(slug=slug, id=id_) return location + filename #"path/to/filename.mp4" class ProductFile(models.Model): product = models.ForeignKey(Product) name = models.CharField(max_length=120, null=True, blank=True) file = models.FileField( upload_to=upload_product_file_loc, storage=ProtectedS3Storage(), #FileSystemStorage(location=settings.PROTECTED_ROOT) ) # path #filepath = models.TextField() # '/protected/path/to/the/file/myfile.mp3' free = models.BooleanField(default=False) # purchase required user_required = models.BooleanField(default=False) # user doesn't matter def __str__(self): return str(self.file.name) @property def display_name(self): og_name = get_filename(self.file.name) if self.name: return self.name return og_name def get_default_url(self): return self.product.get_absolute_url() def generate_download_url(self): bucket = getattr(settings, 'AWS_STORAGE_BUCKET_NAME') region = getattr(settings, 'S3DIRECT_REGION') access_key = getattr(settings, 'AWS_ACCESS_KEY_ID') secret_key = getattr(settings, 'AWS_SECRET_ACCESS_KEY') if not secret_key or not access_key or not bucket or not region: return "/product-not-found/" PROTECTED_DIR_NAME = getattr(settings, 'PROTECTED_DIR_NAME', 'protected') path = "{base}/{file_path}".format(base=PROTECTED_DIR_NAME, file_path=str(self.file)) aws_dl_object = AWSDownload(access_key, secret_key, bucket, region) file_url = aws_dl_object.generate_url(path, new_filename=self.display_name) return file_url def get_download_url(self): # detail view return reverse("products:download", kwargs={"slug": self.product.slug, "pk": self.pk} ) ================================================ FILE: src/products/templates/products/detail.html ================================================ {% extends "base.html" %} {% block content %}

{{ object.title }}

{{ object.timestamp|timesince }} ago {{ object.description|linebreaks }}
{% if object.image %} {% endif %}
{% include 'products/snippets/update-cart.html' with product=object cart=cart %}
{% endblock %} ================================================ FILE: src/products/templates/products/featured-detail.html ================================================ {{ object.title }}
{{ object.description }}
{% if object.image %} {% endif %} ================================================ FILE: src/products/templates/products/list.html ================================================ {% extends "base.html" %} {% block content %}
{% for obj in object_list %}
{% include 'products/snippets/card.html' with instance=obj %}
{% endfor %}
{% endblock %} ================================================ FILE: src/products/templates/products/snippets/card.html ================================================
{% if instance.image %} {{ instance.title}} logo {% endif %}

{{ instance.title }}

{{ instance.description|linebreaks|truncatewords:14 }}

View {% include 'products/snippets/update-cart.html' with product=instance cart=cart %}
================================================ FILE: src/products/templates/products/snippets/update-cart.html ================================================
{% csrf_token %} {% if product in cart.products.all %}
In cart
{% else %} {% endif %}
================================================ FILE: src/products/templates/products/user-history.html ================================================ {% extends "base.html" %} {% block content %}

Product View History


{% for obj in object_list %}
{{ forloop.counter }} {% include 'products/snippets/card.html' with instance=obj.content_object %}
{% endfor %}
{% endblock %} ================================================ FILE: src/products/tests.py ================================================ from django.test import TestCase # Create your tests here. ================================================ FILE: src/products/understanding_crud.md ================================================ ### Understanding CRUD Create -- POST Retrieve / List / Search -- GET Update -- PUT / Patch / POST Delete -- Delete ================================================ FILE: src/products/urls.py ================================================ from django.conf.urls import url from .views import ( ProductListView, ProductDetailSlugView, ProductDownloadView ) urlpatterns = [ url(r'^$', ProductListView.as_view(), name='list'), url(r'^(?P[\w-]+)/$', ProductDetailSlugView.as_view(), name='detail'), url(r'^(?P[\w-]+)/(?P\d+)/$', ProductDownloadView.as_view(), name='download'), ] ================================================ FILE: src/products/views.py ================================================ # from django.views import ListView from django.contrib import messages from django.contrib.auth.mixins import LoginRequiredMixin from django.http import Http404, HttpResponse, HttpResponseRedirect from django.views.generic import ListView, DetailView, View from django.shortcuts import render, get_object_or_404, redirect from analytics.mixins import ObjectViewedMixin from carts.models import Cart from .models import Product, ProductFile class ProductFeaturedListView(ListView): template_name = "products/list.html" def get_queryset(self, *args, **kwargs): request = self.request return Product.objects.all().featured() class ProductFeaturedDetailView(ObjectViewedMixin, DetailView): queryset = Product.objects.all().featured() template_name = "products/featured-detail.html" # def get_queryset(self, *args, **kwargs): # request = self.request # return Product.objects.featured() class UserProductHistoryView(LoginRequiredMixin, ListView): template_name = "products/user-history.html" def get_context_data(self, *args, **kwargs): context = super(UserProductHistoryView, self).get_context_data(*args, **kwargs) cart_obj, new_obj = Cart.objects.new_or_get(self.request) context['cart'] = cart_obj return context def get_queryset(self, *args, **kwargs): request = self.request views = request.user.objectviewed_set.by_model(Product, model_queryset=False) return views class ProductListView(ListView): template_name = "products/list.html" # def get_context_data(self, *args, **kwargs): # context = super(ProductListView, self).get_context_data(*args, **kwargs) # print(context) # return context def get_context_data(self, *args, **kwargs): context = super(ProductListView, self).get_context_data(*args, **kwargs) cart_obj, new_obj = Cart.objects.new_or_get(self.request) context['cart'] = cart_obj return context def get_queryset(self, *args, **kwargs): request = self.request return Product.objects.all() def product_list_view(request): queryset = Product.objects.all() context = { 'object_list': queryset } return render(request, "products/list.html", context) class ProductDetailSlugView(ObjectViewedMixin, DetailView): queryset = Product.objects.all() template_name = "products/detail.html" def get_context_data(self, *args, **kwargs): context = super(ProductDetailSlugView, self).get_context_data(*args, **kwargs) cart_obj, new_obj = Cart.objects.new_or_get(self.request) context['cart'] = cart_obj return context def get_object(self, *args, **kwargs): request = self.request slug = self.kwargs.get('slug') #instance = get_object_or_404(Product, slug=slug, active=True) try: instance = Product.objects.get(slug=slug, active=True) except Product.DoesNotExist: raise Http404("Not found..") except Product.MultipleObjectsReturned: qs = Product.objects.filter(slug=slug, active=True) instance = qs.first() except: raise Http404("Uhhmmm ") return instance import os from wsgiref.util import FileWrapper # this used in django from mimetypes import guess_type from django.conf import settings from orders.models import ProductPurchase class ProductDownloadView(View): def get(self, request, *args, **kwargs): slug = kwargs.get('slug') pk = kwargs.get('pk') downloads_qs = ProductFile.objects.filter(pk=pk, product__slug=slug) if downloads_qs.count() != 1: raise Http404("Download not found") download_obj = downloads_qs.first() # permission checks can_download = False user_ready = True if download_obj.user_required: if not request.user.is_authenticated(): user_ready = False purchased_products = Product.objects.none() if download_obj.free: can_download = True user_ready = True else: # not free purchased_products = ProductPurchase.objects.products_by_request(request) if download_obj.product in purchased_products: can_download = True if not can_download or not user_ready: messages.error(request, "You do not have access to download this item") return redirect(download_obj.get_default_url()) aws_filepath = download_obj.generate_download_url() print(aws_filepath) return HttpResponseRedirect(aws_filepath) # file_root = settings.PROTECTED_ROOT # filepath = download_obj.file.path # .url /media/ # final_filepath = os.path.join(file_root, filepath) # where the file is stored # with open(final_filepath, 'rb') as f: # wrapper = FileWrapper(f) # mimetype = 'application/force-download' # gussed_mimetype = guess_type(filepath)[0] # filename.mp4 # if gussed_mimetype: # mimetype = gussed_mimetype # response = HttpResponse(wrapper, content_type=mimetype) # response['Content-Disposition'] = "attachment;filename=%s" %(download_obj.name) # response["X-SendFile"] = str(download_obj.name) # return response #return redirect(download_obj.get_default_url()) class ProductDetailView(ObjectViewedMixin, DetailView): #queryset = Product.objects.all() template_name = "products/detail.html" def get_context_data(self, *args, **kwargs): context = super(ProductDetailView, self).get_context_data(*args, **kwargs) print(context) # context['abc'] = 123 return context def get_object(self, *args, **kwargs): request = self.request pk = self.kwargs.get('pk') instance = Product.objects.get_by_id(pk) if instance is None: raise Http404("Product doesn't exist") return instance # def get_queryset(self, *args, **kwargs): # request = self.request # pk = self.kwargs.get('pk') # return Product.objects.filter(pk=pk) def product_detail_view(request, pk=None, *args, **kwargs): # instance = Product.objects.get(pk=pk, featured=True) #id # instance = get_object_or_404(Product, pk=pk, featured=True) # try: # instance = Product.objects.get(id=pk) # except Product.DoesNotExist: # print('no product here') # raise Http404("Product doesn't exist") # except: # print("huh?") instance = Product.objects.get_by_id(pk) if instance is None: raise Http404("Product doesn't exist") #print(instance) # qs = Product.objects.filter(id=pk) # #print(qs) # if qs.exists() and qs.count() == 1: # len(qs) # instance = qs.first() # else: # raise Http404("Product doesn't exist") context = { 'object': instance } return render(request, "products/detail.html", context) ================================================ FILE: src/requirements.txt ================================================ boto3==1.4.7 boto==2.48.0 botocore==1.7.32 certifi==2017.7.27.1 chardet==3.0.4 dj-database-url django-storages django==1.11.17 docutils==0.14 gitdb2==2.0.3 gitpython==2.1.7 gunicorn==19.7.1 idna==2.6 jmespath==0.9.3 olefile==0.44 pillow pip==9.0.1 psycopg2-binary python-dateutil==2.6.1 pytz requests>=2.20.0 s3transfer==0.1.11 setuptools==36.6.0 six==1.11.0 smmap2==2.0.3 stripe urllib3>=1.23 wheel==0.30.0 ================================================ FILE: src/runtime.txt ================================================ python-3.6.2 ================================================ FILE: src/search/__init__.py ================================================ ================================================ FILE: src/search/admin.py ================================================ from django.contrib import admin # Register your models here. ================================================ FILE: src/search/apps.py ================================================ from django.apps import AppConfig class SearchConfig(AppConfig): name = 'search' ================================================ FILE: src/search/migrations/__init__.py ================================================ ================================================ FILE: src/search/models.py ================================================ from django.db import models # Create your models here. ================================================ FILE: src/search/templates/search/snippets/search-form.html ================================================
================================================ FILE: src/search/templates/search/view.html ================================================ {% extends "base.html" %} {% block content %}
{% if query %}
Results for {{ query }}
{% else %}
{% include 'search/snippets/search-form.html' %}

{% endif %}
{% for obj in object_list %}
{% include 'products/snippets/card.html' with instance=obj %} {% if forloop.counter|divisibleby:3 %}

{% elif forloop.counter|divisibleby:2 %}

{% else %}
{% endif %} {% endfor %} {% endblock %} ================================================ FILE: src/search/tests.py ================================================ from django.test import TestCase # Create your tests here. ================================================ FILE: src/search/urls.py ================================================ from django.conf.urls import url from .views import ( SearchProductView ) urlpatterns = [ url(r'^$', SearchProductView.as_view(), name='query'), ] ================================================ FILE: src/search/views.py ================================================ from django.shortcuts import render from django.views.generic import ListView from products.models import Product class SearchProductView(ListView): template_name = "search/view.html" def get_context_data(self, *args, **kwargs): context = super(SearchProductView, self).get_context_data(*args, **kwargs) query = self.request.GET.get('q') context['query'] = query # SearchQuery.objects.create(query=query) return context def get_queryset(self, *args, **kwargs): request = self.request method_dict = request.GET query = method_dict.get('q', None) # method_dict['q'] if query is not None: return Product.objects.search(query) return Product.objects.featured() ''' __icontains = field contains this __iexact = fields is exactly this ''' ================================================ FILE: src/static_my_proj/css/main.css ================================================ body { color: #ccc; } ================================================ FILE: src/static_my_proj/css/stripe-custom-style.css ================================================ /** * The CSS shown here will not be introduced in the Quickstart guide, but shows * how you can use CSS to style your Element's container. */ .StripeElement { background-color: white; padding: 8px 12px; border-radius: 4px; border: 1px solid transparent; box-shadow: 0 1px 3px 0 #e6ebf1; -webkit-transition: box-shadow 150ms ease; transition: box-shadow 150ms ease; } .StripeElement--focus { box-shadow: 0 1px 3px 0 #cfd7df; } .StripeElement--invalid { border-color: #fa755a; } .StripeElement--webkit-autofill { background-color: #fefde5 !important; } ================================================ FILE: src/static_my_proj/js/csrf.ajax.js ================================================ $(document).ready(function(){ // using jQuery function getCookie(name) { 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; } var csrftoken = getCookie('csrftoken'); function csrfSafeMethod(method) { // these HTTP methods do not require CSRF protection return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method)); } $.ajaxSetup({ beforeSend: function(xhr, settings) { if (!csrfSafeMethod(settings.type) && !this.crossDomain) { xhr.setRequestHeader("X-CSRFToken", csrftoken); } } }); }) ================================================ FILE: src/static_my_proj/js/ecommerce.js ================================================ $(document).ready(function(){ // Contact Form Handler var contactForm = $(".contact-form") var contactFormMethod = contactForm.attr("method") var contactFormEndpoint = contactForm.attr("action") // /abc/ function displaySubmitting(submitBtn, defaultText, doSubmit){ if (doSubmit){ submitBtn.addClass("disabled") submitBtn.html(" Sending...") } else { submitBtn.removeClass("disabled") submitBtn.html(defaultText) } } contactForm.submit(function(event){ event.preventDefault() var contactFormSubmitBtn = contactForm.find("[type='submit']") var contactFormSubmitBtnTxt = contactFormSubmitBtn.text() var contactFormData = contactForm.serialize() var thisForm = $(this) displaySubmitting(contactFormSubmitBtn, "", true) $.ajax({ method: contactFormMethod, url: contactFormEndpoint, data: contactFormData, success: function(data){ contactForm[0].reset() $.alert({ title: "Success!", content: data.message, theme: "modern", }) setTimeout(function(){ displaySubmitting(contactFormSubmitBtn, contactFormSubmitBtnTxt, false) }, 500) }, error: function(error){ console.log(error.responseJSON) var jsonData = error.responseJSON var msg = "" $.each(jsonData, function(key, value){ // key, value array index / object msg += key + ": " + value[0].message + "
" }) $.alert({ title: "Oops!", content: msg, theme: "modern", }) setTimeout(function(){ displaySubmitting(contactFormSubmitBtn, contactFormSubmitBtnTxt, false) }, 500) } }) }) // Auto Search var searchForm = $(".search-form") var searchInput = searchForm.find("[name='q']") // input name='q' var typingTimer; var typingInterval = 500 // .5 seconds var searchBtn = searchForm.find("[type='submit']") searchInput.keyup(function(event){ // key released clearTimeout(typingTimer) typingTimer = setTimeout(perfomSearch, typingInterval) }) searchInput.keydown(function(event){ // key pressed clearTimeout(typingTimer) }) function displaySearching(){ searchBtn.addClass("disabled") searchBtn.html(" Searching...") } function perfomSearch(){ displaySearching() var query = searchInput.val() setTimeout(function(){ window.location.href='/search/?q=' + query }, 1000) } // Cart + Add Products var productForm = $(".form-product-ajax") // #form-product-ajax function getOwnedProduct(productId, submitSpan){ var actionEndpoint = '/orders/endpoint/verify/ownership/' var httpMethod = 'GET' var data = { product_id: productId } var isOwner; $.ajax({ url: actionEndpoint, method: httpMethod, data: data, success: function(data){ console.log(data) console.log(data.owner) if (data.owner){ isOwner = true submitSpan.html("In Library") } else { isOwner = false } }, error: function(erorr){ console.log(error) } }) return isOwner } $.each(productForm, function(index, object){ var $this = $(this) var isUser = $this.attr("data-user") var submitSpan = $this.find(".submit-span") var productInput = $this.find("[name='product_id']") var productId = productInput.attr("value") var productIsDigital = productInput.attr("data-is-digital") if (productIsDigital && isUser){ var isOwned = getOwnedProduct(productId, submitSpan) } }) productForm.submit(function(event){ event.preventDefault(); // console.log("Form is not sending") var thisForm = $(this) // var actionEndpoint = thisForm.attr("action"); // API Endpoint var actionEndpoint = thisForm.attr("data-endpoint") var httpMethod = thisForm.attr("method"); var formData = thisForm.serialize(); $.ajax({ url: actionEndpoint, method: httpMethod, data: formData, success: function(data){ var submitSpan = thisForm.find(".submit-span") if (data.added){ submitSpan.html("
In cart
") } else { submitSpan.html("") } var navbarCount = $(".navbar-cart-count") navbarCount.text(data.cartItemCount) var currentPath = window.location.href if (currentPath.indexOf("cart") != -1) { refreshCart() } }, error: function(errorData){ $.alert({ title: "Oops!", content: "An error occurred", theme: "modern", }) } }) }) function refreshCart(){ console.log("in current cart") var cartTable = $(".cart-table") var cartBody = cartTable.find(".cart-body") //cartBody.html("

Changed

") var productRows = cartBody.find(".cart-product") var currentUrl = window.location.href var refreshCartUrl = '/api/cart/' var refreshCartMethod = "GET"; var data = {}; $.ajax({ url: refreshCartUrl, method: refreshCartMethod, data: data, success: function(data){ var hiddenCartItemRemoveForm = $(".cart-item-remove-form") if (data.products.length > 0){ productRows.html(" ") i = data.products.length $.each(data.products, function(index, value){ console.log(value) var newCartItemRemove = hiddenCartItemRemoveForm.clone() newCartItemRemove.css("display", "block") // newCartItemRemove.removeClass("hidden-class") newCartItemRemove.find(".cart-item-product-id").val(value.id) cartBody.prepend("" + i + "" + value.name + "" + newCartItemRemove.html() + "" + value.price + "") i -- }) cartBody.find(".cart-subtotal").text(data.subtotal) cartBody.find(".cart-total").text(data.total) } else { window.location.href = currentUrl } }, error: function(errorData){ $.alert({ title: "Oops!", content: "An error occurred", theme: "modern", }) } }) } }) ================================================ FILE: src/static_my_proj/js/ecommerce.main.js ================================================ $(document).ready(function(){ var stripeFormModule = $(".stripe-payment-form") var stripeModuleToken = stripeFormModule.attr("data-token") var stripeModuleNextUrl = stripeFormModule.attr("data-next-url") var stripeModuleBtnTitle = stripeFormModule.attr("data-btn-title") || "Add card" var stripeTemplate = $.templates("#stripeTemplate") var stripeTemplateDataContext = { publishKey: stripeModuleToken, nextUrl: stripeModuleNextUrl, btnTitle: stripeModuleBtnTitle } var stripeTemplateHtml = stripeTemplate.render(stripeTemplateDataContext) stripeFormModule.html(stripeTemplateHtml) // https secure site when live var paymentForm = $(".payment-form") if (paymentForm.length > 1){ alert("Only one payment form is allowed per page") paymentForm.css('display', 'none') } else if (paymentForm.length == 1) { var pubKey = paymentForm.attr('data-token') var nextUrl = paymentForm.attr('data-next-url') // Create a Stripe client var stripe = Stripe(pubKey); // Create an instance of Elements var elements = stripe.elements(); // Custom styling can be passed to options when creating an Element. // (Note that this demo uses a wider set of styles than the guide below.) var style = { base: { color: '#32325d', lineHeight: '24px', fontFamily: '"Helvetica Neue", Helvetica, sans-serif', fontSmoothing: 'antialiased', fontSize: '16px', '::placeholder': { color: '#aab7c4' } }, invalid: { color: '#fa755a', iconColor: '#fa755a' } }; // Create an instance of the card Element var card = elements.create('card', {style: style}); // Add an instance of the card Element into the `card-element`
card.mount('#card-element'); // Handle real-time validation errors from the card Element. card.addEventListener('change', function(event) { var displayError = document.getElementById('card-errors'); if (event.error) { displayError.textContent = event.error.message; } else { displayError.textContent = ''; } }); // Handle form submission // var form = document.getElementById('payment-form'); // form.addEventListener('submit', function(event) { // event.preventDefault(); // // get the btn // // display new btn ui // var loadTime = 1500 // var errorHtml = " An error occured" // var errorClasses = "btn btn-danger disabled my-3" // var loadingHtml = " Loading..." // var loadingClasses = "btn btn-success disabled my-3" // stripe.createToken(card).then(function(result) { // if (result.error) { // // Inform the user if there was an error // var errorElement = document.getElementById('card-errors'); // errorElement.textContent = result.error.message; // } else { // // Send the token to your server // stripeTokenHandler(nextUrl, result.token); // } // }); // }); var form = $('#payment-form'); var btnLoad = form.find(".btn-load") var btnLoadDefaultHtml = btnLoad.html() var btnLoadDefaultClasses = btnLoad.attr("class") form.on('submit', function(event) { event.preventDefault(); // get the btn // display new btn ui var $this = $(this) // btnLoad = $this.find('.btn-load') btnLoad.blur() var loadTime = 1500 var currentTimeout; var errorHtml = " An error occured" var errorClasses = "btn btn-danger disabled my-3" var loadingHtml = " Loading..." var loadingClasses = "btn btn-success disabled my-3" stripe.createToken(card).then(function(result) { if (result.error) { // Inform the user if there was an error var errorElement = $('#card-errors'); errorElement.textContent = result.error.message; currentTimeout = displayBtnStatus( btnLoad, errorHtml, errorClasses, 1000, currentTimeout ) } else { // Send the token to your server currentTimeout = displayBtnStatus( btnLoad, loadingHtml, loadingClasses, 10000, currentTimeout ) stripeTokenHandler(nextUrl, result.token); } }); }); function displayBtnStatus(element, newHtml, newClasses, loadTime, timeout){ // if (timeout){ // clearTimeout(timeout) // } if (!loadTime){ loadTime = 1500 } //var defaultHtml = element.html() //var defaultClasses = element.attr("class") element.html(newHtml) element.removeClass(btnLoadDefaultClasses) element.addClass(newClasses) return setTimeout(function(){ element.html(btnLoadDefaultHtml) element.removeClass(newClasses) element.addClass(btnLoadDefaultClasses) }, loadTime) } function redirectToNext(nextPath, timeoffset) { // body... if (nextPath){ setTimeout(function(){ window.location.href = nextPath }, timeoffset) } } function stripeTokenHandler(nextUrl, token){ // console.log(token.id) var paymentMethodEndpoint = '/billing/payment-method/create/' var data = { 'token': token.id } $.ajax({ data: data, url: paymentMethodEndpoint, method: "POST", success: function(data){ var succesMsg = data.message || "Success! Your card was added." card.clear() if (nextUrl){ succesMsg = succesMsg + "

Redirecting..." } if ($.alert){ $.alert(succesMsg) } else { alert(succesMsg) } btnLoad.html(btnLoadDefaultHtml) btnLoad.attr('class', btnLoadDefaultClasses) redirectToNext(nextUrl, 1500) }, error: function(error){ // console.log(error) $.alert({title: "An error occured", content:"Please try adding your card again."}) btnLoad.html(btnLoadDefaultHtml) btnLoad.attr('class', btnLoadDefaultClasses) } }) } } }) ================================================ FILE: src/static_my_proj/js/ecommerce.sales.js ================================================ $(document).ready(function(){ function renderChart(id, data, labels){ // var ctx = document.getElementById("myChart").getContext('2d'); var ctx = $('#' + id) var myChart = new Chart(ctx, { type: 'line', data: { labels: labels, datasets: [{ label: 'Sales', data: data, backgroundColor: 'rgba(0, 158, 29, 0.45)', borderColor:'rgba(0, 158, 29, 1)', }] }, options: { scales: { yAxes: [{ ticks: { beginAtZero:true } }] }, backgroundColor: 'rgba(75, 192, 192, 1)' } }); } function getSalesData(id, type){ var url = '/analytics/sales/data/' var method = 'GET' var data = {"type": type} $.ajax({ url: url, method: method, data: data, success: function(responseData){ renderChart(id, responseData.data, responseData.labels) }, error: function(error){ $.alert("An error occurred") } }) } var chartsToRender = $('.cfe-render-chart') $.each(chartsToRender, function(index, html){ var $this = $(this) if ( $this.attr('id') && $this.attr('data-type')){ getSalesData($this.attr('id'), $this.attr('data-type')) } }) }) ================================================ FILE: src/tags/__init__.py ================================================ ================================================ FILE: src/tags/admin.py ================================================ from django.contrib import admin from .models import Tag admin.site.register(Tag) ================================================ FILE: src/tags/apps.py ================================================ from django.apps import AppConfig class TagsConfig(AppConfig): name = 'tags' ================================================ FILE: src/tags/migrations/0001_initial.py ================================================ # -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-09-21 00:00 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ('products', '0009_product_timestamp'), ] operations = [ migrations.CreateModel( name='Tag', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=120)), ('slug', models.SlugField()), ('timestamp', models.DateTimeField(auto_now_add=True)), ('active', models.BooleanField(default=True)), ('products', models.ManyToManyField(blank=True, to='products.Product')), ], ), ] ================================================ FILE: src/tags/migrations/__init__.py ================================================ ================================================ FILE: src/tags/models.py ================================================ from django.db import models from django.db.models.signals import pre_save, post_save from django.urls import reverse from ecommerce.utils import unique_slug_generator from products.models import Product class Tag(models.Model): title = models.CharField(max_length=120) slug = models.SlugField() timestamp = models.DateTimeField(auto_now_add=True) active = models.BooleanField(default=True) products = models.ManyToManyField(Product, blank=True) def __str__(self): return self.title def tag_pre_save_receiver(sender, instance, *args, **kwargs): if not instance.slug: instance.slug = unique_slug_generator(instance) pre_save.connect(tag_pre_save_receiver, sender=Tag) ================================================ FILE: src/tags/shell_commands.py ================================================ ''' # Shell session 1 # python manage.py shell ''' from tags.models import Tag qs = Tag.objects.all() print(qs) black = Tag.objects.last() black.title black.slug black.products """ Reutrns: .ManyRelatedManager object at 0x1112f3fd0> """ black.products.all() """ This is an actual queryset of PRODUCTS Much like Products.objects.all(), but in this case it's ALL of the products that are related to the "Black" tag """ black.products.all().first() """ returns the first instance, if any """ exit() ''' # Shell session 2 # python manage.ppy shell ''' from products.models import Product qs = Product.objects.all() print(qs) tshirt = qs.first() tshirt.title tshirt.description tshirt.tag ''' Raises an error because the Product model doens't have a field "tag" ''' tshirt.tags ''' Raises an error because the Product model doens't have a field "tags" ''' tshirt.tag_set ''' This works because the Tag model has the "products" field with the ManyToMany to Product .ManyRelatedManager object at 0x10c0e75f8> ''' tshirt.tag_set.all() ''' Returns an actual Queryset of the Tag model related to this product , , , , ]> ''' tshirt.tag_set.filter(title__icontains='black') ================================================ FILE: src/tags/tests.py ================================================ from django.test import TestCase # Create your tests here. ================================================ FILE: src/tags/views.py ================================================ from django.shortcuts import render # Create your views here. ================================================ FILE: src/templates/400.html ================================================ {% extends "base.html" %} {% block content %}

Bad Request

400 Error

{% endblock %} ================================================ FILE: src/templates/403.html ================================================ {% extends "base.html" %} {% block content %}

Permission Denied

403 Error

{% endblock %} ================================================ FILE: src/templates/404.html ================================================ {% extends "base.html" %} {% block content %}

Page Not Found

404 Error

{% endblock %} ================================================ FILE: src/templates/500.html ================================================ {% extends "base.html" %} {% block content %}

Oops. Sorry. A Server Error Occured

500 Error | We have been notified and are working on a fix.

{% endblock %} ================================================ FILE: src/templates/base/css.html ================================================ {% load static %} ================================================ FILE: src/templates/base/forms.html ================================================ {% extends "base.html" %} {% block content %}
{% if title %}

{{ title }}

{% endif %}
{% csrf_token %} {% if next_url %} {% endif %} {{ form.as_p }}
{% endblock %} ================================================ FILE: src/templates/base/js.html ================================================ {% load static %} {% include 'base/js_templates.html' %} ================================================ FILE: src/templates/base/js_templates.html ================================================ {% verbatim %} {% endverbatim %} ================================================ FILE: src/templates/base/navbar.html ================================================ {% url 'home' as home_url %} {% url 'contact' as contact_url %} {% url 'products:list' as product_list_url %} {% url 'login' as login_url %} {% url 'logout' as logout_url %} {% url 'register' as register_url %} {% url 'account:home' as account_url %} {% url 'cart:home' as cart_url %} ================================================ FILE: src/templates/base.html ================================================ {% load static %} Base Template {% include 'base/css.html' %} {% block base_head %}{% endblock %} {% include 'base/navbar.html' with brand_name='eCommerce' %}
{% if messages %}
{% for message in messages %} {% if message.level == DEFAULT_MESSAGE_LEVELS.ERROR %}Important: {% endif %} {{ message }}
{% endfor %}
{% endif %} {% block content %}{% endblock %}
{% include 'base/js.html' %} {% block javascript %} {% endblock %} ================================================ FILE: src/templates/bootstrap/example.html ================================================
================================================ FILE: src/templates/contact/view.html ================================================ {% extends "base.html" %} {% block content %}

{{ title }}

Hello, world we're working!

{{ content }}

{% csrf_token %} {{ form.as_p }}
{% endblock %} ================================================ FILE: src/templates/home_page.html ================================================ {% extends "base.html" %} {% load static %} Home Page Template {% block base_head %} {% endblock %} {% block content %}

{{ title }}

Hello, world we're working!

{{ content }}

{% if request.user.is_authenticated %}

Premium

{{ premium_content }}
{% endif %} {% endblock %}

{{ title }}

Hello, world we're working!

{{ content }}

{% if request.user.is_authenticated %}

Premium

{{ premium_content }}
{% endif %}
================================================ FILE: src/templates/registration/activation-error.html ================================================ {% extends "base.html" %} {% block content %}
{% if key %}

Activation Error. Please try again.

{% else %}

Re-activate your Email Below.

{% endif %}
{% csrf_token %} {{ form.as_p }}
{% endblock %} ================================================ FILE: src/templates/registration/emails/verify.html ================================================

Hello,

Please activate your account for {{ email }} by clicking the link below:

{{ path }}

Once you activate, you can login!

Thank you,

Python eCommerce

================================================ FILE: src/templates/registration/emails/verify.txt ================================================ Hello, Please activate your account for {{ email }} by clicking the link below: {{ path }} Once you activate, you can login! Thank you, Python eCommerce ================================================ FILE: src/templates/registration/password_change_done.html ================================================ {% extends "base.html" %} {% block content %}

Password successfully changed!

{% endblock %} ================================================ FILE: src/templates/registration/password_change_form.html ================================================ {% extends "base.html" %} {% block content %}

Change your Password

{% csrf_token %} {{ form.as_p }}
{% endblock %} ================================================ FILE: src/templates/registration/password_reset_complete.html ================================================ {% extends "base.html" %} {% block content %}

Password reset complete

Login
{% endblock %} ================================================ FILE: src/templates/registration/password_reset_confirm.html ================================================ {% extends "base.html" %} {% block content %}

Set your Password

{% csrf_token %} {{ form.as_p }}
{% endblock %} ================================================ FILE: src/templates/registration/password_reset_done.html ================================================ {% extends "base.html" %} {% block content %}

Rest Instructions Sent

Please check your email

{% endblock %} ================================================ FILE: src/templates/registration/password_reset_email.html ================================================ {% load i18n %} {% blocktrans %} Hello, Reset your password on {{ domain }} for {{ user }}: {% endblocktrans %} {% block reset_link %} {{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %} {% endblock %} ================================================ FILE: src/templates/registration/password_reset_email.txt ================================================ {% load i18n %} {% blocktrans %} Hello, Reset your password on {{ domain }} for {{ user }}: {% endblocktrans %} {% block reset_link %} {{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %} {% endblock %} ================================================ FILE: src/templates/registration/password_reset_form.html ================================================ {% extends "base.html" %} {% block content %}

Reset your Password

{% csrf_token %} {{ form.as_p }}
{% endblock %} ================================================ FILE: static_cdn/media_root/products/2473283945/2473283945.sublime-project ================================================ { "folders": [ { "path": "." } ] } ================================================ FILE: static_cdn/static_root/admin/css/base.css ================================================ /* DJANGO Admin styles */ @import url(fonts.css); body { margin: 0; padding: 0; font-size: 14px; font-family: "Roboto","Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif; color: #333; background: #fff; } /* LINKS */ a:link, a:visited { color: #447e9b; text-decoration: none; } a:focus, a:hover { color: #036; } a:focus { text-decoration: underline; } a img { border: none; } a.section:link, a.section:visited { color: #fff; text-decoration: none; } a.section:focus, a.section:hover { text-decoration: underline; } /* GLOBAL DEFAULTS */ p, ol, ul, dl { margin: .2em 0 .8em 0; } p { padding: 0; line-height: 140%; } h1,h2,h3,h4,h5 { font-weight: bold; } h1 { margin: 0 0 20px; font-weight: 300; font-size: 20px; color: #666; } h2 { font-size: 16px; margin: 1em 0 .5em 0; } h2.subhead { font-weight: normal; margin-top: 0; } h3 { font-size: 14px; margin: .8em 0 .3em 0; color: #666; font-weight: bold; } h4 { font-size: 12px; margin: 1em 0 .8em 0; padding-bottom: 3px; } h5 { font-size: 10px; margin: 1.5em 0 .5em 0; color: #666; text-transform: uppercase; letter-spacing: 1px; } ul li { list-style-type: square; padding: 1px 0; } li ul { margin-bottom: 0; } li, dt, dd { font-size: 13px; line-height: 20px; } dt { font-weight: bold; margin-top: 4px; } dd { margin-left: 0; } form { margin: 0; padding: 0; } fieldset { margin: 0; padding: 0; border: none; border-top: 1px solid #eee; } blockquote { font-size: 11px; color: #777; margin-left: 2px; padding-left: 10px; border-left: 5px solid #ddd; } code, pre { font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace; color: #666; font-size: 12px; } pre.literal-block { margin: 10px; background: #eee; padding: 6px 8px; } code strong { color: #930; } hr { clear: both; color: #eee; background-color: #eee; height: 1px; border: none; margin: 0; padding: 0; font-size: 1px; line-height: 1px; } /* TEXT STYLES & MODIFIERS */ .small { font-size: 11px; } .tiny { font-size: 10px; } p.tiny { margin-top: -2px; } .mini { font-size: 10px; } p.mini { margin-top: -3px; } .help, p.help, form p.help, div.help, form div.help, div.help li { font-size: 11px; color: #999; } div.help ul { margin-bottom: 0; } .help-tooltip { cursor: help; } p img, h1 img, h2 img, h3 img, h4 img, td img { vertical-align: middle; } .quiet, a.quiet:link, a.quiet:visited { color: #999; font-weight: normal; } .float-right { float: right; } .float-left { float: left; } .clear { clear: both; } .align-left { text-align: left; } .align-right { text-align: right; } .example { margin: 10px 0; padding: 5px 10px; background: #efefef; } .nowrap { white-space: nowrap; } /* TABLES */ table { border-collapse: collapse; border-color: #ccc; } td, th { font-size: 13px; line-height: 16px; border-bottom: 1px solid #eee; vertical-align: top; padding: 8px; font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif; } th { font-weight: 600; text-align: left; } thead th, tfoot td { color: #666; padding: 5px 10px; font-size: 11px; background: #fff; border: none; border-top: 1px solid #eee; border-bottom: 1px solid #eee; } tfoot td { border-bottom: none; border-top: 1px solid #eee; } thead th.required { color: #000; } tr.alt { background: #f6f6f6; } .row1 { background: #fff; } .row2 { background: #f9f9f9; } /* SORTABLE TABLES */ thead th { padding: 5px 10px; line-height: normal; text-transform: uppercase; background: #f6f6f6; } thead th a:link, thead th a:visited { color: #666; } thead th.sorted { background: #eee; } thead th.sorted .text { padding-right: 42px; } table thead th .text span { padding: 8px 10px; display: block; } table thead th .text a { display: block; cursor: pointer; padding: 8px 10px; } table thead th .text a:focus, table thead th .text a:hover { background: #eee; } thead th.sorted a.sortremove { visibility: hidden; } table thead th.sorted:hover a.sortremove { visibility: visible; } table thead th.sorted .sortoptions { display: block; padding: 9px 5px 0 5px; float: right; text-align: right; } table thead th.sorted .sortpriority { font-size: .8em; min-width: 12px; text-align: center; vertical-align: 3px; margin-left: 2px; margin-right: 2px; } table thead th.sorted .sortoptions a { position: relative; width: 14px; height: 14px; display: inline-block; background: url(../img/sorting-icons.svg) 0 0 no-repeat; background-size: 14px auto; } table thead th.sorted .sortoptions a.sortremove { background-position: 0 0; } table thead th.sorted .sortoptions a.sortremove:after { content: '\\'; position: absolute; top: -6px; left: 3px; font-weight: 200; font-size: 18px; color: #999; } table thead th.sorted .sortoptions a.sortremove:focus:after, table thead th.sorted .sortoptions a.sortremove:hover:after { color: #447e9b; } table thead th.sorted .sortoptions a.sortremove:focus, table thead th.sorted .sortoptions a.sortremove:hover { background-position: 0 -14px; } table thead th.sorted .sortoptions a.ascending { background-position: 0 -28px; } table thead th.sorted .sortoptions a.ascending:focus, table thead th.sorted .sortoptions a.ascending:hover { background-position: 0 -42px; } table thead th.sorted .sortoptions a.descending { top: 1px; background-position: 0 -56px; } table thead th.sorted .sortoptions a.descending:focus, table thead th.sorted .sortoptions a.descending:hover { background-position: 0 -70px; } /* FORM DEFAULTS */ input, textarea, select, .form-row p, form .button { margin: 2px 0; padding: 2px 3px; vertical-align: middle; font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif; font-weight: normal; font-size: 13px; } .form-row div.help { padding: 2px 3px; } textarea { vertical-align: top; } input[type=text], input[type=password], input[type=email], input[type=url], input[type=number], textarea, select, .vTextField { border: 1px solid #ccc; border-radius: 4px; padding: 5px 6px; margin-top: 0; } input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=url]:focus, input[type=number]:focus, textarea:focus, select:focus, .vTextField:focus { border-color: #999; } select { height: 30px; } select[multiple] { min-height: 150px; } /* FORM BUTTONS */ .button, input[type=submit], input[type=button], .submit-row input, a.button { background: #79aec8; padding: 10px 15px; border: none; border-radius: 4px; color: #fff; cursor: pointer; } a.button { padding: 4px 5px; } .button:active, input[type=submit]:active, input[type=button]:active, .button:focus, input[type=submit]:focus, input[type=button]:focus, .button:hover, input[type=submit]:hover, input[type=button]:hover { background: #609ab6; } .button[disabled], input[type=submit][disabled], input[type=button][disabled] { opacity: 0.4; } .button.default, input[type=submit].default, .submit-row input.default { float: right; border: none; font-weight: 400; background: #417690; } .button.default:active, input[type=submit].default:active, .button.default:focus, input[type=submit].default:focus, .button.default:hover, input[type=submit].default:hover { background: #205067; } .button[disabled].default, input[type=submit][disabled].default, input[type=button][disabled].default { opacity: 0.4; } /* MODULES */ .module { border: none; margin-bottom: 30px; background: #fff; } .module p, .module ul, .module h3, .module h4, .module dl, .module pre { padding-left: 10px; padding-right: 10px; } .module blockquote { margin-left: 12px; } .module ul, .module ol { margin-left: 1.5em; } .module h3 { margin-top: .6em; } .module h2, .module caption, .inline-group h2 { margin: 0; padding: 8px; font-weight: 400; font-size: 13px; text-align: left; background: #79aec8; color: #fff; } .module caption, .inline-group h2 { font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; } .module table { border-collapse: collapse; } /* MESSAGES & ERRORS */ ul.messagelist { padding: 0; margin: 0; } ul.messagelist li { display: block; font-weight: 400; font-size: 13px; padding: 10px 10px 10px 65px; margin: 0 0 10px 0; background: #dfd url(../img/icon-yes.svg) 40px 12px no-repeat; background-size: 16px auto; color: #333; } ul.messagelist li.warning { background: #ffc url(../img/icon-alert.svg) 40px 14px no-repeat; background-size: 14px auto; } ul.messagelist li.error { background: #ffefef url(../img/icon-no.svg) 40px 12px no-repeat; background-size: 16px auto; } .errornote { font-size: 14px; font-weight: 700; display: block; padding: 10px 12px; margin: 0 0 10px 0; color: #ba2121; border: 1px solid #ba2121; border-radius: 4px; background-color: #fff; background-position: 5px 12px; } ul.errorlist { margin: 0 0 4px; padding: 0; color: #ba2121; background: #fff; } ul.errorlist li { font-size: 13px; display: block; margin-bottom: 4px; } ul.errorlist li:first-child { margin-top: 0; } ul.errorlist li a { color: inherit; text-decoration: underline; } td ul.errorlist { margin: 0; padding: 0; } td ul.errorlist li { margin: 0; } .form-row.errors { margin: 0; border: none; border-bottom: 1px solid #eee; background: none; } .form-row.errors ul.errorlist li { padding-left: 0; } .errors input, .errors select, .errors textarea { border: 1px solid #ba2121; } div.system-message { background: #ffc; margin: 10px; padding: 6px 8px; font-size: .8em; } div.system-message p.system-message-title { padding: 4px 5px 4px 25px; margin: 0; color: #c11; background: #ffefef url(../img/icon-no.svg) 5px 5px no-repeat; } .description { font-size: 12px; padding: 5px 0 0 12px; } /* BREADCRUMBS */ div.breadcrumbs { background: #79aec8; padding: 10px 40px; border: none; font-size: 14px; color: #c4dce8; text-align: left; } div.breadcrumbs a { color: #fff; } div.breadcrumbs a:focus, div.breadcrumbs a:hover { color: #c4dce8; } /* ACTION ICONS */ .addlink { padding-left: 16px; background: url(../img/icon-addlink.svg) 0 1px no-repeat; } .changelink, .inlinechangelink { padding-left: 16px; background: url(../img/icon-changelink.svg) 0 1px no-repeat; } .deletelink { padding-left: 16px; background: url(../img/icon-deletelink.svg) 0 1px no-repeat; } a.deletelink:link, a.deletelink:visited { color: #CC3434; } a.deletelink:focus, a.deletelink:hover { color: #993333; text-decoration: none; } /* OBJECT TOOLS */ .object-tools { font-size: 10px; font-weight: bold; padding-left: 0; float: right; position: relative; margin-top: -48px; } .form-row .object-tools { margin-top: 5px; margin-bottom: 5px; float: none; height: 2em; padding-left: 3.5em; } .object-tools li { display: block; float: left; margin-left: 5px; height: 16px; } .object-tools a { border-radius: 15px; } .object-tools a:link, .object-tools a:visited { display: block; float: left; padding: 3px 12px; background: #999; font-weight: 400; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; } .object-tools a:focus, .object-tools a:hover { background-color: #417690; } .object-tools a:focus{ text-decoration: none; } .object-tools a.viewsitelink, .object-tools a.golink,.object-tools a.addlink { background-repeat: no-repeat; background-position: right 7px center; padding-right: 26px; } .object-tools a.viewsitelink, .object-tools a.golink { background-image: url(../img/tooltag-arrowright.svg); } .object-tools a.addlink { background-image: url(../img/tooltag-add.svg); } /* OBJECT HISTORY */ table#change-history { width: 100%; } table#change-history tbody th { width: 16em; } /* PAGE STRUCTURE */ #container { position: relative; width: 100%; min-width: 980px; padding: 0; } #content { padding: 20px 40px; } .dashboard #content { width: 600px; } #content-main { float: left; width: 100%; } #content-related { float: right; width: 260px; position: relative; margin-right: -300px; } #footer { clear: both; padding: 10px; } /* COLUMN TYPES */ .colMS { margin-right: 300px; } .colSM { margin-left: 300px; } .colSM #content-related { float: left; margin-right: 0; margin-left: -300px; } .colSM #content-main { float: right; } .popup .colM { width: auto; } /* HEADER */ #header { width: auto; height: 40px; padding: 10px 40px; background: #417690; line-height: 40px; color: #ffc; overflow: hidden; } #header a:link, #header a:visited { color: #fff; } #header a:focus , #header a:hover { text-decoration: underline; } #branding { float: left; } #branding h1 { padding: 0; margin: 0 20px 0 0; font-weight: 300; font-size: 24px; color: #f5dd5d; } #branding h1, #branding h1 a:link, #branding h1 a:visited { color: #f5dd5d; } #branding h2 { padding: 0 10px; font-size: 14px; margin: -8px 0 8px 0; font-weight: normal; color: #ffc; } #branding a:hover { text-decoration: none; } #user-tools { float: right; padding: 0; margin: 0 0 0 20px; font-weight: 300; font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; text-align: right; } #user-tools a { border-bottom: 1px solid rgba(255, 255, 255, 0.25); } #user-tools a:focus, #user-tools a:hover { text-decoration: none; border-bottom-color: #79aec8; color: #79aec8; } /* SIDEBAR */ #content-related { background: #f8f8f8; } #content-related .module { background: none; } #content-related h3 { font-size: 14px; color: #666; padding: 0 16px; margin: 0 0 16px; } #content-related h4 { font-size: 13px; } #content-related p { padding-left: 16px; padding-right: 16px; } #content-related .actionlist { padding: 0; margin: 16px; } #content-related .actionlist li { line-height: 1.2; margin-bottom: 10px; padding-left: 18px; } #content-related .module h2 { background: none; padding: 16px; margin-bottom: 16px; border-bottom: 1px solid #eaeaea; font-size: 18px; color: #333; } .delete-confirmation form input[type="submit"] { background: #ba2121; border-radius: 4px; padding: 10px 15px; color: #fff; } .delete-confirmation form input[type="submit"]:active, .delete-confirmation form input[type="submit"]:focus, .delete-confirmation form input[type="submit"]:hover { background: #a41515; } .delete-confirmation form .cancel-link { display: inline-block; vertical-align: middle; height: 15px; line-height: 15px; background: #ddd; border-radius: 4px; padding: 10px 15px; color: #333; margin: 0 0 0 10px; } .delete-confirmation form .cancel-link:active, .delete-confirmation form .cancel-link:focus, .delete-confirmation form .cancel-link:hover { background: #ccc; } /* POPUP */ .popup #content { padding: 20px; } .popup #container { min-width: 0; } .popup #header { padding: 10px 20px; } ================================================ FILE: static_cdn/static_root/admin/css/changelists.css ================================================ /* CHANGELISTS */ #changelist { position: relative; width: 100%; } #changelist table { width: 100%; } .change-list .hiddenfields { display:none; } .change-list .filtered table { border-right: none; } .change-list .filtered { min-height: 400px; } .change-list .filtered .results, .change-list .filtered .paginator, .filtered #toolbar, .filtered div.xfull { margin-right: 280px; width: auto; } .change-list .filtered table tbody th { padding-right: 1em; } #changelist-form .results { overflow-x: auto; } #changelist .toplinks { border-bottom: 1px solid #ddd; } #changelist .paginator { color: #666; border-bottom: 1px solid #eee; background: #fff; overflow: hidden; } /* CHANGELIST TABLES */ #changelist table thead th { padding: 0; white-space: nowrap; vertical-align: middle; } #changelist table thead th.action-checkbox-column { width: 1.5em; text-align: center; } #changelist table tbody td.action-checkbox { text-align: center; } #changelist table tfoot { color: #666; } /* TOOLBAR */ #changelist #toolbar { padding: 8px 10px; margin-bottom: 15px; border-top: 1px solid #eee; border-bottom: 1px solid #eee; background: #f8f8f8; color: #666; } #changelist #toolbar form input { border-radius: 4px; font-size: 14px; padding: 5px; color: #333; } #changelist #toolbar form #searchbar { height: 19px; border: 1px solid #ccc; padding: 2px 5px; margin: 0; vertical-align: top; font-size: 13px; } #changelist #toolbar form #searchbar:focus { border-color: #999; } #changelist #toolbar form input[type="submit"] { border: 1px solid #ccc; padding: 2px 10px; margin: 0; vertical-align: middle; background: #fff; box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset; cursor: pointer; color: #333; } #changelist #toolbar form input[type="submit"]:focus, #changelist #toolbar form input[type="submit"]:hover { border-color: #999; } #changelist #changelist-search img { vertical-align: middle; margin-right: 4px; } /* FILTER COLUMN */ #changelist-filter { position: absolute; top: 0; right: 0; z-index: 1000; width: 240px; background: #f8f8f8; border-left: none; margin: 0; } #changelist-filter h2 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; padding: 5px 15px; margin-bottom: 12px; border-bottom: none; } #changelist-filter h3 { font-weight: 400; font-size: 14px; padding: 0 15px; margin-bottom: 10px; } #changelist-filter ul { margin: 5px 0; padding: 0 15px 15px; border-bottom: 1px solid #eaeaea; } #changelist-filter ul:last-child { border-bottom: none; padding-bottom: none; } #changelist-filter li { list-style-type: none; margin-left: 0; padding-left: 0; } #changelist-filter a { display: block; color: #999; text-overflow: ellipsis; overflow-x: hidden; } #changelist-filter li.selected { border-left: 5px solid #eaeaea; padding-left: 10px; margin-left: -15px; } #changelist-filter li.selected a { color: #5b80b2; } #changelist-filter a:focus, #changelist-filter a:hover, #changelist-filter li.selected a:focus, #changelist-filter li.selected a:hover { color: #036; } /* DATE DRILLDOWN */ .change-list ul.toplinks { display: block; float: left; padding: 0; margin: 0; width: 100%; } .change-list ul.toplinks li { padding: 3px 6px; font-weight: bold; list-style-type: none; display: inline-block; } .change-list ul.toplinks .date-back a { color: #999; } .change-list ul.toplinks .date-back a:focus, .change-list ul.toplinks .date-back a:hover { color: #036; } /* PAGINATOR */ .paginator { font-size: 13px; padding-top: 10px; padding-bottom: 10px; line-height: 22px; margin: 0; border-top: 1px solid #ddd; } .paginator a:link, .paginator a:visited { padding: 2px 6px; background: #79aec8; text-decoration: none; color: #fff; } .paginator a.showall { padding: 0; border: none; background: none; color: #5b80b2; } .paginator a.showall:focus, .paginator a.showall:hover { background: none; color: #036; } .paginator .end { margin-right: 6px; } .paginator .this-page { padding: 2px 6px; font-weight: bold; font-size: 13px; vertical-align: top; } .paginator a:focus, .paginator a:hover { color: white; background: #036; } /* ACTIONS */ .filtered .actions { margin-right: 280px; border-right: none; } #changelist table input { margin: 0; vertical-align: baseline; } #changelist table tbody tr.selected { background-color: #FFFFCC; } #changelist .actions { padding: 10px; background: #fff; border-top: none; border-bottom: none; line-height: 24px; color: #999; } #changelist .actions.selected { background: #fffccf; border-top: 1px solid #fffee8; border-bottom: 1px solid #edecd6; } #changelist .actions span.all, #changelist .actions span.action-counter, #changelist .actions span.clear, #changelist .actions span.question { font-size: 13px; margin: 0 0.5em; display: none; } #changelist .actions:last-child { border-bottom: none; } #changelist .actions select { vertical-align: top; height: 24px; background: none; color: #000; border: 1px solid #ccc; border-radius: 4px; font-size: 14px; padding: 0 0 0 4px; margin: 0; margin-left: 10px; } #changelist .actions select:focus { border-color: #999; } #changelist .actions label { display: inline-block; vertical-align: middle; font-size: 13px; } #changelist .actions .button { font-size: 13px; border: 1px solid #ccc; border-radius: 4px; background: #fff; box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset; cursor: pointer; height: 24px; line-height: 1; padding: 4px 8px; margin: 0; color: #333; } #changelist .actions .button:focus, #changelist .actions .button:hover { border-color: #999; } ================================================ FILE: static_cdn/static_root/admin/css/dashboard.css ================================================ /* DASHBOARD */ .dashboard .module table th { width: 100%; } .dashboard .module table td { white-space: nowrap; } .dashboard .module table td a { display: block; padding-right: .6em; } /* RECENT ACTIONS MODULE */ .module ul.actionlist { margin-left: 0; } ul.actionlist li { list-style-type: none; overflow: hidden; text-overflow: ellipsis; -o-text-overflow: ellipsis; } ================================================ FILE: static_cdn/static_root/admin/css/fonts.css ================================================ @font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-Bold-webfont.woff'); font-weight: 700; font-style: normal; } @font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-Regular-webfont.woff'); font-weight: 400; font-style: normal; } @font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-Light-webfont.woff'); font-weight: 300; font-style: normal; } ================================================ FILE: static_cdn/static_root/admin/css/forms.css ================================================ @import url('widgets.css'); /* FORM ROWS */ .form-row { overflow: hidden; padding: 10px; font-size: 13px; border-bottom: 1px solid #eee; } .form-row img, .form-row input { vertical-align: middle; } .form-row label input[type="checkbox"] { margin-top: 0; vertical-align: 0; } form .form-row p { padding-left: 0; } .hidden { display: none; } /* FORM LABELS */ label { font-weight: normal; color: #666; font-size: 13px; } .required label, label.required { font-weight: bold; color: #333; } /* RADIO BUTTONS */ form ul.radiolist li { list-style-type: none; } form ul.radiolist label { float: none; display: inline; } form ul.radiolist input[type="radio"] { margin: -2px 4px 0 0; padding: 0; } form ul.inline { margin-left: 0; padding: 0; } form ul.inline li { float: left; padding-right: 7px; } /* ALIGNED FIELDSETS */ .aligned label { display: block; padding: 4px 10px 0 0; float: left; width: 160px; word-wrap: break-word; line-height: 1; } .aligned label:not(.vCheckboxLabel):after { content: ''; display: inline-block; vertical-align: middle; height: 26px; } .aligned label + p, .aligned label + div.help, .aligned label + div.readonly { padding: 6px 0; margin-top: 0; margin-bottom: 0; margin-left: 170px; } .aligned ul label { display: inline; float: none; width: auto; } .aligned .form-row input { margin-bottom: 0; } .colMS .aligned .vLargeTextField, .colMS .aligned .vXMLLargeTextField { width: 350px; } form .aligned ul { margin-left: 160px; padding-left: 10px; } form .aligned ul.radiolist { display: inline-block; margin: 0; padding: 0; } form .aligned p.help, form .aligned div.help { clear: left; margin-top: 0; margin-left: 160px; padding-left: 10px; } form .aligned label + p.help, form .aligned label + div.help { margin-left: 0; padding-left: 0; } form .aligned p.help:last-child, form .aligned div.help:last-child { margin-bottom: 0; padding-bottom: 0; } form .aligned input + p.help, form .aligned textarea + p.help, form .aligned select + p.help, form .aligned input + div.help, form .aligned textarea + div.help, form .aligned select + div.help { margin-left: 160px; padding-left: 10px; } form .aligned ul li { list-style: none; } form .aligned table p { margin-left: 0; padding-left: 0; } .aligned .vCheckboxLabel { float: none; width: auto; display: inline-block; vertical-align: -3px; padding: 0 0 5px 5px; } .aligned .vCheckboxLabel + p.help, .aligned .vCheckboxLabel + div.help { margin-top: -4px; } .colM .aligned .vLargeTextField, .colM .aligned .vXMLLargeTextField { width: 610px; } .checkbox-row p.help, .checkbox-row div.help { margin-left: 0; padding-left: 0; } fieldset .field-box { float: left; margin-right: 20px; } /* WIDE FIELDSETS */ .wide label { width: 200px; } form .wide p, form .wide input + p.help, form .wide input + div.help { margin-left: 200px; } form .wide p.help, form .wide div.help { padding-left: 38px; } form div.help ul { padding-left: 0; margin-left: 0; } .colM fieldset.wide .vLargeTextField, .colM fieldset.wide .vXMLLargeTextField { width: 450px; } /* COLLAPSED FIELDSETS */ fieldset.collapsed * { display: none; } fieldset.collapsed h2, fieldset.collapsed { display: block; } fieldset.collapsed { border: 1px solid #eee; border-radius: 4px; overflow: hidden; } fieldset.collapsed h2 { background: #f8f8f8; color: #666; } fieldset .collapse-toggle { color: #fff; } fieldset.collapsed .collapse-toggle { background: transparent; display: inline; color: #447e9b; } /* MONOSPACE TEXTAREAS */ fieldset.monospace textarea { font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace; } /* SUBMIT ROW */ .submit-row { padding: 12px 14px; margin: 0 0 20px; background: #f8f8f8; border: 1px solid #eee; border-radius: 4px; text-align: right; overflow: hidden; } body.popup .submit-row { overflow: auto; } .submit-row input { height: 35px; line-height: 15px; margin: 0 0 0 5px; } .submit-row input.default { margin: 0 0 0 8px; text-transform: uppercase; } .submit-row p { margin: 0.3em; } .submit-row p.deletelink-box { float: left; margin: 0; } .submit-row a.deletelink { display: block; background: #ba2121; border-radius: 4px; padding: 10px 15px; height: 15px; line-height: 15px; color: #fff; } .submit-row a.deletelink:focus, .submit-row a.deletelink:hover, .submit-row a.deletelink:active { background: #a41515; } /* CUSTOM FORM FIELDS */ .vSelectMultipleField { vertical-align: top; } .vCheckboxField { border: none; } .vDateField, .vTimeField { margin-right: 2px; margin-bottom: 4px; } .vDateField { min-width: 6.85em; } .vTimeField { min-width: 4.7em; } .vURLField { width: 30em; } .vLargeTextField, .vXMLLargeTextField { width: 48em; } .flatpages-flatpage #id_content { height: 40.2em; } .module table .vPositiveSmallIntegerField { width: 2.2em; } .vTextField { width: 20em; } .vIntegerField { width: 5em; } .vBigIntegerField { width: 10em; } .vForeignKeyRawIdAdminField { width: 5em; } /* INLINES */ .inline-group { padding: 0; margin: 0 0 30px; } .inline-group thead th { padding: 8px 10px; } .inline-group .aligned label { width: 160px; } .inline-related { position: relative; } .inline-related h3 { margin: 0; color: #666; padding: 5px; font-size: 13px; background: #f8f8f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; } .inline-related h3 span.delete { float: right; } .inline-related h3 span.delete label { margin-left: 2px; font-size: 11px; } .inline-related fieldset { margin: 0; background: #fff; border: none; width: 100%; } .inline-related fieldset.module h3 { margin: 0; padding: 2px 5px 3px 5px; font-size: 11px; text-align: left; font-weight: bold; background: #bcd; color: #fff; } .inline-group .tabular fieldset.module { border: none; } .inline-related.tabular fieldset.module table { width: 100%; } .last-related fieldset { border: none; } .inline-group .tabular tr.has_original td { padding-top: 2em; } .inline-group .tabular tr td.original { padding: 2px 0 0 0; width: 0; _position: relative; } .inline-group .tabular th.original { width: 0px; padding: 0; } .inline-group .tabular td.original p { position: absolute; left: 0; height: 1.1em; padding: 2px 9px; overflow: hidden; font-size: 9px; font-weight: bold; color: #666; _width: 700px; } .inline-group ul.tools { padding: 0; margin: 0; list-style: none; } .inline-group ul.tools li { display: inline; padding: 0 5px; } .inline-group div.add-row, .inline-group .tabular tr.add-row td { color: #666; background: #f8f8f8; padding: 8px 10px; border-bottom: 1px solid #eee; } .inline-group .tabular tr.add-row td { padding: 8px 10px; border-bottom: 1px solid #eee; } .inline-group ul.tools a.add, .inline-group div.add-row a, .inline-group .tabular tr.add-row td a { background: url(../img/icon-addlink.svg) 0 1px no-repeat; padding-left: 16px; font-size: 12px; } .empty-form { display: none; } /* RELATED FIELD ADD ONE / LOOKUP */ .add-another, .related-lookup { margin-left: 5px; display: inline-block; vertical-align: middle; background-repeat: no-repeat; background-size: 14px; } .add-another { width: 16px; height: 16px; background-image: url(../img/icon-addlink.svg); } .related-lookup { width: 16px; height: 16px; background-image: url(../img/search.svg); } form .related-widget-wrapper ul { display: inline-block; margin-left: 0; padding-left: 0; } .clearable-file-input input { margin-top: 0; } ================================================ FILE: static_cdn/static_root/admin/css/login.css ================================================ /* LOGIN FORM */ body.login { background: #f8f8f8; } .login #header { height: auto; padding: 5px 16px; } .login #header h1 { font-size: 18px; } .login #header h1 a { color: #fff; } .login #content { padding: 20px 20px 0; } .login #container { background: #fff; border: 1px solid #eaeaea; border-radius: 4px; overflow: hidden; width: 28em; min-width: 300px; margin: 100px auto; } .login #content-main { width: 100%; } .login .form-row { padding: 4px 0; float: left; width: 100%; border-bottom: none; } .login .form-row label { padding-right: 0.5em; line-height: 2em; font-size: 1em; clear: both; color: #333; } .login .form-row #id_username, .login .form-row #id_password { clear: both; padding: 8px; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .login span.help { font-size: 10px; display: block; } .login .submit-row { clear: both; padding: 1em 0 0 9.4em; margin: 0; border: none; background: none; text-align: left; } .login .password-reset-link { text-align: center; } ================================================ FILE: static_cdn/static_root/admin/css/rtl.css ================================================ body { direction: rtl; } /* LOGIN */ .login .form-row { float: right; } .login .form-row label { float: right; padding-left: 0.5em; padding-right: 0; text-align: left; } .login .submit-row { clear: both; padding: 1em 9.4em 0 0; } /* GLOBAL */ th { text-align: right; } .module h2, .module caption { text-align: right; } .module ul, .module ol { margin-left: 0; margin-right: 1.5em; } .addlink, .changelink { padding-left: 0; padding-right: 16px; background-position: 100% 1px; } .deletelink { padding-left: 0; padding-right: 16px; background-position: 100% 1px; } .object-tools { float: left; } thead th:first-child, tfoot td:first-child { border-left: none; } /* LAYOUT */ #user-tools { right: auto; left: 0; text-align: left; } div.breadcrumbs { text-align: right; } #content-main { float: right; } #content-related { float: left; margin-left: -300px; margin-right: auto; } .colMS { margin-left: 300px; margin-right: 0; } /* SORTABLE TABLES */ table thead th.sorted .sortoptions { float: left; } thead th.sorted .text { padding-right: 0; padding-left: 42px; } /* dashboard styles */ .dashboard .module table td a { padding-left: .6em; padding-right: 16px; } /* changelists styles */ .change-list .filtered table { border-left: none; border-right: 0px none; } #changelist-filter { right: auto; left: 0; border-left: none; border-right: none; } .change-list .filtered .results, .change-list .filtered .paginator, .filtered #toolbar, .filtered div.xfull { margin-right: 0; margin-left: 280px; } #changelist-filter li.selected { border-left: none; padding-left: 10px; margin-left: 0; border-right: 5px solid #eaeaea; padding-right: 10px; margin-right: -15px; } .filtered .actions { margin-left: 280px; margin-right: 0; } #changelist table tbody td:first-child, #changelist table tbody th:first-child { border-right: none; border-left: none; } /* FORMS */ .aligned label { padding: 0 0 3px 1em; float: right; } .submit-row { text-align: left } .submit-row p.deletelink-box { float: right; } .submit-row input.default { margin-left: 0; } .vDateField, .vTimeField { margin-left: 2px; } .aligned .form-row input { margin-left: 5px; } form .aligned p.help, form .aligned div.help { clear: right; } form ul.inline li { float: right; padding-right: 0; padding-left: 7px; } input[type=submit].default, .submit-row input.default { float: left; } fieldset .field-box { float: right; margin-left: 20px; margin-right: 0; } .errorlist li { background-position: 100% 12px; padding: 0; } .errornote { background-position: 100% 12px; padding: 10px 12px; } /* WIDGETS */ .calendarnav-previous { top: 0; left: auto; right: 10px; } .calendarnav-next { top: 0; right: auto; left: 10px; } .calendar caption, .calendarbox h2 { text-align: center; } .selector { float: right; } .selector .selector-filter { text-align: right; } .inline-deletelink { float: left; } form .form-row p.datetime { overflow: hidden; } .related-widget-wrapper { float: right; } /* MISC */ .inline-related h2, .inline-group h2 { text-align: right } .inline-related h3 span.delete { padding-right: 20px; padding-left: inherit; left: 10px; right: inherit; float:left; } .inline-related h3 span.delete label { margin-left: inherit; margin-right: 2px; } /* IE7 specific bug fixes */ div.colM { position: relative; } .submit-row input { float: left; } ================================================ FILE: static_cdn/static_root/admin/css/widgets.css ================================================ /* SELECTOR (FILTER INTERFACE) */ .selector { width: 800px; float: left; } .selector select { width: 380px; height: 17.2em; } .selector-available, .selector-chosen { float: left; width: 380px; text-align: center; margin-bottom: 5px; } .selector-chosen select { border-top: none; } .selector-available h2, .selector-chosen h2 { border: 1px solid #ccc; border-radius: 4px 4px 0 0; } .selector-chosen h2 { background: #79aec8; color: #fff; } .selector .selector-available h2 { background: #f8f8f8; color: #666; } .selector .selector-filter { background: white; border: 1px solid #ccc; border-width: 0 1px; padding: 8px; color: #999; font-size: 10px; margin: 0; text-align: left; } .selector .selector-filter label, .inline-group .aligned .selector .selector-filter label { float: left; margin: 7px 0 0; width: 18px; height: 18px; padding: 0; overflow: hidden; line-height: 1; } .selector .selector-available input { width: 320px; margin-left: 8px; } .selector ul.selector-chooser { float: left; width: 22px; background-color: #eee; border-radius: 10px; margin: 10em 5px 0 5px; padding: 0; } .selector-chooser li { margin: 0; padding: 3px; list-style-type: none; } .selector select { padding: 0 10px; margin: 0 0 10px; border-radius: 0 0 4px 4px; } .selector-add, .selector-remove { width: 16px; height: 16px; display: block; text-indent: -3000px; overflow: hidden; cursor: default; opacity: 0.3; } .active.selector-add, .active.selector-remove { opacity: 1; } .active.selector-add:hover, .active.selector-remove:hover { cursor: pointer; } .selector-add { background: url(../img/selector-icons.svg) 0 -96px no-repeat; } .active.selector-add:focus, .active.selector-add:hover { background-position: 0 -112px; } .selector-remove { background: url(../img/selector-icons.svg) 0 -64px no-repeat; } .active.selector-remove:focus, .active.selector-remove:hover { background-position: 0 -80px; } a.selector-chooseall, a.selector-clearall { display: inline-block; height: 16px; text-align: left; margin: 1px auto 3px; overflow: hidden; font-weight: bold; line-height: 16px; color: #666; text-decoration: none; opacity: 0.3; } a.active.selector-chooseall:focus, a.active.selector-clearall:focus, a.active.selector-chooseall:hover, a.active.selector-clearall:hover { color: #447e9b; } a.active.selector-chooseall, a.active.selector-clearall { opacity: 1; } a.active.selector-chooseall:hover, a.active.selector-clearall:hover { cursor: pointer; } a.selector-chooseall { padding: 0 18px 0 0; background: url(../img/selector-icons.svg) right -160px no-repeat; cursor: default; } a.active.selector-chooseall:focus, a.active.selector-chooseall:hover { background-position: 100% -176px; } a.selector-clearall { padding: 0 0 0 18px; background: url(../img/selector-icons.svg) 0 -128px no-repeat; cursor: default; } a.active.selector-clearall:focus, a.active.selector-clearall:hover { background-position: 0 -144px; } /* STACKED SELECTORS */ .stacked { float: left; width: 490px; } .stacked select { width: 480px; height: 10.1em; } .stacked .selector-available, .stacked .selector-chosen { width: 480px; } .stacked .selector-available { margin-bottom: 0; } .stacked .selector-available input { width: 422px; } .stacked ul.selector-chooser { height: 22px; width: 50px; margin: 0 0 10px 40%; background-color: #eee; border-radius: 10px; } .stacked .selector-chooser li { float: left; padding: 3px 3px 3px 5px; } .stacked .selector-chooseall, .stacked .selector-clearall { display: none; } .stacked .selector-add { background: url(../img/selector-icons.svg) 0 -32px no-repeat; cursor: default; } .stacked .active.selector-add { background-position: 0 -48px; cursor: pointer; } .stacked .selector-remove { background: url(../img/selector-icons.svg) 0 0 no-repeat; cursor: default; } .stacked .active.selector-remove { background-position: 0 -16px; cursor: pointer; } .selector .help-icon { background: url(../img/icon-unknown.svg) 0 0 no-repeat; display: inline-block; vertical-align: middle; margin: -2px 0 0 2px; width: 13px; height: 13px; } .selector .selector-chosen .help-icon { background: url(../img/icon-unknown-alt.svg) 0 0 no-repeat; } .selector .search-label-icon { background: url(../img/search.svg) 0 0 no-repeat; display: inline-block; height: 18px; width: 18px; } /* DATE AND TIME */ p.datetime { line-height: 20px; margin: 0; padding: 0; color: #666; font-weight: bold; } .datetime span { white-space: nowrap; font-weight: normal; font-size: 11px; color: #ccc; } .datetime input, .form-row .datetime input.vDateField, .form-row .datetime input.vTimeField { min-width: 0; margin-left: 5px; margin-bottom: 4px; } table p.datetime { font-size: 11px; margin-left: 0; padding-left: 0; } .datetimeshortcuts .clock-icon, .datetimeshortcuts .date-icon { position: relative; display: inline-block; vertical-align: middle; height: 16px; width: 16px; overflow: hidden; } .datetimeshortcuts .clock-icon { background: url(../img/icon-clock.svg) 0 0 no-repeat; } .datetimeshortcuts a:focus .clock-icon, .datetimeshortcuts a:hover .clock-icon { background-position: 0 -16px; } .datetimeshortcuts .date-icon { background: url(../img/icon-calendar.svg) 0 0 no-repeat; top: -1px; } .datetimeshortcuts a:focus .date-icon, .datetimeshortcuts a:hover .date-icon { background-position: 0 -16px; } .timezonewarning { font-size: 11px; color: #999; } /* URL */ p.url { line-height: 20px; margin: 0; padding: 0; color: #666; font-size: 11px; font-weight: bold; } .url a { font-weight: normal; } /* FILE UPLOADS */ p.file-upload { line-height: 20px; margin: 0; padding: 0; color: #666; font-size: 11px; font-weight: bold; } .aligned p.file-upload { margin-left: 170px; } .file-upload a { font-weight: normal; } .file-upload .deletelink { margin-left: 5px; } span.clearable-file-input label { color: #333; font-size: 11px; display: inline; float: none; } /* CALENDARS & CLOCKS */ .calendarbox, .clockbox { margin: 5px auto; font-size: 12px; width: 19em; text-align: center; background: white; border: 1px solid #ddd; border-radius: 4px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); overflow: hidden; position: relative; } .clockbox { width: auto; } .calendar { margin: 0; padding: 0; } .calendar table { margin: 0; padding: 0; border-collapse: collapse; background: white; width: 100%; } .calendar caption, .calendarbox h2 { margin: 0; text-align: center; border-top: none; background: #f5dd5d; font-weight: 700; font-size: 12px; color: #333; } .calendar th { padding: 8px 5px; background: #f8f8f8; border-bottom: 1px solid #ddd; font-weight: 400; font-size: 12px; text-align: center; color: #666; } .calendar td { font-weight: 400; font-size: 12px; text-align: center; padding: 0; border-top: 1px solid #eee; border-bottom: none; } .calendar td.selected a { background: #79aec8; color: #fff; } .calendar td.nonday { background: #f8f8f8; } .calendar td.today a { font-weight: 700; } .calendar td a, .timelist a { display: block; font-weight: 400; padding: 6px; text-decoration: none; color: #444; } .calendar td a:focus, .timelist a:focus, .calendar td a:hover, .timelist a:hover { background: #79aec8; color: white; } .calendar td a:active, .timelist a:active { background: #417690; color: white; } .calendarnav { font-size: 10px; text-align: center; color: #ccc; margin: 0; padding: 1px 3px; } .calendarnav a:link, #calendarnav a:visited, #calendarnav a:focus, #calendarnav a:hover { color: #999; } .calendar-shortcuts { background: white; font-size: 11px; line-height: 11px; border-top: 1px solid #eee; padding: 8px 0; color: #ccc; } .calendarbox .calendarnav-previous, .calendarbox .calendarnav-next { display: block; position: absolute; top: 8px; width: 15px; height: 15px; text-indent: -9999px; padding: 0; } .calendarnav-previous { left: 10px; background: url(../img/calendar-icons.svg) 0 0 no-repeat; } .calendarbox .calendarnav-previous:focus, .calendarbox .calendarnav-previous:hover { background-position: 0 -15px; } .calendarnav-next { right: 10px; background: url(../img/calendar-icons.svg) 0 -30px no-repeat; } .calendarbox .calendarnav-next:focus, .calendarbox .calendarnav-next:hover { background-position: 0 -45px; } .calendar-cancel { margin: 0; padding: 4px 0; font-size: 12px; background: #eee; border-top: 1px solid #ddd; color: #333; } .calendar-cancel:focus, .calendar-cancel:hover { background: #ddd; } .calendar-cancel a { color: black; display: block; } ul.timelist, .timelist li { list-style-type: none; margin: 0; padding: 0; } .timelist a { padding: 2px; } /* EDIT INLINE */ .inline-deletelink { float: right; text-indent: -9999px; background: url(../img/inline-delete.svg) 0 0 no-repeat; width: 16px; height: 16px; border: 0px none; } .inline-deletelink:focus, .inline-deletelink:hover { cursor: pointer; } /* RELATED WIDGET WRAPPER */ .related-widget-wrapper { float: left; /* display properly in form rows with multiple fields */ overflow: hidden; /* clear floated contents */ } .related-widget-wrapper-link { opacity: 0.3; } .related-widget-wrapper-link:link { opacity: .8; } .related-widget-wrapper-link:link:focus, .related-widget-wrapper-link:link:hover { opacity: 1; } select + .related-widget-wrapper-link, .related-widget-wrapper-link + .related-widget-wrapper-link { margin-left: 7px; } ================================================ FILE: static_cdn/static_root/admin/fonts/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: static_cdn/static_root/admin/fonts/README.txt ================================================ Roboto webfont source: https://www.google.com/fonts/specimen/Roboto Weights used in this project: Light (300), Regular (400), Bold (700) ================================================ FILE: static_cdn/static_root/admin/img/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2014 Code Charm Ltd 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. ================================================ FILE: static_cdn/static_root/admin/img/README.txt ================================================ All icons are taken from Font Awesome (http://fontawesome.io/) project. The Font Awesome font is licensed under the SIL OFL 1.1: - http://scripts.sil.org/OFL SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG Font-Awesome-SVG-PNG is licensed under the MIT license (see file license in current folder). ================================================ FILE: static_cdn/static_root/admin/js/SelectBox.js ================================================ (function($) { 'use strict'; var SelectBox = { cache: {}, init: function(id) { var box = document.getElementById(id); var node; SelectBox.cache[id] = []; var cache = SelectBox.cache[id]; var boxOptions = box.options; var boxOptionsLength = boxOptions.length; for (var i = 0, j = boxOptionsLength; i < j; i++) { node = boxOptions[i]; cache.push({value: node.value, text: node.text, displayed: 1}); } }, redisplay: function(id) { // Repopulate HTML select box from cache var box = document.getElementById(id); var node; $(box).empty(); // clear all options var new_options = box.outerHTML.slice(0, -9); // grab just the opening tag var cache = SelectBox.cache[id]; for (var i = 0, j = cache.length; i < j; i++) { node = cache[i]; if (node.displayed) { var new_option = new Option(node.text, node.value, false, false); // Shows a tooltip when hovering over the option new_option.setAttribute("title", node.text); new_options += new_option.outerHTML; } } new_options += ''; box.outerHTML = new_options; }, filter: function(id, text) { // Redisplay the HTML select box, displaying only the choices containing ALL // the words in text. (It's an AND search.) var tokens = text.toLowerCase().split(/\s+/); var node, token; var cache = SelectBox.cache[id]; for (var i = 0, j = cache.length; i < j; i++) { node = cache[i]; node.displayed = 1; var node_text = node.text.toLowerCase(); var numTokens = tokens.length; for (var k = 0; k < numTokens; k++) { token = tokens[k]; if (node_text.indexOf(token) === -1) { node.displayed = 0; break; // Once the first token isn't found we're done } } } SelectBox.redisplay(id); }, delete_from_cache: function(id, value) { var node, delete_index = null; var cache = SelectBox.cache[id]; for (var i = 0, j = cache.length; i < j; i++) { node = cache[i]; if (node.value === value) { delete_index = i; break; } } cache.splice(delete_index, 1); }, add_to_cache: function(id, option) { SelectBox.cache[id].push({value: option.value, text: option.text, displayed: 1}); }, cache_contains: function(id, value) { // Check if an item is contained in the cache var node; var cache = SelectBox.cache[id]; for (var i = 0, j = cache.length; i < j; i++) { node = cache[i]; if (node.value === value) { return true; } } return false; }, move: function(from, to) { var from_box = document.getElementById(from); var option; var boxOptions = from_box.options; var boxOptionsLength = boxOptions.length; for (var i = 0, j = boxOptionsLength; i < j; i++) { option = boxOptions[i]; var option_value = option.value; if (option.selected && SelectBox.cache_contains(from, option_value)) { SelectBox.add_to_cache(to, {value: option_value, text: option.text, displayed: 1}); SelectBox.delete_from_cache(from, option_value); } } SelectBox.redisplay(from); SelectBox.redisplay(to); }, move_all: function(from, to) { var from_box = document.getElementById(from); var option; var boxOptions = from_box.options; var boxOptionsLength = boxOptions.length; for (var i = 0, j = boxOptionsLength; i < j; i++) { option = boxOptions[i]; var option_value = option.value; if (SelectBox.cache_contains(from, option_value)) { SelectBox.add_to_cache(to, {value: option_value, text: option.text, displayed: 1}); SelectBox.delete_from_cache(from, option_value); } } SelectBox.redisplay(from); SelectBox.redisplay(to); }, sort: function(id) { SelectBox.cache[id].sort(function(a, b) { a = a.text.toLowerCase(); b = b.text.toLowerCase(); try { if (a > b) { return 1; } if (a < b) { return -1; } } catch (e) { // silently fail on IE 'unknown' exception } return 0; } ); }, select_all: function(id) { var box = document.getElementById(id); var boxOptions = box.options; var boxOptionsLength = boxOptions.length; for (var i = 0; i < boxOptionsLength; i++) { boxOptions[i].selected = 'selected'; } } }; window.SelectBox = SelectBox; })(django.jQuery); ================================================ FILE: static_cdn/static_root/admin/js/SelectFilter2.js ================================================ /*global SelectBox, addEvent, gettext, interpolate, quickElement, SelectFilter*/ /* SelectFilter2 - Turns a multiple-select box into a filter interface. Requires jQuery, core.js, and SelectBox.js. */ (function($) { 'use strict'; function findForm(node) { // returns the node of the form containing the given node if (node.tagName.toLowerCase() !== 'form') { return findForm(node.parentNode); } return node; } window.SelectFilter = { init: function(field_id, field_name, is_stacked) { if (field_id.match(/__prefix__/)) { // Don't initialize on empty forms. return; } var from_box = document.getElementById(field_id); from_box.id += '_from'; // change its ID from_box.className = 'filtered'; var ps = from_box.parentNode.getElementsByTagName('p'); for (var i = 0; i < ps.length; i++) { if (ps[i].className.indexOf("info") !== -1) { // Remove

, because it just gets in the way. from_box.parentNode.removeChild(ps[i]); } else if (ps[i].className.indexOf("help") !== -1) { // Move help text up to the top so it isn't below the select // boxes or wrapped off on the side to the right of the add // button: from_box.parentNode.insertBefore(ps[i], from_box.parentNode.firstChild); } } //

or
var selector_div = quickElement('div', from_box.parentNode); selector_div.className = is_stacked ? 'selector stacked' : 'selector'; //
var selector_available = quickElement('div', selector_div); selector_available.className = 'selector-available'; var title_available = quickElement('h2', selector_available, interpolate(gettext('Available %s') + ' ', [field_name])); quickElement( 'span', title_available, '', 'class', 'help help-tooltip help-icon', 'title', interpolate( gettext( 'This is the list of available %s. You may choose some by ' + 'selecting them in the box below and then clicking the ' + '"Choose" arrow between the two boxes.' ), [field_name] ) ); var filter_p = quickElement('p', selector_available, '', 'id', field_id + '_filter'); filter_p.className = 'selector-filter'; var search_filter_label = quickElement('label', filter_p, '', 'for', field_id + '_input'); quickElement( 'span', search_filter_label, '', 'class', 'help-tooltip search-label-icon', 'title', interpolate(gettext("Type into this box to filter down the list of available %s."), [field_name]) ); filter_p.appendChild(document.createTextNode(' ')); var filter_input = quickElement('input', filter_p, '', 'type', 'text', 'placeholder', gettext("Filter")); filter_input.id = field_id + '_input'; selector_available.appendChild(from_box); var choose_all = quickElement('a', selector_available, gettext('Choose all'), 'title', interpolate(gettext('Click to choose all %s at once.'), [field_name]), 'href', '#', 'id', field_id + '_add_all_link'); choose_all.className = 'selector-chooseall'; //
    var selector_chooser = quickElement('ul', selector_div); selector_chooser.className = 'selector-chooser'; var add_link = quickElement('a', quickElement('li', selector_chooser), gettext('Choose'), 'title', gettext('Choose'), 'href', '#', 'id', field_id + '_add_link'); add_link.className = 'selector-add'; var remove_link = quickElement('a', quickElement('li', selector_chooser), gettext('Remove'), 'title', gettext('Remove'), 'href', '#', 'id', field_id + '_remove_link'); remove_link.className = 'selector-remove'; //
    var selector_chosen = quickElement('div', selector_div); selector_chosen.className = 'selector-chosen'; var title_chosen = quickElement('h2', selector_chosen, interpolate(gettext('Chosen %s') + ' ', [field_name])); quickElement( 'span', title_chosen, '', 'class', 'help help-tooltip help-icon', 'title', interpolate( gettext( 'This is the list of chosen %s. You may remove some by ' + 'selecting them in the box below and then clicking the ' + '"Remove" arrow between the two boxes.' ), [field_name] ) ); var to_box = quickElement('select', selector_chosen, '', 'id', field_id + '_to', 'multiple', 'multiple', 'size', from_box.size, 'name', from_box.getAttribute('name')); to_box.className = 'filtered'; var clear_all = quickElement('a', selector_chosen, gettext('Remove all'), 'title', interpolate(gettext('Click to remove all chosen %s at once.'), [field_name]), 'href', '#', 'id', field_id + '_remove_all_link'); clear_all.className = 'selector-clearall'; from_box.setAttribute('name', from_box.getAttribute('name') + '_old'); // Set up the JavaScript event handlers for the select box filter interface var move_selection = function(e, elem, move_func, from, to) { if (elem.className.indexOf('active') !== -1) { move_func(from, to); SelectFilter.refresh_icons(field_id); } e.preventDefault(); }; addEvent(choose_all, 'click', function(e) { move_selection(e, this, SelectBox.move_all, field_id + '_from', field_id + '_to'); }); addEvent(add_link, 'click', function(e) { move_selection(e, this, SelectBox.move, field_id + '_from', field_id + '_to'); }); addEvent(remove_link, 'click', function(e) { move_selection(e, this, SelectBox.move, field_id + '_to', field_id + '_from'); }); addEvent(clear_all, 'click', function(e) { move_selection(e, this, SelectBox.move_all, field_id + '_to', field_id + '_from'); }); addEvent(filter_input, 'keypress', function(e) { SelectFilter.filter_key_press(e, field_id); }); addEvent(filter_input, 'keyup', function(e) { SelectFilter.filter_key_up(e, field_id); }); addEvent(filter_input, 'keydown', function(e) { SelectFilter.filter_key_down(e, field_id); }); addEvent(selector_div, 'change', function(e) { if (e.target.tagName === 'SELECT') { SelectFilter.refresh_icons(field_id); } }); addEvent(selector_div, 'dblclick', function(e) { if (e.target.tagName === 'OPTION') { if (e.target.closest('select').id === field_id + '_to') { SelectBox.move(field_id + '_to', field_id + '_from'); } else { SelectBox.move(field_id + '_from', field_id + '_to'); } SelectFilter.refresh_icons(field_id); } }); addEvent(findForm(from_box), 'submit', function() { SelectBox.select_all(field_id + '_to'); }); SelectBox.init(field_id + '_from'); SelectBox.init(field_id + '_to'); // Move selected from_box options to to_box SelectBox.move(field_id + '_from', field_id + '_to'); if (!is_stacked) { // In horizontal mode, give the same height to the two boxes. var j_from_box = $(from_box); var j_to_box = $(to_box); var resize_filters = function() { j_to_box.height($(filter_p).outerHeight() + j_from_box.outerHeight()); }; if (j_from_box.outerHeight() > 0) { resize_filters(); // This fieldset is already open. Resize now. } else { // This fieldset is probably collapsed. Wait for its 'show' event. j_to_box.closest('fieldset').one('show.fieldset', resize_filters); } } // Initial icon refresh SelectFilter.refresh_icons(field_id); }, any_selected: function(field) { var any_selected = false; try { // Temporarily add the required attribute and check validity. // This is much faster in WebKit browsers than the fallback. field.attr('required', 'required'); any_selected = field.is(':valid'); field.removeAttr('required'); } catch (e) { // Browsers that don't support :valid (IE < 10) any_selected = field.find('option:selected').length > 0; } return any_selected; }, refresh_icons: function(field_id) { var from = $('#' + field_id + '_from'); var to = $('#' + field_id + '_to'); // Active if at least one item is selected $('#' + field_id + '_add_link').toggleClass('active', SelectFilter.any_selected(from)); $('#' + field_id + '_remove_link').toggleClass('active', SelectFilter.any_selected(to)); // Active if the corresponding box isn't empty $('#' + field_id + '_add_all_link').toggleClass('active', from.find('option').length > 0); $('#' + field_id + '_remove_all_link').toggleClass('active', to.find('option').length > 0); }, filter_key_press: function(event, field_id) { var from = document.getElementById(field_id + '_from'); // don't submit form if user pressed Enter if ((event.which && event.which === 13) || (event.keyCode && event.keyCode === 13)) { from.selectedIndex = 0; SelectBox.move(field_id + '_from', field_id + '_to'); from.selectedIndex = 0; event.preventDefault(); return false; } }, filter_key_up: function(event, field_id) { var from = document.getElementById(field_id + '_from'); var temp = from.selectedIndex; SelectBox.filter(field_id + '_from', document.getElementById(field_id + '_input').value); from.selectedIndex = temp; return true; }, filter_key_down: function(event, field_id) { var from = document.getElementById(field_id + '_from'); // right arrow -- move across if ((event.which && event.which === 39) || (event.keyCode && event.keyCode === 39)) { var old_index = from.selectedIndex; SelectBox.move(field_id + '_from', field_id + '_to'); from.selectedIndex = (old_index === from.length) ? from.length - 1 : old_index; return false; } // down arrow -- wrap around if ((event.which && event.which === 40) || (event.keyCode && event.keyCode === 40)) { from.selectedIndex = (from.length === from.selectedIndex + 1) ? 0 : from.selectedIndex + 1; } // up arrow -- wrap around if ((event.which && event.which === 38) || (event.keyCode && event.keyCode === 38)) { from.selectedIndex = (from.selectedIndex === 0) ? from.length - 1 : from.selectedIndex - 1; } return true; } }; addEvent(window, 'load', function(e) { $('select.selectfilter, select.selectfilterstacked').each(function() { var $el = $(this), data = $el.data(); SelectFilter.init($el.attr('id'), data.fieldName, parseInt(data.isStacked, 10)); }); }); })(django.jQuery); ================================================ FILE: static_cdn/static_root/admin/js/actions.js ================================================ /*global gettext, interpolate, ngettext*/ (function($) { 'use strict'; var lastChecked; $.fn.actions = function(opts) { var options = $.extend({}, $.fn.actions.defaults, opts); var actionCheckboxes = $(this); var list_editable_changed = false; var showQuestion = function() { $(options.acrossClears).hide(); $(options.acrossQuestions).show(); $(options.allContainer).hide(); }, showClear = function() { $(options.acrossClears).show(); $(options.acrossQuestions).hide(); $(options.actionContainer).toggleClass(options.selectedClass); $(options.allContainer).show(); $(options.counterContainer).hide(); }, reset = function() { $(options.acrossClears).hide(); $(options.acrossQuestions).hide(); $(options.allContainer).hide(); $(options.counterContainer).show(); }, clearAcross = function() { reset(); $(options.acrossInput).val(0); $(options.actionContainer).removeClass(options.selectedClass); }, checker = function(checked) { if (checked) { showQuestion(); } else { reset(); } $(actionCheckboxes).prop("checked", checked) .parent().parent().toggleClass(options.selectedClass, checked); }, updateCounter = function() { var sel = $(actionCheckboxes).filter(":checked").length; // data-actions-icnt is defined in the generated HTML // and contains the total amount of objects in the queryset var actions_icnt = $('.action-counter').data('actionsIcnt'); $(options.counterContainer).html(interpolate( ngettext('%(sel)s of %(cnt)s selected', '%(sel)s of %(cnt)s selected', sel), { sel: sel, cnt: actions_icnt }, true)); $(options.allToggle).prop("checked", function() { var value; if (sel === actionCheckboxes.length) { value = true; showQuestion(); } else { value = false; clearAcross(); } return value; }); }; // Show counter by default $(options.counterContainer).show(); // Check state of checkboxes and reinit state if needed $(this).filter(":checked").each(function(i) { $(this).parent().parent().toggleClass(options.selectedClass); updateCounter(); if ($(options.acrossInput).val() === 1) { showClear(); } }); $(options.allToggle).show().click(function() { checker($(this).prop("checked")); updateCounter(); }); $("a", options.acrossQuestions).click(function(event) { event.preventDefault(); $(options.acrossInput).val(1); showClear(); }); $("a", options.acrossClears).click(function(event) { event.preventDefault(); $(options.allToggle).prop("checked", false); clearAcross(); checker(0); updateCounter(); }); lastChecked = null; $(actionCheckboxes).click(function(event) { if (!event) { event = window.event; } var target = event.target ? event.target : event.srcElement; if (lastChecked && $.data(lastChecked) !== $.data(target) && event.shiftKey === true) { var inrange = false; $(lastChecked).prop("checked", target.checked) .parent().parent().toggleClass(options.selectedClass, target.checked); $(actionCheckboxes).each(function() { if ($.data(this) === $.data(lastChecked) || $.data(this) === $.data(target)) { inrange = (inrange) ? false : true; } if (inrange) { $(this).prop("checked", target.checked) .parent().parent().toggleClass(options.selectedClass, target.checked); } }); } $(target).parent().parent().toggleClass(options.selectedClass, target.checked); lastChecked = target; updateCounter(); }); $('form#changelist-form table#result_list tr').find('td:gt(0) :input').change(function() { list_editable_changed = true; }); $('form#changelist-form button[name="index"]').click(function(event) { if (list_editable_changed) { return confirm(gettext("You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.")); } }); $('form#changelist-form input[name="_save"]').click(function(event) { var action_changed = false; $('select option:selected', options.actionContainer).each(function() { if ($(this).val()) { action_changed = true; } }); if (action_changed) { if (list_editable_changed) { return confirm(gettext("You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.")); } else { return confirm(gettext("You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.")); } } }); }; /* Setup plugin defaults */ $.fn.actions.defaults = { actionContainer: "div.actions", counterContainer: "span.action-counter", allContainer: "div.actions span.all", acrossInput: "div.actions input.select-across", acrossQuestions: "div.actions span.question", acrossClears: "div.actions span.clear", allToggle: "#action-toggle", selectedClass: "selected" }; $(document).ready(function() { var $actionsEls = $('tr input.action-select'); if ($actionsEls.length > 0) { $actionsEls.actions(); } }); })(django.jQuery); ================================================ FILE: static_cdn/static_root/admin/js/admin/DateTimeShortcuts.js ================================================ /*global addEvent, Calendar, cancelEventPropagation, findPosX, findPosY, getStyle, get_format, gettext, interpolate, ngettext, quickElement, removeEvent*/ // Inserts shortcut buttons after all of the following: // // (function() { 'use strict'; var DateTimeShortcuts = { calendars: [], calendarInputs: [], clockInputs: [], dismissClockFunc: [], dismissCalendarFunc: [], calendarDivName1: 'calendarbox', // name of calendar
    that gets toggled calendarDivName2: 'calendarin', // name of
    that contains calendar calendarLinkName: 'calendarlink',// name of the link that is used to toggle clockDivName: 'clockbox', // name of clock
    that gets toggled clockLinkName: 'clocklink', // name of the link that is used to toggle shortCutsClass: 'datetimeshortcuts', // class of the clock and cal shortcuts timezoneWarningClass: 'timezonewarning', // class of the warning for timezone mismatch timezoneOffset: 0, init: function() { var body = document.getElementsByTagName('body')[0]; var serverOffset = body.getAttribute('data-admin-utc-offset'); if (serverOffset) { var localOffset = new Date().getTimezoneOffset() * -60; DateTimeShortcuts.timezoneOffset = localOffset - serverOffset; } var inputs = document.getElementsByTagName('input'); for (var i = 0; i < inputs.length; i++) { var inp = inputs[i]; if (inp.getAttribute('type') === 'text' && inp.className.match(/vTimeField/)) { DateTimeShortcuts.addClock(inp); DateTimeShortcuts.addTimezoneWarning(inp); } else if (inp.getAttribute('type') === 'text' && inp.className.match(/vDateField/)) { DateTimeShortcuts.addCalendar(inp); DateTimeShortcuts.addTimezoneWarning(inp); } } }, // Return the current time while accounting for the server timezone. now: function() { var body = document.getElementsByTagName('body')[0]; var serverOffset = body.getAttribute('data-admin-utc-offset'); if (serverOffset) { var localNow = new Date(); var localOffset = localNow.getTimezoneOffset() * -60; localNow.setTime(localNow.getTime() + 1000 * (serverOffset - localOffset)); return localNow; } else { return new Date(); } }, // Add a warning when the time zone in the browser and backend do not match. addTimezoneWarning: function(inp) { var $ = django.jQuery; var warningClass = DateTimeShortcuts.timezoneWarningClass; var timezoneOffset = DateTimeShortcuts.timezoneOffset / 3600; // Only warn if there is a time zone mismatch. if (!timezoneOffset) { return; } // Check if warning is already there. if ($(inp).siblings('.' + warningClass).length) { return; } var message; if (timezoneOffset > 0) { message = ngettext( 'Note: You are %s hour ahead of server time.', 'Note: You are %s hours ahead of server time.', timezoneOffset ); } else { timezoneOffset *= -1; message = ngettext( 'Note: You are %s hour behind server time.', 'Note: You are %s hours behind server time.', timezoneOffset ); } message = interpolate(message, [timezoneOffset]); var $warning = $(''); $warning.attr('class', warningClass); $warning.text(message); $(inp).parent() .append($('
    ')) .append($warning); }, // Add clock widget to a given field addClock: function(inp) { var num = DateTimeShortcuts.clockInputs.length; DateTimeShortcuts.clockInputs[num] = inp; DateTimeShortcuts.dismissClockFunc[num] = function() { DateTimeShortcuts.dismissClock(num); return true; }; // Shortcut links (clock icon and "Now" link) var shortcuts_span = document.createElement('span'); shortcuts_span.className = DateTimeShortcuts.shortCutsClass; inp.parentNode.insertBefore(shortcuts_span, inp.nextSibling); var now_link = document.createElement('a'); now_link.setAttribute('href', "#"); now_link.appendChild(document.createTextNode(gettext('Now'))); addEvent(now_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.handleClockQuicklink(num, -1); }); var clock_link = document.createElement('a'); clock_link.setAttribute('href', '#'); clock_link.id = DateTimeShortcuts.clockLinkName + num; addEvent(clock_link, 'click', function(e) { e.preventDefault(); // avoid triggering the document click handler to dismiss the clock e.stopPropagation(); DateTimeShortcuts.openClock(num); }); quickElement( 'span', clock_link, '', 'class', 'clock-icon', 'title', gettext('Choose a Time') ); shortcuts_span.appendChild(document.createTextNode('\u00A0')); shortcuts_span.appendChild(now_link); shortcuts_span.appendChild(document.createTextNode('\u00A0|\u00A0')); shortcuts_span.appendChild(clock_link); // Create clock link div // // Markup looks like: //
    //

    Choose a time

    // //

    Cancel

    //
    var clock_box = document.createElement('div'); clock_box.style.display = 'none'; clock_box.style.position = 'absolute'; clock_box.className = 'clockbox module'; clock_box.setAttribute('id', DateTimeShortcuts.clockDivName + num); document.body.appendChild(clock_box); addEvent(clock_box, 'click', cancelEventPropagation); quickElement('h2', clock_box, gettext('Choose a time')); var time_list = quickElement('ul', clock_box); time_list.className = 'timelist'; var time_link = quickElement("a", quickElement("li", time_list), gettext("Now"), "href", "#"); addEvent(time_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.handleClockQuicklink(num, -1); }); time_link = quickElement("a", quickElement("li", time_list), gettext("Midnight"), "href", "#"); addEvent(time_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.handleClockQuicklink(num, 0); }); time_link = quickElement("a", quickElement("li", time_list), gettext("6 a.m."), "href", "#"); addEvent(time_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.handleClockQuicklink(num, 6); }); time_link = quickElement("a", quickElement("li", time_list), gettext("Noon"), "href", "#"); addEvent(time_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.handleClockQuicklink(num, 12); }); time_link = quickElement("a", quickElement("li", time_list), gettext("6 p.m."), "href", "#"); addEvent(time_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.handleClockQuicklink(num, 18); }); var cancel_p = quickElement('p', clock_box); cancel_p.className = 'calendar-cancel'; var cancel_link = quickElement('a', cancel_p, gettext('Cancel'), 'href', '#'); addEvent(cancel_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.dismissClock(num); }); django.jQuery(document).bind('keyup', function(event) { if (event.which === 27) { // ESC key closes popup DateTimeShortcuts.dismissClock(num); event.preventDefault(); } }); }, openClock: function(num) { var clock_box = document.getElementById(DateTimeShortcuts.clockDivName + num); var clock_link = document.getElementById(DateTimeShortcuts.clockLinkName + num); // Recalculate the clockbox position // is it left-to-right or right-to-left layout ? if (getStyle(document.body, 'direction') !== 'rtl') { clock_box.style.left = findPosX(clock_link) + 17 + 'px'; } else { // since style's width is in em, it'd be tough to calculate // px value of it. let's use an estimated px for now // TODO: IE returns wrong value for findPosX when in rtl mode // (it returns as it was left aligned), needs to be fixed. clock_box.style.left = findPosX(clock_link) - 110 + 'px'; } clock_box.style.top = Math.max(0, findPosY(clock_link) - 30) + 'px'; // Show the clock box clock_box.style.display = 'block'; addEvent(document, 'click', DateTimeShortcuts.dismissClockFunc[num]); }, dismissClock: function(num) { document.getElementById(DateTimeShortcuts.clockDivName + num).style.display = 'none'; removeEvent(document, 'click', DateTimeShortcuts.dismissClockFunc[num]); }, handleClockQuicklink: function(num, val) { var d; if (val === -1) { d = DateTimeShortcuts.now(); } else { d = new Date(1970, 1, 1, val, 0, 0, 0); } DateTimeShortcuts.clockInputs[num].value = d.strftime(get_format('TIME_INPUT_FORMATS')[0]); DateTimeShortcuts.clockInputs[num].focus(); DateTimeShortcuts.dismissClock(num); }, // Add calendar widget to a given field. addCalendar: function(inp) { var num = DateTimeShortcuts.calendars.length; DateTimeShortcuts.calendarInputs[num] = inp; DateTimeShortcuts.dismissCalendarFunc[num] = function() { DateTimeShortcuts.dismissCalendar(num); return true; }; // Shortcut links (calendar icon and "Today" link) var shortcuts_span = document.createElement('span'); shortcuts_span.className = DateTimeShortcuts.shortCutsClass; inp.parentNode.insertBefore(shortcuts_span, inp.nextSibling); var today_link = document.createElement('a'); today_link.setAttribute('href', '#'); today_link.appendChild(document.createTextNode(gettext('Today'))); addEvent(today_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.handleCalendarQuickLink(num, 0); }); var cal_link = document.createElement('a'); cal_link.setAttribute('href', '#'); cal_link.id = DateTimeShortcuts.calendarLinkName + num; addEvent(cal_link, 'click', function(e) { e.preventDefault(); // avoid triggering the document click handler to dismiss the calendar e.stopPropagation(); DateTimeShortcuts.openCalendar(num); }); quickElement( 'span', cal_link, '', 'class', 'date-icon', 'title', gettext('Choose a Date') ); shortcuts_span.appendChild(document.createTextNode('\u00A0')); shortcuts_span.appendChild(today_link); shortcuts_span.appendChild(document.createTextNode('\u00A0|\u00A0')); shortcuts_span.appendChild(cal_link); // Create calendarbox div. // // Markup looks like: // //
    //

    // // February 2003 //

    //
    // //
    // //

    Cancel

    //
    var cal_box = document.createElement('div'); cal_box.style.display = 'none'; cal_box.style.position = 'absolute'; cal_box.className = 'calendarbox module'; cal_box.setAttribute('id', DateTimeShortcuts.calendarDivName1 + num); document.body.appendChild(cal_box); addEvent(cal_box, 'click', cancelEventPropagation); // next-prev links var cal_nav = quickElement('div', cal_box); var cal_nav_prev = quickElement('a', cal_nav, '<', 'href', '#'); cal_nav_prev.className = 'calendarnav-previous'; addEvent(cal_nav_prev, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.drawPrev(num); }); var cal_nav_next = quickElement('a', cal_nav, '>', 'href', '#'); cal_nav_next.className = 'calendarnav-next'; addEvent(cal_nav_next, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.drawNext(num); }); // main box var cal_main = quickElement('div', cal_box, '', 'id', DateTimeShortcuts.calendarDivName2 + num); cal_main.className = 'calendar'; DateTimeShortcuts.calendars[num] = new Calendar(DateTimeShortcuts.calendarDivName2 + num, DateTimeShortcuts.handleCalendarCallback(num)); DateTimeShortcuts.calendars[num].drawCurrent(); // calendar shortcuts var shortcuts = quickElement('div', cal_box); shortcuts.className = 'calendar-shortcuts'; var day_link = quickElement('a', shortcuts, gettext('Yesterday'), 'href', '#'); addEvent(day_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.handleCalendarQuickLink(num, -1); }); shortcuts.appendChild(document.createTextNode('\u00A0|\u00A0')); day_link = quickElement('a', shortcuts, gettext('Today'), 'href', '#'); addEvent(day_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.handleCalendarQuickLink(num, 0); }); shortcuts.appendChild(document.createTextNode('\u00A0|\u00A0')); day_link = quickElement('a', shortcuts, gettext('Tomorrow'), 'href', '#'); addEvent(day_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.handleCalendarQuickLink(num, +1); }); // cancel bar var cancel_p = quickElement('p', cal_box); cancel_p.className = 'calendar-cancel'; var cancel_link = quickElement('a', cancel_p, gettext('Cancel'), 'href', '#'); addEvent(cancel_link, 'click', function(e) { e.preventDefault(); DateTimeShortcuts.dismissCalendar(num); }); django.jQuery(document).bind('keyup', function(event) { if (event.which === 27) { // ESC key closes popup DateTimeShortcuts.dismissCalendar(num); event.preventDefault(); } }); }, openCalendar: function(num) { var cal_box = document.getElementById(DateTimeShortcuts.calendarDivName1 + num); var cal_link = document.getElementById(DateTimeShortcuts.calendarLinkName + num); var inp = DateTimeShortcuts.calendarInputs[num]; // Determine if the current value in the input has a valid date. // If so, draw the calendar with that date's year and month. if (inp.value) { var format = get_format('DATE_INPUT_FORMATS')[0]; var selected = inp.value.strptime(format); var year = selected.getUTCFullYear(); var month = selected.getUTCMonth() + 1; var re = /\d{4}/; if (re.test(year.toString()) && month >= 1 && month <= 12) { DateTimeShortcuts.calendars[num].drawDate(month, year, selected); } } // Recalculate the clockbox position // is it left-to-right or right-to-left layout ? if (getStyle(document.body, 'direction') !== 'rtl') { cal_box.style.left = findPosX(cal_link) + 17 + 'px'; } else { // since style's width is in em, it'd be tough to calculate // px value of it. let's use an estimated px for now // TODO: IE returns wrong value for findPosX when in rtl mode // (it returns as it was left aligned), needs to be fixed. cal_box.style.left = findPosX(cal_link) - 180 + 'px'; } cal_box.style.top = Math.max(0, findPosY(cal_link) - 75) + 'px'; cal_box.style.display = 'block'; addEvent(document, 'click', DateTimeShortcuts.dismissCalendarFunc[num]); }, dismissCalendar: function(num) { document.getElementById(DateTimeShortcuts.calendarDivName1 + num).style.display = 'none'; removeEvent(document, 'click', DateTimeShortcuts.dismissCalendarFunc[num]); }, drawPrev: function(num) { DateTimeShortcuts.calendars[num].drawPreviousMonth(); }, drawNext: function(num) { DateTimeShortcuts.calendars[num].drawNextMonth(); }, handleCalendarCallback: function(num) { var format = get_format('DATE_INPUT_FORMATS')[0]; // the format needs to be escaped a little format = format.replace('\\', '\\\\'); format = format.replace('\r', '\\r'); format = format.replace('\n', '\\n'); format = format.replace('\t', '\\t'); format = format.replace("'", "\\'"); return function(y, m, d) { DateTimeShortcuts.calendarInputs[num].value = new Date(y, m - 1, d).strftime(format); DateTimeShortcuts.calendarInputs[num].focus(); document.getElementById(DateTimeShortcuts.calendarDivName1 + num).style.display = 'none'; }; }, handleCalendarQuickLink: function(num, offset) { var d = DateTimeShortcuts.now(); d.setDate(d.getDate() + offset); DateTimeShortcuts.calendarInputs[num].value = d.strftime(get_format('DATE_INPUT_FORMATS')[0]); DateTimeShortcuts.calendarInputs[num].focus(); DateTimeShortcuts.dismissCalendar(num); } }; addEvent(window, 'load', DateTimeShortcuts.init); window.DateTimeShortcuts = DateTimeShortcuts; })(); ================================================ FILE: static_cdn/static_root/admin/js/admin/RelatedObjectLookups.js ================================================ /*global SelectBox, interpolate*/ // Handles related-objects functionality: lookup link for raw_id_fields // and Add Another links. (function($) { 'use strict'; // IE doesn't accept periods or dashes in the window name, but the element IDs // we use to generate popup window names may contain them, therefore we map them // to allowed characters in a reversible way so that we can locate the correct // element when the popup window is dismissed. function id_to_windowname(text) { text = text.replace(/\./g, '__dot__'); text = text.replace(/\-/g, '__dash__'); return text; } function windowname_to_id(text) { text = text.replace(/__dot__/g, '.'); text = text.replace(/__dash__/g, '-'); return text; } function showAdminPopup(triggeringLink, name_regexp, add_popup) { var name = triggeringLink.id.replace(name_regexp, ''); name = id_to_windowname(name); var href = triggeringLink.href; if (add_popup) { if (href.indexOf('?') === -1) { href += '?_popup=1'; } else { href += '&_popup=1'; } } var win = window.open(href, name, 'height=500,width=800,resizable=yes,scrollbars=yes'); win.focus(); return false; } function showRelatedObjectLookupPopup(triggeringLink) { return showAdminPopup(triggeringLink, /^lookup_/, true); } function dismissRelatedLookupPopup(win, chosenId) { var name = windowname_to_id(win.name); var elem = document.getElementById(name); if (elem.className.indexOf('vManyToManyRawIdAdminField') !== -1 && elem.value) { elem.value += ',' + chosenId; } else { document.getElementById(name).value = chosenId; } win.close(); } function showRelatedObjectPopup(triggeringLink) { return showAdminPopup(triggeringLink, /^(change|add|delete)_/, false); } function updateRelatedObjectLinks(triggeringLink) { var $this = $(triggeringLink); var siblings = $this.nextAll('.change-related, .delete-related'); if (!siblings.length) { return; } var value = $this.val(); if (value) { siblings.each(function() { var elm = $(this); elm.attr('href', elm.attr('data-href-template').replace('__fk__', value)); }); } else { siblings.removeAttr('href'); } } function dismissAddRelatedObjectPopup(win, newId, newRepr) { var name = windowname_to_id(win.name); var elem = document.getElementById(name); if (elem) { var elemName = elem.nodeName.toUpperCase(); if (elemName === 'SELECT') { elem.options[elem.options.length] = new Option(newRepr, newId, true, true); } else if (elemName === 'INPUT') { if (elem.className.indexOf('vManyToManyRawIdAdminField') !== -1 && elem.value) { elem.value += ',' + newId; } else { elem.value = newId; } } // Trigger a change event to update related links if required. $(elem).trigger('change'); } else { var toId = name + "_to"; var o = new Option(newRepr, newId); SelectBox.add_to_cache(toId, o); SelectBox.redisplay(toId); } win.close(); } function dismissChangeRelatedObjectPopup(win, objId, newRepr, newId) { var id = windowname_to_id(win.name).replace(/^edit_/, ''); var selectsSelector = interpolate('#%s, #%s_from, #%s_to', [id, id, id]); var selects = $(selectsSelector); selects.find('option').each(function() { if (this.value === objId) { this.textContent = newRepr; this.value = newId; } }); win.close(); } function dismissDeleteRelatedObjectPopup(win, objId) { var id = windowname_to_id(win.name).replace(/^delete_/, ''); var selectsSelector = interpolate('#%s, #%s_from, #%s_to', [id, id, id]); var selects = $(selectsSelector); selects.find('option').each(function() { if (this.value === objId) { $(this).remove(); } }).trigger('change'); win.close(); } // Global for testing purposes window.id_to_windowname = id_to_windowname; window.windowname_to_id = windowname_to_id; window.showRelatedObjectLookupPopup = showRelatedObjectLookupPopup; window.dismissRelatedLookupPopup = dismissRelatedLookupPopup; window.showRelatedObjectPopup = showRelatedObjectPopup; window.updateRelatedObjectLinks = updateRelatedObjectLinks; window.dismissAddRelatedObjectPopup = dismissAddRelatedObjectPopup; window.dismissChangeRelatedObjectPopup = dismissChangeRelatedObjectPopup; window.dismissDeleteRelatedObjectPopup = dismissDeleteRelatedObjectPopup; // Kept for backward compatibility window.showAddAnotherPopup = showRelatedObjectPopup; window.dismissAddAnotherPopup = dismissAddRelatedObjectPopup; $(document).ready(function() { $("a[data-popup-opener]").click(function(event) { event.preventDefault(); opener.dismissRelatedLookupPopup(window, $(this).data("popup-opener")); }); $('body').on('click', '.related-widget-wrapper-link', function(e) { e.preventDefault(); if (this.href) { var event = $.Event('django:show-related', {href: this.href}); $(this).trigger(event); if (!event.isDefaultPrevented()) { showRelatedObjectPopup(this); } } }); $('body').on('change', '.related-widget-wrapper select', function(e) { var event = $.Event('django:update-related'); $(this).trigger(event); if (!event.isDefaultPrevented()) { updateRelatedObjectLinks(this); } }); $('.related-widget-wrapper select').trigger('change'); $('body').on('click', '.related-lookup', function(e) { e.preventDefault(); var event = $.Event('django:lookup-related'); $(this).trigger(event); if (!event.isDefaultPrevented()) { showRelatedObjectLookupPopup(this); } }); }); })(django.jQuery); ================================================ FILE: static_cdn/static_root/admin/js/calendar.js ================================================ /*global gettext, pgettext, get_format, quickElement, removeChildren, addEvent*/ /* calendar.js - Calendar functions by Adrian Holovaty depends on core.js for utility functions like removeChildren or quickElement */ (function() { 'use strict'; // CalendarNamespace -- Provides a collection of HTML calendar-related helper functions var CalendarNamespace = { monthsOfYear: [ gettext('January'), gettext('February'), gettext('March'), gettext('April'), gettext('May'), gettext('June'), gettext('July'), gettext('August'), gettext('September'), gettext('October'), gettext('November'), gettext('December') ], daysOfWeek: [ pgettext('one letter Sunday', 'S'), pgettext('one letter Monday', 'M'), pgettext('one letter Tuesday', 'T'), pgettext('one letter Wednesday', 'W'), pgettext('one letter Thursday', 'T'), pgettext('one letter Friday', 'F'), pgettext('one letter Saturday', 'S') ], firstDayOfWeek: parseInt(get_format('FIRST_DAY_OF_WEEK')), isLeapYear: function(year) { return (((year % 4) === 0) && ((year % 100) !== 0 ) || ((year % 400) === 0)); }, getDaysInMonth: function(month, year) { var days; if (month === 1 || month === 3 || month === 5 || month === 7 || month === 8 || month === 10 || month === 12) { days = 31; } else if (month === 4 || month === 6 || month === 9 || month === 11) { days = 30; } else if (month === 2 && CalendarNamespace.isLeapYear(year)) { days = 29; } else { days = 28; } return days; }, draw: function(month, year, div_id, callback, selected) { // month = 1-12, year = 1-9999 var today = new Date(); var todayDay = today.getDate(); var todayMonth = today.getMonth() + 1; var todayYear = today.getFullYear(); var todayClass = ''; // Use UTC functions here because the date field does not contain time // and using the UTC function variants prevent the local time offset // from altering the date, specifically the day field. For example: // // ``` // var x = new Date('2013-10-02'); // var day = x.getDate(); // ``` // // The day variable above will be 1 instead of 2 in, say, US Pacific time // zone. var isSelectedMonth = false; if (typeof selected !== 'undefined') { isSelectedMonth = (selected.getUTCFullYear() === year && (selected.getUTCMonth() + 1) === month); } month = parseInt(month); year = parseInt(year); var calDiv = document.getElementById(div_id); removeChildren(calDiv); var calTable = document.createElement('table'); quickElement('caption', calTable, CalendarNamespace.monthsOfYear[month - 1] + ' ' + year); var tableBody = quickElement('tbody', calTable); // Draw days-of-week header var tableRow = quickElement('tr', tableBody); for (var i = 0; i < 7; i++) { quickElement('th', tableRow, CalendarNamespace.daysOfWeek[(i + CalendarNamespace.firstDayOfWeek) % 7]); } var startingPos = new Date(year, month - 1, 1 - CalendarNamespace.firstDayOfWeek).getDay(); var days = CalendarNamespace.getDaysInMonth(month, year); var nonDayCell; // Draw blanks before first of month tableRow = quickElement('tr', tableBody); for (i = 0; i < startingPos; i++) { nonDayCell = quickElement('td', tableRow, ' '); nonDayCell.className = "nonday"; } function calendarMonth(y, m) { function onClick(e) { e.preventDefault(); callback(y, m, django.jQuery(this).text()); } return onClick; } // Draw days of month var currentDay = 1; for (i = startingPos; currentDay <= days; i++) { if (i % 7 === 0 && currentDay !== 1) { tableRow = quickElement('tr', tableBody); } if ((currentDay === todayDay) && (month === todayMonth) && (year === todayYear)) { todayClass = 'today'; } else { todayClass = ''; } // use UTC function; see above for explanation. if (isSelectedMonth && currentDay === selected.getUTCDate()) { if (todayClass !== '') { todayClass += " "; } todayClass += "selected"; } var cell = quickElement('td', tableRow, '', 'class', todayClass); var link = quickElement('a', cell, currentDay, 'href', '#'); addEvent(link, 'click', calendarMonth(year, month)); currentDay++; } // Draw blanks after end of month (optional, but makes for valid code) while (tableRow.childNodes.length < 7) { nonDayCell = quickElement('td', tableRow, ' '); nonDayCell.className = "nonday"; } calDiv.appendChild(calTable); } }; // Calendar -- A calendar instance function Calendar(div_id, callback, selected) { // div_id (string) is the ID of the element in which the calendar will // be displayed // callback (string) is the name of a JavaScript function that will be // called with the parameters (year, month, day) when a day in the // calendar is clicked this.div_id = div_id; this.callback = callback; this.today = new Date(); this.currentMonth = this.today.getMonth() + 1; this.currentYear = this.today.getFullYear(); if (typeof selected !== 'undefined') { this.selected = selected; } } Calendar.prototype = { drawCurrent: function() { CalendarNamespace.draw(this.currentMonth, this.currentYear, this.div_id, this.callback, this.selected); }, drawDate: function(month, year, selected) { this.currentMonth = month; this.currentYear = year; if(selected) { this.selected = selected; } this.drawCurrent(); }, drawPreviousMonth: function() { if (this.currentMonth === 1) { this.currentMonth = 12; this.currentYear--; } else { this.currentMonth--; } this.drawCurrent(); }, drawNextMonth: function() { if (this.currentMonth === 12) { this.currentMonth = 1; this.currentYear++; } else { this.currentMonth++; } this.drawCurrent(); }, drawPreviousYear: function() { this.currentYear--; this.drawCurrent(); }, drawNextYear: function() { this.currentYear++; this.drawCurrent(); } }; window.Calendar = Calendar; window.CalendarNamespace = CalendarNamespace; })(); ================================================ FILE: static_cdn/static_root/admin/js/cancel.js ================================================ (function($) { 'use strict'; $(function() { $('.cancel-link').click(function(e) { e.preventDefault(); window.history.back(); }); }); })(django.jQuery); ================================================ FILE: static_cdn/static_root/admin/js/change_form.js ================================================ /*global showAddAnotherPopup, showRelatedObjectLookupPopup showRelatedObjectPopup updateRelatedObjectLinks*/ (function($) { 'use strict'; $(document).ready(function() { var modelName = $('#django-admin-form-add-constants').data('modelName'); $('body').on('click', '.add-another', function(e) { e.preventDefault(); var event = $.Event('django:add-another-related'); $(this).trigger(event); if (!event.isDefaultPrevented()) { showAddAnotherPopup(this); } }); if (modelName) { $('form#' + modelName + '_form :input:visible:enabled:first').focus(); } }); })(django.jQuery); ================================================ FILE: static_cdn/static_root/admin/js/collapse.js ================================================ /*global gettext*/ (function($) { 'use strict'; $(document).ready(function() { // Add anchor tag for Show/Hide link $("fieldset.collapse").each(function(i, elem) { // Don't hide if fields in this fieldset have errors if ($(elem).find("div.errors").length === 0) { $(elem).addClass("collapsed").find("h2").first().append(' (' + gettext("Show") + ')'); } }); // Add toggle to anchor tag $("fieldset.collapse a.collapse-toggle").click(function(ev) { if ($(this).closest("fieldset").hasClass("collapsed")) { // Show $(this).text(gettext("Hide")).closest("fieldset").removeClass("collapsed").trigger("show.fieldset", [$(this).attr("id")]); } else { // Hide $(this).text(gettext("Show")).closest("fieldset").addClass("collapsed").trigger("hide.fieldset", [$(this).attr("id")]); } return false; }); }); })(django.jQuery); ================================================ FILE: static_cdn/static_root/admin/js/core.js ================================================ // Core javascript helper functions // basic browser identification & version var isOpera = (navigator.userAgent.indexOf("Opera") >= 0) && parseFloat(navigator.appVersion); var isIE = ((document.all) && (!isOpera)) && parseFloat(navigator.appVersion.split("MSIE ")[1].split(";")[0]); // Cross-browser event handlers. function addEvent(obj, evType, fn) { 'use strict'; if (obj.addEventListener) { obj.addEventListener(evType, fn, false); return true; } else if (obj.attachEvent) { var r = obj.attachEvent("on" + evType, fn); return r; } else { return false; } } function removeEvent(obj, evType, fn) { 'use strict'; if (obj.removeEventListener) { obj.removeEventListener(evType, fn, false); return true; } else if (obj.detachEvent) { obj.detachEvent("on" + evType, fn); return true; } else { return false; } } function cancelEventPropagation(e) { 'use strict'; if (!e) { e = window.event; } e.cancelBubble = true; if (e.stopPropagation) { e.stopPropagation(); } } // quickElement(tagType, parentReference [, textInChildNode, attribute, attributeValue ...]); function quickElement() { 'use strict'; var obj = document.createElement(arguments[0]); if (arguments[2]) { var textNode = document.createTextNode(arguments[2]); obj.appendChild(textNode); } var len = arguments.length; for (var i = 3; i < len; i += 2) { obj.setAttribute(arguments[i], arguments[i + 1]); } arguments[1].appendChild(obj); return obj; } // "a" is reference to an object function removeChildren(a) { 'use strict'; while (a.hasChildNodes()) { a.removeChild(a.lastChild); } } // ---------------------------------------------------------------------------- // Find-position functions by PPK // See http://www.quirksmode.org/js/findpos.html // ---------------------------------------------------------------------------- function findPosX(obj) { 'use strict'; var curleft = 0; if (obj.offsetParent) { while (obj.offsetParent) { curleft += obj.offsetLeft - ((isOpera) ? 0 : obj.scrollLeft); obj = obj.offsetParent; } // IE offsetParent does not include the top-level if (isIE && obj.parentElement) { curleft += obj.offsetLeft - obj.scrollLeft; } } else if (obj.x) { curleft += obj.x; } return curleft; } function findPosY(obj) { 'use strict'; var curtop = 0; if (obj.offsetParent) { while (obj.offsetParent) { curtop += obj.offsetTop - ((isOpera) ? 0 : obj.scrollTop); obj = obj.offsetParent; } // IE offsetParent does not include the top-level if (isIE && obj.parentElement) { curtop += obj.offsetTop - obj.scrollTop; } } else if (obj.y) { curtop += obj.y; } return curtop; } //----------------------------------------------------------------------------- // Date object extensions // ---------------------------------------------------------------------------- (function() { 'use strict'; Date.prototype.getTwelveHours = function() { var hours = this.getHours(); if (hours === 0) { return 12; } else { return hours <= 12 ? hours : hours - 12; } }; Date.prototype.getTwoDigitMonth = function() { return (this.getMonth() < 9) ? '0' + (this.getMonth() + 1) : (this.getMonth() + 1); }; Date.prototype.getTwoDigitDate = function() { return (this.getDate() < 10) ? '0' + this.getDate() : this.getDate(); }; Date.prototype.getTwoDigitTwelveHour = function() { return (this.getTwelveHours() < 10) ? '0' + this.getTwelveHours() : this.getTwelveHours(); }; Date.prototype.getTwoDigitHour = function() { return (this.getHours() < 10) ? '0' + this.getHours() : this.getHours(); }; Date.prototype.getTwoDigitMinute = function() { return (this.getMinutes() < 10) ? '0' + this.getMinutes() : this.getMinutes(); }; Date.prototype.getTwoDigitSecond = function() { return (this.getSeconds() < 10) ? '0' + this.getSeconds() : this.getSeconds(); }; Date.prototype.getHourMinute = function() { return this.getTwoDigitHour() + ':' + this.getTwoDigitMinute(); }; Date.prototype.getHourMinuteSecond = function() { return this.getTwoDigitHour() + ':' + this.getTwoDigitMinute() + ':' + this.getTwoDigitSecond(); }; Date.prototype.getFullMonthName = function() { return typeof window.CalendarNamespace === "undefined" ? this.getTwoDigitMonth() : window.CalendarNamespace.monthsOfYear[this.getMonth()]; }; Date.prototype.strftime = function(format) { var fields = { B: this.getFullMonthName(), c: this.toString(), d: this.getTwoDigitDate(), H: this.getTwoDigitHour(), I: this.getTwoDigitTwelveHour(), m: this.getTwoDigitMonth(), M: this.getTwoDigitMinute(), p: (this.getHours() >= 12) ? 'PM' : 'AM', S: this.getTwoDigitSecond(), w: '0' + this.getDay(), x: this.toLocaleDateString(), X: this.toLocaleTimeString(), y: ('' + this.getFullYear()).substr(2, 4), Y: '' + this.getFullYear(), '%': '%' }; var result = '', i = 0; while (i < format.length) { if (format.charAt(i) === '%') { result = result + fields[format.charAt(i + 1)]; ++i; } else { result = result + format.charAt(i); } ++i; } return result; }; // ---------------------------------------------------------------------------- // String object extensions // ---------------------------------------------------------------------------- String.prototype.pad_left = function(pad_length, pad_string) { var new_string = this; for (var i = 0; new_string.length < pad_length; i++) { new_string = pad_string + new_string; } return new_string; }; String.prototype.strptime = function(format) { var split_format = format.split(/[.\-/]/); var date = this.split(/[.\-/]/); var i = 0; var day, month, year; while (i < split_format.length) { switch (split_format[i]) { case "%d": day = date[i]; break; case "%m": month = date[i] - 1; break; case "%Y": year = date[i]; break; case "%y": year = date[i]; break; } ++i; } // Create Date object from UTC since the parsed value is supposed to be // in UTC, not local time. Also, the calendar uses UTC functions for // date extraction. return new Date(Date.UTC(year, month, day)); }; })(); // ---------------------------------------------------------------------------- // Get the computed style for and element // ---------------------------------------------------------------------------- function getStyle(oElm, strCssRule) { 'use strict'; var strValue = ""; if(document.defaultView && document.defaultView.getComputedStyle) { strValue = document.defaultView.getComputedStyle(oElm, "").getPropertyValue(strCssRule); } else if(oElm.currentStyle) { strCssRule = strCssRule.replace(/\-(\w)/g, function(strMatch, p1) { return p1.toUpperCase(); }); strValue = oElm.currentStyle[strCssRule]; } return strValue; } ================================================ FILE: static_cdn/static_root/admin/js/inlines.js ================================================ /*global DateTimeShortcuts, SelectFilter*/ /** * Django admin inlines * * Based on jQuery Formset 1.1 * @author Stanislaus Madueke (stan DOT madueke AT gmail DOT com) * @requires jQuery 1.2.6 or later * * Copyright (c) 2009, Stanislaus Madueke * All rights reserved. * * Spiced up with Code from Zain Memon's GSoC project 2009 * and modified for Django by Jannis Leidel, Travis Swicegood and Julien Phalip. * * Licensed under the New BSD License * See: http://www.opensource.org/licenses/bsd-license.php */ (function($) { 'use strict'; $.fn.formset = function(opts) { var options = $.extend({}, $.fn.formset.defaults, opts); var $this = $(this); var $parent = $this.parent(); var updateElementIndex = function(el, prefix, ndx) { var id_regex = new RegExp("(" + prefix + "-(\\d+|__prefix__))"); var replacement = prefix + "-" + ndx; if ($(el).prop("for")) { $(el).prop("for", $(el).prop("for").replace(id_regex, replacement)); } if (el.id) { el.id = el.id.replace(id_regex, replacement); } if (el.name) { el.name = el.name.replace(id_regex, replacement); } }; var totalForms = $("#id_" + options.prefix + "-TOTAL_FORMS").prop("autocomplete", "off"); var nextIndex = parseInt(totalForms.val(), 10); var maxForms = $("#id_" + options.prefix + "-MAX_NUM_FORMS").prop("autocomplete", "off"); // only show the add button if we are allowed to add more items, // note that max_num = None translates to a blank string. var showAddButton = maxForms.val() === '' || (maxForms.val() - totalForms.val()) > 0; $this.each(function(i) { $(this).not("." + options.emptyCssClass).addClass(options.formCssClass); }); if ($this.length && showAddButton) { var addButton = options.addButton; if (addButton === null) { if ($this.prop("tagName") === "TR") { // If forms are laid out as table rows, insert the // "add" button in a new table row: var numCols = this.eq(-1).children().length; $parent.append('' + options.addText + ""); addButton = $parent.find("tr:last a"); } else { // Otherwise, insert it immediately after the last form: $this.filter(":last").after('"); addButton = $this.filter(":last").next().find("a"); } } addButton.click(function(e) { e.preventDefault(); var template = $("#" + options.prefix + "-empty"); var row = template.clone(true); row.removeClass(options.emptyCssClass) .addClass(options.formCssClass) .attr("id", options.prefix + "-" + nextIndex); if (row.is("tr")) { // If the forms are laid out in table rows, insert // the remove button into the last table cell: row.children(":last").append('"); } else if (row.is("ul") || row.is("ol")) { // If they're laid out as an ordered/unordered list, // insert an
  • after the last list item: row.append('
  • ' + options.deleteText + "
  • "); } else { // Otherwise, just insert the remove button as the // last child element of the form's container: row.children(":first").append('' + options.deleteText + ""); } row.find("*").each(function() { updateElementIndex(this, options.prefix, totalForms.val()); }); // Insert the new form when it has been fully edited row.insertBefore($(template)); // Update number of total forms $(totalForms).val(parseInt(totalForms.val(), 10) + 1); nextIndex += 1; // Hide add button in case we've hit the max, except we want to add infinitely if ((maxForms.val() !== '') && (maxForms.val() - totalForms.val()) <= 0) { addButton.parent().hide(); } // The delete button of each row triggers a bunch of other things row.find("a." + options.deleteCssClass).click(function(e1) { e1.preventDefault(); // Remove the parent form containing this button: row.remove(); nextIndex -= 1; // If a post-delete callback was provided, call it with the deleted form: if (options.removed) { options.removed(row); } $(document).trigger('formset:removed', [row, options.prefix]); // Update the TOTAL_FORMS form count. var forms = $("." + options.formCssClass); $("#id_" + options.prefix + "-TOTAL_FORMS").val(forms.length); // Show add button again once we drop below max if ((maxForms.val() === '') || (maxForms.val() - forms.length) > 0) { addButton.parent().show(); } // Also, update names and ids for all remaining form controls // so they remain in sequence: var i, formCount; var updateElementCallback = function() { updateElementIndex(this, options.prefix, i); }; for (i = 0, formCount = forms.length; i < formCount; i++) { updateElementIndex($(forms).get(i), options.prefix, i); $(forms.get(i)).find("*").each(updateElementCallback); } }); // If a post-add callback was supplied, call it with the added form: if (options.added) { options.added(row); } $(document).trigger('formset:added', [row, options.prefix]); }); } return this; }; /* Setup plugin defaults */ $.fn.formset.defaults = { prefix: "form", // The form prefix for your django formset addText: "add another", // Text for the add link deleteText: "remove", // Text for the delete link addCssClass: "add-row", // CSS class applied to the add link deleteCssClass: "delete-row", // CSS class applied to the delete link emptyCssClass: "empty-row", // CSS class applied to the empty row formCssClass: "dynamic-form", // CSS class applied to each form in a formset added: null, // Function called each time a new form is added removed: null, // Function called each time a form is deleted addButton: null // Existing add button to use }; // Tabular inlines --------------------------------------------------------- $.fn.tabularFormset = function(options) { var $rows = $(this); var alternatingRows = function(row) { $($rows.selector).not(".add-row").removeClass("row1 row2") .filter(":even").addClass("row1").end() .filter(":odd").addClass("row2"); }; var reinitDateTimeShortCuts = function() { // Reinitialize the calendar and clock widgets by force if (typeof DateTimeShortcuts !== "undefined") { $(".datetimeshortcuts").remove(); DateTimeShortcuts.init(); } }; var updateSelectFilter = function() { // If any SelectFilter widgets are a part of the new form, // instantiate a new SelectFilter instance for it. if (typeof SelectFilter !== 'undefined') { $('.selectfilter').each(function(index, value) { var namearr = value.name.split('-'); SelectFilter.init(value.id, namearr[namearr.length - 1], false); }); $('.selectfilterstacked').each(function(index, value) { var namearr = value.name.split('-'); SelectFilter.init(value.id, namearr[namearr.length - 1], true); }); } }; var initPrepopulatedFields = function(row) { row.find('.prepopulated_field').each(function() { var field = $(this), input = field.find('input, select, textarea'), dependency_list = input.data('dependency_list') || [], dependencies = []; $.each(dependency_list, function(i, field_name) { dependencies.push('#' + row.find('.field-' + field_name).find('input, select, textarea').attr('id')); }); if (dependencies.length) { input.prepopulate(dependencies, input.attr('maxlength')); } }); }; $rows.formset({ prefix: options.prefix, addText: options.addText, formCssClass: "dynamic-" + options.prefix, deleteCssClass: "inline-deletelink", deleteText: options.deleteText, emptyCssClass: "empty-form", removed: alternatingRows, added: function(row) { initPrepopulatedFields(row); reinitDateTimeShortCuts(); updateSelectFilter(); alternatingRows(row); }, addButton: options.addButton }); return $rows; }; // Stacked inlines --------------------------------------------------------- $.fn.stackedFormset = function(options) { var $rows = $(this); var updateInlineLabel = function(row) { $($rows.selector).find(".inline_label").each(function(i) { var count = i + 1; $(this).html($(this).html().replace(/(#\d+)/g, "#" + count)); }); }; var reinitDateTimeShortCuts = function() { // Reinitialize the calendar and clock widgets by force, yuck. if (typeof DateTimeShortcuts !== "undefined") { $(".datetimeshortcuts").remove(); DateTimeShortcuts.init(); } }; var updateSelectFilter = function() { // If any SelectFilter widgets were added, instantiate a new instance. if (typeof SelectFilter !== "undefined") { $(".selectfilter").each(function(index, value) { var namearr = value.name.split('-'); SelectFilter.init(value.id, namearr[namearr.length - 1], false); }); $(".selectfilterstacked").each(function(index, value) { var namearr = value.name.split('-'); SelectFilter.init(value.id, namearr[namearr.length - 1], true); }); } }; var initPrepopulatedFields = function(row) { row.find('.prepopulated_field').each(function() { var field = $(this), input = field.find('input, select, textarea'), dependency_list = input.data('dependency_list') || [], dependencies = []; $.each(dependency_list, function(i, field_name) { dependencies.push('#' + row.find('.form-row .field-' + field_name).find('input, select, textarea').attr('id')); }); if (dependencies.length) { input.prepopulate(dependencies, input.attr('maxlength')); } }); }; $rows.formset({ prefix: options.prefix, addText: options.addText, formCssClass: "dynamic-" + options.prefix, deleteCssClass: "inline-deletelink", deleteText: options.deleteText, emptyCssClass: "empty-form", removed: updateInlineLabel, added: function(row) { initPrepopulatedFields(row); reinitDateTimeShortCuts(); updateSelectFilter(); updateInlineLabel(row); }, addButton: options.addButton }); return $rows; }; $(document).ready(function() { $(".js-inline-admin-formset").each(function() { var data = $(this).data(), inlineOptions = data.inlineFormset; switch(data.inlineType) { case "stacked": $(inlineOptions.name + "-group .inline-related").stackedFormset(inlineOptions.options); break; case "tabular": $(inlineOptions.name + "-group .tabular.inline-related tbody tr").tabularFormset(inlineOptions.options); break; } }); }); })(django.jQuery); ================================================ FILE: static_cdn/static_root/admin/js/jquery.init.js ================================================ /*global django:true, jQuery:false*/ /* Puts the included jQuery into our own namespace using noConflict and passing * it 'true'. This ensures that the included jQuery doesn't pollute the global * namespace (i.e. this preserves pre-existing values for both window.$ and * window.jQuery). */ var django = django || {}; django.jQuery = jQuery.noConflict(true); ================================================ FILE: static_cdn/static_root/admin/js/popup_response.js ================================================ /*global opener */ (function() { 'use strict'; var initData = JSON.parse(document.getElementById('django-admin-popup-response-constants').dataset.popupResponse); switch(initData.action) { case 'change': opener.dismissChangeRelatedObjectPopup(window, initData.value, initData.obj, initData.new_value); break; case 'delete': opener.dismissDeleteRelatedObjectPopup(window, initData.value); break; default: opener.dismissAddRelatedObjectPopup(window, initData.value, initData.obj); break; } })(); ================================================ FILE: static_cdn/static_root/admin/js/prepopulate.js ================================================ /*global URLify*/ (function($) { 'use strict'; $.fn.prepopulate = function(dependencies, maxLength, allowUnicode) { /* Depends on urlify.js Populates a selected field with the values of the dependent fields, URLifies and shortens the string. dependencies - array of dependent fields ids maxLength - maximum length of the URLify'd string allowUnicode - Unicode support of the URLify'd string */ return this.each(function() { var prepopulatedField = $(this); var populate = function() { // Bail if the field's value has been changed by the user if (prepopulatedField.data('_changed')) { return; } var values = []; $.each(dependencies, function(i, field) { field = $(field); if (field.val().length > 0) { values.push(field.val()); } }); prepopulatedField.val(URLify(values.join(' '), maxLength, allowUnicode)); }; prepopulatedField.data('_changed', false); prepopulatedField.change(function() { prepopulatedField.data('_changed', true); }); if (!prepopulatedField.val()) { $(dependencies.join(',')).keyup(populate).change(populate).focus(populate); } }); }; })(django.jQuery); ================================================ FILE: static_cdn/static_root/admin/js/prepopulate_init.js ================================================ (function($) { 'use strict'; var fields = $('#django-admin-prepopulated-fields-constants').data('prepopulatedFields'); $.each(fields, function(index, field) { $('.empty-form .form-row .field-' + field.name + ', .empty-form.form-row .field-' + field.name).addClass('prepopulated_field'); $(field.id).data('dependency_list', field.dependency_list).prepopulate( field.dependency_ids, field.maxLength, field.allowUnicode ); }); })(django.jQuery); ================================================ FILE: static_cdn/static_root/admin/js/timeparse.js ================================================ (function() { 'use strict'; var timeParsePatterns = [ // 9 { re: /^\d{1,2}$/i, handler: function(bits) { if (bits[0].length === 1) { return '0' + bits[0] + ':00'; } else { return bits[0] + ':00'; } } }, // 13:00 { re: /^\d{2}[:.]\d{2}$/i, handler: function(bits) { return bits[0].replace('.', ':'); } }, // 9:00 { re: /^\d[:.]\d{2}$/i, handler: function(bits) { return '0' + bits[0].replace('.', ':'); } }, // 3 am / 3 a.m. / 3am { re: /^(\d+)\s*([ap])(?:.?m.?)?$/i, handler: function(bits) { var hour = parseInt(bits[1]); if (hour === 12) { hour = 0; } if (bits[2].toLowerCase() === 'p') { if (hour === 12) { hour = 0; } return (hour + 12) + ':00'; } else { if (hour < 10) { return '0' + hour + ':00'; } else { return hour + ':00'; } } } }, // 3.30 am / 3:15 a.m. / 3.00am { re: /^(\d+)[.:](\d{2})\s*([ap]).?m.?$/i, handler: function(bits) { var hour = parseInt(bits[1]); var mins = parseInt(bits[2]); if (mins < 10) { mins = '0' + mins; } if (hour === 12) { hour = 0; } if (bits[3].toLowerCase() === 'p') { if (hour === 12) { hour = 0; } return (hour + 12) + ':' + mins; } else { if (hour < 10) { return '0' + hour + ':' + mins; } else { return hour + ':' + mins; } } } }, // noon { re: /^no/i, handler: function(bits) { return '12:00'; } }, // midnight { re: /^mid/i, handler: function(bits) { return '00:00'; } } ]; function parseTimeString(s) { for (var i = 0; i < timeParsePatterns.length; i++) { var re = timeParsePatterns[i].re; var handler = timeParsePatterns[i].handler; var bits = re.exec(s); if (bits) { return handler(bits); } } return s; } window.parseTimeString = parseTimeString; })(); ================================================ FILE: static_cdn/static_root/admin/js/urlify.js ================================================ /*global XRegExp*/ (function() { 'use strict'; var LATIN_MAP = { 'À': 'A', 'Á': 'A', 'Â': 'A', 'Ã': 'A', 'Ä': 'A', 'Å': 'A', 'Æ': 'AE', 'Ç': 'C', 'È': 'E', 'É': 'E', 'Ê': 'E', 'Ë': 'E', 'Ì': 'I', 'Í': 'I', 'Î': 'I', 'Ï': 'I', 'Ð': 'D', 'Ñ': 'N', 'Ò': 'O', 'Ó': 'O', 'Ô': 'O', 'Õ': 'O', 'Ö': 'O', 'Ő': 'O', 'Ø': 'O', 'Ù': 'U', 'Ú': 'U', 'Û': 'U', 'Ü': 'U', 'Ű': 'U', 'Ý': 'Y', 'Þ': 'TH', 'Ÿ': 'Y', 'ß': 'ss', 'à': 'a', 'á': 'a', 'â': 'a', 'ã': 'a', 'ä': 'a', 'å': 'a', 'æ': 'ae', 'ç': 'c', 'è': 'e', 'é': 'e', 'ê': 'e', 'ë': 'e', 'ì': 'i', 'í': 'i', 'î': 'i', 'ï': 'i', 'ð': 'd', 'ñ': 'n', 'ò': 'o', 'ó': 'o', 'ô': 'o', 'õ': 'o', 'ö': 'o', 'ő': 'o', 'ø': 'o', 'ù': 'u', 'ú': 'u', 'û': 'u', 'ü': 'u', 'ű': 'u', 'ý': 'y', 'þ': 'th', 'ÿ': 'y' }; var LATIN_SYMBOLS_MAP = { '©': '(c)' }; var GREEK_MAP = { 'α': 'a', 'β': 'b', 'γ': 'g', 'δ': 'd', 'ε': 'e', 'ζ': 'z', 'η': 'h', 'θ': '8', 'ι': 'i', 'κ': 'k', 'λ': 'l', 'μ': 'm', 'ν': 'n', 'ξ': '3', 'ο': 'o', 'π': 'p', 'ρ': 'r', 'σ': 's', 'τ': 't', 'υ': 'y', 'φ': 'f', 'χ': 'x', 'ψ': 'ps', 'ω': 'w', 'ά': 'a', 'έ': 'e', 'ί': 'i', 'ό': 'o', 'ύ': 'y', 'ή': 'h', 'ώ': 'w', 'ς': 's', 'ϊ': 'i', 'ΰ': 'y', 'ϋ': 'y', 'ΐ': 'i', 'Α': 'A', 'Β': 'B', 'Γ': 'G', 'Δ': 'D', 'Ε': 'E', 'Ζ': 'Z', 'Η': 'H', 'Θ': '8', 'Ι': 'I', 'Κ': 'K', 'Λ': 'L', 'Μ': 'M', 'Ν': 'N', 'Ξ': '3', 'Ο': 'O', 'Π': 'P', 'Ρ': 'R', 'Σ': 'S', 'Τ': 'T', 'Υ': 'Y', 'Φ': 'F', 'Χ': 'X', 'Ψ': 'PS', 'Ω': 'W', 'Ά': 'A', 'Έ': 'E', 'Ί': 'I', 'Ό': 'O', 'Ύ': 'Y', 'Ή': 'H', 'Ώ': 'W', 'Ϊ': 'I', 'Ϋ': 'Y' }; var TURKISH_MAP = { 'ş': 's', 'Ş': 'S', 'ı': 'i', 'İ': 'I', 'ç': 'c', 'Ç': 'C', 'ü': 'u', 'Ü': 'U', 'ö': 'o', 'Ö': 'O', 'ğ': 'g', 'Ğ': 'G' }; var ROMANIAN_MAP = { 'ă': 'a', 'î': 'i', 'ș': 's', 'ț': 't', 'â': 'a', 'Ă': 'A', 'Î': 'I', 'Ș': 'S', 'Ț': 'T', 'Â': 'A' }; var RUSSIAN_MAP = { 'а': 'a', 'б': 'b', 'в': 'v', 'г': 'g', 'д': 'd', 'е': 'e', 'ё': 'yo', 'ж': 'zh', 'з': 'z', 'и': 'i', 'й': 'j', 'к': 'k', 'л': 'l', 'м': 'm', 'н': 'n', 'о': 'o', 'п': 'p', 'р': 'r', 'с': 's', 'т': 't', 'у': 'u', 'ф': 'f', 'х': 'h', 'ц': 'c', 'ч': 'ch', 'ш': 'sh', 'щ': 'sh', 'ъ': '', 'ы': 'y', 'ь': '', 'э': 'e', 'ю': 'yu', 'я': 'ya', 'А': 'A', 'Б': 'B', 'В': 'V', 'Г': 'G', 'Д': 'D', 'Е': 'E', 'Ё': 'Yo', 'Ж': 'Zh', 'З': 'Z', 'И': 'I', 'Й': 'J', 'К': 'K', 'Л': 'L', 'М': 'M', 'Н': 'N', 'О': 'O', 'П': 'P', 'Р': 'R', 'С': 'S', 'Т': 'T', 'У': 'U', 'Ф': 'F', 'Х': 'H', 'Ц': 'C', 'Ч': 'Ch', 'Ш': 'Sh', 'Щ': 'Sh', 'Ъ': '', 'Ы': 'Y', 'Ь': '', 'Э': 'E', 'Ю': 'Yu', 'Я': 'Ya' }; var UKRAINIAN_MAP = { 'Є': 'Ye', 'І': 'I', 'Ї': 'Yi', 'Ґ': 'G', 'є': 'ye', 'і': 'i', 'ї': 'yi', 'ґ': 'g' }; var CZECH_MAP = { 'č': 'c', 'ď': 'd', 'ě': 'e', 'ň': 'n', 'ř': 'r', 'š': 's', 'ť': 't', 'ů': 'u', 'ž': 'z', 'Č': 'C', 'Ď': 'D', 'Ě': 'E', 'Ň': 'N', 'Ř': 'R', 'Š': 'S', 'Ť': 'T', 'Ů': 'U', 'Ž': 'Z' }; var POLISH_MAP = { 'ą': 'a', 'ć': 'c', 'ę': 'e', 'ł': 'l', 'ń': 'n', 'ó': 'o', 'ś': 's', 'ź': 'z', 'ż': 'z', 'Ą': 'A', 'Ć': 'C', 'Ę': 'E', 'Ł': 'L', 'Ń': 'N', 'Ó': 'O', 'Ś': 'S', 'Ź': 'Z', 'Ż': 'Z' }; var LATVIAN_MAP = { 'ā': 'a', 'č': 'c', 'ē': 'e', 'ģ': 'g', 'ī': 'i', 'ķ': 'k', 'ļ': 'l', 'ņ': 'n', 'š': 's', 'ū': 'u', 'ž': 'z', 'Ā': 'A', 'Č': 'C', 'Ē': 'E', 'Ģ': 'G', 'Ī': 'I', 'Ķ': 'K', 'Ļ': 'L', 'Ņ': 'N', 'Š': 'S', 'Ū': 'U', 'Ž': 'Z' }; var ARABIC_MAP = { 'أ': 'a', 'ب': 'b', 'ت': 't', 'ث': 'th', 'ج': 'g', 'ح': 'h', 'خ': 'kh', 'د': 'd', 'ذ': 'th', 'ر': 'r', 'ز': 'z', 'س': 's', 'ش': 'sh', 'ص': 's', 'ض': 'd', 'ط': 't', 'ظ': 'th', 'ع': 'aa', 'غ': 'gh', 'ف': 'f', 'ق': 'k', 'ك': 'k', 'ل': 'l', 'م': 'm', 'ن': 'n', 'ه': 'h', 'و': 'o', 'ي': 'y' }; var LITHUANIAN_MAP = { 'ą': 'a', 'č': 'c', 'ę': 'e', 'ė': 'e', 'į': 'i', 'š': 's', 'ų': 'u', 'ū': 'u', 'ž': 'z', 'Ą': 'A', 'Č': 'C', 'Ę': 'E', 'Ė': 'E', 'Į': 'I', 'Š': 'S', 'Ų': 'U', 'Ū': 'U', 'Ž': 'Z' }; var SERBIAN_MAP = { 'ђ': 'dj', 'ј': 'j', 'љ': 'lj', 'њ': 'nj', 'ћ': 'c', 'џ': 'dz', 'đ': 'dj', 'Ђ': 'Dj', 'Ј': 'j', 'Љ': 'Lj', 'Њ': 'Nj', 'Ћ': 'C', 'Џ': 'Dz', 'Đ': 'Dj' }; var AZERBAIJANI_MAP = { 'ç': 'c', 'ə': 'e', 'ğ': 'g', 'ı': 'i', 'ö': 'o', 'ş': 's', 'ü': 'u', 'Ç': 'C', 'Ə': 'E', 'Ğ': 'G', 'İ': 'I', 'Ö': 'O', 'Ş': 'S', 'Ü': 'U' }; var GEORGIAN_MAP = { 'ა': 'a', 'ბ': 'b', 'გ': 'g', 'დ': 'd', 'ე': 'e', 'ვ': 'v', 'ზ': 'z', 'თ': 't', 'ი': 'i', 'კ': 'k', 'ლ': 'l', 'მ': 'm', 'ნ': 'n', 'ო': 'o', 'პ': 'p', 'ჟ': 'j', 'რ': 'r', 'ს': 's', 'ტ': 't', 'უ': 'u', 'ფ': 'f', 'ქ': 'q', 'ღ': 'g', 'ყ': 'y', 'შ': 'sh', 'ჩ': 'ch', 'ც': 'c', 'ძ': 'dz', 'წ': 'w', 'ჭ': 'ch', 'ხ': 'x', 'ჯ': 'j', 'ჰ': 'h' }; var ALL_DOWNCODE_MAPS = [ LATIN_MAP, LATIN_SYMBOLS_MAP, GREEK_MAP, TURKISH_MAP, ROMANIAN_MAP, RUSSIAN_MAP, UKRAINIAN_MAP, CZECH_MAP, POLISH_MAP, LATVIAN_MAP, ARABIC_MAP, LITHUANIAN_MAP, SERBIAN_MAP, AZERBAIJANI_MAP, GEORGIAN_MAP ]; var Downcoder = { 'Initialize': function() { if (Downcoder.map) { // already made return; } Downcoder.map = {}; Downcoder.chars = []; for (var i = 0; i < ALL_DOWNCODE_MAPS.length; i++) { var lookup = ALL_DOWNCODE_MAPS[i]; for (var c in lookup) { if (lookup.hasOwnProperty(c)) { Downcoder.map[c] = lookup[c]; } } } for (var k in Downcoder.map) { if (Downcoder.map.hasOwnProperty(k)) { Downcoder.chars.push(k); } } Downcoder.regex = new RegExp(Downcoder.chars.join('|'), 'g'); } }; function downcode(slug) { Downcoder.Initialize(); return slug.replace(Downcoder.regex, function(m) { return Downcoder.map[m]; }); } function URLify(s, num_chars, allowUnicode) { // changes, e.g., "Petty theft" to "petty-theft" // remove all these words from the string before urlifying if (!allowUnicode) { s = downcode(s); } var removelist = [ "a", "an", "as", "at", "before", "but", "by", "for", "from", "is", "in", "into", "like", "of", "off", "on", "onto", "per", "since", "than", "the", "this", "that", "to", "up", "via", "with" ]; var r = new RegExp('\\b(' + removelist.join('|') + ')\\b', 'gi'); s = s.replace(r, ''); // if downcode doesn't hit, the char will be stripped here if (allowUnicode) { // Keep Unicode letters including both lowercase and uppercase // characters, whitespace, and dash; remove other characters. s = XRegExp.replace(s, XRegExp('[^-_\\p{L}\\p{N}\\s]', 'g'), ''); } else { s = s.replace(/[^-\w\s]/g, ''); // remove unneeded chars } s = s.replace(/^\s+|\s+$/g, ''); // trim leading/trailing spaces s = s.replace(/[-\s]+/g, '-'); // convert spaces to hyphens s = s.toLowerCase(); // convert to lowercase return s.substring(0, num_chars); // trim to first num_chars chars } window.URLify = URLify; })(); ================================================ FILE: static_cdn/static_root/admin/js/vendor/jquery/LICENSE-JQUERY.txt ================================================ Copyright jQuery Foundation and other contributors, https://jquery.org/ This software consists of voluntary contributions made by many individuals. For exact contribution history, see the revision history available at https://github.com/jquery/jquery ==== 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. ================================================ FILE: static_cdn/static_root/admin/js/vendor/jquery/jquery.js ================================================ /*! * jQuery JavaScript Library v2.2.3 * http://jquery.com/ * * Includes Sizzle.js * http://sizzlejs.com/ * * Copyright jQuery Foundation and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2016-04-05T19:26Z */ (function( global, factory ) { if ( typeof module === "object" && typeof module.exports === "object" ) { // For CommonJS and CommonJS-like environments where a proper `window` // is present, execute the factory and get jQuery. // For environments that do not have a `window` with a `document` // (such as Node.js), expose a factory as module.exports. // This accentuates the need for the creation of a real `window`. // e.g. var jQuery = require("jquery")(window); // See ticket #14549 for more info. module.exports = global.document ? factory( global, true ) : function( w ) { if ( !w.document ) { throw new Error( "jQuery requires a window with a document" ); } return factory( w ); }; } else { factory( global ); } // Pass this if window is not defined yet }(typeof window !== "undefined" ? window : this, function( window, noGlobal ) { // Support: Firefox 18+ // Can't be in strict mode, several libs including ASP.NET trace // the stack via arguments.caller.callee and Firefox dies if // you try to trace through "use strict" call chains. (#13335) //"use strict"; var arr = []; var document = window.document; var slice = arr.slice; var concat = arr.concat; var push = arr.push; var indexOf = arr.indexOf; var class2type = {}; var toString = class2type.toString; var hasOwn = class2type.hasOwnProperty; var support = {}; var version = "2.2.3", // Define a local copy of jQuery jQuery = function( selector, context ) { // The jQuery object is actually just the init constructor 'enhanced' // Need init if jQuery is called (just allow error to be thrown if not included) return new jQuery.fn.init( selector, context ); }, // Support: Android<4.1 // Make sure we trim BOM and NBSP rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, // Matches dashed string for camelizing rmsPrefix = /^-ms-/, rdashAlpha = /-([\da-z])/gi, // Used by jQuery.camelCase as callback to replace() fcamelCase = function( all, letter ) { return letter.toUpperCase(); }; jQuery.fn = jQuery.prototype = { // The current version of jQuery being used jquery: version, constructor: jQuery, // Start with an empty selector selector: "", // The default length of a jQuery object is 0 length: 0, toArray: function() { return slice.call( this ); }, // Get the Nth element in the matched element set OR // Get the whole matched element set as a clean array get: function( num ) { return num != null ? // Return just the one element from the set ( num < 0 ? this[ num + this.length ] : this[ num ] ) : // Return all the elements in a clean array slice.call( this ); }, // Take an array of elements and push it onto the stack // (returning the new matched element set) pushStack: function( elems ) { // Build a new jQuery matched element set var ret = jQuery.merge( this.constructor(), elems ); // Add the old object onto the stack (as a reference) ret.prevObject = this; ret.context = this.context; // Return the newly-formed element set return ret; }, // Execute a callback for every element in the matched set. each: function( callback ) { return jQuery.each( this, callback ); }, map: function( callback ) { return this.pushStack( jQuery.map( this, function( elem, i ) { return callback.call( elem, i, elem ); } ) ); }, slice: function() { return this.pushStack( slice.apply( this, arguments ) ); }, first: function() { return this.eq( 0 ); }, last: function() { return this.eq( -1 ); }, eq: function( i ) { var len = this.length, j = +i + ( i < 0 ? len : 0 ); return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); }, end: function() { return this.prevObject || this.constructor(); }, // For internal use only. // Behaves like an Array's method, not like a jQuery method. push: push, sort: arr.sort, splice: arr.splice }; jQuery.extend = jQuery.fn.extend = function() { var options, name, src, copy, copyIsArray, clone, target = arguments[ 0 ] || {}, i = 1, length = arguments.length, deep = false; // Handle a deep copy situation if ( typeof target === "boolean" ) { deep = target; // Skip the boolean and the target target = arguments[ i ] || {}; i++; } // Handle case when target is a string or something (possible in deep copy) if ( typeof target !== "object" && !jQuery.isFunction( target ) ) { target = {}; } // Extend jQuery itself if only one argument is passed if ( i === length ) { target = this; i--; } for ( ; i < length; i++ ) { // Only deal with non-null/undefined values if ( ( options = arguments[ i ] ) != null ) { // Extend the base object for ( name in options ) { src = target[ name ]; copy = options[ name ]; // Prevent never-ending loop if ( target === copy ) { continue; } // Recurse if we're merging plain objects or arrays if ( deep && copy && ( jQuery.isPlainObject( copy ) || ( copyIsArray = jQuery.isArray( copy ) ) ) ) { if ( copyIsArray ) { copyIsArray = false; clone = src && jQuery.isArray( src ) ? src : []; } else { clone = src && jQuery.isPlainObject( src ) ? src : {}; } // Never move original objects, clone them target[ name ] = jQuery.extend( deep, clone, copy ); // Don't bring in undefined values } else if ( copy !== undefined ) { target[ name ] = copy; } } } } // Return the modified object return target; }; jQuery.extend( { // Unique for each copy of jQuery on the page expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), // Assume jQuery is ready without the ready module isReady: true, error: function( msg ) { throw new Error( msg ); }, noop: function() {}, isFunction: function( obj ) { return jQuery.type( obj ) === "function"; }, isArray: Array.isArray, isWindow: function( obj ) { return obj != null && obj === obj.window; }, isNumeric: function( obj ) { // parseFloat NaNs numeric-cast false positives (null|true|false|"") // ...but misinterprets leading-number strings, particularly hex literals ("0x...") // subtraction forces infinities to NaN // adding 1 corrects loss of precision from parseFloat (#15100) var realStringObj = obj && obj.toString(); return !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0; }, isPlainObject: function( obj ) { var key; // Not plain objects: // - Any object or value whose internal [[Class]] property is not "[object Object]" // - DOM nodes // - window if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { return false; } // Not own constructor property must be Object if ( obj.constructor && !hasOwn.call( obj, "constructor" ) && !hasOwn.call( obj.constructor.prototype || {}, "isPrototypeOf" ) ) { return false; } // Own properties are enumerated firstly, so to speed up, // if last one is own, then all properties are own for ( key in obj ) {} return key === undefined || hasOwn.call( obj, key ); }, isEmptyObject: function( obj ) { var name; for ( name in obj ) { return false; } return true; }, type: function( obj ) { if ( obj == null ) { return obj + ""; } // Support: Android<4.0, iOS<6 (functionish RegExp) return typeof obj === "object" || typeof obj === "function" ? class2type[ toString.call( obj ) ] || "object" : typeof obj; }, // Evaluates a script in a global context globalEval: function( code ) { var script, indirect = eval; code = jQuery.trim( code ); if ( code ) { // If the code includes a valid, prologue position // strict mode pragma, execute code by injecting a // script tag into the document. if ( code.indexOf( "use strict" ) === 1 ) { script = document.createElement( "script" ); script.text = code; document.head.appendChild( script ).parentNode.removeChild( script ); } else { // Otherwise, avoid the DOM node creation, insertion // and removal by using an indirect global eval indirect( code ); } } }, // Convert dashed to camelCase; used by the css and data modules // Support: IE9-11+ // Microsoft forgot to hump their vendor prefix (#9572) camelCase: function( string ) { return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); }, nodeName: function( elem, name ) { return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); }, each: function( obj, callback ) { var length, i = 0; if ( isArrayLike( obj ) ) { length = obj.length; for ( ; i < length; i++ ) { if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { break; } } } else { for ( i in obj ) { if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { break; } } } return obj; }, // Support: Android<4.1 trim: function( text ) { return text == null ? "" : ( text + "" ).replace( rtrim, "" ); }, // results is for internal usage only makeArray: function( arr, results ) { var ret = results || []; if ( arr != null ) { if ( isArrayLike( Object( arr ) ) ) { jQuery.merge( ret, typeof arr === "string" ? [ arr ] : arr ); } else { push.call( ret, arr ); } } return ret; }, inArray: function( elem, arr, i ) { return arr == null ? -1 : indexOf.call( arr, elem, i ); }, merge: function( first, second ) { var len = +second.length, j = 0, i = first.length; for ( ; j < len; j++ ) { first[ i++ ] = second[ j ]; } first.length = i; return first; }, grep: function( elems, callback, invert ) { var callbackInverse, matches = [], i = 0, length = elems.length, callbackExpect = !invert; // Go through the array, only saving the items // that pass the validator function for ( ; i < length; i++ ) { callbackInverse = !callback( elems[ i ], i ); if ( callbackInverse !== callbackExpect ) { matches.push( elems[ i ] ); } } return matches; }, // arg is for internal usage only map: function( elems, callback, arg ) { var length, value, i = 0, ret = []; // Go through the array, translating each of the items to their new values if ( isArrayLike( elems ) ) { length = elems.length; for ( ; i < length; i++ ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret.push( value ); } } // Go through every key on the object, } else { for ( i in elems ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret.push( value ); } } } // Flatten any nested arrays return concat.apply( [], ret ); }, // A global GUID counter for objects guid: 1, // Bind a function to a context, optionally partially applying any // arguments. proxy: function( fn, context ) { var tmp, args, proxy; if ( typeof context === "string" ) { tmp = fn[ context ]; context = fn; fn = tmp; } // Quick check to determine if target is callable, in the spec // this throws a TypeError, but we will just return undefined. if ( !jQuery.isFunction( fn ) ) { return undefined; } // Simulated bind args = slice.call( arguments, 2 ); proxy = function() { return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); }; // Set the guid of unique handler to the same of original handler, so it can be removed proxy.guid = fn.guid = fn.guid || jQuery.guid++; return proxy; }, now: Date.now, // jQuery.support is not used in Core but other projects attach their // properties to it so it needs to exist. support: support } ); // JSHint would error on this code due to the Symbol not being defined in ES5. // Defining this global in .jshintrc would create a danger of using the global // unguarded in another place, it seems safer to just disable JSHint for these // three lines. /* jshint ignore: start */ if ( typeof Symbol === "function" ) { jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; } /* jshint ignore: end */ // Populate the class2type map jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), function( i, name ) { class2type[ "[object " + name + "]" ] = name.toLowerCase(); } ); function isArrayLike( obj ) { // Support: iOS 8.2 (not reproducible in simulator) // `in` check used to prevent JIT error (gh-2145) // hasOwn isn't used here due to false negatives // regarding Nodelist length in IE var length = !!obj && "length" in obj && obj.length, type = jQuery.type( obj ); if ( type === "function" || jQuery.isWindow( obj ) ) { return false; } return type === "array" || length === 0 || typeof length === "number" && length > 0 && ( length - 1 ) in obj; } var Sizzle = /*! * Sizzle CSS Selector Engine v2.2.1 * http://sizzlejs.com/ * * Copyright jQuery Foundation and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2015-10-17 */ (function( window ) { var i, support, Expr, getText, isXML, tokenize, compile, select, outermostContext, sortInput, hasDuplicate, // Local document vars setDocument, document, docElem, documentIsHTML, rbuggyQSA, rbuggyMatches, matches, contains, // Instance-specific data expando = "sizzle" + 1 * new Date(), preferredDoc = window.document, dirruns = 0, done = 0, classCache = createCache(), tokenCache = createCache(), compilerCache = createCache(), sortOrder = function( a, b ) { if ( a === b ) { hasDuplicate = true; } return 0; }, // General-purpose constants MAX_NEGATIVE = 1 << 31, // Instance methods hasOwn = ({}).hasOwnProperty, arr = [], pop = arr.pop, push_native = arr.push, push = arr.push, slice = arr.slice, // Use a stripped-down indexOf as it's faster than native // http://jsperf.com/thor-indexof-vs-for/5 indexOf = function( list, elem ) { var i = 0, len = list.length; for ( ; i < len; i++ ) { if ( list[i] === elem ) { return i; } } return -1; }, booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", // Regular expressions // http://www.w3.org/TR/css3-selectors/#whitespace whitespace = "[\\x20\\t\\r\\n\\f]", // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier identifier = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + // Operator (capture 2) "*([*^$|!~]?=)" + whitespace + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + "*\\]", pseudos = ":(" + identifier + ")(?:\\((" + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: // 1. quoted (capture 3; capture 4 or capture 5) "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + // 2. simple (capture 6) "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + // 3. anything else (capture 2) ".*" + ")\\)|)", // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter rwhitespace = new RegExp( whitespace + "+", "g" ), rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), rpseudo = new RegExp( pseudos ), ridentifier = new RegExp( "^" + identifier + "$" ), matchExpr = { "ID": new RegExp( "^#(" + identifier + ")" ), "CLASS": new RegExp( "^\\.(" + identifier + ")" ), "TAG": new RegExp( "^(" + identifier + "|[*])" ), "ATTR": new RegExp( "^" + attributes ), "PSEUDO": new RegExp( "^" + pseudos ), "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), // For use in libraries implementing .is() // We use this for POS matching in `select` "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) }, rinputs = /^(?:input|select|textarea|button)$/i, rheader = /^h\d$/i, rnative = /^[^{]+\{\s*\[native \w/, // Easily-parseable/retrievable ID or TAG or CLASS selectors rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, rsibling = /[+~]/, rescape = /'|\\/g, // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), funescape = function( _, escaped, escapedWhitespace ) { var high = "0x" + escaped - 0x10000; // NaN means non-codepoint // Support: Firefox<24 // Workaround erroneous numeric interpretation of +"0x" return high !== high || escapedWhitespace ? escaped : high < 0 ? // BMP codepoint String.fromCharCode( high + 0x10000 ) : // Supplemental Plane codepoint (surrogate pair) String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); }, // Used for iframes // See setDocument() // Removing the function wrapper causes a "Permission Denied" // error in IE unloadHandler = function() { setDocument(); }; // Optimize for push.apply( _, NodeList ) try { push.apply( (arr = slice.call( preferredDoc.childNodes )), preferredDoc.childNodes ); // Support: Android<4.0 // Detect silently failing push.apply arr[ preferredDoc.childNodes.length ].nodeType; } catch ( e ) { push = { apply: arr.length ? // Leverage slice if possible function( target, els ) { push_native.apply( target, slice.call(els) ); } : // Support: IE<9 // Otherwise append directly function( target, els ) { var j = target.length, i = 0; // Can't trust NodeList.length while ( (target[j++] = els[i++]) ) {} target.length = j - 1; } }; } function Sizzle( selector, context, results, seed ) { var m, i, elem, nid, nidselect, match, groups, newSelector, newContext = context && context.ownerDocument, // nodeType defaults to 9, since context defaults to document nodeType = context ? context.nodeType : 9; results = results || []; // Return early from calls with invalid selector or context if ( typeof selector !== "string" || !selector || nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { return results; } // Try to shortcut find operations (as opposed to filters) in HTML documents if ( !seed ) { if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { setDocument( context ); } context = context || document; if ( documentIsHTML ) { // If the selector is sufficiently simple, try using a "get*By*" DOM method // (excepting DocumentFragment context, where the methods don't exist) if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { // ID selector if ( (m = match[1]) ) { // Document context if ( nodeType === 9 ) { if ( (elem = context.getElementById( m )) ) { // Support: IE, Opera, Webkit // TODO: identify versions // getElementById can match elements by name instead of ID if ( elem.id === m ) { results.push( elem ); return results; } } else { return results; } // Element context } else { // Support: IE, Opera, Webkit // TODO: identify versions // getElementById can match elements by name instead of ID if ( newContext && (elem = newContext.getElementById( m )) && contains( context, elem ) && elem.id === m ) { results.push( elem ); return results; } } // Type selector } else if ( match[2] ) { push.apply( results, context.getElementsByTagName( selector ) ); return results; // Class selector } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) { push.apply( results, context.getElementsByClassName( m ) ); return results; } } // Take advantage of querySelectorAll if ( support.qsa && !compilerCache[ selector + " " ] && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { if ( nodeType !== 1 ) { newContext = context; newSelector = selector; // qSA looks outside Element context, which is not what we want // Thanks to Andrew Dupont for this workaround technique // Support: IE <=8 // Exclude object elements } else if ( context.nodeName.toLowerCase() !== "object" ) { // Capture the context ID, setting it first if necessary if ( (nid = context.getAttribute( "id" )) ) { nid = nid.replace( rescape, "\\$&" ); } else { context.setAttribute( "id", (nid = expando) ); } // Prefix every selector in the list groups = tokenize( selector ); i = groups.length; nidselect = ridentifier.test( nid ) ? "#" + nid : "[id='" + nid + "']"; while ( i-- ) { groups[i] = nidselect + " " + toSelector( groups[i] ); } newSelector = groups.join( "," ); // Expand context for sibling selectors newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context; } if ( newSelector ) { try { push.apply( results, newContext.querySelectorAll( newSelector ) ); return results; } catch ( qsaError ) { } finally { if ( nid === expando ) { context.removeAttribute( "id" ); } } } } } } // All others return select( selector.replace( rtrim, "$1" ), context, results, seed ); } /** * Create key-value caches of limited size * @returns {function(string, object)} Returns the Object data after storing it on itself with * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) * deleting the oldest entry */ function createCache() { var keys = []; function cache( key, value ) { // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) if ( keys.push( key + " " ) > Expr.cacheLength ) { // Only keep the most recent entries delete cache[ keys.shift() ]; } return (cache[ key + " " ] = value); } return cache; } /** * Mark a function for special use by Sizzle * @param {Function} fn The function to mark */ function markFunction( fn ) { fn[ expando ] = true; return fn; } /** * Support testing using an element * @param {Function} fn Passed the created div and expects a boolean result */ function assert( fn ) { var div = document.createElement("div"); try { return !!fn( div ); } catch (e) { return false; } finally { // Remove from its parent by default if ( div.parentNode ) { div.parentNode.removeChild( div ); } // release memory in IE div = null; } } /** * Adds the same handler for all of the specified attrs * @param {String} attrs Pipe-separated list of attributes * @param {Function} handler The method that will be applied */ function addHandle( attrs, handler ) { var arr = attrs.split("|"), i = arr.length; while ( i-- ) { Expr.attrHandle[ arr[i] ] = handler; } } /** * Checks document order of two siblings * @param {Element} a * @param {Element} b * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b */ function siblingCheck( a, b ) { var cur = b && a, diff = cur && a.nodeType === 1 && b.nodeType === 1 && ( ~b.sourceIndex || MAX_NEGATIVE ) - ( ~a.sourceIndex || MAX_NEGATIVE ); // Use IE sourceIndex if available on both nodes if ( diff ) { return diff; } // Check if b follows a if ( cur ) { while ( (cur = cur.nextSibling) ) { if ( cur === b ) { return -1; } } } return a ? 1 : -1; } /** * Returns a function to use in pseudos for input types * @param {String} type */ function createInputPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === type; }; } /** * Returns a function to use in pseudos for buttons * @param {String} type */ function createButtonPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return (name === "input" || name === "button") && elem.type === type; }; } /** * Returns a function to use in pseudos for positionals * @param {Function} fn */ function createPositionalPseudo( fn ) { return markFunction(function( argument ) { argument = +argument; return markFunction(function( seed, matches ) { var j, matchIndexes = fn( [], seed.length, argument ), i = matchIndexes.length; // Match elements found at the specified indexes while ( i-- ) { if ( seed[ (j = matchIndexes[i]) ] ) { seed[j] = !(matches[j] = seed[j]); } } }); }); } /** * Checks a node for validity as a Sizzle context * @param {Element|Object=} context * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value */ function testContext( context ) { return context && typeof context.getElementsByTagName !== "undefined" && context; } // Expose support vars for convenience support = Sizzle.support = {}; /** * Detects XML nodes * @param {Element|Object} elem An element or a document * @returns {Boolean} True iff elem is a non-HTML XML node */ isXML = Sizzle.isXML = function( elem ) { // documentElement is verified for cases where it doesn't yet exist // (such as loading iframes in IE - #4833) var documentElement = elem && (elem.ownerDocument || elem).documentElement; return documentElement ? documentElement.nodeName !== "HTML" : false; }; /** * Sets document-related variables once based on the current document * @param {Element|Object} [doc] An element or document object to use to set the document * @returns {Object} Returns the current document */ setDocument = Sizzle.setDocument = function( node ) { var hasCompare, parent, doc = node ? node.ownerDocument || node : preferredDoc; // Return early if doc is invalid or already selected if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { return document; } // Update global variables document = doc; docElem = document.documentElement; documentIsHTML = !isXML( document ); // Support: IE 9-11, Edge // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) if ( (parent = document.defaultView) && parent.top !== parent ) { // Support: IE 11 if ( parent.addEventListener ) { parent.addEventListener( "unload", unloadHandler, false ); // Support: IE 9 - 10 only } else if ( parent.attachEvent ) { parent.attachEvent( "onunload", unloadHandler ); } } /* Attributes ---------------------------------------------------------------------- */ // Support: IE<8 // Verify that getAttribute really returns attributes and not properties // (excepting IE8 booleans) support.attributes = assert(function( div ) { div.className = "i"; return !div.getAttribute("className"); }); /* getElement(s)By* ---------------------------------------------------------------------- */ // Check if getElementsByTagName("*") returns only elements support.getElementsByTagName = assert(function( div ) { div.appendChild( document.createComment("") ); return !div.getElementsByTagName("*").length; }); // Support: IE<9 support.getElementsByClassName = rnative.test( document.getElementsByClassName ); // Support: IE<10 // Check if getElementById returns elements by name // The broken getElementById methods don't pick up programatically-set names, // so use a roundabout getElementsByName test support.getById = assert(function( div ) { docElem.appendChild( div ).id = expando; return !document.getElementsByName || !document.getElementsByName( expando ).length; }); // ID find and filter if ( support.getById ) { Expr.find["ID"] = function( id, context ) { if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { var m = context.getElementById( id ); return m ? [ m ] : []; } }; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { return elem.getAttribute("id") === attrId; }; }; } else { // Support: IE6/7 // getElementById is not reliable as a find shortcut delete Expr.find["ID"]; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); return node && node.value === attrId; }; }; } // Tag Expr.find["TAG"] = support.getElementsByTagName ? function( tag, context ) { if ( typeof context.getElementsByTagName !== "undefined" ) { return context.getElementsByTagName( tag ); // DocumentFragment nodes don't have gEBTN } else if ( support.qsa ) { return context.querySelectorAll( tag ); } } : function( tag, context ) { var elem, tmp = [], i = 0, // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too results = context.getElementsByTagName( tag ); // Filter out possible comments if ( tag === "*" ) { while ( (elem = results[i++]) ) { if ( elem.nodeType === 1 ) { tmp.push( elem ); } } return tmp; } return results; }; // Class Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { return context.getElementsByClassName( className ); } }; /* QSA/matchesSelector ---------------------------------------------------------------------- */ // QSA and matchesSelector support // matchesSelector(:active) reports false when true (IE9/Opera 11.5) rbuggyMatches = []; // qSa(:focus) reports false when true (Chrome 21) // We allow this because of a bug in IE8/9 that throws an error // whenever `document.activeElement` is accessed on an iframe // So, we allow :focus to pass through QSA all the time to avoid the IE error // See http://bugs.jquery.com/ticket/13378 rbuggyQSA = []; if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { // Build QSA regex // Regex strategy adopted from Diego Perini assert(function( div ) { // Select is set to empty string on purpose // This is to test IE's treatment of not explicitly // setting a boolean content attribute, // since its presence should be enough // http://bugs.jquery.com/ticket/12359 docElem.appendChild( div ).innerHTML = "" + ""; // Support: IE8, Opera 11-12.16 // Nothing should be selected when empty strings follow ^= or $= or *= // The test attribute must be unknown in Opera but "safe" for WinRT // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section if ( div.querySelectorAll("[msallowcapture^='']").length ) { rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); } // Support: IE8 // Boolean attributes and "value" are not treated correctly if ( !div.querySelectorAll("[selected]").length ) { rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); } // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) { rbuggyQSA.push("~="); } // Webkit/Opera - :checked should return selected option elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked // IE8 throws error here and will not see later tests if ( !div.querySelectorAll(":checked").length ) { rbuggyQSA.push(":checked"); } // Support: Safari 8+, iOS 8+ // https://bugs.webkit.org/show_bug.cgi?id=136851 // In-page `selector#id sibing-combinator selector` fails if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) { rbuggyQSA.push(".#.+[+~]"); } }); assert(function( div ) { // Support: Windows 8 Native Apps // The type and name attributes are restricted during .innerHTML assignment var input = document.createElement("input"); input.setAttribute( "type", "hidden" ); div.appendChild( input ).setAttribute( "name", "D" ); // Support: IE8 // Enforce case-sensitivity of name attribute if ( div.querySelectorAll("[name=d]").length ) { rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); } // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) // IE8 throws error here and will not see later tests if ( !div.querySelectorAll(":enabled").length ) { rbuggyQSA.push( ":enabled", ":disabled" ); } // Opera 10-11 does not throw on post-comma invalid pseudos div.querySelectorAll("*,:x"); rbuggyQSA.push(",.*:"); }); } if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || docElem.webkitMatchesSelector || docElem.mozMatchesSelector || docElem.oMatchesSelector || docElem.msMatchesSelector) )) ) { assert(function( div ) { // Check to see if it's possible to do matchesSelector // on a disconnected node (IE 9) support.disconnectedMatch = matches.call( div, "div" ); // This should fail with an exception // Gecko does not error, returns false instead matches.call( div, "[s!='']:x" ); rbuggyMatches.push( "!=", pseudos ); }); } rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); /* Contains ---------------------------------------------------------------------- */ hasCompare = rnative.test( docElem.compareDocumentPosition ); // Element contains another // Purposefully self-exclusive // As in, an element does not contain itself contains = hasCompare || rnative.test( docElem.contains ) ? function( a, b ) { var adown = a.nodeType === 9 ? a.documentElement : a, bup = b && b.parentNode; return a === bup || !!( bup && bup.nodeType === 1 && ( adown.contains ? adown.contains( bup ) : a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 )); } : function( a, b ) { if ( b ) { while ( (b = b.parentNode) ) { if ( b === a ) { return true; } } } return false; }; /* Sorting ---------------------------------------------------------------------- */ // Document order sorting sortOrder = hasCompare ? function( a, b ) { // Flag for duplicate removal if ( a === b ) { hasDuplicate = true; return 0; } // Sort on method existence if only one input has compareDocumentPosition var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; if ( compare ) { return compare; } // Calculate position if both inputs belong to the same document compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? a.compareDocumentPosition( b ) : // Otherwise we know they are disconnected 1; // Disconnected nodes if ( compare & 1 || (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { // Choose the first element that is related to our preferred document if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { return -1; } if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { return 1; } // Maintain original order return sortInput ? ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : 0; } return compare & 4 ? -1 : 1; } : function( a, b ) { // Exit early if the nodes are identical if ( a === b ) { hasDuplicate = true; return 0; } var cur, i = 0, aup = a.parentNode, bup = b.parentNode, ap = [ a ], bp = [ b ]; // Parentless nodes are either documents or disconnected if ( !aup || !bup ) { return a === document ? -1 : b === document ? 1 : aup ? -1 : bup ? 1 : sortInput ? ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : 0; // If the nodes are siblings, we can do a quick check } else if ( aup === bup ) { return siblingCheck( a, b ); } // Otherwise we need full lists of their ancestors for comparison cur = a; while ( (cur = cur.parentNode) ) { ap.unshift( cur ); } cur = b; while ( (cur = cur.parentNode) ) { bp.unshift( cur ); } // Walk down the tree looking for a discrepancy while ( ap[i] === bp[i] ) { i++; } return i ? // Do a sibling check if the nodes have a common ancestor siblingCheck( ap[i], bp[i] ) : // Otherwise nodes in our document sort first ap[i] === preferredDoc ? -1 : bp[i] === preferredDoc ? 1 : 0; }; return document; }; Sizzle.matches = function( expr, elements ) { return Sizzle( expr, null, null, elements ); }; Sizzle.matchesSelector = function( elem, expr ) { // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } // Make sure that attribute selectors are quoted expr = expr.replace( rattributeQuotes, "='$1']" ); if ( support.matchesSelector && documentIsHTML && !compilerCache[ expr + " " ] && ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { try { var ret = matches.call( elem, expr ); // IE 9's matchesSelector returns false on disconnected nodes if ( ret || support.disconnectedMatch || // As well, disconnected nodes are said to be in a document // fragment in IE 9 elem.document && elem.document.nodeType !== 11 ) { return ret; } } catch (e) {} } return Sizzle( expr, document, null, [ elem ] ).length > 0; }; Sizzle.contains = function( context, elem ) { // Set document vars if needed if ( ( context.ownerDocument || context ) !== document ) { setDocument( context ); } return contains( context, elem ); }; Sizzle.attr = function( elem, name ) { // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } var fn = Expr.attrHandle[ name.toLowerCase() ], // Don't get fooled by Object.prototype properties (jQuery #13807) val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? fn( elem, name, !documentIsHTML ) : undefined; return val !== undefined ? val : support.attributes || !documentIsHTML ? elem.getAttribute( name ) : (val = elem.getAttributeNode(name)) && val.specified ? val.value : null; }; Sizzle.error = function( msg ) { throw new Error( "Syntax error, unrecognized expression: " + msg ); }; /** * Document sorting and removing duplicates * @param {ArrayLike} results */ Sizzle.uniqueSort = function( results ) { var elem, duplicates = [], j = 0, i = 0; // Unless we *know* we can detect duplicates, assume their presence hasDuplicate = !support.detectDuplicates; sortInput = !support.sortStable && results.slice( 0 ); results.sort( sortOrder ); if ( hasDuplicate ) { while ( (elem = results[i++]) ) { if ( elem === results[ i ] ) { j = duplicates.push( i ); } } while ( j-- ) { results.splice( duplicates[ j ], 1 ); } } // Clear input after sorting to release objects // See https://github.com/jquery/sizzle/pull/225 sortInput = null; return results; }; /** * Utility function for retrieving the text value of an array of DOM nodes * @param {Array|Element} elem */ getText = Sizzle.getText = function( elem ) { var node, ret = "", i = 0, nodeType = elem.nodeType; if ( !nodeType ) { // If no nodeType, this is expected to be an array while ( (node = elem[i++]) ) { // Do not traverse comment nodes ret += getText( node ); } } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { // Use textContent for elements // innerText usage removed for consistency of new lines (jQuery #11153) if ( typeof elem.textContent === "string" ) { return elem.textContent; } else { // Traverse its children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { ret += getText( elem ); } } } else if ( nodeType === 3 || nodeType === 4 ) { return elem.nodeValue; } // Do not include comment or processing instruction nodes return ret; }; Expr = Sizzle.selectors = { // Can be adjusted by the user cacheLength: 50, createPseudo: markFunction, match: matchExpr, attrHandle: {}, find: {}, relative: { ">": { dir: "parentNode", first: true }, " ": { dir: "parentNode" }, "+": { dir: "previousSibling", first: true }, "~": { dir: "previousSibling" } }, preFilter: { "ATTR": function( match ) { match[1] = match[1].replace( runescape, funescape ); // Move the given value to match[3] whether quoted or unquoted match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); if ( match[2] === "~=" ) { match[3] = " " + match[3] + " "; } return match.slice( 0, 4 ); }, "CHILD": function( match ) { /* matches from matchExpr["CHILD"] 1 type (only|nth|...) 2 what (child|of-type) 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) 4 xn-component of xn+y argument ([+-]?\d*n|) 5 sign of xn-component 6 x of xn-component 7 sign of y-component 8 y of y-component */ match[1] = match[1].toLowerCase(); if ( match[1].slice( 0, 3 ) === "nth" ) { // nth-* requires argument if ( !match[3] ) { Sizzle.error( match[0] ); } // numeric x and y parameters for Expr.filter.CHILD // remember that false/true cast respectively to 0/1 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); // other types prohibit arguments } else if ( match[3] ) { Sizzle.error( match[0] ); } return match; }, "PSEUDO": function( match ) { var excess, unquoted = !match[6] && match[2]; if ( matchExpr["CHILD"].test( match[0] ) ) { return null; } // Accept quoted arguments as-is if ( match[3] ) { match[2] = match[4] || match[5] || ""; // Strip excess characters from unquoted arguments } else if ( unquoted && rpseudo.test( unquoted ) && // Get excess from tokenize (recursively) (excess = tokenize( unquoted, true )) && // advance to the next closing parenthesis (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { // excess is a negative index match[0] = match[0].slice( 0, excess ); match[2] = unquoted.slice( 0, excess ); } // Return only captures needed by the pseudo filter method (type and argument) return match.slice( 0, 3 ); } }, filter: { "TAG": function( nodeNameSelector ) { var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); return nodeNameSelector === "*" ? function() { return true; } : function( elem ) { return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; }; }, "CLASS": function( className ) { var pattern = classCache[ className + " " ]; return pattern || (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && classCache( className, function( elem ) { return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); }); }, "ATTR": function( name, operator, check ) { return function( elem ) { var result = Sizzle.attr( elem, name ); if ( result == null ) { return operator === "!="; } if ( !operator ) { return true; } result += ""; return operator === "=" ? result === check : operator === "!=" ? result !== check : operator === "^=" ? check && result.indexOf( check ) === 0 : operator === "*=" ? check && result.indexOf( check ) > -1 : operator === "$=" ? check && result.slice( -check.length ) === check : operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : false; }; }, "CHILD": function( type, what, argument, first, last ) { var simple = type.slice( 0, 3 ) !== "nth", forward = type.slice( -4 ) !== "last", ofType = what === "of-type"; return first === 1 && last === 0 ? // Shortcut for :nth-*(n) function( elem ) { return !!elem.parentNode; } : function( elem, context, xml ) { var cache, uniqueCache, outerCache, node, nodeIndex, start, dir = simple !== forward ? "nextSibling" : "previousSibling", parent = elem.parentNode, name = ofType && elem.nodeName.toLowerCase(), useCache = !xml && !ofType, diff = false; if ( parent ) { // :(first|last|only)-(child|of-type) if ( simple ) { while ( dir ) { node = elem; while ( (node = node[ dir ]) ) { if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { return false; } } // Reverse direction for :only-* (if we haven't yet done so) start = dir = type === "only" && !start && "nextSibling"; } return true; } start = [ forward ? parent.firstChild : parent.lastChild ]; // non-xml :nth-child(...) stores cache data on `parent` if ( forward && useCache ) { // Seek `elem` from a previously-cached index // ...in a gzip-friendly way node = parent; outerCache = node[ expando ] || (node[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || (outerCache[ node.uniqueID ] = {}); cache = uniqueCache[ type ] || []; nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; diff = nodeIndex && cache[ 2 ]; node = nodeIndex && parent.childNodes[ nodeIndex ]; while ( (node = ++nodeIndex && node && node[ dir ] || // Fallback to seeking `elem` from the start (diff = nodeIndex = 0) || start.pop()) ) { // When found, cache indexes on `parent` and break if ( node.nodeType === 1 && ++diff && node === elem ) { uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; break; } } } else { // Use previously-cached element index if available if ( useCache ) { // ...in a gzip-friendly way node = elem; outerCache = node[ expando ] || (node[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || (outerCache[ node.uniqueID ] = {}); cache = uniqueCache[ type ] || []; nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; diff = nodeIndex; } // xml :nth-child(...) // or :nth-last-child(...) or :nth(-last)?-of-type(...) if ( diff === false ) { // Use the same loop as above to seek `elem` from the start while ( (node = ++nodeIndex && node && node[ dir ] || (diff = nodeIndex = 0) || start.pop()) ) { if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { // Cache the index of each encountered element if ( useCache ) { outerCache = node[ expando ] || (node[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || (outerCache[ node.uniqueID ] = {}); uniqueCache[ type ] = [ dirruns, diff ]; } if ( node === elem ) { break; } } } } } // Incorporate the offset, then check against cycle size diff -= last; return diff === first || ( diff % first === 0 && diff / first >= 0 ); } }; }, "PSEUDO": function( pseudo, argument ) { // pseudo-class names are case-insensitive // http://www.w3.org/TR/selectors/#pseudo-classes // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters // Remember that setFilters inherits from pseudos var args, fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || Sizzle.error( "unsupported pseudo: " + pseudo ); // The user may use createPseudo to indicate that // arguments are needed to create the filter function // just as Sizzle does if ( fn[ expando ] ) { return fn( argument ); } // But maintain support for old signatures if ( fn.length > 1 ) { args = [ pseudo, pseudo, "", argument ]; return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? markFunction(function( seed, matches ) { var idx, matched = fn( seed, argument ), i = matched.length; while ( i-- ) { idx = indexOf( seed, matched[i] ); seed[ idx ] = !( matches[ idx ] = matched[i] ); } }) : function( elem ) { return fn( elem, 0, args ); }; } return fn; } }, pseudos: { // Potentially complex pseudos "not": markFunction(function( selector ) { // Trim the selector passed to compile // to avoid treating leading and trailing // spaces as combinators var input = [], results = [], matcher = compile( selector.replace( rtrim, "$1" ) ); return matcher[ expando ] ? markFunction(function( seed, matches, context, xml ) { var elem, unmatched = matcher( seed, null, xml, [] ), i = seed.length; // Match elements unmatched by `matcher` while ( i-- ) { if ( (elem = unmatched[i]) ) { seed[i] = !(matches[i] = elem); } } }) : function( elem, context, xml ) { input[0] = elem; matcher( input, null, xml, results ); // Don't keep the element (issue #299) input[0] = null; return !results.pop(); }; }), "has": markFunction(function( selector ) { return function( elem ) { return Sizzle( selector, elem ).length > 0; }; }), "contains": markFunction(function( text ) { text = text.replace( runescape, funescape ); return function( elem ) { return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; }; }), // "Whether an element is represented by a :lang() selector // is based solely on the element's language value // being equal to the identifier C, // or beginning with the identifier C immediately followed by "-". // The matching of C against the element's language value is performed case-insensitively. // The identifier C does not have to be a valid language name." // http://www.w3.org/TR/selectors/#lang-pseudo "lang": markFunction( function( lang ) { // lang value must be a valid identifier if ( !ridentifier.test(lang || "") ) { Sizzle.error( "unsupported lang: " + lang ); } lang = lang.replace( runescape, funescape ).toLowerCase(); return function( elem ) { var elemLang; do { if ( (elemLang = documentIsHTML ? elem.lang : elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { elemLang = elemLang.toLowerCase(); return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; } } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); return false; }; }), // Miscellaneous "target": function( elem ) { var hash = window.location && window.location.hash; return hash && hash.slice( 1 ) === elem.id; }, "root": function( elem ) { return elem === docElem; }, "focus": function( elem ) { return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); }, // Boolean properties "enabled": function( elem ) { return elem.disabled === false; }, "disabled": function( elem ) { return elem.disabled === true; }, "checked": function( elem ) { // In CSS3, :checked should return both checked and selected elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked var nodeName = elem.nodeName.toLowerCase(); return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); }, "selected": function( elem ) { // Accessing this property makes selected-by-default // options in Safari work properly if ( elem.parentNode ) { elem.parentNode.selectedIndex; } return elem.selected === true; }, // Contents "empty": function( elem ) { // http://www.w3.org/TR/selectors/#empty-pseudo // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), // but not by others (comment: 8; processing instruction: 7; etc.) // nodeType < 6 works because attributes (2) do not appear as children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { if ( elem.nodeType < 6 ) { return false; } } return true; }, "parent": function( elem ) { return !Expr.pseudos["empty"]( elem ); }, // Element/input types "header": function( elem ) { return rheader.test( elem.nodeName ); }, "input": function( elem ) { return rinputs.test( elem.nodeName ); }, "button": function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === "button" || name === "button"; }, "text": function( elem ) { var attr; return elem.nodeName.toLowerCase() === "input" && elem.type === "text" && // Support: IE<8 // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); }, // Position-in-collection "first": createPositionalPseudo(function() { return [ 0 ]; }), "last": createPositionalPseudo(function( matchIndexes, length ) { return [ length - 1 ]; }), "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { return [ argument < 0 ? argument + length : argument ]; }), "even": createPositionalPseudo(function( matchIndexes, length ) { var i = 0; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "odd": createPositionalPseudo(function( matchIndexes, length ) { var i = 1; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; --i >= 0; ) { matchIndexes.push( i ); } return matchIndexes; }), "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; ++i < length; ) { matchIndexes.push( i ); } return matchIndexes; }) } }; Expr.pseudos["nth"] = Expr.pseudos["eq"]; // Add button/input type pseudos for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { Expr.pseudos[ i ] = createInputPseudo( i ); } for ( i in { submit: true, reset: true } ) { Expr.pseudos[ i ] = createButtonPseudo( i ); } // Easy API for creating new setFilters function setFilters() {} setFilters.prototype = Expr.filters = Expr.pseudos; Expr.setFilters = new setFilters(); tokenize = Sizzle.tokenize = function( selector, parseOnly ) { var matched, match, tokens, type, soFar, groups, preFilters, cached = tokenCache[ selector + " " ]; if ( cached ) { return parseOnly ? 0 : cached.slice( 0 ); } soFar = selector; groups = []; preFilters = Expr.preFilter; while ( soFar ) { // Comma and first run if ( !matched || (match = rcomma.exec( soFar )) ) { if ( match ) { // Don't consume trailing commas as valid soFar = soFar.slice( match[0].length ) || soFar; } groups.push( (tokens = []) ); } matched = false; // Combinators if ( (match = rcombinators.exec( soFar )) ) { matched = match.shift(); tokens.push({ value: matched, // Cast descendant combinators to space type: match[0].replace( rtrim, " " ) }); soFar = soFar.slice( matched.length ); } // Filters for ( type in Expr.filter ) { if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || (match = preFilters[ type ]( match ))) ) { matched = match.shift(); tokens.push({ value: matched, type: type, matches: match }); soFar = soFar.slice( matched.length ); } } if ( !matched ) { break; } } // Return the length of the invalid excess // if we're just parsing // Otherwise, throw an error or return tokens return parseOnly ? soFar.length : soFar ? Sizzle.error( selector ) : // Cache the tokens tokenCache( selector, groups ).slice( 0 ); }; function toSelector( tokens ) { var i = 0, len = tokens.length, selector = ""; for ( ; i < len; i++ ) { selector += tokens[i].value; } return selector; } function addCombinator( matcher, combinator, base ) { var dir = combinator.dir, checkNonElements = base && dir === "parentNode", doneName = done++; return combinator.first ? // Check against closest ancestor/preceding element function( elem, context, xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { return matcher( elem, context, xml ); } } } : // Check against all ancestor/preceding elements function( elem, context, xml ) { var oldCache, uniqueCache, outerCache, newCache = [ dirruns, doneName ]; // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching if ( xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { if ( matcher( elem, context, xml ) ) { return true; } } } } else { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { outerCache = elem[ expando ] || (elem[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); if ( (oldCache = uniqueCache[ dir ]) && oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { // Assign to newCache so results back-propagate to previous elements return (newCache[ 2 ] = oldCache[ 2 ]); } else { // Reuse newcache so results back-propagate to previous elements uniqueCache[ dir ] = newCache; // A match means we're done; a fail means we have to keep checking if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { return true; } } } } } }; } function elementMatcher( matchers ) { return matchers.length > 1 ? function( elem, context, xml ) { var i = matchers.length; while ( i-- ) { if ( !matchers[i]( elem, context, xml ) ) { return false; } } return true; } : matchers[0]; } function multipleContexts( selector, contexts, results ) { var i = 0, len = contexts.length; for ( ; i < len; i++ ) { Sizzle( selector, contexts[i], results ); } return results; } function condense( unmatched, map, filter, context, xml ) { var elem, newUnmatched = [], i = 0, len = unmatched.length, mapped = map != null; for ( ; i < len; i++ ) { if ( (elem = unmatched[i]) ) { if ( !filter || filter( elem, context, xml ) ) { newUnmatched.push( elem ); if ( mapped ) { map.push( i ); } } } } return newUnmatched; } function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { if ( postFilter && !postFilter[ expando ] ) { postFilter = setMatcher( postFilter ); } if ( postFinder && !postFinder[ expando ] ) { postFinder = setMatcher( postFinder, postSelector ); } return markFunction(function( seed, results, context, xml ) { var temp, i, elem, preMap = [], postMap = [], preexisting = results.length, // Get initial elements from seed or context elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), // Prefilter to get matcher input, preserving a map for seed-results synchronization matcherIn = preFilter && ( seed || !selector ) ? condense( elems, preMap, preFilter, context, xml ) : elems, matcherOut = matcher ? // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, postFinder || ( seed ? preFilter : preexisting || postFilter ) ? // ...intermediate processing is necessary [] : // ...otherwise use results directly results : matcherIn; // Find primary matches if ( matcher ) { matcher( matcherIn, matcherOut, context, xml ); } // Apply postFilter if ( postFilter ) { temp = condense( matcherOut, postMap ); postFilter( temp, [], context, xml ); // Un-match failing elements by moving them back to matcherIn i = temp.length; while ( i-- ) { if ( (elem = temp[i]) ) { matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); } } } if ( seed ) { if ( postFinder || preFilter ) { if ( postFinder ) { // Get the final matcherOut by condensing this intermediate into postFinder contexts temp = []; i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) ) { // Restore matcherIn since elem is not yet a final match temp.push( (matcherIn[i] = elem) ); } } postFinder( null, (matcherOut = []), temp, xml ); } // Move matched elements from seed to results to keep them synchronized i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) && (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { seed[temp] = !(results[temp] = elem); } } } // Add elements to results, through postFinder if defined } else { matcherOut = condense( matcherOut === results ? matcherOut.splice( preexisting, matcherOut.length ) : matcherOut ); if ( postFinder ) { postFinder( null, results, matcherOut, xml ); } else { push.apply( results, matcherOut ); } } }); } function matcherFromTokens( tokens ) { var checkContext, matcher, j, len = tokens.length, leadingRelative = Expr.relative[ tokens[0].type ], implicitRelative = leadingRelative || Expr.relative[" "], i = leadingRelative ? 1 : 0, // The foundational matcher ensures that elements are reachable from top-level context(s) matchContext = addCombinator( function( elem ) { return elem === checkContext; }, implicitRelative, true ), matchAnyContext = addCombinator( function( elem ) { return indexOf( checkContext, elem ) > -1; }, implicitRelative, true ), matchers = [ function( elem, context, xml ) { var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( (checkContext = context).nodeType ? matchContext( elem, context, xml ) : matchAnyContext( elem, context, xml ) ); // Avoid hanging onto element (issue #299) checkContext = null; return ret; } ]; for ( ; i < len; i++ ) { if ( (matcher = Expr.relative[ tokens[i].type ]) ) { matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; } else { matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); // Return special upon seeing a positional matcher if ( matcher[ expando ] ) { // Find the next relative operator (if any) for proper handling j = ++i; for ( ; j < len; j++ ) { if ( Expr.relative[ tokens[j].type ] ) { break; } } return setMatcher( i > 1 && elementMatcher( matchers ), i > 1 && toSelector( // If the preceding token was a descendant combinator, insert an implicit any-element `*` tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) ).replace( rtrim, "$1" ), matcher, i < j && matcherFromTokens( tokens.slice( i, j ) ), j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), j < len && toSelector( tokens ) ); } matchers.push( matcher ); } } return elementMatcher( matchers ); } function matcherFromGroupMatchers( elementMatchers, setMatchers ) { var bySet = setMatchers.length > 0, byElement = elementMatchers.length > 0, superMatcher = function( seed, context, xml, results, outermost ) { var elem, j, matcher, matchedCount = 0, i = "0", unmatched = seed && [], setMatched = [], contextBackup = outermostContext, // We must always have either seed elements or outermost context elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), // Use integer dirruns iff this is the outermost matcher dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), len = elems.length; if ( outermost ) { outermostContext = context === document || context || outermost; } // Add elements passing elementMatchers directly to results // Support: IE<9, Safari // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id for ( ; i !== len && (elem = elems[i]) != null; i++ ) { if ( byElement && elem ) { j = 0; if ( !context && elem.ownerDocument !== document ) { setDocument( elem ); xml = !documentIsHTML; } while ( (matcher = elementMatchers[j++]) ) { if ( matcher( elem, context || document, xml) ) { results.push( elem ); break; } } if ( outermost ) { dirruns = dirrunsUnique; } } // Track unmatched elements for set filters if ( bySet ) { // They will have gone through all possible matchers if ( (elem = !matcher && elem) ) { matchedCount--; } // Lengthen the array for every element, matched or not if ( seed ) { unmatched.push( elem ); } } } // `i` is now the count of elements visited above, and adding it to `matchedCount` // makes the latter nonnegative. matchedCount += i; // Apply set filters to unmatched elements // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` // equals `i`), unless we didn't visit _any_ elements in the above loop because we have // no element matchers and no seed. // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that // case, which will result in a "00" `matchedCount` that differs from `i` but is also // numerically zero. if ( bySet && i !== matchedCount ) { j = 0; while ( (matcher = setMatchers[j++]) ) { matcher( unmatched, setMatched, context, xml ); } if ( seed ) { // Reintegrate element matches to eliminate the need for sorting if ( matchedCount > 0 ) { while ( i-- ) { if ( !(unmatched[i] || setMatched[i]) ) { setMatched[i] = pop.call( results ); } } } // Discard index placeholder values to get only actual matches setMatched = condense( setMatched ); } // Add matches to results push.apply( results, setMatched ); // Seedless set matches succeeding multiple successful matchers stipulate sorting if ( outermost && !seed && setMatched.length > 0 && ( matchedCount + setMatchers.length ) > 1 ) { Sizzle.uniqueSort( results ); } } // Override manipulation of globals by nested matchers if ( outermost ) { dirruns = dirrunsUnique; outermostContext = contextBackup; } return unmatched; }; return bySet ? markFunction( superMatcher ) : superMatcher; } compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { var i, setMatchers = [], elementMatchers = [], cached = compilerCache[ selector + " " ]; if ( !cached ) { // Generate a function of recursive functions that can be used to check each element if ( !match ) { match = tokenize( selector ); } i = match.length; while ( i-- ) { cached = matcherFromTokens( match[i] ); if ( cached[ expando ] ) { setMatchers.push( cached ); } else { elementMatchers.push( cached ); } } // Cache the compiled function cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); // Save selector and tokenization cached.selector = selector; } return cached; }; /** * A low-level selection function that works with Sizzle's compiled * selector functions * @param {String|Function} selector A selector or a pre-compiled * selector function built with Sizzle.compile * @param {Element} context * @param {Array} [results] * @param {Array} [seed] A set of elements to match against */ select = Sizzle.select = function( selector, context, results, seed ) { var i, tokens, token, type, find, compiled = typeof selector === "function" && selector, match = !seed && tokenize( (selector = compiled.selector || selector) ); results = results || []; // Try to minimize operations if there is only one selector in the list and no seed // (the latter of which guarantees us context) if ( match.length === 1 ) { // Reduce context if the leading compound selector is an ID tokens = match[0] = match[0].slice( 0 ); if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && support.getById && context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; if ( !context ) { return results; // Precompiled matchers will still verify ancestry, so step up a level } else if ( compiled ) { context = context.parentNode; } selector = selector.slice( tokens.shift().value.length ); } // Fetch a seed set for right-to-left matching i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; while ( i-- ) { token = tokens[i]; // Abort if we hit a combinator if ( Expr.relative[ (type = token.type) ] ) { break; } if ( (find = Expr.find[ type ]) ) { // Search, expanding context for leading sibling combinators if ( (seed = find( token.matches[0].replace( runescape, funescape ), rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context )) ) { // If seed is empty or no tokens remain, we can return early tokens.splice( i, 1 ); selector = seed.length && toSelector( tokens ); if ( !selector ) { push.apply( results, seed ); return results; } break; } } } } // Compile and execute a filtering function if one is not provided // Provide `match` to avoid retokenization if we modified the selector above ( compiled || compile( selector, match ) )( seed, context, !documentIsHTML, results, !context || rsibling.test( selector ) && testContext( context.parentNode ) || context ); return results; }; // One-time assignments // Sort stability support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; // Support: Chrome 14-35+ // Always assume duplicates if they aren't passed to the comparison function support.detectDuplicates = !!hasDuplicate; // Initialize against the default document setDocument(); // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) // Detached nodes confoundingly follow *each other* support.sortDetached = assert(function( div1 ) { // Should return 1, but returns 4 (following) return div1.compareDocumentPosition( document.createElement("div") ) & 1; }); // Support: IE<8 // Prevent attribute/property "interpolation" // http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx if ( !assert(function( div ) { div.innerHTML = ""; return div.firstChild.getAttribute("href") === "#" ; }) ) { addHandle( "type|href|height|width", function( elem, name, isXML ) { if ( !isXML ) { return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); } }); } // Support: IE<9 // Use defaultValue in place of getAttribute("value") if ( !support.attributes || !assert(function( div ) { div.innerHTML = ""; div.firstChild.setAttribute( "value", "" ); return div.firstChild.getAttribute( "value" ) === ""; }) ) { addHandle( "value", function( elem, name, isXML ) { if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { return elem.defaultValue; } }); } // Support: IE<9 // Use getAttributeNode to fetch booleans when getAttribute lies if ( !assert(function( div ) { return div.getAttribute("disabled") == null; }) ) { addHandle( booleans, function( elem, name, isXML ) { var val; if ( !isXML ) { return elem[ name ] === true ? name.toLowerCase() : (val = elem.getAttributeNode( name )) && val.specified ? val.value : null; } }); } return Sizzle; })( window ); jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; jQuery.expr[ ":" ] = jQuery.expr.pseudos; jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; jQuery.text = Sizzle.getText; jQuery.isXMLDoc = Sizzle.isXML; jQuery.contains = Sizzle.contains; var dir = function( elem, dir, until ) { var matched = [], truncate = until !== undefined; while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { if ( elem.nodeType === 1 ) { if ( truncate && jQuery( elem ).is( until ) ) { break; } matched.push( elem ); } } return matched; }; var siblings = function( n, elem ) { var matched = []; for ( ; n; n = n.nextSibling ) { if ( n.nodeType === 1 && n !== elem ) { matched.push( n ); } } return matched; }; var rneedsContext = jQuery.expr.match.needsContext; var rsingleTag = ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); var risSimple = /^.[^:#\[\.,]*$/; // Implement the identical functionality for filter and not function winnow( elements, qualifier, not ) { if ( jQuery.isFunction( qualifier ) ) { return jQuery.grep( elements, function( elem, i ) { /* jshint -W018 */ return !!qualifier.call( elem, i, elem ) !== not; } ); } if ( qualifier.nodeType ) { return jQuery.grep( elements, function( elem ) { return ( elem === qualifier ) !== not; } ); } if ( typeof qualifier === "string" ) { if ( risSimple.test( qualifier ) ) { return jQuery.filter( qualifier, elements, not ); } qualifier = jQuery.filter( qualifier, elements ); } return jQuery.grep( elements, function( elem ) { return ( indexOf.call( qualifier, elem ) > -1 ) !== not; } ); } jQuery.filter = function( expr, elems, not ) { var elem = elems[ 0 ]; if ( not ) { expr = ":not(" + expr + ")"; } return elems.length === 1 && elem.nodeType === 1 ? jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { return elem.nodeType === 1; } ) ); }; jQuery.fn.extend( { find: function( selector ) { var i, len = this.length, ret = [], self = this; if ( typeof selector !== "string" ) { return this.pushStack( jQuery( selector ).filter( function() { for ( i = 0; i < len; i++ ) { if ( jQuery.contains( self[ i ], this ) ) { return true; } } } ) ); } for ( i = 0; i < len; i++ ) { jQuery.find( selector, self[ i ], ret ); } // Needed because $( selector, context ) becomes $( context ).find( selector ) ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); ret.selector = this.selector ? this.selector + " " + selector : selector; return ret; }, filter: function( selector ) { return this.pushStack( winnow( this, selector || [], false ) ); }, not: function( selector ) { return this.pushStack( winnow( this, selector || [], true ) ); }, is: function( selector ) { return !!winnow( this, // If this is a positional/relative selector, check membership in the returned set // so $("p:first").is("p:last") won't return true for a doc with two "p". typeof selector === "string" && rneedsContext.test( selector ) ? jQuery( selector ) : selector || [], false ).length; } } ); // Initialize a jQuery object // A central reference to the root jQuery(document) var rootjQuery, // A simple way to check for HTML strings // Prioritize #id over to avoid XSS via location.hash (#9521) // Strict HTML recognition (#11290: must start with <) rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, init = jQuery.fn.init = function( selector, context, root ) { var match, elem; // HANDLE: $(""), $(null), $(undefined), $(false) if ( !selector ) { return this; } // Method init() accepts an alternate rootjQuery // so migrate can support jQuery.sub (gh-2101) root = root || rootjQuery; // Handle HTML strings if ( typeof selector === "string" ) { if ( selector[ 0 ] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) { // Assume that strings that start and end with <> are HTML and skip the regex check match = [ null, selector, null ]; } else { match = rquickExpr.exec( selector ); } // Match html or make sure no context is specified for #id if ( match && ( match[ 1 ] || !context ) ) { // HANDLE: $(html) -> $(array) if ( match[ 1 ] ) { context = context instanceof jQuery ? context[ 0 ] : context; // Option to run scripts is true for back-compat // Intentionally let the error be thrown if parseHTML is not present jQuery.merge( this, jQuery.parseHTML( match[ 1 ], context && context.nodeType ? context.ownerDocument || context : document, true ) ); // HANDLE: $(html, props) if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { for ( match in context ) { // Properties of context are called as methods if possible if ( jQuery.isFunction( this[ match ] ) ) { this[ match ]( context[ match ] ); // ...and otherwise set as attributes } else { this.attr( match, context[ match ] ); } } } return this; // HANDLE: $(#id) } else { elem = document.getElementById( match[ 2 ] ); // Support: Blackberry 4.6 // gEBID returns nodes no longer in the document (#6963) if ( elem && elem.parentNode ) { // Inject the element directly into the jQuery object this.length = 1; this[ 0 ] = elem; } this.context = document; this.selector = selector; return this; } // HANDLE: $(expr, $(...)) } else if ( !context || context.jquery ) { return ( context || root ).find( selector ); // HANDLE: $(expr, context) // (which is just equivalent to: $(context).find(expr) } else { return this.constructor( context ).find( selector ); } // HANDLE: $(DOMElement) } else if ( selector.nodeType ) { this.context = this[ 0 ] = selector; this.length = 1; return this; // HANDLE: $(function) // Shortcut for document ready } else if ( jQuery.isFunction( selector ) ) { return root.ready !== undefined ? root.ready( selector ) : // Execute immediately if ready is not present selector( jQuery ); } if ( selector.selector !== undefined ) { this.selector = selector.selector; this.context = selector.context; } return jQuery.makeArray( selector, this ); }; // Give the init function the jQuery prototype for later instantiation init.prototype = jQuery.fn; // Initialize central reference rootjQuery = jQuery( document ); var rparentsprev = /^(?:parents|prev(?:Until|All))/, // Methods guaranteed to produce a unique set when starting from a unique set guaranteedUnique = { children: true, contents: true, next: true, prev: true }; jQuery.fn.extend( { has: function( target ) { var targets = jQuery( target, this ), l = targets.length; return this.filter( function() { var i = 0; for ( ; i < l; i++ ) { if ( jQuery.contains( this, targets[ i ] ) ) { return true; } } } ); }, closest: function( selectors, context ) { var cur, i = 0, l = this.length, matched = [], pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? jQuery( selectors, context || this.context ) : 0; for ( ; i < l; i++ ) { for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { // Always skip document fragments if ( cur.nodeType < 11 && ( pos ? pos.index( cur ) > -1 : // Don't pass non-elements to Sizzle cur.nodeType === 1 && jQuery.find.matchesSelector( cur, selectors ) ) ) { matched.push( cur ); break; } } } return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); }, // Determine the position of an element within the set index: function( elem ) { // No argument, return index in parent if ( !elem ) { return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; } // Index in selector if ( typeof elem === "string" ) { return indexOf.call( jQuery( elem ), this[ 0 ] ); } // Locate the position of the desired element return indexOf.call( this, // If it receives a jQuery object, the first element is used elem.jquery ? elem[ 0 ] : elem ); }, add: function( selector, context ) { return this.pushStack( jQuery.uniqueSort( jQuery.merge( this.get(), jQuery( selector, context ) ) ) ); }, addBack: function( selector ) { return this.add( selector == null ? this.prevObject : this.prevObject.filter( selector ) ); } } ); function sibling( cur, dir ) { while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} return cur; } jQuery.each( { parent: function( elem ) { var parent = elem.parentNode; return parent && parent.nodeType !== 11 ? parent : null; }, parents: function( elem ) { return dir( elem, "parentNode" ); }, parentsUntil: function( elem, i, until ) { return dir( elem, "parentNode", until ); }, next: function( elem ) { return sibling( elem, "nextSibling" ); }, prev: function( elem ) { return sibling( elem, "previousSibling" ); }, nextAll: function( elem ) { return dir( elem, "nextSibling" ); }, prevAll: function( elem ) { return dir( elem, "previousSibling" ); }, nextUntil: function( elem, i, until ) { return dir( elem, "nextSibling", until ); }, prevUntil: function( elem, i, until ) { return dir( elem, "previousSibling", until ); }, siblings: function( elem ) { return siblings( ( elem.parentNode || {} ).firstChild, elem ); }, children: function( elem ) { return siblings( elem.firstChild ); }, contents: function( elem ) { return elem.contentDocument || jQuery.merge( [], elem.childNodes ); } }, function( name, fn ) { jQuery.fn[ name ] = function( until, selector ) { var matched = jQuery.map( this, fn, until ); if ( name.slice( -5 ) !== "Until" ) { selector = until; } if ( selector && typeof selector === "string" ) { matched = jQuery.filter( selector, matched ); } if ( this.length > 1 ) { // Remove duplicates if ( !guaranteedUnique[ name ] ) { jQuery.uniqueSort( matched ); } // Reverse order for parents* and prev-derivatives if ( rparentsprev.test( name ) ) { matched.reverse(); } } return this.pushStack( matched ); }; } ); var rnotwhite = ( /\S+/g ); // Convert String-formatted options into Object-formatted ones function createOptions( options ) { var object = {}; jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { object[ flag ] = true; } ); return object; } /* * Create a callback list using the following parameters: * * options: an optional list of space-separated options that will change how * the callback list behaves or a more traditional option object * * By default a callback list will act like an event callback list and can be * "fired" multiple times. * * Possible options: * * once: will ensure the callback list can only be fired once (like a Deferred) * * memory: will keep track of previous values and will call any callback added * after the list has been fired right away with the latest "memorized" * values (like a Deferred) * * unique: will ensure a callback can only be added once (no duplicate in the list) * * stopOnFalse: interrupt callings when a callback returns false * */ jQuery.Callbacks = function( options ) { // Convert options from String-formatted to Object-formatted if needed // (we check in cache first) options = typeof options === "string" ? createOptions( options ) : jQuery.extend( {}, options ); var // Flag to know if list is currently firing firing, // Last fire value for non-forgettable lists memory, // Flag to know if list was already fired fired, // Flag to prevent firing locked, // Actual callback list list = [], // Queue of execution data for repeatable lists queue = [], // Index of currently firing callback (modified by add/remove as needed) firingIndex = -1, // Fire callbacks fire = function() { // Enforce single-firing locked = options.once; // Execute callbacks for all pending executions, // respecting firingIndex overrides and runtime changes fired = firing = true; for ( ; queue.length; firingIndex = -1 ) { memory = queue.shift(); while ( ++firingIndex < list.length ) { // Run callback and check for early termination if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && options.stopOnFalse ) { // Jump to end and forget the data so .add doesn't re-fire firingIndex = list.length; memory = false; } } } // Forget the data if we're done with it if ( !options.memory ) { memory = false; } firing = false; // Clean up if we're done firing for good if ( locked ) { // Keep an empty list if we have data for future add calls if ( memory ) { list = []; // Otherwise, this object is spent } else { list = ""; } } }, // Actual Callbacks object self = { // Add a callback or a collection of callbacks to the list add: function() { if ( list ) { // If we have memory from a past run, we should fire after adding if ( memory && !firing ) { firingIndex = list.length - 1; queue.push( memory ); } ( function add( args ) { jQuery.each( args, function( _, arg ) { if ( jQuery.isFunction( arg ) ) { if ( !options.unique || !self.has( arg ) ) { list.push( arg ); } } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) { // Inspect recursively add( arg ); } } ); } )( arguments ); if ( memory && !firing ) { fire(); } } return this; }, // Remove a callback from the list remove: function() { jQuery.each( arguments, function( _, arg ) { var index; while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { list.splice( index, 1 ); // Handle firing indexes if ( index <= firingIndex ) { firingIndex--; } } } ); return this; }, // Check if a given callback is in the list. // If no argument is given, return whether or not list has callbacks attached. has: function( fn ) { return fn ? jQuery.inArray( fn, list ) > -1 : list.length > 0; }, // Remove all callbacks from the list empty: function() { if ( list ) { list = []; } return this; }, // Disable .fire and .add // Abort any current/pending executions // Clear all callbacks and values disable: function() { locked = queue = []; list = memory = ""; return this; }, disabled: function() { return !list; }, // Disable .fire // Also disable .add unless we have memory (since it would have no effect) // Abort any pending executions lock: function() { locked = queue = []; if ( !memory ) { list = memory = ""; } return this; }, locked: function() { return !!locked; }, // Call all callbacks with the given context and arguments fireWith: function( context, args ) { if ( !locked ) { args = args || []; args = [ context, args.slice ? args.slice() : args ]; queue.push( args ); if ( !firing ) { fire(); } } return this; }, // Call all the callbacks with the given arguments fire: function() { self.fireWith( this, arguments ); return this; }, // To know if the callbacks have already been called at least once fired: function() { return !!fired; } }; return self; }; jQuery.extend( { Deferred: function( func ) { var tuples = [ // action, add listener, listener list, final state [ "resolve", "done", jQuery.Callbacks( "once memory" ), "resolved" ], [ "reject", "fail", jQuery.Callbacks( "once memory" ), "rejected" ], [ "notify", "progress", jQuery.Callbacks( "memory" ) ] ], state = "pending", promise = { state: function() { return state; }, always: function() { deferred.done( arguments ).fail( arguments ); return this; }, then: function( /* fnDone, fnFail, fnProgress */ ) { var fns = arguments; return jQuery.Deferred( function( newDefer ) { jQuery.each( tuples, function( i, tuple ) { var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; // deferred[ done | fail | progress ] for forwarding actions to newDefer deferred[ tuple[ 1 ] ]( function() { var returned = fn && fn.apply( this, arguments ); if ( returned && jQuery.isFunction( returned.promise ) ) { returned.promise() .progress( newDefer.notify ) .done( newDefer.resolve ) .fail( newDefer.reject ); } else { newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); } } ); } ); fns = null; } ).promise(); }, // Get a promise for this deferred // If obj is provided, the promise aspect is added to the object promise: function( obj ) { return obj != null ? jQuery.extend( obj, promise ) : promise; } }, deferred = {}; // Keep pipe for back-compat promise.pipe = promise.then; // Add list-specific methods jQuery.each( tuples, function( i, tuple ) { var list = tuple[ 2 ], stateString = tuple[ 3 ]; // promise[ done | fail | progress ] = list.add promise[ tuple[ 1 ] ] = list.add; // Handle state if ( stateString ) { list.add( function() { // state = [ resolved | rejected ] state = stateString; // [ reject_list | resolve_list ].disable; progress_list.lock }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); } // deferred[ resolve | reject | notify ] deferred[ tuple[ 0 ] ] = function() { deferred[ tuple[ 0 ] + "With" ]( this === deferred ? promise : this, arguments ); return this; }; deferred[ tuple[ 0 ] + "With" ] = list.fireWith; } ); // Make the deferred a promise promise.promise( deferred ); // Call given func if any if ( func ) { func.call( deferred, deferred ); } // All done! return deferred; }, // Deferred helper when: function( subordinate /* , ..., subordinateN */ ) { var i = 0, resolveValues = slice.call( arguments ), length = resolveValues.length, // the count of uncompleted subordinates remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, // the master Deferred. // If resolveValues consist of only a single Deferred, just use that. deferred = remaining === 1 ? subordinate : jQuery.Deferred(), // Update function for both resolve and progress values updateFunc = function( i, contexts, values ) { return function( value ) { contexts[ i ] = this; values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; if ( values === progressValues ) { deferred.notifyWith( contexts, values ); } else if ( !( --remaining ) ) { deferred.resolveWith( contexts, values ); } }; }, progressValues, progressContexts, resolveContexts; // Add listeners to Deferred subordinates; treat others as resolved if ( length > 1 ) { progressValues = new Array( length ); progressContexts = new Array( length ); resolveContexts = new Array( length ); for ( ; i < length; i++ ) { if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { resolveValues[ i ].promise() .progress( updateFunc( i, progressContexts, progressValues ) ) .done( updateFunc( i, resolveContexts, resolveValues ) ) .fail( deferred.reject ); } else { --remaining; } } } // If we're not waiting on anything, resolve the master if ( !remaining ) { deferred.resolveWith( resolveContexts, resolveValues ); } return deferred.promise(); } } ); // The deferred used on DOM ready var readyList; jQuery.fn.ready = function( fn ) { // Add the callback jQuery.ready.promise().done( fn ); return this; }; jQuery.extend( { // Is the DOM ready to be used? Set to true once it occurs. isReady: false, // A counter to track how many items to wait for before // the ready event fires. See #6781 readyWait: 1, // Hold (or release) the ready event holdReady: function( hold ) { if ( hold ) { jQuery.readyWait++; } else { jQuery.ready( true ); } }, // Handle when the DOM is ready ready: function( wait ) { // Abort if there are pending holds or we're already ready if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { return; } // Remember that the DOM is ready jQuery.isReady = true; // If a normal DOM Ready event fired, decrement, and wait if need be if ( wait !== true && --jQuery.readyWait > 0 ) { return; } // If there are functions bound, to execute readyList.resolveWith( document, [ jQuery ] ); // Trigger any bound ready events if ( jQuery.fn.triggerHandler ) { jQuery( document ).triggerHandler( "ready" ); jQuery( document ).off( "ready" ); } } } ); /** * The ready event handler and self cleanup method */ function completed() { document.removeEventListener( "DOMContentLoaded", completed ); window.removeEventListener( "load", completed ); jQuery.ready(); } jQuery.ready.promise = function( obj ) { if ( !readyList ) { readyList = jQuery.Deferred(); // Catch cases where $(document).ready() is called // after the browser event has already occurred. // Support: IE9-10 only // Older IE sometimes signals "interactive" too soon if ( document.readyState === "complete" || ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { // Handle it asynchronously to allow scripts the opportunity to delay ready window.setTimeout( jQuery.ready ); } else { // Use the handy event callback document.addEventListener( "DOMContentLoaded", completed ); // A fallback to window.onload, that will always work window.addEventListener( "load", completed ); } } return readyList.promise( obj ); }; // Kick off the DOM ready check even if the user does not jQuery.ready.promise(); // Multifunctional method to get and set values of a collection // The value/s can optionally be executed if it's a function var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { var i = 0, len = elems.length, bulk = key == null; // Sets many values if ( jQuery.type( key ) === "object" ) { chainable = true; for ( i in key ) { access( elems, fn, i, key[ i ], true, emptyGet, raw ); } // Sets one value } else if ( value !== undefined ) { chainable = true; if ( !jQuery.isFunction( value ) ) { raw = true; } if ( bulk ) { // Bulk operations run against the entire set if ( raw ) { fn.call( elems, value ); fn = null; // ...except when executing function values } else { bulk = fn; fn = function( elem, key, value ) { return bulk.call( jQuery( elem ), value ); }; } } if ( fn ) { for ( ; i < len; i++ ) { fn( elems[ i ], key, raw ? value : value.call( elems[ i ], i, fn( elems[ i ], key ) ) ); } } } return chainable ? elems : // Gets bulk ? fn.call( elems ) : len ? fn( elems[ 0 ], key ) : emptyGet; }; var acceptData = function( owner ) { // Accepts only: // - Node // - Node.ELEMENT_NODE // - Node.DOCUMENT_NODE // - Object // - Any /* jshint -W018 */ return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); }; function Data() { this.expando = jQuery.expando + Data.uid++; } Data.uid = 1; Data.prototype = { register: function( owner, initial ) { var value = initial || {}; // If it is a node unlikely to be stringify-ed or looped over // use plain assignment if ( owner.nodeType ) { owner[ this.expando ] = value; // Otherwise secure it in a non-enumerable, non-writable property // configurability must be true to allow the property to be // deleted with the delete operator } else { Object.defineProperty( owner, this.expando, { value: value, writable: true, configurable: true } ); } return owner[ this.expando ]; }, cache: function( owner ) { // We can accept data for non-element nodes in modern browsers, // but we should not, see #8335. // Always return an empty object. if ( !acceptData( owner ) ) { return {}; } // Check if the owner object already has a cache var value = owner[ this.expando ]; // If not, create one if ( !value ) { value = {}; // We can accept data for non-element nodes in modern browsers, // but we should not, see #8335. // Always return an empty object. if ( acceptData( owner ) ) { // If it is a node unlikely to be stringify-ed or looped over // use plain assignment if ( owner.nodeType ) { owner[ this.expando ] = value; // Otherwise secure it in a non-enumerable property // configurable must be true to allow the property to be // deleted when data is removed } else { Object.defineProperty( owner, this.expando, { value: value, configurable: true } ); } } } return value; }, set: function( owner, data, value ) { var prop, cache = this.cache( owner ); // Handle: [ owner, key, value ] args if ( typeof data === "string" ) { cache[ data ] = value; // Handle: [ owner, { properties } ] args } else { // Copy the properties one-by-one to the cache object for ( prop in data ) { cache[ prop ] = data[ prop ]; } } return cache; }, get: function( owner, key ) { return key === undefined ? this.cache( owner ) : owner[ this.expando ] && owner[ this.expando ][ key ]; }, access: function( owner, key, value ) { var stored; // In cases where either: // // 1. No key was specified // 2. A string key was specified, but no value provided // // Take the "read" path and allow the get method to determine // which value to return, respectively either: // // 1. The entire cache object // 2. The data stored at the key // if ( key === undefined || ( ( key && typeof key === "string" ) && value === undefined ) ) { stored = this.get( owner, key ); return stored !== undefined ? stored : this.get( owner, jQuery.camelCase( key ) ); } // When the key is not a string, or both a key and value // are specified, set or extend (existing objects) with either: // // 1. An object of properties // 2. A key and value // this.set( owner, key, value ); // Since the "set" path can have two possible entry points // return the expected data based on which path was taken[*] return value !== undefined ? value : key; }, remove: function( owner, key ) { var i, name, camel, cache = owner[ this.expando ]; if ( cache === undefined ) { return; } if ( key === undefined ) { this.register( owner ); } else { // Support array or space separated string of keys if ( jQuery.isArray( key ) ) { // If "name" is an array of keys... // When data is initially created, via ("key", "val") signature, // keys will be converted to camelCase. // Since there is no way to tell _how_ a key was added, remove // both plain key and camelCase key. #12786 // This will only penalize the array argument path. name = key.concat( key.map( jQuery.camelCase ) ); } else { camel = jQuery.camelCase( key ); // Try the string as a key before any manipulation if ( key in cache ) { name = [ key, camel ]; } else { // If a key with the spaces exists, use it. // Otherwise, create an array by matching non-whitespace name = camel; name = name in cache ? [ name ] : ( name.match( rnotwhite ) || [] ); } } i = name.length; while ( i-- ) { delete cache[ name[ i ] ]; } } // Remove the expando if there's no more data if ( key === undefined || jQuery.isEmptyObject( cache ) ) { // Support: Chrome <= 35-45+ // Webkit & Blink performance suffers when deleting properties // from DOM nodes, so set to undefined instead // https://code.google.com/p/chromium/issues/detail?id=378607 if ( owner.nodeType ) { owner[ this.expando ] = undefined; } else { delete owner[ this.expando ]; } } }, hasData: function( owner ) { var cache = owner[ this.expando ]; return cache !== undefined && !jQuery.isEmptyObject( cache ); } }; var dataPriv = new Data(); var dataUser = new Data(); // Implementation Summary // // 1. Enforce API surface and semantic compatibility with 1.9.x branch // 2. Improve the module's maintainability by reducing the storage // paths to a single mechanism. // 3. Use the same single mechanism to support "private" and "user" data. // 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) // 5. Avoid exposing implementation details on user objects (eg. expando properties) // 6. Provide a clear path for implementation upgrade to WeakMap in 2014 var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, rmultiDash = /[A-Z]/g; function dataAttr( elem, key, data ) { var name; // If nothing was found internally, try to fetch any // data from the HTML5 data-* attribute if ( data === undefined && elem.nodeType === 1 ) { name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); data = elem.getAttribute( name ); if ( typeof data === "string" ) { try { data = data === "true" ? true : data === "false" ? false : data === "null" ? null : // Only convert to a number if it doesn't change the string +data + "" === data ? +data : rbrace.test( data ) ? jQuery.parseJSON( data ) : data; } catch ( e ) {} // Make sure we set the data so it isn't changed later dataUser.set( elem, key, data ); } else { data = undefined; } } return data; } jQuery.extend( { hasData: function( elem ) { return dataUser.hasData( elem ) || dataPriv.hasData( elem ); }, data: function( elem, name, data ) { return dataUser.access( elem, name, data ); }, removeData: function( elem, name ) { dataUser.remove( elem, name ); }, // TODO: Now that all calls to _data and _removeData have been replaced // with direct calls to dataPriv methods, these can be deprecated. _data: function( elem, name, data ) { return dataPriv.access( elem, name, data ); }, _removeData: function( elem, name ) { dataPriv.remove( elem, name ); } } ); jQuery.fn.extend( { data: function( key, value ) { var i, name, data, elem = this[ 0 ], attrs = elem && elem.attributes; // Gets all values if ( key === undefined ) { if ( this.length ) { data = dataUser.get( elem ); if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { i = attrs.length; while ( i-- ) { // Support: IE11+ // The attrs elements can be null (#14894) if ( attrs[ i ] ) { name = attrs[ i ].name; if ( name.indexOf( "data-" ) === 0 ) { name = jQuery.camelCase( name.slice( 5 ) ); dataAttr( elem, name, data[ name ] ); } } } dataPriv.set( elem, "hasDataAttrs", true ); } } return data; } // Sets multiple values if ( typeof key === "object" ) { return this.each( function() { dataUser.set( this, key ); } ); } return access( this, function( value ) { var data, camelKey; // The calling jQuery object (element matches) is not empty // (and therefore has an element appears at this[ 0 ]) and the // `value` parameter was not undefined. An empty jQuery object // will result in `undefined` for elem = this[ 0 ] which will // throw an exception if an attempt to read a data cache is made. if ( elem && value === undefined ) { // Attempt to get data from the cache // with the key as-is data = dataUser.get( elem, key ) || // Try to find dashed key if it exists (gh-2779) // This is for 2.2.x only dataUser.get( elem, key.replace( rmultiDash, "-$&" ).toLowerCase() ); if ( data !== undefined ) { return data; } camelKey = jQuery.camelCase( key ); // Attempt to get data from the cache // with the key camelized data = dataUser.get( elem, camelKey ); if ( data !== undefined ) { return data; } // Attempt to "discover" the data in // HTML5 custom data-* attrs data = dataAttr( elem, camelKey, undefined ); if ( data !== undefined ) { return data; } // We tried really hard, but the data doesn't exist. return; } // Set the data... camelKey = jQuery.camelCase( key ); this.each( function() { // First, attempt to store a copy or reference of any // data that might've been store with a camelCased key. var data = dataUser.get( this, camelKey ); // For HTML5 data-* attribute interop, we have to // store property names with dashes in a camelCase form. // This might not apply to all properties...* dataUser.set( this, camelKey, value ); // *... In the case of properties that might _actually_ // have dashes, we need to also store a copy of that // unchanged property. if ( key.indexOf( "-" ) > -1 && data !== undefined ) { dataUser.set( this, key, value ); } } ); }, null, value, arguments.length > 1, null, true ); }, removeData: function( key ) { return this.each( function() { dataUser.remove( this, key ); } ); } } ); jQuery.extend( { queue: function( elem, type, data ) { var queue; if ( elem ) { type = ( type || "fx" ) + "queue"; queue = dataPriv.get( elem, type ); // Speed up dequeue by getting out quickly if this is just a lookup if ( data ) { if ( !queue || jQuery.isArray( data ) ) { queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); } else { queue.push( data ); } } return queue || []; } }, dequeue: function( elem, type ) { type = type || "fx"; var queue = jQuery.queue( elem, type ), startLength = queue.length, fn = queue.shift(), hooks = jQuery._queueHooks( elem, type ), next = function() { jQuery.dequeue( elem, type ); }; // If the fx queue is dequeued, always remove the progress sentinel if ( fn === "inprogress" ) { fn = queue.shift(); startLength--; } if ( fn ) { // Add a progress sentinel to prevent the fx queue from being // automatically dequeued if ( type === "fx" ) { queue.unshift( "inprogress" ); } // Clear up the last queue stop function delete hooks.stop; fn.call( elem, next, hooks ); } if ( !startLength && hooks ) { hooks.empty.fire(); } }, // Not public - generate a queueHooks object, or return the current one _queueHooks: function( elem, type ) { var key = type + "queueHooks"; return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { empty: jQuery.Callbacks( "once memory" ).add( function() { dataPriv.remove( elem, [ type + "queue", key ] ); } ) } ); } } ); jQuery.fn.extend( { queue: function( type, data ) { var setter = 2; if ( typeof type !== "string" ) { data = type; type = "fx"; setter--; } if ( arguments.length < setter ) { return jQuery.queue( this[ 0 ], type ); } return data === undefined ? this : this.each( function() { var queue = jQuery.queue( this, type, data ); // Ensure a hooks for this queue jQuery._queueHooks( this, type ); if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { jQuery.dequeue( this, type ); } } ); }, dequeue: function( type ) { return this.each( function() { jQuery.dequeue( this, type ); } ); }, clearQueue: function( type ) { return this.queue( type || "fx", [] ); }, // Get a promise resolved when queues of a certain type // are emptied (fx is the type by default) promise: function( type, obj ) { var tmp, count = 1, defer = jQuery.Deferred(), elements = this, i = this.length, resolve = function() { if ( !( --count ) ) { defer.resolveWith( elements, [ elements ] ); } }; if ( typeof type !== "string" ) { obj = type; type = undefined; } type = type || "fx"; while ( i-- ) { tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); if ( tmp && tmp.empty ) { count++; tmp.empty.add( resolve ); } } resolve(); return defer.promise( obj ); } } ); var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; var isHidden = function( elem, el ) { // isHidden might be called from jQuery#filter function; // in that case, element will be second argument elem = el || elem; return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); }; function adjustCSS( elem, prop, valueParts, tween ) { var adjusted, scale = 1, maxIterations = 20, currentValue = tween ? function() { return tween.cur(); } : function() { return jQuery.css( elem, prop, "" ); }, initial = currentValue(), unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), // Starting value computation is required for potential unit mismatches initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && rcssNum.exec( jQuery.css( elem, prop ) ); if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { // Trust units reported by jQuery.css unit = unit || initialInUnit[ 3 ]; // Make sure we update the tween properties later on valueParts = valueParts || []; // Iteratively approximate from a nonzero starting point initialInUnit = +initial || 1; do { // If previous iteration zeroed out, double until we get *something*. // Use string for doubling so we don't accidentally see scale as unchanged below scale = scale || ".5"; // Adjust and apply initialInUnit = initialInUnit / scale; jQuery.style( elem, prop, initialInUnit + unit ); // Update scale, tolerating zero or NaN from tween.cur() // Break the loop if scale is unchanged or perfect, or if we've just had enough. } while ( scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations ); } if ( valueParts ) { initialInUnit = +initialInUnit || +initial || 0; // Apply relative offset (+=/-=) if specified adjusted = valueParts[ 1 ] ? initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : +valueParts[ 2 ]; if ( tween ) { tween.unit = unit; tween.start = initialInUnit; tween.end = adjusted; } } return adjusted; } var rcheckableType = ( /^(?:checkbox|radio)$/i ); var rtagName = ( /<([\w:-]+)/ ); var rscriptType = ( /^$|\/(?:java|ecma)script/i ); // We have to close these tags to support XHTML (#13200) var wrapMap = { // Support: IE9 option: [ 1, "" ], // XHTML parsers do not magically insert elements in the // same way that tag soup parsers do. So we cannot shorten // this by omitting or other required elements. thead: [ 1, "", "
    " ], col: [ 2, "", "
    " ], tr: [ 2, "", "
    " ], td: [ 3, "", "
    " ], _default: [ 0, "", "" ] }; // Support: IE9 wrapMap.optgroup = wrapMap.option; wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; function getAll( context, tag ) { // Support: IE9-11+ // Use typeof to avoid zero-argument method invocation on host objects (#15151) var ret = typeof context.getElementsByTagName !== "undefined" ? context.getElementsByTagName( tag || "*" ) : typeof context.querySelectorAll !== "undefined" ? context.querySelectorAll( tag || "*" ) : []; return tag === undefined || tag && jQuery.nodeName( context, tag ) ? jQuery.merge( [ context ], ret ) : ret; } // Mark scripts as having already been evaluated function setGlobalEval( elems, refElements ) { var i = 0, l = elems.length; for ( ; i < l; i++ ) { dataPriv.set( elems[ i ], "globalEval", !refElements || dataPriv.get( refElements[ i ], "globalEval" ) ); } } var rhtml = /<|&#?\w+;/; function buildFragment( elems, context, scripts, selection, ignored ) { var elem, tmp, tag, wrap, contains, j, fragment = context.createDocumentFragment(), nodes = [], i = 0, l = elems.length; for ( ; i < l; i++ ) { elem = elems[ i ]; if ( elem || elem === 0 ) { // Add nodes directly if ( jQuery.type( elem ) === "object" ) { // Support: Android<4.1, PhantomJS<2 // push.apply(_, arraylike) throws on ancient WebKit jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); // Convert non-html into a text node } else if ( !rhtml.test( elem ) ) { nodes.push( context.createTextNode( elem ) ); // Convert html into DOM nodes } else { tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); // Deserialize a standard representation tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); wrap = wrapMap[ tag ] || wrapMap._default; tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; // Descend through wrappers to the right content j = wrap[ 0 ]; while ( j-- ) { tmp = tmp.lastChild; } // Support: Android<4.1, PhantomJS<2 // push.apply(_, arraylike) throws on ancient WebKit jQuery.merge( nodes, tmp.childNodes ); // Remember the top-level container tmp = fragment.firstChild; // Ensure the created nodes are orphaned (#12392) tmp.textContent = ""; } } } // Remove wrapper from fragment fragment.textContent = ""; i = 0; while ( ( elem = nodes[ i++ ] ) ) { // Skip elements already in the context collection (trac-4087) if ( selection && jQuery.inArray( elem, selection ) > -1 ) { if ( ignored ) { ignored.push( elem ); } continue; } contains = jQuery.contains( elem.ownerDocument, elem ); // Append to fragment tmp = getAll( fragment.appendChild( elem ), "script" ); // Preserve script evaluation history if ( contains ) { setGlobalEval( tmp ); } // Capture executables if ( scripts ) { j = 0; while ( ( elem = tmp[ j++ ] ) ) { if ( rscriptType.test( elem.type || "" ) ) { scripts.push( elem ); } } } } return fragment; } ( function() { var fragment = document.createDocumentFragment(), div = fragment.appendChild( document.createElement( "div" ) ), input = document.createElement( "input" ); // Support: Android 4.0-4.3, Safari<=5.1 // Check state lost if the name is set (#11217) // Support: Windows Web Apps (WWA) // `name` and `type` must use .setAttribute for WWA (#14901) input.setAttribute( "type", "radio" ); input.setAttribute( "checked", "checked" ); input.setAttribute( "name", "t" ); div.appendChild( input ); // Support: Safari<=5.1, Android<4.2 // Older WebKit doesn't clone checked state correctly in fragments support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; // Support: IE<=11+ // Make sure textarea (and checkbox) defaultValue is properly cloned div.innerHTML = ""; support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; } )(); var rkeyEvent = /^key/, rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, rtypenamespace = /^([^.]*)(?:\.(.+)|)/; function returnTrue() { return true; } function returnFalse() { return false; } // Support: IE9 // See #13393 for more info function safeActiveElement() { try { return document.activeElement; } catch ( err ) { } } function on( elem, types, selector, data, fn, one ) { var origFn, type; // Types can be a map of types/handlers if ( typeof types === "object" ) { // ( types-Object, selector, data ) if ( typeof selector !== "string" ) { // ( types-Object, data ) data = data || selector; selector = undefined; } for ( type in types ) { on( elem, type, selector, data, types[ type ], one ); } return elem; } if ( data == null && fn == null ) { // ( types, fn ) fn = selector; data = selector = undefined; } else if ( fn == null ) { if ( typeof selector === "string" ) { // ( types, selector, fn ) fn = data; data = undefined; } else { // ( types, data, fn ) fn = data; data = selector; selector = undefined; } } if ( fn === false ) { fn = returnFalse; } else if ( !fn ) { return elem; } if ( one === 1 ) { origFn = fn; fn = function( event ) { // Can use an empty set, since event contains the info jQuery().off( event ); return origFn.apply( this, arguments ); }; // Use same guid so caller can remove using origFn fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); } return elem.each( function() { jQuery.event.add( this, types, fn, data, selector ); } ); } /* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. */ jQuery.event = { global: {}, add: function( elem, types, handler, data, selector ) { var handleObjIn, eventHandle, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, elemData = dataPriv.get( elem ); // Don't attach events to noData or text/comment nodes (but allow plain objects) if ( !elemData ) { return; } // Caller can pass in an object of custom data in lieu of the handler if ( handler.handler ) { handleObjIn = handler; handler = handleObjIn.handler; selector = handleObjIn.selector; } // Make sure that the handler has a unique ID, used to find/remove it later if ( !handler.guid ) { handler.guid = jQuery.guid++; } // Init the element's event structure and main handler, if this is the first if ( !( events = elemData.events ) ) { events = elemData.events = {}; } if ( !( eventHandle = elemData.handle ) ) { eventHandle = elemData.handle = function( e ) { // Discard the second event of a jQuery.event.trigger() and // when an event is called after a page has unloaded return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? jQuery.event.dispatch.apply( elem, arguments ) : undefined; }; } // Handle multiple events separated by a space types = ( types || "" ).match( rnotwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[ t ] ) || []; type = origType = tmp[ 1 ]; namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); // There *must* be a type, no attaching namespace-only handlers if ( !type ) { continue; } // If event changes its type, use the special event handlers for the changed type special = jQuery.event.special[ type ] || {}; // If selector defined, determine special event api type, otherwise given type type = ( selector ? special.delegateType : special.bindType ) || type; // Update special based on newly reset type special = jQuery.event.special[ type ] || {}; // handleObj is passed to all event handlers handleObj = jQuery.extend( { type: type, origType: origType, data: data, handler: handler, guid: handler.guid, selector: selector, needsContext: selector && jQuery.expr.match.needsContext.test( selector ), namespace: namespaces.join( "." ) }, handleObjIn ); // Init the event handler queue if we're the first if ( !( handlers = events[ type ] ) ) { handlers = events[ type ] = []; handlers.delegateCount = 0; // Only use addEventListener if the special events handler returns false if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { if ( elem.addEventListener ) { elem.addEventListener( type, eventHandle ); } } } if ( special.add ) { special.add.call( elem, handleObj ); if ( !handleObj.handler.guid ) { handleObj.handler.guid = handler.guid; } } // Add to the element's handler list, delegates in front if ( selector ) { handlers.splice( handlers.delegateCount++, 0, handleObj ); } else { handlers.push( handleObj ); } // Keep track of which events have ever been used, for event optimization jQuery.event.global[ type ] = true; } }, // Detach an event or set of events from an element remove: function( elem, types, handler, selector, mappedTypes ) { var j, origCount, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); if ( !elemData || !( events = elemData.events ) ) { return; } // Once for each type.namespace in types; type may be omitted types = ( types || "" ).match( rnotwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[ t ] ) || []; type = origType = tmp[ 1 ]; namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); // Unbind all events (on this namespace, if provided) for the element if ( !type ) { for ( type in events ) { jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); } continue; } special = jQuery.event.special[ type ] || {}; type = ( selector ? special.delegateType : special.bindType ) || type; handlers = events[ type ] || []; tmp = tmp[ 2 ] && new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); // Remove matching events origCount = j = handlers.length; while ( j-- ) { handleObj = handlers[ j ]; if ( ( mappedTypes || origType === handleObj.origType ) && ( !handler || handler.guid === handleObj.guid ) && ( !tmp || tmp.test( handleObj.namespace ) ) && ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { handlers.splice( j, 1 ); if ( handleObj.selector ) { handlers.delegateCount--; } if ( special.remove ) { special.remove.call( elem, handleObj ); } } } // Remove generic event handler if we removed something and no more handlers exist // (avoids potential for endless recursion during removal of special event handlers) if ( origCount && !handlers.length ) { if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { jQuery.removeEvent( elem, type, elemData.handle ); } delete events[ type ]; } } // Remove data and the expando if it's no longer used if ( jQuery.isEmptyObject( events ) ) { dataPriv.remove( elem, "handle events" ); } }, dispatch: function( event ) { // Make a writable jQuery.Event from the native event object event = jQuery.event.fix( event ); var i, j, ret, matched, handleObj, handlerQueue = [], args = slice.call( arguments ), handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], special = jQuery.event.special[ event.type ] || {}; // Use the fix-ed jQuery.Event rather than the (read-only) native event args[ 0 ] = event; event.delegateTarget = this; // Call the preDispatch hook for the mapped type, and let it bail if desired if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { return; } // Determine handlers handlerQueue = jQuery.event.handlers.call( this, event, handlers ); // Run delegates first; they may want to stop propagation beneath us i = 0; while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { event.currentTarget = matched.elem; j = 0; while ( ( handleObj = matched.handlers[ j++ ] ) && !event.isImmediatePropagationStopped() ) { // Triggered event must either 1) have no namespace, or 2) have namespace(s) // a subset or equal to those in the bound event (both can have no namespace). if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) { event.handleObj = handleObj; event.data = handleObj.data; ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || handleObj.handler ).apply( matched.elem, args ); if ( ret !== undefined ) { if ( ( event.result = ret ) === false ) { event.preventDefault(); event.stopPropagation(); } } } } } // Call the postDispatch hook for the mapped type if ( special.postDispatch ) { special.postDispatch.call( this, event ); } return event.result; }, handlers: function( event, handlers ) { var i, matches, sel, handleObj, handlerQueue = [], delegateCount = handlers.delegateCount, cur = event.target; // Support (at least): Chrome, IE9 // Find delegate handlers // Black-hole SVG instance trees (#13180) // // Support: Firefox<=42+ // Avoid non-left-click in FF but don't block IE radio events (#3861, gh-2343) if ( delegateCount && cur.nodeType && ( event.type !== "click" || isNaN( event.button ) || event.button < 1 ) ) { for ( ; cur !== this; cur = cur.parentNode || this ) { // Don't check non-elements (#13208) // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) if ( cur.nodeType === 1 && ( cur.disabled !== true || event.type !== "click" ) ) { matches = []; for ( i = 0; i < delegateCount; i++ ) { handleObj = handlers[ i ]; // Don't conflict with Object.prototype properties (#13203) sel = handleObj.selector + " "; if ( matches[ sel ] === undefined ) { matches[ sel ] = handleObj.needsContext ? jQuery( sel, this ).index( cur ) > -1 : jQuery.find( sel, this, null, [ cur ] ).length; } if ( matches[ sel ] ) { matches.push( handleObj ); } } if ( matches.length ) { handlerQueue.push( { elem: cur, handlers: matches } ); } } } } // Add the remaining (directly-bound) handlers if ( delegateCount < handlers.length ) { handlerQueue.push( { elem: this, handlers: handlers.slice( delegateCount ) } ); } return handlerQueue; }, // Includes some event props shared by KeyEvent and MouseEvent props: ( "altKey bubbles cancelable ctrlKey currentTarget detail eventPhase " + "metaKey relatedTarget shiftKey target timeStamp view which" ).split( " " ), fixHooks: {}, keyHooks: { props: "char charCode key keyCode".split( " " ), filter: function( event, original ) { // Add which for key events if ( event.which == null ) { event.which = original.charCode != null ? original.charCode : original.keyCode; } return event; } }, mouseHooks: { props: ( "button buttons clientX clientY offsetX offsetY pageX pageY " + "screenX screenY toElement" ).split( " " ), filter: function( event, original ) { var eventDoc, doc, body, button = original.button; // Calculate pageX/Y if missing and clientX/Y available if ( event.pageX == null && original.clientX != null ) { eventDoc = event.target.ownerDocument || document; doc = eventDoc.documentElement; body = eventDoc.body; event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); } // Add which for click: 1 === left; 2 === middle; 3 === right // Note: button is not normalized, so don't use it if ( !event.which && button !== undefined ) { event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); } return event; } }, fix: function( event ) { if ( event[ jQuery.expando ] ) { return event; } // Create a writable copy of the event object and normalize some properties var i, prop, copy, type = event.type, originalEvent = event, fixHook = this.fixHooks[ type ]; if ( !fixHook ) { this.fixHooks[ type ] = fixHook = rmouseEvent.test( type ) ? this.mouseHooks : rkeyEvent.test( type ) ? this.keyHooks : {}; } copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; event = new jQuery.Event( originalEvent ); i = copy.length; while ( i-- ) { prop = copy[ i ]; event[ prop ] = originalEvent[ prop ]; } // Support: Cordova 2.5 (WebKit) (#13255) // All events should have a target; Cordova deviceready doesn't if ( !event.target ) { event.target = document; } // Support: Safari 6.0+, Chrome<28 // Target should not be a text node (#504, #13143) if ( event.target.nodeType === 3 ) { event.target = event.target.parentNode; } return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; }, special: { load: { // Prevent triggered image.load events from bubbling to window.load noBubble: true }, focus: { // Fire native event if possible so blur/focus sequence is correct trigger: function() { if ( this !== safeActiveElement() && this.focus ) { this.focus(); return false; } }, delegateType: "focusin" }, blur: { trigger: function() { if ( this === safeActiveElement() && this.blur ) { this.blur(); return false; } }, delegateType: "focusout" }, click: { // For checkbox, fire native event so checked state will be right trigger: function() { if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) { this.click(); return false; } }, // For cross-browser consistency, don't fire native .click() on links _default: function( event ) { return jQuery.nodeName( event.target, "a" ); } }, beforeunload: { postDispatch: function( event ) { // Support: Firefox 20+ // Firefox doesn't alert if the returnValue field is not set. if ( event.result !== undefined && event.originalEvent ) { event.originalEvent.returnValue = event.result; } } } } }; jQuery.removeEvent = function( elem, type, handle ) { // This "if" is needed for plain objects if ( elem.removeEventListener ) { elem.removeEventListener( type, handle ); } }; jQuery.Event = function( src, props ) { // Allow instantiation without the 'new' keyword if ( !( this instanceof jQuery.Event ) ) { return new jQuery.Event( src, props ); } // Event object if ( src && src.type ) { this.originalEvent = src; this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented || src.defaultPrevented === undefined && // Support: Android<4.0 src.returnValue === false ? returnTrue : returnFalse; // Event type } else { this.type = src; } // Put explicitly provided properties onto the event object if ( props ) { jQuery.extend( this, props ); } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || jQuery.now(); // Mark it as fixed this[ jQuery.expando ] = true; }; // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html jQuery.Event.prototype = { constructor: jQuery.Event, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse, preventDefault: function() { var e = this.originalEvent; this.isDefaultPrevented = returnTrue; if ( e ) { e.preventDefault(); } }, stopPropagation: function() { var e = this.originalEvent; this.isPropagationStopped = returnTrue; if ( e ) { e.stopPropagation(); } }, stopImmediatePropagation: function() { var e = this.originalEvent; this.isImmediatePropagationStopped = returnTrue; if ( e ) { e.stopImmediatePropagation(); } this.stopPropagation(); } }; // Create mouseenter/leave events using mouseover/out and event-time checks // so that event delegation works in jQuery. // Do the same for pointerenter/pointerleave and pointerover/pointerout // // Support: Safari 7 only // Safari sends mouseenter too often; see: // https://code.google.com/p/chromium/issues/detail?id=470258 // for the description of the bug (it existed in older Chrome versions as well). jQuery.each( { mouseenter: "mouseover", mouseleave: "mouseout", pointerenter: "pointerover", pointerleave: "pointerout" }, function( orig, fix ) { jQuery.event.special[ orig ] = { delegateType: fix, bindType: fix, handle: function( event ) { var ret, target = this, related = event.relatedTarget, handleObj = event.handleObj; // For mouseenter/leave call the handler if related is outside the target. // NB: No relatedTarget if the mouse left/entered the browser window if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { event.type = handleObj.origType; ret = handleObj.handler.apply( this, arguments ); event.type = fix; } return ret; } }; } ); jQuery.fn.extend( { on: function( types, selector, data, fn ) { return on( this, types, selector, data, fn ); }, one: function( types, selector, data, fn ) { return on( this, types, selector, data, fn, 1 ); }, off: function( types, selector, fn ) { var handleObj, type; if ( types && types.preventDefault && types.handleObj ) { // ( event ) dispatched jQuery.Event handleObj = types.handleObj; jQuery( types.delegateTarget ).off( handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler ); return this; } if ( typeof types === "object" ) { // ( types-object [, selector] ) for ( type in types ) { this.off( type, selector, types[ type ] ); } return this; } if ( selector === false || typeof selector === "function" ) { // ( types [, fn] ) fn = selector; selector = undefined; } if ( fn === false ) { fn = returnFalse; } return this.each( function() { jQuery.event.remove( this, types, fn, selector ); } ); } } ); var rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi, // Support: IE 10-11, Edge 10240+ // In IE/Edge using regex groups here causes severe slowdowns. // See https://connect.microsoft.com/IE/feedback/details/1736512/ rnoInnerhtml = /\s*$/g; // Manipulating tables requires a tbody function manipulationTarget( elem, content ) { return jQuery.nodeName( elem, "table" ) && jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? elem.getElementsByTagName( "tbody" )[ 0 ] || elem.appendChild( elem.ownerDocument.createElement( "tbody" ) ) : elem; } // Replace/restore the type attribute of script elements for safe DOM manipulation function disableScript( elem ) { elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; return elem; } function restoreScript( elem ) { var match = rscriptTypeMasked.exec( elem.type ); if ( match ) { elem.type = match[ 1 ]; } else { elem.removeAttribute( "type" ); } return elem; } function cloneCopyEvent( src, dest ) { var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; if ( dest.nodeType !== 1 ) { return; } // 1. Copy private data: events, handlers, etc. if ( dataPriv.hasData( src ) ) { pdataOld = dataPriv.access( src ); pdataCur = dataPriv.set( dest, pdataOld ); events = pdataOld.events; if ( events ) { delete pdataCur.handle; pdataCur.events = {}; for ( type in events ) { for ( i = 0, l = events[ type ].length; i < l; i++ ) { jQuery.event.add( dest, type, events[ type ][ i ] ); } } } } // 2. Copy user data if ( dataUser.hasData( src ) ) { udataOld = dataUser.access( src ); udataCur = jQuery.extend( {}, udataOld ); dataUser.set( dest, udataCur ); } } // Fix IE bugs, see support tests function fixInput( src, dest ) { var nodeName = dest.nodeName.toLowerCase(); // Fails to persist the checked state of a cloned checkbox or radio button. if ( nodeName === "input" && rcheckableType.test( src.type ) ) { dest.checked = src.checked; // Fails to return the selected option to the default selected state when cloning options } else if ( nodeName === "input" || nodeName === "textarea" ) { dest.defaultValue = src.defaultValue; } } function domManip( collection, args, callback, ignored ) { // Flatten any nested arrays args = concat.apply( [], args ); var fragment, first, scripts, hasScripts, node, doc, i = 0, l = collection.length, iNoClone = l - 1, value = args[ 0 ], isFunction = jQuery.isFunction( value ); // We can't cloneNode fragments that contain checked, in WebKit if ( isFunction || ( l > 1 && typeof value === "string" && !support.checkClone && rchecked.test( value ) ) ) { return collection.each( function( index ) { var self = collection.eq( index ); if ( isFunction ) { args[ 0 ] = value.call( this, index, self.html() ); } domManip( self, args, callback, ignored ); } ); } if ( l ) { fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); first = fragment.firstChild; if ( fragment.childNodes.length === 1 ) { fragment = first; } // Require either new content or an interest in ignored elements to invoke the callback if ( first || ignored ) { scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); hasScripts = scripts.length; // Use the original fragment for the last item // instead of the first because it can end up // being emptied incorrectly in certain situations (#8070). for ( ; i < l; i++ ) { node = fragment; if ( i !== iNoClone ) { node = jQuery.clone( node, true, true ); // Keep references to cloned scripts for later restoration if ( hasScripts ) { // Support: Android<4.1, PhantomJS<2 // push.apply(_, arraylike) throws on ancient WebKit jQuery.merge( scripts, getAll( node, "script" ) ); } } callback.call( collection[ i ], node, i ); } if ( hasScripts ) { doc = scripts[ scripts.length - 1 ].ownerDocument; // Reenable scripts jQuery.map( scripts, restoreScript ); // Evaluate executable scripts on first document insertion for ( i = 0; i < hasScripts; i++ ) { node = scripts[ i ]; if ( rscriptType.test( node.type || "" ) && !dataPriv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) { if ( node.src ) { // Optional AJAX dependency, but won't run scripts if not present if ( jQuery._evalUrl ) { jQuery._evalUrl( node.src ); } } else { jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) ); } } } } } } return collection; } function remove( elem, selector, keepData ) { var node, nodes = selector ? jQuery.filter( selector, elem ) : elem, i = 0; for ( ; ( node = nodes[ i ] ) != null; i++ ) { if ( !keepData && node.nodeType === 1 ) { jQuery.cleanData( getAll( node ) ); } if ( node.parentNode ) { if ( keepData && jQuery.contains( node.ownerDocument, node ) ) { setGlobalEval( getAll( node, "script" ) ); } node.parentNode.removeChild( node ); } } return elem; } jQuery.extend( { htmlPrefilter: function( html ) { return html.replace( rxhtmlTag, "<$1>" ); }, clone: function( elem, dataAndEvents, deepDataAndEvents ) { var i, l, srcElements, destElements, clone = elem.cloneNode( true ), inPage = jQuery.contains( elem.ownerDocument, elem ); // Fix IE cloning issues if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && !jQuery.isXMLDoc( elem ) ) { // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 destElements = getAll( clone ); srcElements = getAll( elem ); for ( i = 0, l = srcElements.length; i < l; i++ ) { fixInput( srcElements[ i ], destElements[ i ] ); } } // Copy the events from the original to the clone if ( dataAndEvents ) { if ( deepDataAndEvents ) { srcElements = srcElements || getAll( elem ); destElements = destElements || getAll( clone ); for ( i = 0, l = srcElements.length; i < l; i++ ) { cloneCopyEvent( srcElements[ i ], destElements[ i ] ); } } else { cloneCopyEvent( elem, clone ); } } // Preserve script evaluation history destElements = getAll( clone, "script" ); if ( destElements.length > 0 ) { setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); } // Return the cloned set return clone; }, cleanData: function( elems ) { var data, elem, type, special = jQuery.event.special, i = 0; for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { if ( acceptData( elem ) ) { if ( ( data = elem[ dataPriv.expando ] ) ) { if ( data.events ) { for ( type in data.events ) { if ( special[ type ] ) { jQuery.event.remove( elem, type ); // This is a shortcut to avoid jQuery.event.remove's overhead } else { jQuery.removeEvent( elem, type, data.handle ); } } } // Support: Chrome <= 35-45+ // Assign undefined instead of using delete, see Data#remove elem[ dataPriv.expando ] = undefined; } if ( elem[ dataUser.expando ] ) { // Support: Chrome <= 35-45+ // Assign undefined instead of using delete, see Data#remove elem[ dataUser.expando ] = undefined; } } } } } ); jQuery.fn.extend( { // Keep domManip exposed until 3.0 (gh-2225) domManip: domManip, detach: function( selector ) { return remove( this, selector, true ); }, remove: function( selector ) { return remove( this, selector ); }, text: function( value ) { return access( this, function( value ) { return value === undefined ? jQuery.text( this ) : this.empty().each( function() { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { this.textContent = value; } } ); }, null, value, arguments.length ); }, append: function() { return domManip( this, arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.appendChild( elem ); } } ); }, prepend: function() { return domManip( this, arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.insertBefore( elem, target.firstChild ); } } ); }, before: function() { return domManip( this, arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this ); } } ); }, after: function() { return domManip( this, arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this.nextSibling ); } } ); }, empty: function() { var elem, i = 0; for ( ; ( elem = this[ i ] ) != null; i++ ) { if ( elem.nodeType === 1 ) { // Prevent memory leaks jQuery.cleanData( getAll( elem, false ) ); // Remove any remaining nodes elem.textContent = ""; } } return this; }, clone: function( dataAndEvents, deepDataAndEvents ) { dataAndEvents = dataAndEvents == null ? false : dataAndEvents; deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; return this.map( function() { return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); } ); }, html: function( value ) { return access( this, function( value ) { var elem = this[ 0 ] || {}, i = 0, l = this.length; if ( value === undefined && elem.nodeType === 1 ) { return elem.innerHTML; } // See if we can take a shortcut and just use innerHTML if ( typeof value === "string" && !rnoInnerhtml.test( value ) && !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { value = jQuery.htmlPrefilter( value ); try { for ( ; i < l; i++ ) { elem = this[ i ] || {}; // Remove element nodes and prevent memory leaks if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); elem.innerHTML = value; } } elem = 0; // If using innerHTML throws an exception, use the fallback method } catch ( e ) {} } if ( elem ) { this.empty().append( value ); } }, null, value, arguments.length ); }, replaceWith: function() { var ignored = []; // Make the changes, replacing each non-ignored context element with the new content return domManip( this, arguments, function( elem ) { var parent = this.parentNode; if ( jQuery.inArray( this, ignored ) < 0 ) { jQuery.cleanData( getAll( this ) ); if ( parent ) { parent.replaceChild( elem, this ); } } // Force callback invocation }, ignored ); } } ); jQuery.each( { appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function( name, original ) { jQuery.fn[ name ] = function( selector ) { var elems, ret = [], insert = jQuery( selector ), last = insert.length - 1, i = 0; for ( ; i <= last; i++ ) { elems = i === last ? this : this.clone( true ); jQuery( insert[ i ] )[ original ]( elems ); // Support: QtWebKit // .get() because push.apply(_, arraylike) throws push.apply( ret, elems.get() ); } return this.pushStack( ret ); }; } ); var iframe, elemdisplay = { // Support: Firefox // We have to pre-define these values for FF (#10227) HTML: "block", BODY: "block" }; /** * Retrieve the actual display of a element * @param {String} name nodeName of the element * @param {Object} doc Document object */ // Called only from within defaultDisplay function actualDisplay( name, doc ) { var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), display = jQuery.css( elem[ 0 ], "display" ); // We don't have any data stored on the element, // so use "detach" method as fast way to get rid of the element elem.detach(); return display; } /** * Try to determine the default display value of an element * @param {String} nodeName */ function defaultDisplay( nodeName ) { var doc = document, display = elemdisplay[ nodeName ]; if ( !display ) { display = actualDisplay( nodeName, doc ); // If the simple way fails, read from inside an iframe if ( display === "none" || !display ) { // Use the already-created iframe if possible iframe = ( iframe || jQuery( "