diff --git a/.github/workflows/pull_code.yml b/.github/workflows/pull_code.yml new file mode 100644 index 0000000..8993f8c --- /dev/null +++ b/.github/workflows/pull_code.yml @@ -0,0 +1,28 @@ +name: Pull Code + +on: + push: + branches: + - dev_odex_base + + workflow_dispatch: + inputs: + environment: + description: 'Select Server' + required: true + type: choice + options: + - dev + default: dev + +jobs: + + deploy_dev_server: + name: Deploy to Dev Servers + runs-on: odex30-runner + if: (github.ref == 'refs/heads/dev_odex_base' || (github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'dev')) + steps: + - name: Checkout And Restart Project + run: | + sudo chmod +x /home/${{ secrets.CLIENT_USER }}/scripts/pull/pull_code.sh + sudo /home/${{ secrets.CLIENT_USER }}/scripts/pull/pull_code.sh diff --git a/.github/workflows/upgrade_module.yml b/.github/workflows/upgrade_module.yml new file mode 100644 index 0000000..10e92bc --- /dev/null +++ b/.github/workflows/upgrade_module.yml @@ -0,0 +1,34 @@ +name: Upgrade Module + +on: + workflow_dispatch: + inputs: + database_name: + description: 'Database Name' + required: true + type: string + module_name: + description: 'Module Name' + required: true + type: string + environment: + description: 'Select Server' + required: true + type: choice + options: + - dev + default: dev + +jobs: + upgrade_master: + name: Upgrade Dev server + runs-on: odex30-runner + if: github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'dev' + steps: + - name: Upgrade Module + env: + DATABASE_NAME: ${{ github.event.inputs.database_name }} + MODULE_NAME: ${{ github.event.inputs.module_name }} + run: | + chmod +x /home/${{ secrets.CLIENT_USER }}/scripts/upgrade/upgrade-module.sh + /home/${{ secrets.CLIENT_USER }}/scripts/upgrade/upgrade-module.sh "$DATABASE_NAME" "$MODULE_NAME" diff --git a/odex30_base/qr_generator/__init__.py b/odex30_base/qr_generator/__init__.py new file mode 100644 index 0000000..cde864b --- /dev/null +++ b/odex30_base/qr_generator/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import models diff --git a/odex30_base/qr_generator/__manifest__.py b/odex30_base/qr_generator/__manifest__.py new file mode 100644 index 0000000..d0c0a96 --- /dev/null +++ b/odex30_base/qr_generator/__manifest__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +{ + 'name': "QR Code Generator", + 'summary': """Integrated QR code generator within the odoo framework.""", + 'description': """Helps to generate QR codes for texts or large urls.""", + 'version': '18.0.1.0.0', + 'category': 'Tools', + 'author': "Kripal K", + 'website': "https://www.linkedin.com/in/kripal754/", + 'license': 'LGPL-3', + 'depends': ['base', 'web'], + 'data': [ + 'security/ir.model.access.csv', + ], + 'assets': { + 'web.assets_backend': [ + 'qr_generator/static/src/components/qr_generator_systray_item.js', + 'qr_generator/static/src/components/qr_generator_systray_item.xml', + 'qr_generator/static/src/scss/qr_generator.scss', + ], + }, + 'images': ['static/description/banner.png'], + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/odex30_base/qr_generator/models/__init__.py b/odex30_base/qr_generator/models/__init__.py new file mode 100644 index 0000000..cde864b --- /dev/null +++ b/odex30_base/qr_generator/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import models diff --git a/odex30_base/qr_generator/models/models.py b/odex30_base/qr_generator/models/models.py new file mode 100644 index 0000000..7ea7bd6 --- /dev/null +++ b/odex30_base/qr_generator/models/models.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- + +from odoo import models, fields, api, _ +import qrcode +import base64 +import io + + +class QRGenerator(models.Model): + _name = 'qr.generator' + + @api.model + def get_qr_code(self, data): + if data != "": + img = qrcode.make(data) + result = io.BytesIO() + img.save(result, format='PNG') + result.seek(0) + img_bytes = result.read() + base64_encoded_result_bytes = base64.b64encode(img_bytes) + base64_encoded_result_str = base64_encoded_result_bytes.decode('ascii') + return base64_encoded_result_str diff --git a/odex30_base/qr_generator/security/ir.model.access.csv b/odex30_base/qr_generator/security/ir.model.access.csv new file mode 100644 index 0000000..6dd6443 --- /dev/null +++ b/odex30_base/qr_generator/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_qr_generator,access_qr_generator,model_qr_generator,,1,1,1,1 diff --git a/odex30_base/qr_generator/static/description/banner.png b/odex30_base/qr_generator/static/description/banner.png new file mode 100644 index 0000000..728fa73 Binary files /dev/null and b/odex30_base/qr_generator/static/description/banner.png differ diff --git a/odex30_base/qr_generator/static/description/icon.png b/odex30_base/qr_generator/static/description/icon.png new file mode 100644 index 0000000..690d8f8 Binary files /dev/null and b/odex30_base/qr_generator/static/description/icon.png differ diff --git a/odex30_base/qr_generator/static/description/index.html b/odex30_base/qr_generator/static/description/index.html new file mode 100644 index 0000000..18364e5 --- /dev/null +++ b/odex30_base/qr_generator/static/description/index.html @@ -0,0 +1,41 @@ +
+
+
+
+

Odoo QR Code Generator

+

Integrated QR code generator within the odoo framework.

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

Overview

+

Helps to generate QR codes for texts or large urls.

+
+
+ +
+
+
+
+ +
+ +
+
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/odex30_base/qr_generator/static/description/qr_generator.gif b/odex30_base/qr_generator/static/description/qr_generator.gif new file mode 100644 index 0000000..61f649e Binary files /dev/null and b/odex30_base/qr_generator/static/description/qr_generator.gif differ diff --git a/odex30_base/qr_generator/static/description/screenshot.png b/odex30_base/qr_generator/static/description/screenshot.png new file mode 100644 index 0000000..424a2f3 Binary files /dev/null and b/odex30_base/qr_generator/static/description/screenshot.png differ diff --git a/odex30_base/qr_generator/static/src/components/qr_generator_systray_item.js b/odex30_base/qr_generator/static/src/components/qr_generator_systray_item.js new file mode 100644 index 0000000..d7a975f --- /dev/null +++ b/odex30_base/qr_generator/static/src/components/qr_generator_systray_item.js @@ -0,0 +1,72 @@ +/** @odoo-module **/ + +import { Component, useState } from "@odoo/owl"; +import { Dropdown } from "@web/core/dropdown/dropdown"; +import { DropdownItem } from "@web/core/dropdown/dropdown_item"; +import { registry } from "@web/core/registry"; +import { useService } from "@web/core/utils/hooks"; +import { _t } from "@web/core/l10n/translation"; + +export class QRGeneratorSystrayItem extends Component { + static template = "qr_generator.QRGeneratorSystrayItem"; + static components = { Dropdown }; + static props = {}; + + setup() { + this.orm = useService("orm"); + this.state = useState({ + inputValue: "", + qrCodeData: null, + showPreview: false, + }); + } + + onInputChange(ev) { + this.state.inputValue = ev.target.value; + } + + async generateQR() { + if (!this.state.inputValue) { + this.state.showPreview = false; + this.state.qrCodeData = null; + return; + } + + try { + const result = await this.orm.call( + "qr.generator", + "get_qr_code", + [this.state.inputValue] + ); + + if (result) { + this.state.qrCodeData = `data:image/png;base64,${result}`; + this.state.showPreview = true; + } + } catch (error) { + console.error("Error generating QR code:", error); + this.state.showPreview = false; + } + } + + clearInput() { + this.state.inputValue = ""; + this.state.qrCodeData = null; + this.state.showPreview = false; + } + + downloadQR() { + if (this.state.qrCodeData) { + const link = document.createElement('a'); + link.href = this.state.qrCodeData; + link.download = 'qrcode.png'; + link.click(); + } + } +} + +export const systrayItem = { + Component: QRGeneratorSystrayItem, +}; + +registry.category("systray").add("qr_generator.QRGeneratorSystrayItem", systrayItem, { sequence: 50 }); \ No newline at end of file diff --git a/odex30_base/qr_generator/static/src/components/qr_generator_systray_item.xml b/odex30_base/qr_generator/static/src/components/qr_generator_systray_item.xml new file mode 100644 index 0000000..c55fd77 --- /dev/null +++ b/odex30_base/qr_generator/static/src/components/qr_generator_systray_item.xml @@ -0,0 +1,43 @@ + + + +
+ + + +
+
QR Code Generator
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
+
+
+
+
\ No newline at end of file diff --git a/odex30_base/qr_generator/static/src/scss/qr_generator.scss b/odex30_base/qr_generator/static/src/scss/qr_generator.scss new file mode 100644 index 0000000..86fe16a --- /dev/null +++ b/odex30_base/qr_generator/static/src/scss/qr_generator.scss @@ -0,0 +1,56 @@ +* { + box-sizing: border-box; +} + +select, textarea { + width: 100%; + padding: 12px; + border: 1px solid #ccc; + border-radius: 4px; + resize: vertical; +} + +label { + padding: 12px 12px 12px 0; + display: inline-block; +} + +.container { + border-radius: 1px; + padding: 5px; + height:auto; + width:350px; + background-color:#F9F9F9; + margin-top: 3px; + margin-left: 3px; + margin-right: 3px; + margin-bottom: 3px; + overflow: auto; +} + +.col-25 { + float: left; + width: 25%; + margin-top: 6px; +} + +.col-75 { + float: left; + width: 75%; + margin-top: 6px; +} + +input[type=button] { + background-color: #00A09D; + color: white; + padding: 6px 12px; + border: none; + border-radius: 4px; + outline:none; + cursor: pointer; + float: center; +} + +input[type=button]:hover { + background-color: #008784; +} diff --git a/odex30_base/qr_generator/views/templates.xml b/odex30_base/qr_generator/views/templates.xml new file mode 100644 index 0000000..45b4eb0 --- /dev/null +++ b/odex30_base/qr_generator/views/templates.xml @@ -0,0 +1,4 @@ + + + + diff --git a/odex30_base/quick_language_selection/README.md b/odex30_base/quick_language_selection/README.md new file mode 100644 index 0000000..2c541e6 --- /dev/null +++ b/odex30_base/quick_language_selection/README.md @@ -0,0 +1,16 @@ +# Quick Language Selection + +Quick Language Selection is a tool that adds a Quick Language Switcher to the top right-hand User Menu. + + +# Features + + - Adds Quick Language Switcher to the top right-hand User Menu. + - Adds Country flags to the top right-hand User Menu. + - Provides 78 country flags. + + +> After installation of this module: + If you want to Setup more flags, just rename the flag picture to local code of the country. + You can find the pictures in "\quick_language_selection\static\src\img\flags + diff --git a/odex30_base/quick_language_selection/__init__.py b/odex30_base/quick_language_selection/__init__.py new file mode 100644 index 0000000..40a96af --- /dev/null +++ b/odex30_base/quick_language_selection/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/odex30_base/quick_language_selection/__manifest__.py b/odex30_base/quick_language_selection/__manifest__.py new file mode 100644 index 0000000..cb26b54 --- /dev/null +++ b/odex30_base/quick_language_selection/__manifest__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Part of cube48.de. See LICENSE file for full copyright and licensing details. +# +############################################################################## +{ + 'name': "Quick Language Selection", + + 'summary': """ + Change the language from user preference menu with only one click.""", + + 'description': """ + Change the language from user preference menu with only one click. + + 1. Adds Quick Language Switcher to the top right-hand User Menu. + 2. Adds Country flags to the top right-hand User Menu. + 3. Provides 78 country flags. + + """, + + 'author': "cube48 AG", + 'website': "https://www.cube48.de", + 'category': "Odex25-base", + 'version': '18.0.1.0.0', + 'depends': [ + 'base', + ], + 'data': [ + 'views/views.xml', + ], + 'assets': { + 'web.assets_backend': [ + 'quick_language_selection/static/src/css/app.css', + 'quick_language_selection/static/src/js/language_selector.js', + 'quick_language_selection/static/src/xml/language_selector.xml', + ], + }, + 'images': ["static/description/banner.png"], + 'license': "AGPL-3", + 'installable': True, + 'application': True, +} diff --git a/odex30_base/quick_language_selection/static/description/banner.png b/odex30_base/quick_language_selection/static/description/banner.png new file mode 100644 index 0000000..d1737d5 Binary files /dev/null and b/odex30_base/quick_language_selection/static/description/banner.png differ diff --git a/odex30_base/quick_language_selection/static/description/cube48.png b/odex30_base/quick_language_selection/static/description/cube48.png new file mode 100644 index 0000000..a313152 Binary files /dev/null and b/odex30_base/quick_language_selection/static/description/cube48.png differ diff --git a/odex30_base/quick_language_selection/static/description/icon.png b/odex30_base/quick_language_selection/static/description/icon.png new file mode 100644 index 0000000..1945653 Binary files /dev/null and b/odex30_base/quick_language_selection/static/description/icon.png differ diff --git a/odex30_base/quick_language_selection/static/description/index.html b/odex30_base/quick_language_selection/static/description/index.html new file mode 100644 index 0000000..3eb30ee --- /dev/null +++ b/odex30_base/quick_language_selection/static/description/index.html @@ -0,0 +1,23 @@ +
+
+
+

Quick Language Selection

+
+

If you have to change your language frequently, you will love it!

+

This app creates new entries for all active languages in the top right user menu. Select the required one with just one click. Handy for employees of multilingual companies, external users, developers, partners...

+

+

This module contains 78 nice flags for all Odoo standard languages. Feel free to ask if you miss your language. Not shown in mobile view.

+
+
+
+
+ +
+ + +

Please contact us for support requests, app customizations or entire app developments.

+
+ + diff --git a/odex30_base/quick_language_selection/static/description/page.gif b/odex30_base/quick_language_selection/static/description/page.gif new file mode 100644 index 0000000..350312b Binary files /dev/null and b/odex30_base/quick_language_selection/static/description/page.gif differ diff --git a/odex30_base/quick_language_selection/static/description/page1.png b/odex30_base/quick_language_selection/static/description/page1.png new file mode 100644 index 0000000..2de4d32 Binary files /dev/null and b/odex30_base/quick_language_selection/static/description/page1.png differ diff --git a/odex30_base/quick_language_selection/static/src/css/app.css b/odex30_base/quick_language_selection/static/src/css/app.css new file mode 100644 index 0000000..c199f5c --- /dev/null +++ b/odex30_base/quick_language_selection/static/src/css/app.css @@ -0,0 +1,7 @@ +.o_user_menu .dropdown-menu img { + height: 20px; + margin: 2px; +} +.o_burger_menu .o_burger_menu_content .o_burger_menu_user .o_user_menu_mobile a img{ + width: 30px!important; +} \ No newline at end of file diff --git a/odex30_base/quick_language_selection/static/src/img/flags/am_ET.png b/odex30_base/quick_language_selection/static/src/img/flags/am_ET.png new file mode 100644 index 0000000..5330161 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/am_ET.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/ar_001.png b/odex30_base/quick_language_selection/static/src/img/flags/ar_001.png new file mode 100644 index 0000000..0e8f840 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/ar_001.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/ar_SY.png b/odex30_base/quick_language_selection/static/src/img/flags/ar_SY.png new file mode 100644 index 0000000..b7f684e Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/ar_SY.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/bg_BG.png b/odex30_base/quick_language_selection/static/src/img/flags/bg_BG.png new file mode 100644 index 0000000..8716c7a Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/bg_BG.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/bs_BA.png b/odex30_base/quick_language_selection/static/src/img/flags/bs_BA.png new file mode 100644 index 0000000..d3595a5 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/bs_BA.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/ca_ES.png b/odex30_base/quick_language_selection/static/src/img/flags/ca_ES.png new file mode 100644 index 0000000..0c9580b Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/ca_ES.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/cs_CZ.png b/odex30_base/quick_language_selection/static/src/img/flags/cs_CZ.png new file mode 100644 index 0000000..6c5556a Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/cs_CZ.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/da_DK.png b/odex30_base/quick_language_selection/static/src/img/flags/da_DK.png new file mode 100644 index 0000000..c9e4450 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/da_DK.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/de_CH.png b/odex30_base/quick_language_selection/static/src/img/flags/de_CH.png new file mode 100644 index 0000000..e487a0e Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/de_CH.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/de_DE.png b/odex30_base/quick_language_selection/static/src/img/flags/de_DE.png new file mode 100644 index 0000000..5bcb0b2 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/de_DE.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/el_GR.png b/odex30_base/quick_language_selection/static/src/img/flags/el_GR.png new file mode 100644 index 0000000..7d5f701 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/el_GR.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/en_AU.png b/odex30_base/quick_language_selection/static/src/img/flags/en_AU.png new file mode 100644 index 0000000..8108cc3 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/en_AU.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/en_GB.png b/odex30_base/quick_language_selection/static/src/img/flags/en_GB.png new file mode 100644 index 0000000..18d5ff9 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/en_GB.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/en_US.png b/odex30_base/quick_language_selection/static/src/img/flags/en_US.png new file mode 100644 index 0000000..5c4f03e Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/en_US.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_AR.png b/odex30_base/quick_language_selection/static/src/img/flags/es_AR.png new file mode 100644 index 0000000..3adecba Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_AR.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_BO.png b/odex30_base/quick_language_selection/static/src/img/flags/es_BO.png new file mode 100644 index 0000000..e44677a Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_BO.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_CL.png b/odex30_base/quick_language_selection/static/src/img/flags/es_CL.png new file mode 100644 index 0000000..85d3a6c Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_CL.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_CO.png b/odex30_base/quick_language_selection/static/src/img/flags/es_CO.png new file mode 100644 index 0000000..736d761 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_CO.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_CR.png b/odex30_base/quick_language_selection/static/src/img/flags/es_CR.png new file mode 100644 index 0000000..361a65f Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_CR.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_DO.png b/odex30_base/quick_language_selection/static/src/img/flags/es_DO.png new file mode 100644 index 0000000..29970e7 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_DO.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_EC.png b/odex30_base/quick_language_selection/static/src/img/flags/es_EC.png new file mode 100644 index 0000000..0273da6 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_EC.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_ES.png b/odex30_base/quick_language_selection/static/src/img/flags/es_ES.png new file mode 100644 index 0000000..0c9580b Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_ES.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_GT.png b/odex30_base/quick_language_selection/static/src/img/flags/es_GT.png new file mode 100644 index 0000000..139e648 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_GT.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_MX.png b/odex30_base/quick_language_selection/static/src/img/flags/es_MX.png new file mode 100644 index 0000000..539739f Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_MX.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_PA.png b/odex30_base/quick_language_selection/static/src/img/flags/es_PA.png new file mode 100644 index 0000000..1fdbc11 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_PA.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_PE.png b/odex30_base/quick_language_selection/static/src/img/flags/es_PE.png new file mode 100644 index 0000000..a40226f Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_PE.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_PY.png b/odex30_base/quick_language_selection/static/src/img/flags/es_PY.png new file mode 100644 index 0000000..e3b76ce Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_PY.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_UY.png b/odex30_base/quick_language_selection/static/src/img/flags/es_UY.png new file mode 100644 index 0000000..fa06556 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_UY.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/es_VE.png b/odex30_base/quick_language_selection/static/src/img/flags/es_VE.png new file mode 100644 index 0000000..facca46 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/es_VE.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/et_EE.png b/odex30_base/quick_language_selection/static/src/img/flags/et_EE.png new file mode 100644 index 0000000..5ef87c0 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/et_EE.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/eu_ES.png b/odex30_base/quick_language_selection/static/src/img/flags/eu_ES.png new file mode 100644 index 0000000..0c9580b Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/eu_ES.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/fa_IR.png b/odex30_base/quick_language_selection/static/src/img/flags/fa_IR.png new file mode 100644 index 0000000..cc6acab Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/fa_IR.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/fi_FI.png b/odex30_base/quick_language_selection/static/src/img/flags/fi_FI.png new file mode 100644 index 0000000..24f113e Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/fi_FI.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/fr_BE.png b/odex30_base/quick_language_selection/static/src/img/flags/fr_BE.png new file mode 100644 index 0000000..d19bd94 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/fr_BE.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/fr_CA.png b/odex30_base/quick_language_selection/static/src/img/flags/fr_CA.png new file mode 100644 index 0000000..30e76b0 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/fr_CA.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/fr_CH.png b/odex30_base/quick_language_selection/static/src/img/flags/fr_CH.png new file mode 100644 index 0000000..e487a0e Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/fr_CH.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/fr_FR.png b/odex30_base/quick_language_selection/static/src/img/flags/fr_FR.png new file mode 100644 index 0000000..ae26d3b Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/fr_FR.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/gl_ES.png b/odex30_base/quick_language_selection/static/src/img/flags/gl_ES.png new file mode 100644 index 0000000..0c9580b Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/gl_ES.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/gu_IN.png b/odex30_base/quick_language_selection/static/src/img/flags/gu_IN.png new file mode 100644 index 0000000..ceb9971 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/gu_IN.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/he_IL.png b/odex30_base/quick_language_selection/static/src/img/flags/he_IL.png new file mode 100644 index 0000000..b05ebc2 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/he_IL.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/hi_IN.png b/odex30_base/quick_language_selection/static/src/img/flags/hi_IN.png new file mode 100644 index 0000000..ceb9971 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/hi_IN.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/hr_HR.png b/odex30_base/quick_language_selection/static/src/img/flags/hr_HR.png new file mode 100644 index 0000000..1471bf1 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/hr_HR.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/hu_HU.png b/odex30_base/quick_language_selection/static/src/img/flags/hu_HU.png new file mode 100644 index 0000000..d903f3d Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/hu_HU.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/id_ID.png b/odex30_base/quick_language_selection/static/src/img/flags/id_ID.png new file mode 100644 index 0000000..aff745b Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/id_ID.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/it_IT.png b/odex30_base/quick_language_selection/static/src/img/flags/it_IT.png new file mode 100644 index 0000000..f6aa615 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/it_IT.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/ja_JP.png b/odex30_base/quick_language_selection/static/src/img/flags/ja_JP.png new file mode 100644 index 0000000..066ab4d Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/ja_JP.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/ka_GE.png b/odex30_base/quick_language_selection/static/src/img/flags/ka_GE.png new file mode 100644 index 0000000..09dae1d Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/ka_GE.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/kab_DZ.png b/odex30_base/quick_language_selection/static/src/img/flags/kab_DZ.png new file mode 100644 index 0000000..afaf814 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/kab_DZ.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/km_KH.png b/odex30_base/quick_language_selection/static/src/img/flags/km_KH.png new file mode 100644 index 0000000..4b31380 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/km_KH.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/ko_KP.png b/odex30_base/quick_language_selection/static/src/img/flags/ko_KP.png new file mode 100644 index 0000000..4df5f0a Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/ko_KP.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/ko_KR.png b/odex30_base/quick_language_selection/static/src/img/flags/ko_KR.png new file mode 100644 index 0000000..b0b21df Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/ko_KR.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/lo_LA.png b/odex30_base/quick_language_selection/static/src/img/flags/lo_LA.png new file mode 100644 index 0000000..665aa7d Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/lo_LA.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/lt_LT.png b/odex30_base/quick_language_selection/static/src/img/flags/lt_LT.png new file mode 100644 index 0000000..709383f Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/lt_LT.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/lv_LV.png b/odex30_base/quick_language_selection/static/src/img/flags/lv_LV.png new file mode 100644 index 0000000..b466aa7 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/lv_LV.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/mk_MK.png b/odex30_base/quick_language_selection/static/src/img/flags/mk_MK.png new file mode 100644 index 0000000..2d9a8ae Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/mk_MK.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/mn_MN.png b/odex30_base/quick_language_selection/static/src/img/flags/mn_MN.png new file mode 100644 index 0000000..825a0c2 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/mn_MN.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/my_MM (1).png b/odex30_base/quick_language_selection/static/src/img/flags/my_MM (1).png new file mode 100644 index 0000000..c6b44dd Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/my_MM (1).png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/nb_NO.png b/odex30_base/quick_language_selection/static/src/img/flags/nb_NO.png new file mode 100644 index 0000000..f1e64f7 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/nb_NO.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/nl_BE.png b/odex30_base/quick_language_selection/static/src/img/flags/nl_BE.png new file mode 100644 index 0000000..d19bd94 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/nl_BE.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/nl_NL.png b/odex30_base/quick_language_selection/static/src/img/flags/nl_NL.png new file mode 100644 index 0000000..e566685 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/nl_NL.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/pl_PL.png b/odex30_base/quick_language_selection/static/src/img/flags/pl_PL.png new file mode 100644 index 0000000..9fb2f6a Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/pl_PL.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/pt_BR.png b/odex30_base/quick_language_selection/static/src/img/flags/pt_BR.png new file mode 100644 index 0000000..9b01d07 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/pt_BR.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/pt_PT.png b/odex30_base/quick_language_selection/static/src/img/flags/pt_PT.png new file mode 100644 index 0000000..c3de0b1 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/pt_PT.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/ro_RO.png b/odex30_base/quick_language_selection/static/src/img/flags/ro_RO.png new file mode 100644 index 0000000..4e7f9f1 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/ro_RO.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/ru_RU.png b/odex30_base/quick_language_selection/static/src/img/flags/ru_RU.png new file mode 100644 index 0000000..c251d62 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/ru_RU.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/sk_SK.png b/odex30_base/quick_language_selection/static/src/img/flags/sk_SK.png new file mode 100644 index 0000000..e7c3915 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/sk_SK.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/sl_SI.png b/odex30_base/quick_language_selection/static/src/img/flags/sl_SI.png new file mode 100644 index 0000000..8538589 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/sl_SI.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/sq_AL.png b/odex30_base/quick_language_selection/static/src/img/flags/sq_AL.png new file mode 100644 index 0000000..8aac6dc Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/sq_AL.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/sr@latin.png b/odex30_base/quick_language_selection/static/src/img/flags/sr@latin.png new file mode 100644 index 0000000..255e428 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/sr@latin.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/sr_RS.png b/odex30_base/quick_language_selection/static/src/img/flags/sr_RS.png new file mode 100644 index 0000000..255e428 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/sr_RS.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/sv_SE.png b/odex30_base/quick_language_selection/static/src/img/flags/sv_SE.png new file mode 100644 index 0000000..870be17 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/sv_SE.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/te_IN.png b/odex30_base/quick_language_selection/static/src/img/flags/te_IN.png new file mode 100644 index 0000000..ceb9971 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/te_IN.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/th_TH.png b/odex30_base/quick_language_selection/static/src/img/flags/th_TH.png new file mode 100644 index 0000000..445da6a Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/th_TH.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/tr_TR.png b/odex30_base/quick_language_selection/static/src/img/flags/tr_TR.png new file mode 100644 index 0000000..4e27f6a Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/tr_TR.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/uk_UA.png b/odex30_base/quick_language_selection/static/src/img/flags/uk_UA.png new file mode 100644 index 0000000..4eac918 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/uk_UA.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/vi_VN.png b/odex30_base/quick_language_selection/static/src/img/flags/vi_VN.png new file mode 100644 index 0000000..4e89f65 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/vi_VN.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/zh_CN.png b/odex30_base/quick_language_selection/static/src/img/flags/zh_CN.png new file mode 100644 index 0000000..d969efa Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/zh_CN.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/zh_HK.png b/odex30_base/quick_language_selection/static/src/img/flags/zh_HK.png new file mode 100644 index 0000000..8426e7c Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/zh_HK.png differ diff --git a/odex30_base/quick_language_selection/static/src/img/flags/zh_TW.png b/odex30_base/quick_language_selection/static/src/img/flags/zh_TW.png new file mode 100644 index 0000000..0fb9973 Binary files /dev/null and b/odex30_base/quick_language_selection/static/src/img/flags/zh_TW.png differ diff --git a/odex30_base/quick_language_selection/static/src/js/language_selector.js b/odex30_base/quick_language_selection/static/src/js/language_selector.js new file mode 100644 index 0000000..79acd87 --- /dev/null +++ b/odex30_base/quick_language_selection/static/src/js/language_selector.js @@ -0,0 +1,120 @@ +/** @odoo-module **/ + +import { markup } from "@odoo/owl"; +import { _t } from "@web/core/l10n/translation"; +import { user } from "@web/core/user"; +import { session } from "@web/session"; +import { browser } from "@web/core/browser/browser"; +import { registry } from "@web/core/registry"; +import { escape } from "@web/core/utils/strings"; + +function getFlagUrl(langCode) { + return `/quick_language_selection/static/src/img/flags/${langCode}.png`; +} + +let cachedLanguages = null; + +async function getActiveLanguages(env) { + if (cachedLanguages) { + return cachedLanguages; + } + + try { + cachedLanguages = await env.services.orm.searchRead( + "res.lang", + [["active", "=", true]], + ["name", "code"], + { order: "name" } + ); + return cachedLanguages; + } catch (error) { + console.error("Error loading languages:", error); + return []; + } +} + +async function switchUserLanguage(langCode, env) { + if (langCode === user.lang) { + return; + } + + try { + await env.services.orm.call("res.users", "write", [user.userId, { lang: langCode }]); + + window.location.reload(); + } catch (error) { + console.error("Error switching user language:", error); + try { + await env.services.rpc("/web/dataset/call_kw/res.users/write", { + model: "res.users", + method: "write", + args: [user.userId, { lang: langCode }], + kwargs: {} + }); + window.location.reload(); + } catch (fallbackError) { + console.error("Fallback also failed:", fallbackError); + const url = new URL(window.location.href); + url.searchParams.set('lang', langCode); + window.location.href = url.toString(); + } + } +} + +function languageSeparator(env) { + return { + type: "separator", + sequence: 35, + }; +} + +function englishLanguageItem(env) { + const currentLang = user.lang || 'en_US'; + const isActive = currentLang === 'en_US'; + + return { + type: "item", + id: "language_en_US", + description: markup(` +
+ English + English + ${isActive ? '' : ''} +
+ `), + callback: () => switchUserLanguage('en_US', env), + sequence: 36, + }; +} + +function arabicLanguageItem(env) { + const currentLang = user.lang || 'en_US'; + const isActive = currentLang === 'ar_SY'; + + return { + type: "item", + id: "language_ar_SY", + description: markup(` +
+ Arabic + العربية + ${isActive ? '' : ''} +
+ `), + callback: () => switchUserLanguage('ar_SY', env), + sequence: 37, + }; +} + +registry.category("user_menuitems") + .add("language_separator", languageSeparator) + .add("language_en_US", englishLanguageItem) + .add("language_ar_SY", arabicLanguageItem); \ No newline at end of file diff --git a/odex30_base/quick_language_selection/static/src/xml/language_selector.xml b/odex30_base/quick_language_selection/static/src/xml/language_selector.xml new file mode 100644 index 0000000..0261d40 --- /dev/null +++ b/odex30_base/quick_language_selection/static/src/xml/language_selector.xml @@ -0,0 +1,13 @@ + + + +
+ + + +
+
+
\ No newline at end of file diff --git a/odex30_base/quick_language_selection/views/views.xml b/odex30_base/quick_language_selection/views/views.xml new file mode 100644 index 0000000..421291a --- /dev/null +++ b/odex30_base/quick_language_selection/views/views.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/odex30_base/sw_multi_search/LICENSE b/odex30_base/sw_multi_search/LICENSE new file mode 100644 index 0000000..bc4c9f8 --- /dev/null +++ b/odex30_base/sw_multi_search/LICENSE @@ -0,0 +1,149 @@ +Licencing and Agreement Policies for Smart Way Business Solutions +--------------------------------------------- +--------------------------------------------- + +Smart Way Business Solutions, a Jordanian softwares company specialized in Odoo +solutions and pioneering technical advancements in the MENA region. + +Modules found on this platform are Smart Way’s soul ownership in accordance to the +below guidelines and specifications. + + +Odoo Proprietary Licensing: +--------------------------- +--------------------------- + +This software and associated files (the "Software") may only be used (executed, +modified, executed after modifications) if you have purchased a valid license +from the authors, typically via Odoo Apps, or if you have received a written +agreement from the authors of the Software (see the COPYRIGHT file). + + +You may develop Odoo modules that use the Software as a library (typically by +depending on it, importing it and using its resources), but without copying any +source code or material from the Software. You may distribute those modules under +the license of your choice, provided that this license is compatible with the terms +of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses +similar to this one). + +It is forbidden to publish, distribute, sub license, or sell copies of the Software +or modified copies of the Software. + +The above copyright notice and this permission notice must 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 NON INFRINGEMENT. + +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. + + +Copyright Policy: +----------------- +----------------- + +We, Smart Way Business Solutions, hold and reserve the right to use and incorporate +any feature in any plug-in, module, application or software and reserve the right to +new releases and version of any plug-in, module, application or software. + +Any alteration, improvement or customization of any plug-in, module, application or +software remain copyrighted by Smart Way Business Solutions. + + +Reasons for Holding Copyright: + +Common Applications: We are constantly looking to work on and improve our +applications and plug-in in order to be able to compete with our market. +So we hold copyright of our changes and customizations in order to be able +to later improve and further the development of all plug-ins, modules, +applications or software. + +Unique Customizations: Most customization requests and application improvement +projects are that of a similar nature to our previous, current or future +planned work, this means that the request would be developed by Smart Way +Business Solutions eventually if not something similar already.*In the scenarios +where this is not the case, copyright still remains with Smart Way Business Solutions. + + +* Of course customizations could be a more specifically targeted module that one already +developed by Smart Way Business Solutions. + + +The license you purchase is: +1- Common Applications: The license we provide for the plug-in, module or application is + for use on only one domain (one development instance and one production instance). +2- New Customizations or Developments In this case Smart Way Business Solutions reserves +the right to charge you based on the cost of the hours and cost of development. + + +Terms & Conditions: +------------------- +------------------- + +The following is a legally binding document (and all its parts are treated as one whole), +and any forsaking of the below clauses will be subject to prosecution to the full extent +of the law and is under the absolute jurisdiction of the Amman, Jordan courts. + +If there are any charges being charged to you, after purchasing this application are for +any amendments, changes, additions, upgrades or customizations of the released version +of the purchased and afore mentioned application that you have requested. + +Each customization requested will only be billed or charged once, each customization order +is a separate operation and will be billed individually as separate entities. + +Copyright of the application and all customizations made on the application is ownership +of Smart Way Business Solutions and therefore holds the right to incorporate all features +in any application or any version of the modules. + +You hereby agree and consent that all claims, or disputes in connection to this application +on any platform between You and Smart Way Business Solutions is under the absolute +jurisdiction of the Amman, Jordan courts. + +You also agree that Smart Way Business Solutions reserves the right to change or alter the +terms & conditions defined in this document at any point or time, and you will be informed of +any such changes if you have supplied Smart Way Business Solutions with your contact information. + +You accord that Smart Way Business Solutions, in its sole and absolute discretion, reserves the +right to: + +- Deny, cancel, remove, halt, transfer, correct or modify in any way and or take any other +corrective action it sees fit to maintain the integrity and stability of it’s services. + +- To adhere to any laws, government rules, or law enforcement requests and hereby avoid any +liability; civil or criminal. Any repercussions of the above mentioned legal requirements are +not subject to discussion and Smart Way Business Solution shall not be liable or responsible +of any loss or damage to data, or software that may result from it. + + +Limited Liability Policy to ensure the integrity of Smart Way Business Solutions rights, +You agree and adhere that Smart Way Business Solutions cannot guarantee or assure and +therefore is not liable for: + +- Failure to delivered products. +- Any defects of the aforementioned application. +- Any breach of warranty. +- Any loss of data during installation. +- Integrity of information or data stored or transmitted via any mediator or communications +pathway. +- Any unauthorized access to data. +- Any corruption or destruction or any inadvertent disclosure of data or content or information +stored, received or transmitted from or to the system or any system affected by it. +- Any cost or reconciliation from any for any damages or lost profits due to +the any aforementioned scenarios. +- Is not responsible to fix or amend any of the aforementioned scenarios and is not liable for +blame. +- Any performance changes. + +You adhere that any damages or aforementioned losses or disclosure of data is not the liability +or responsibility of Smart Way Business Solutions whether or not it has been advised of the +possibility of any such occurrences. + +You are aware, acknowledge and agree that if Smart Way Business Solutions takes any corrective +action (regardless of nature) under this agreement because of any of your actions that might +affect any of your customers or any of your partners or resellers, and that Smart Way Business +Solutions is not and shall not be liable for any of the effects or impacts that any of the +corrective actions have caused. diff --git a/odex30_base/sw_multi_search/__init__.py b/odex30_base/sw_multi_search/__init__.py new file mode 100644 index 0000000..a0fdc10 --- /dev/null +++ b/odex30_base/sw_multi_search/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import models diff --git a/odex30_base/sw_multi_search/__manifest__.py b/odex30_base/sw_multi_search/__manifest__.py new file mode 100644 index 0000000..2897a08 --- /dev/null +++ b/odex30_base/sw_multi_search/__manifest__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +{ + 'name': 'SW - Multi Search', + 'version': '18.0.1.2.0', + 'category' : 'Odex25-base', + 'summary' : """ Records bulk search on any page/model. + """, + 'description': """ + Search for records in bulks on any page/model easily. + """, + 'license': "Other proprietary", + 'author' : 'Smart Way Business Solutions', + 'website': 'www.smartway.co', + 'depends': ['base'], + 'init_xml': [], + 'data': [ + ], + 'installable': True, + 'application': False, + 'auto_install': False, + 'images': ["static/description/image.png"], + 'price' : 60, + 'currency' : 'EUR', + +} diff --git a/odex30_base/sw_multi_search/models/__init__.py b/odex30_base/sw_multi_search/models/__init__.py new file mode 100644 index 0000000..a6d6b33 --- /dev/null +++ b/odex30_base/sw_multi_search/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import multi_search diff --git a/odex30_base/sw_multi_search/models/multi_search.py b/odex30_base/sw_multi_search/models/multi_search.py new file mode 100644 index 0000000..f5479d0 --- /dev/null +++ b/odex30_base/sw_multi_search/models/multi_search.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- + +import logging +_logger = logging.getLogger(__name__) + +from odoo import models, api + + +class Base(models.AbstractModel): + _inherit = 'base' + + @api.model + def _search(self, domain, offset=0, limit=None, order=None): + """ + Override _search to handle multi-search syntax with curly braces {}. + When a search term is wrapped in {}, it will be split into multiple OR conditions. + Example: searching for "{apple orange}" in a field will search for "apple" OR "orange" + """ + new_domain = [] + for term in domain: + if isinstance(term, (list, tuple)) and len(term) == 3: + field, op, val = term + if isinstance(val, str) and val.startswith('{') and val.endswith('}'): + # Handle multi-search syntax + lop = '&' if (op.startswith('!') or op.startswith('not')) else '|' + val = val[1:-1] # Remove curly braces + multi_terms = [] + values = val.split() + + # Build OR/AND conditions for multiple values + for i, v in enumerate(values): + if i > 0: + multi_terms.append(lop) + multi_terms.append((field, op, v)) + + if multi_terms: + new_domain.extend(multi_terms) + else: + new_domain.append(term) + else: + new_domain.append(term) + + return super()._search(new_domain, offset=offset, limit=limit, order=order) \ No newline at end of file diff --git a/odex30_base/sw_multi_search/static/description/1.png b/odex30_base/sw_multi_search/static/description/1.png new file mode 100644 index 0000000..38d983a Binary files /dev/null and b/odex30_base/sw_multi_search/static/description/1.png differ diff --git a/odex30_base/sw_multi_search/static/description/2.png b/odex30_base/sw_multi_search/static/description/2.png new file mode 100644 index 0000000..d926301 Binary files /dev/null and b/odex30_base/sw_multi_search/static/description/2.png differ diff --git a/odex30_base/sw_multi_search/static/description/3.png b/odex30_base/sw_multi_search/static/description/3.png new file mode 100644 index 0000000..c6d49d9 Binary files /dev/null and b/odex30_base/sw_multi_search/static/description/3.png differ diff --git a/odex30_base/sw_multi_search/static/description/4.png b/odex30_base/sw_multi_search/static/description/4.png new file mode 100644 index 0000000..6b91265 Binary files /dev/null and b/odex30_base/sw_multi_search/static/description/4.png differ diff --git a/odex30_base/sw_multi_search/static/description/icon.png b/odex30_base/sw_multi_search/static/description/icon.png new file mode 100644 index 0000000..694239f Binary files /dev/null and b/odex30_base/sw_multi_search/static/description/icon.png differ diff --git a/odex30_base/sw_multi_search/static/description/image.png b/odex30_base/sw_multi_search/static/description/image.png new file mode 100644 index 0000000..3813a95 Binary files /dev/null and b/odex30_base/sw_multi_search/static/description/image.png differ diff --git a/odex30_base/sw_multi_search/static/description/index.html b/odex30_base/sw_multi_search/static/description/index.html new file mode 100644 index 0000000..61f94f0 --- /dev/null +++ b/odex30_base/sw_multi_search/static/description/index.html @@ -0,0 +1,125 @@ +
+
+

Multi Search

+

Search for records in bulks on any page/model easily.

+

Smart Way Business Solutions

+
+
+ +
+
+
+
+ + 1 +
+
+ + Ability to use { } to define your search without the need to use separators (only spacing). +
+
+ +
+
+ + 2 +
+
+ + Ability to copy/paste columns from sheets in the search bar to look for corresponding records on the system. +
+
+ +
+
+ + 3 +
+
+ + Free feature updates, upgrades and bug fixes. +
+
+
+
+ + 4 +
+
+ + Compatible with Odoo Community & Enterprise editions. +
+
+
+
+ +
+
+

User Guide

+
+
+

+ After installing the app, navigate to any page/model you'd like to search for records in. +

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

+ For bulk searching, write the characters (the module's search function works on 'Char' fields only) of the records you need to search for between curly brackets as shown + in the image. +

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

+ Another awesome way for an easy, quick & specified search search is to copy columns or data from spread sheets in between curly brackets in the search bar to get + corresponding results. +

+
+
+ +
+
+ +
+
+
+ +
+
+ +
+ +
+
+ +
+ + + +
+
+
+ diff --git a/odex30_base/sw_multi_search/static/description/oe_footer_guideline.jpg b/odex30_base/sw_multi_search/static/description/oe_footer_guideline.jpg new file mode 100644 index 0000000..d29beb9 Binary files /dev/null and b/odex30_base/sw_multi_search/static/description/oe_footer_guideline.jpg differ diff --git a/odex30_base/web_company_logo/LICENSE b/odex30_base/web_company_logo/LICENSE new file mode 100644 index 0000000..12334e0 --- /dev/null +++ b/odex30_base/web_company_logo/LICENSE @@ -0,0 +1,859 @@ + +For copyright information, please see the COPYRIGHT file. + +Odoo is published under the GNU LESSER GENERAL PUBLIC LICENSE, Version 3 +(LGPLv3), as included below. Since the LGPL is a set of additional +permissions on top of the GPL, the text of the GPL is included at the +bottom as well. + +Some external libraries and contributions bundled with Odoo may be published +under other GPL-compatible licenses. For these, please refer to the relevant +source files and/or license files, in the source code tree. + +************************************************************************** + + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. + +************************************************************************** + + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + + +************************************************************************** \ No newline at end of file diff --git a/odex30_base/web_company_logo/__init__.py b/odex30_base/web_company_logo/__init__.py new file mode 100644 index 0000000..e046e49 --- /dev/null +++ b/odex30_base/web_company_logo/__init__.py @@ -0,0 +1 @@ +from . import controllers diff --git a/odex30_base/web_company_logo/__manifest__.py b/odex30_base/web_company_logo/__manifest__.py new file mode 100644 index 0000000..7371bf9 --- /dev/null +++ b/odex30_base/web_company_logo/__manifest__.py @@ -0,0 +1,26 @@ +{ + 'name': "Company Logo in Backend Navbar", + 'description': """ + Adding the company logo to the Backend Navbar. + """, + 'category': 'Odex25-base', + 'author': "Kareem Abuzaid, kareem.abuzaid123@gmail.com", + 'version': "18.0.1.0.0", + 'website': "https://www.kareemabuzaid.com", + 'license': "AGPL-3", + 'depends': [ + 'base', + 'web', + ], + 'images': ['static/description/company_logo.png'], + 'assets': { + 'web.assets_backend': [ + 'web_company_logo/static/src/components/company_logo/company_logo.js', + 'web_company_logo/static/src/components/company_logo/company_logo.xml', + 'web_company_logo/static/src/components/navbar_patch.js', + 'web_company_logo/static/src/components/navbar.xml', + ], + }, + 'installable': True, + 'application': False, +} diff --git a/odex30_base/web_company_logo/controllers/__init__.py b/odex30_base/web_company_logo/controllers/__init__.py new file mode 100644 index 0000000..12a7e52 --- /dev/null +++ b/odex30_base/web_company_logo/controllers/__init__.py @@ -0,0 +1 @@ +from . import main diff --git a/odex30_base/web_company_logo/controllers/main.py b/odex30_base/web_company_logo/controllers/main.py new file mode 100644 index 0000000..595295d --- /dev/null +++ b/odex30_base/web_company_logo/controllers/main.py @@ -0,0 +1,23 @@ +import json + +from odoo import http +from odoo.http import request + + +class WebCompanyLogoController(http.Controller): + + @http.route(['/check_company_logo'], type='http', + auth="public", methods=['GET'], + website=True, sitemap=False) + def check_company_logo(self, company_id=0): + """ + Check if company has a logo + + :param company_id: ID of the company as an integer + :return: bool + """ + has_logo = bool(request.env['res.company'].browse(int(company_id)).logo) + + return json.dumps({ + 'has_logo': has_logo, + }, ensure_ascii=False) diff --git a/odex30_base/web_company_logo/static/description/company_logo.png b/odex30_base/web_company_logo/static/description/company_logo.png new file mode 100644 index 0000000..2651bc5 Binary files /dev/null and b/odex30_base/web_company_logo/static/description/company_logo.png differ diff --git a/odex30_base/web_company_logo/static/description/index.html b/odex30_base/web_company_logo/static/description/index.html new file mode 100644 index 0000000..15fca54 --- /dev/null +++ b/odex30_base/web_company_logo/static/description/index.html @@ -0,0 +1,5 @@ + +

Add company logo to backend navbar

+
+ + \ No newline at end of file diff --git a/odex30_base/web_company_logo/static/src/components/company_logo/company_logo.js b/odex30_base/web_company_logo/static/src/components/company_logo/company_logo.js new file mode 100644 index 0000000..373a22b --- /dev/null +++ b/odex30_base/web_company_logo/static/src/components/company_logo/company_logo.js @@ -0,0 +1,46 @@ +/** @odoo-module **/ + +import { Component, useState, onWillStart } from "@odoo/owl"; +import { useService } from "@web/core/utils/hooks"; +import { session } from "@web/session"; + +export class CompanyLogo extends Component { + static template = "web_company_logo.CompanyLogo"; + static props = {}; + + setup() { + this.orm = useService("orm"); + this.company = useService("company"); + this.state = useState({ + hasLogo: false, + logoUrl: "", + }); + + onWillStart(async () => { + await this.checkCompanyLogo(); + }); + } + + async checkCompanyLogo() { + const companyId = this.company.currentCompany.id; + if (!companyId) { + return; + } + + try { + const company = await this.orm.read("res.company", [companyId], ["logo"]); + if (company && company[0] && company[0].logo) { + this.state.hasLogo = true; + this.state.logoUrl = `/web/image?model=res.company&id=${companyId}&field=logo`; + } + } catch (error) { + console.error("Error loading company logo:", error); + } + } + + onLogoClick(ev) { + ev.preventDefault(); + // Navigate to home + window.location.href = "/web"; + } +} \ No newline at end of file diff --git a/odex30_base/web_company_logo/static/src/components/company_logo/company_logo.xml b/odex30_base/web_company_logo/static/src/components/company_logo/company_logo.xml new file mode 100644 index 0000000..39bcf1a --- /dev/null +++ b/odex30_base/web_company_logo/static/src/components/company_logo/company_logo.xml @@ -0,0 +1,13 @@ + + + +
+ + + +
+
+
\ No newline at end of file diff --git a/odex30_base/web_company_logo/static/src/components/navbar.xml b/odex30_base/web_company_logo/static/src/components/navbar.xml new file mode 100644 index 0000000..70f5c9d --- /dev/null +++ b/odex30_base/web_company_logo/static/src/components/navbar.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/odex30_base/web_company_logo/static/src/components/navbar_patch.js b/odex30_base/web_company_logo/static/src/components/navbar_patch.js new file mode 100644 index 0000000..67dae09 --- /dev/null +++ b/odex30_base/web_company_logo/static/src/components/navbar_patch.js @@ -0,0 +1,20 @@ +/** @odoo-module **/ + +import { NavBar } from "@web/webclient/navbar/navbar"; +import { CompanyLogo } from "./company_logo/company_logo"; +import { patch } from "@web/core/utils/patch"; + +patch(NavBar.prototype, { + setup() { + super.setup(); + this.constructor.components = { + ...this.constructor.components, + CompanyLogo, + }; + } +}); + +// Patch the template to include company logo +patch(NavBar, { + template: "web_company_logo.NavBar", +}); \ No newline at end of file diff --git a/odex30_base/web_company_logo/static/src/css/menu.css b/odex30_base/web_company_logo/static/src/css/menu.css new file mode 100644 index 0000000..10e22b3 --- /dev/null +++ b/odex30_base/web_company_logo/static/src/css/menu.css @@ -0,0 +1,4 @@ +#company-logo { + height: 46px; + width: 46px; +} \ No newline at end of file diff --git a/odex30_base/web_company_logo/static/src/img/company_logo.png b/odex30_base/web_company_logo/static/src/img/company_logo.png new file mode 100644 index 0000000..2651bc5 Binary files /dev/null and b/odex30_base/web_company_logo/static/src/img/company_logo.png differ diff --git a/odex30_base/web_domain_field/README.rst b/odex30_base/web_domain_field/README.rst new file mode 100644 index 0000000..bf8d31a --- /dev/null +++ b/odex30_base/web_domain_field/README.rst @@ -0,0 +1,135 @@ +================ +Web Domain Field +================ + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:dc8abc1ad57856bda62ec4d3f0ff74f3029cf9ebb32ba41c8ae449867393ea65 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png + :target: https://odoo-community.org/page/development-status + :alt: Production/Stable +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github + :target: https://github.com/OCA/web/tree/14.0/web_domain_field + :alt: OCA/web +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/web-14-0/web-14-0-web_domain_field + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=14.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +When you define a view you can specify on the relational fields a domain +attribute. This attribute is evaluated as filter to apply when displaying +existing records for selection. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +When you define a view you can specify on the relational fields a domain +attribute. This attribute is evaluated as filter to apply when displaying +existing records for selection. + +.. code-block:: xml + + + +The value provided for the domain attribute must be a string representing a +valid Odoo domain. This string is evaluated on the client side in a +restricted context where we can reference as right operand the values of +fields present into the form and a limited set of functions. + +In this context it's hard to build complex domain and we are facing to some +limitations as: + + * The syntax to include in your domain a criteria involving values from a + x2many field is complex. + * The right side of domain in case of x2many can involve huge amount of ids + (performance problem). + * Domains computed by an onchange on an other field are not recomputed when + you modify the form and don't modify the field triggering the onchange. + * It's not possible to extend an existing domain. You must completely redefine + the domain in your specialized addon + * etc... + +In order to mitigate these limitations this new addon allows you to use the +value of a field as domain of an other field in the xml definition of your +view. + +.. code-block:: xml + + + + +The field used as domain must provide the domain as a JSON encoded string. + +.. code-block:: python + + product_id_domain = fields.Char( + compute="_compute_product_id_domain", + readonly=True, + store=False, + ) + + @api.depends('name') + def _compute_product_id_domain(self): + for rec in self: + rec.product_id_domain = json.dumps( + [('type', '=', 'product'), ('name', 'like', rec.name)] + ) + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* ACSONE SA/NV + +Contributors +~~~~~~~~~~~~ + +* Laurent Mignon +* Denis Roussel +* Raf Ven + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/web `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/odex30_base/web_domain_field/__init__.py b/odex30_base/web_domain_field/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/odex30_base/web_domain_field/__manifest__.py b/odex30_base/web_domain_field/__manifest__.py new file mode 100644 index 0000000..1450d8b --- /dev/null +++ b/odex30_base/web_domain_field/__manifest__.py @@ -0,0 +1,20 @@ +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Web Domain Field", + "summary": """ + Use computed field as domain""", + "version": "18.0.1.0.0", + "development_status": "Production/Stable", + "license": "AGPL-3", + "author": "ACSONE SA/NV,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/web", + "depends": ["web"], + "assets": { + "web.assets_backend": [ + "web_domain_field/static/lib/js/pyeval.js", + ], + }, + "installable": True, +} diff --git a/odex30_base/web_domain_field/i18n/es.po b/odex30_base/web_domain_field/i18n/es.po new file mode 100644 index 0000000..e69de29 diff --git a/odex30_base/web_domain_field/readme/CONTRIBUTORS.rst b/odex30_base/web_domain_field/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..1294ec2 --- /dev/null +++ b/odex30_base/web_domain_field/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* Laurent Mignon +* Denis Roussel +* Raf Ven diff --git a/odex30_base/web_domain_field/readme/DESCRIPTION.rst b/odex30_base/web_domain_field/readme/DESCRIPTION.rst new file mode 100644 index 0000000..5aa1b96 --- /dev/null +++ b/odex30_base/web_domain_field/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +When you define a view you can specify on the relational fields a domain +attribute. This attribute is evaluated as filter to apply when displaying +existing records for selection. diff --git a/odex30_base/web_domain_field/readme/USAGE.rst b/odex30_base/web_domain_field/readme/USAGE.rst new file mode 100644 index 0000000..b9c04da --- /dev/null +++ b/odex30_base/web_domain_field/readme/USAGE.rst @@ -0,0 +1,51 @@ +When you define a view you can specify on the relational fields a domain +attribute. This attribute is evaluated as filter to apply when displaying +existing records for selection. + +.. code-block:: xml + + + +The value provided for the domain attribute must be a string representing a +valid Odoo domain. This string is evaluated on the client side in a +restricted context where we can reference as right operand the values of +fields present into the form and a limited set of functions. + +In this context it's hard to build complex domain and we are facing to some +limitations as: + + * The syntax to include in your domain a criteria involving values from a + x2many field is complex. + * The right side of domain in case of x2many can involve huge amount of ids + (performance problem). + * Domains computed by an onchange on an other field are not recomputed when + you modify the form and don't modify the field triggering the onchange. + * It's not possible to extend an existing domain. You must completely redefine + the domain in your specialized addon + * etc... + +In order to mitigate these limitations this new addon allows you to use the +value of a field as domain of an other field in the xml definition of your +view. + +.. code-block:: xml + + + + +The field used as domain must provide the domain as a JSON encoded string. + +.. code-block:: python + + product_id_domain = fields.Char( + compute="_compute_product_id_domain", + readonly=True, + store=False, + ) + + @api.depends('name') + def _compute_product_id_domain(self): + for rec in self: + rec.product_id_domain = json.dumps( + [('type', '=', 'product'), ('name', 'like', rec.name)] + ) diff --git a/odex30_base/web_domain_field/static/description/icon.png b/odex30_base/web_domain_field/static/description/icon.png new file mode 100644 index 0000000..3a0328b Binary files /dev/null and b/odex30_base/web_domain_field/static/description/icon.png differ diff --git a/odex30_base/web_domain_field/static/description/index.html b/odex30_base/web_domain_field/static/description/index.html new file mode 100644 index 0000000..8ddf0a7 --- /dev/null +++ b/odex30_base/web_domain_field/static/description/index.html @@ -0,0 +1,476 @@ + + + + + + +Web Domain Field + + + +
+

Web Domain Field

+ + +

Production/Stable License: AGPL-3 OCA/web Translate me on Weblate Try me on Runboat

+

When you define a view you can specify on the relational fields a domain +attribute. This attribute is evaluated as filter to apply when displaying +existing records for selection.

+

Table of contents

+ +
+

Usage

+

When you define a view you can specify on the relational fields a domain +attribute. This attribute is evaluated as filter to apply when displaying +existing records for selection.

+
+<field name="product_id" domain="[('type','=','product')]"/>
+
+

The value provided for the domain attribute must be a string representing a +valid Odoo domain. This string is evaluated on the client side in a +restricted context where we can reference as right operand the values of +fields present into the form and a limited set of functions.

+

In this context it’s hard to build complex domain and we are facing to some +limitations as:

+
+
    +
  • The syntax to include in your domain a criteria involving values from a +x2many field is complex.
  • +
  • The right side of domain in case of x2many can involve huge amount of ids +(performance problem).
  • +
  • Domains computed by an onchange on an other field are not recomputed when +you modify the form and don’t modify the field triggering the onchange.
  • +
  • It’s not possible to extend an existing domain. You must completely redefine +the domain in your specialized addon
  • +
  • etc…
  • +
+
+

In order to mitigate these limitations this new addon allows you to use the +value of a field as domain of an other field in the xml definition of your +view.

+
+<field name="product_id_domain" invisible="1"/>
+<field name="product_id" domain="product_id_domain"/>
+
+

The field used as domain must provide the domain as a JSON encoded string.

+
+product_id_domain = fields.Char(
+    compute="_compute_product_id_domain",
+    readonly=True,
+    store=False,
+)
+
+@api.depends('name')
+def _compute_product_id_domain(self):
+    for rec in self:
+        rec.product_id_domain = json.dumps(
+            [('type', '=', 'product'), ('name', 'like', rec.name)]
+        )
+
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • ACSONE SA/NV
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/web project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/odex30_base/web_domain_field/static/lib/js/pyeval.js b/odex30_base/web_domain_field/static/lib/js/pyeval.js new file mode 100644 index 0000000..004fac6 --- /dev/null +++ b/odex30_base/web_domain_field/static/lib/js/pyeval.js @@ -0,0 +1,94 @@ +/** @odoo-module **/ + +import { toPyValue } from "@web/core/py_js/py_utils"; +import { evaluateExpr } from "@web/core/py_js/py"; +import { user } from "@web/core/user"; +import { patch } from "@web/core/utils/patch"; + +/** + * Web Domain Field Module for Odoo 18 + * + * This module extends Odoo's domain evaluation system to allow using + * computed field values as domains. It patches the core domain evaluation + * to check if a string domain reference corresponds to a field value + * in the evaluation context, and if so, uses that field's value as the domain. + */ + +// Store original evaluateExpr function for fallback +const originalEvaluateExpr = evaluateExpr; + +/** + * Enhanced domain evaluation that supports field-based domains + * + * @param {string|Object} expr - The expression to evaluate + * @param {Object} context - The evaluation context + * @returns {Array} The evaluated domain array + */ +function evaluateDomainWithFieldSupport(expr, context = {}) { + // If expr is a string and exists as a field in context, use its value + if (typeof expr === "string" && expr in context) { + try { + const fieldValue = context[expr]; + if (typeof fieldValue === "string") { + // Try to parse as JSON domain + try { + return JSON.parse(fieldValue); + } catch (e) { + // If not valid JSON, treat as Python expression + return originalEvaluateExpr(fieldValue, context); + } + } else if (Array.isArray(fieldValue)) { + return fieldValue; + } + } catch (error) { + console.warn("Failed to evaluate field domain:", expr, error); + } + } + + // Fallback to original evaluation + return originalEvaluateExpr(expr, context); +} + +/** + * Patch the core domain evaluation system + * This allows domains to reference field values directly + */ +patch(evaluateExpr, { + /** + * Override the core evaluateExpr to support field-based domains + */ + evaluateExpr(expr, context = {}) { + // Handle domain evaluation specifically + if (typeof expr === "object" && expr.__ref === "domain") { + return evaluateDomainWithFieldSupport(expr.__debug || expr.__value, context); + } + + // For compound domains, process each part + if (typeof expr === "object" && expr.__ref === "compound_domain") { + const domains = expr.__domains || []; + const result = []; + + for (const domain of domains) { + if (typeof domain === "string") { + // Check if this string references a field in context + const evaluated = evaluateDomainWithFieldSupport(domain, context); + result.push(...(Array.isArray(evaluated) ? evaluated : [])); + } else { + // Process normally + const evaluated = this._super(domain, context); + result.push(...(Array.isArray(evaluated) ? evaluated : [])); + } + } + + return result; + } + + // Default to original behavior for non-domain expressions + return this._super(expr, context); + } +}); + +/** + * Export the enhanced evaluation function for external use + */ +export { evaluateDomainWithFieldSupport }; \ No newline at end of file diff --git a/odex30_base/web_hijri_datepicker/__init__.py b/odex30_base/web_hijri_datepicker/__init__.py new file mode 100644 index 0000000..40a96af --- /dev/null +++ b/odex30_base/web_hijri_datepicker/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/odex30_base/web_hijri_datepicker/__manifest__.py b/odex30_base/web_hijri_datepicker/__manifest__.py new file mode 100644 index 0000000..d7053df --- /dev/null +++ b/odex30_base/web_hijri_datepicker/__manifest__.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- + +{ + 'name': 'Web Hijri', + 'category' : 'Odex25-base', + 'version': '18.0.1.0.0', + 'description': """Enable Web Hijri Datepicker in Odoo""", + 'depends': ['web'], + 'assets': { + 'web.assets_backend': [ + # CSS files + 'web_hijri_datepicker/static/src/scss/web_hijri_date.scss', + 'web_hijri_datepicker/static/src/fields/hijri_date_field.scss', + + # Hijri date conversion utilities + 'web_hijri_datepicker/static/src/utils/hijri_converter.js', + + # Hijri date field component (modern implementation) + 'web_hijri_datepicker/static/src/components/hijri_date_field.js', + 'web_hijri_datepicker/static/src/components/hijri_date_field.xml', + + # Patches for existing date fields + 'web_hijri_datepicker/static/src/patches/datetime_field_patch.js', + 'web_hijri_datepicker/static/src/patches/datetime_field_patch.xml', + ], + }, + 'installable': True, + 'auto_install': False, + 'application': True, +} diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendar-blue.gif b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendar-blue.gif new file mode 100644 index 0000000..601cbd5 Binary files /dev/null and b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendar-blue.gif differ diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendar-green.gif b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendar-green.gif new file mode 100644 index 0000000..9dae1a3 Binary files /dev/null and b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendar-green.gif differ diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendar.gif b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendar.gif new file mode 100644 index 0000000..d0abaa7 Binary files /dev/null and b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendar.gif differ diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendarsBasic.html b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendarsBasic.html new file mode 100644 index 0000000..16df4c4 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendarsBasic.html @@ -0,0 +1,69 @@ + + + + +jQuery Calendars + + + + + + + + + + + + + + + + + + + +

jQuery Calendars

+

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

+

For more detail see the documentation reference page.

+

Select a calendar:

+

Enter a date: ()

+

Check and format: +

+

Result:

+ + diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendarsPickerBasic.html b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendarsPickerBasic.html new file mode 100644 index 0000000..c74aeac --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/calendarsPickerBasic.html @@ -0,0 +1,43 @@ + + + + +jQuery Calendars Datepicker + + + + + + + + + + + + + +

jQuery Calendars Datepicker

+

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

+

For more detail see the documentation reference page.

+

A popup datepicker

+

Or inline

+
+ + diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/flora.calendars.picker.css b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/flora.calendars.picker.css new file mode 100644 index 0000000..3a359e1 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/flora.calendars.picker.css @@ -0,0 +1,208 @@ +/* Flora styling for jQuery Calendars Picker v2.0.0. */ +.calendars { + background-color: #e0f4d7; + color: #000; + border: 1px solid #f90; + -moz-border-radius: 0.25em; + -webkit-border-radius: 0.25em; + border-radius: 0.25em; + font-family: Arial,Helvetica,Sans-serif; + font-size: 90%; +} +.calendars-rtl { + direction: rtl; +} +.calendars-popup { + z-index: 1000; +} +.calendars-disable { + position: absolute; + z-index: 100; + background-color: white; + opacity: 0.5; + filter: alpha(opacity=50); +} +.calendars a { + color: #000; + text-decoration: none; +} +.calendars a.calendars-disabled { + color: #888; + cursor: auto; +} +.calendars button { + margin: 0.25em; + padding: 0.125em 0em; + background-color: #fc8; + border: none; + -moz-border-radius: 0.25em; + -webkit-border-radius: 0.25em; + border-radius: 0.25em; + font-weight: bold; +} +.calendars-nav, .calendars-ctrl { + float: left; + width: 100%; + background-color: #e0f4d7; + color: #fff; + font-size: 90%; + font-weight: bold; +} +.datepick-ctrl { + background-color: #f90; +} +.calendars-cmd { + width: 30%; +} +.calendars-cmd:hover { + background-color: #b1db87; +} +.calendars-ctrl .calendars-cmd:hover { + background-color: #fa4; +} +.calendars-cmd-prevJump, .calendars-cmd-nextJump { + width: 8%; +} +a.calendars-cmd { + height: 1.5em; +} +button.calendars-cmd { + text-align: center; +} +.calendars-cmd-prev, .calendars-cmd-prevJump, .calendars-cmd-clear { + float: left; + padding-left: 2%; +} +.calendars-cmd-current, .calendars-cmd-today { + float: left; + width: 35%; + text-align: center; +} +.calendars-cmd-next, .calendars-cmd-nextJump, .calendars-cmd-close { + float: right; + padding-right: 2%; + text-align: right; +} +.calendars-rtl .calendars-cmd-prev, .calendars-rtl .calendars-cmd-prevJump, +.calendars-rtl .calendars-cmd-clear { + float: right; + padding-left: 0%; + padding-right: 2%; + text-align: right; +} +.calendars-rtl .calendars-cmd-current, .calendars-rtl .calendars-cmd-today { + float: right; +} +.calendars-rtl .calendars-cmd-next, .calendars-rtl .calendars-cmd-nextJump, +.calendars-rtl .calendars-cmd-close { + float: left; + padding-left: 2%; + padding-right: 0%; + text-align: left; +} +.calendars-month-nav { + float: left; + background-color: #b1db87; + text-align: center; +} +.calendars-month-nav div { + float: left; + width: 12.5%; + margin: 1%; + padding: 1%; +} +.calendars-month-nav span { + color: #888; +} +.calendars-month-row { + clear: left; +} +.calendars-month { + float: left; + width: 15em; + border: 1px solid #83c948; + text-align: center; +} +.calendars-month-header, .calendars-month-header select, .calendars-month-header input { + height: 1.5em; + background-color: #83c948; + color: #fff; + font-weight: bold; +} +.calendars-month-header select, .calendars-month-header input { + height: 1.4em; + border: none; +} +.calendars-month-header input { + position: absolute; + display: none; +} +.calendars-month table { + width: 100%; + border-collapse: collapse; +} +.calendars-month thead { + border-bottom: 1px solid #aaa; +} +.calendars-month th, .calendars-month td { + margin: 0em; + padding: 0em; + font-weight: normal; + text-align: center; +} +.calendars-month th { + border: 1px solid #b1db87; +} +.calendars-month th, .calendars-month th a { + background-color: #b1db87; + color: #000; + border: 1px solid #b1db87; +} +.calendars-month td { + background-color: #fff; + color: #666; + border: 1px solid #b1db87; +} +.calendars-month td.calendars-week * { + background-color: #b1db87; + color: #666; + border: none; +} +.calendars-month a { + display: block; + width: 100%; + padding: 0.125em 0em; + text-decoration: none; +} +.calendars-month span { + display: block; + width: 100%; + padding: 0.125em 0em; +} +.calendars-month td span { + color: #888; +} +.calendars-month td .calendars-other-month { + background-color: #e0f4d7; +} +.calendars-month td .calendars-weekend { + background-color: #e0f4d7; +} +.calendars-month td .calendars-today { + background-color: #b1db87; +} +.calendars-month td .calendars-highlight { + background-color: #fc8; +} +.calendars-month td .calendars-selected { + background-color: #f90; + color: #fff; +} +.calendars-status { + clear: both; + background-color: #b1db87; + text-align: center; +} +.calendars-clear-fix { + clear: both; +} diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/humanity.calendars.picker.css b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/humanity.calendars.picker.css new file mode 100644 index 0000000..cb69417 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/humanity.calendars.picker.css @@ -0,0 +1,197 @@ +/* Humanity styling for jQuery Calendars Picker v2.0.0. */ +.calendars { + background-color: #f4f0ec; + color: #1e1b1c; + border: 1px solid #cb842e; + -moz-border-radius: 0.25em; + -webkit-border-radius: 0.25em; + border-radius: 0.25em; + font-family: Arial,Helvetica,Sans-serif; + font-size: 90%; +} +.calendars-rtl { + direction: rtl; +} +.calendars-popup { + z-index: 1000; +} +.calendars-disable { + position: absolute; + z-index: 100; + background-color: white; + opacity: 0.5; + filter: alpha(opacity=50); +} +.calendars a { + color: #1e1b1c; + text-decoration: none; +} +.calendars a.calendars-disabled { + color: #888; + cursor: auto; +} +.calendars button { + margin: 0.25em; + padding: 0.125em 0em; + background-color: #ede4d4; + border: none; + -moz-border-radius: 0.25em; + -webkit-border-radius: 0.25em; + border-radius: 0.25em; + font-weight: bold; +} +.calendars-nav, .calendars-ctrl { + float: left; + width: 100%; + background-color: #ede4d4; + font-size: 90%; + font-weight: bold; +} +.calendars-ctrl { + background-color: #cb842e; +} +.calendars-cmd { + width: 30%; +} +.calendars-cmd:hover { + background-color: #f4f0ec; +} +.calendars-cmd-prevJump, .calendars-cmd-nextJump { + width: 8%; +} +a.calendars-cmd { + height: 1.5em; +} +button.calendars-cmd { + text-align: center; +} +.calendars-cmd-prev, .calendars-cmd-prevJump, .calendars-cmd-clear { + float: left; + padding-left: 2%; +} +.calendars-cmd-current, .calendars-cmd-today { + float: left; + width: 35%; + text-align: center; +} +.calendars-cmd-next, .calendars-cmd-nextJump, .calendars-cmd-close { + float: right; + padding-right: 2%; + text-align: right; +} +.calendars-rtl .calendars-cmd-prev, .calendars-rtl .calendars-cmd-prevJump, +.calendars-rtl .calendars-cmd-clear { + float: right; + padding-left: 0%; + padding-right: 2%; + text-align: right; +} +.calendars-rtl .calendars-cmd-current, .calendars-rtl .calendars-cmd-today { + float: right; +} +.calendars-rtl .calendars-cmd-next, .calendars-rtl .calendars-cmd-nextJump, +.calendars-rtl .calendars-cmd-close { + float: left; + padding-left: 2%; + padding-right: 0%; + text-align: left; +} +.calendars-month-nav { + float: left; + text-align: center; +} +.calendars-month-nav div { + float: left; + width: 12.5%; + margin: 1%; + padding: 1%; +} +.calendars-month-nav span { + color: #888; +} +.calendars-month-row { + clear: left; +} +.calendars-month { + float: left; + width: 17em; + border: 1px solid #e0cfc2; + text-align: center; +} +.calendars-month-header, .calendars-month-header select, .calendars-month-header input { + height: 1.5em; + background-color: #cb842e; + color: #fff; + font-weight: bold; +} +.calendars-month-header select, .calendars-month-header input { + height: 1.4em; + border: none; +} +.calendars-month-header input { + position: absolute; + display: none; +} +.calendars-month table { + width: 100%; + border: 2px solid transparent; + border-collapse: collapse; +} +.calendars-month th, .calendars-month td { + margin: 0em; + padding: 0.125em; + font-weight: normal; + text-align: center; +} +.calendars-month td.calendars-week, +.calendars-month td.calendars-week * { + background-color: #cb842e; + color: #fff; + border: 1px solid #cb842e; +} +.calendars-month a { + display: block; + width: 100%; + padding: 0.125em 0em; + background-color: #ede4d4; + color: #000; + border: 1px solid #cdc3b7; + text-decoration: none; +} +.calendars-month span { + display: block; + margin-top: 0.25em; +} +.calendars-month a { + background-color: #ede4d4; + color: #444; + border: 1px solid #cdc3b7; + text-decoration: none; +} +.calendars-month td span { + color: #888; +} +.calendars-month td .calendars-other-month { + background-color: #f4f0ec; +} +.calendars-month td .calendars-today { + background-color: #f5f5b5; + border: 1px solid #d9bb73; +} +.calendars-month td .calendars-highlight { + background-color: #f5f0e5; + color: #1e1b1c; + border: 1px solid #f5ad66; +} +.calendars-month td .calendars-selected { + background-color: #cb842e; + color: #fff; + border: 1px solid #cb842e; +} +.calendars-status { + clear: both; + text-align: center; +} +.calendars-clear-fix { + clear: both; +} diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-af.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-af.js new file mode 100644 index 0000000..c500d92 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-af.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Afrikaans localisation for Gregorian/Julian calendars for jQuery. + Written by Renier Pretorius and Ruediger Thiede. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['af'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januarie','Februarie','Maart','April','Mei','Junie', + 'Julie','Augustus','September','Oktober','November','Desember'], + monthNamesShort: ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun', + 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'], + dayNames: ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'], + dayNamesShort: ['Son', 'Maan', 'Dins', 'Woens', 'Don', 'Vry', 'Sat'], + dayNamesMin: ['So','Ma','Di','Wo','Do','Vr','Sa'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['af'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['af']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-am.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-am.js new file mode 100644 index 0000000..1c13fa2 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-am.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Amharic (አማርኛ) localisation for Gregorian/Julian calendars for jQuery. + Leyu Sisay. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['am'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['ጃንዋሪ','ፈብርዋሪ','ማርች','አፕሪል','ሜይ','ጁን', + 'ጁላይ','ኦገስት','ሴፕቴምበር','ኦክቶበር','ኖቬምበር','ዲሴምበር'], + monthNamesShort: ['ጃንዋ', 'ፈብር', 'ማርች', 'አፕሪ', 'ሜይ', 'ጁን', + 'ጁላይ', 'ኦገስ', 'ሴፕቴ', 'ኦክቶ', 'ኖቬም', 'ዲሴም'], + dayNames: ['ሰንዴይ', 'መንዴይ', 'ትዩስዴይ', 'ዌንስዴይ', 'ተርሰዴይ', 'ፍራይዴይ', 'ሳተርዴይ'], + dayNamesShort: ['ሰንዴ', 'መንዴ', 'ትዩስ', 'ዌንስ', 'ተርሰ', 'ፍራይ', 'ሳተር'], + dayNamesMin: ['ሰን', 'መን', 'ትዩ', 'ዌን', 'ተር', 'ፍራ', 'ሳተ'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['am'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['am']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ar-DZ.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ar-DZ.js new file mode 100644 index 0000000..1c29c3b --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ar-DZ.js @@ -0,0 +1,23 @@ +/* http://keith-wood.name/calendars.html + Algerian (and Tunisian) Arabic localisation for Gregorian/Julian calendars for jQuery. + Mohamed Cherif BOUCHELAGHEM -- cherifbouchelaghem@yahoo.fr */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ar-DZ'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['جانفي', 'فيفري', 'مارس', 'أفريل', 'ماي', 'جوان', + 'جويلية', 'أوت', 'سبتمبر','أكتوبر', 'نوفمبر', 'ديسمبر'], + monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], + dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], + dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], + dayNamesMin: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 6, + isRTL: true + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ar-DZ'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ar-DZ']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ar-EG.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ar-EG.js new file mode 100644 index 0000000..39f399a --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ar-EG.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Arabic localisation for Gregorian/Julian calendars for jQuery. + Mahmoud Khaled -- mahmoud.khaled@badrit.com + NOTE: monthNames are the new months names */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ar-EG'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['يناير', 'فبراير', 'مارس', 'إبريل', 'مايو', 'يونية', + 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'], + monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], + dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], + dayNamesShort: ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'], + dayNamesMin: ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 6, + isRTL: true + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ar-EG'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ar-EG']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ar.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ar.js new file mode 100644 index 0000000..c61b1e9 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ar.js @@ -0,0 +1,25 @@ +/* http://keith-wood.name/calendars.html + Arabic localisation for Gregorian/Julian calendars for jQuery. + Khaled Al Horani -- خالد الحوراني -- koko.dw@gmail.com. */ +/* NOTE: monthNames are the original months names and they are the Arabic names, + not the new months name فبراير - يناير and there isn't any Arabic roots for these months */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ar'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'آذار', 'حزيران', + 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'], + monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], + dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], + dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], + dayNamesMin: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], + digits: $.calendars.substituteDigits(['٠', '١', '٢', '٣', '٤', '٥', '٦', '٧', '٨', '٩']), + dateFormat: 'dd/mm/yyyy', + firstDay: 6, + isRTL: true + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ar'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ar']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-az.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-az.js new file mode 100644 index 0000000..9afe643 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-az.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Azerbaijani localisation for Gregorian/Julian calendars for jQuery. + Written by Jamil Najafov (necefov33@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['az'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Yanvar','Fevral','Mart','Aprel','May','İyun', + 'İyul','Avqust','Sentyabr','Oktyabr','Noyabr','Dekabr'], + monthNamesShort: ['Yan','Fev','Mar','Apr','May','İyun', + 'İyul','Avq','Sen','Okt','Noy','Dek'], + dayNames: ['Bazar','Bazar ertəsi','Çərşənbə axşamı','Çərşənbə','Cümə axşamı','Cümə','Şənbə'], + dayNamesShort: ['B','Be','Ça','Ç','Ca','C','Ş'], + dayNamesMin: ['B','B','Ç','С','Ç','C','Ş'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['az'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['az']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-bg.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-bg.js new file mode 100644 index 0000000..ba34ded --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-bg.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Bulgarian localisation for Gregorian/Julian calendars for jQuery. + Written by Stoyan Kyosev (http://svest.org). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['bg'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Януари','Февруари','Март','Април','Май','Юни', + 'Юли','Август','Септември','Октомври','Ноември','Декември'], + monthNamesShort: ['Яну','Фев','Мар','Апр','Май','Юни', + 'Юли','Авг','Сеп','Окт','Нов','Дек'], + dayNames: ['Неделя','Понеделник','Вторник','Сряда','Четвъртък','Петък','Събота'], + dayNamesShort: ['Нед','Пон','Вто','Сря','Чет','Пет','Съб'], + dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Съ'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['bg'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['bg']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-bs.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-bs.js new file mode 100644 index 0000000..c14493d --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-bs.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Bosnian localisation for Gregorian/Julian calendars for jQuery. + Kenan Konjo. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['bs'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januar','Februar','Mart','April','Maj','Juni', + 'Juli','August','Septembar','Oktobar','Novembar','Decembar'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', + 'Jul','Aug','Sep','Okt','Nov','Dec'], + dayNames: ['Nedelja','Ponedeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], + dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], + dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], + digits: null, + dateFormat: 'dd.mm.yy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['bs'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['bs']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ca.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ca.js new file mode 100644 index 0000000..0e9c3c4 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ca.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Catalan localisation for Gregorian/Julian calendars for jQuery. + Writers: (joan.leon@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ca'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Gener','Febrer','Març','Abril','Maig','Juny', + 'Juliol','Agost','Setembre','Octubre','Novembre','Desembre'], + monthNamesShort: ['Gen','Feb','Mar','Abr','Mai','Jun', + 'Jul','Ago','Set','Oct','Nov','Des'], + dayNames: ['Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'], + dayNamesShort: ['Dug','Dln','Dmt','Dmc','Djs','Dvn','Dsb'], + dayNamesMin: ['Dg','Dl','Dt','Dc','Dj','Dv','Ds'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ca'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ca']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-cs.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-cs.js new file mode 100644 index 0000000..be25349 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-cs.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Czech localisation for Gregorian/Julian calendars for jQuery. + Written by Tomas Muller (tomas@tomas-muller.net). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['cs'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['leden','únor','březen','duben','květen','červen', + 'červenec','srpen','září','říjen','listopad','prosinec'], + monthNamesShort: ['led','úno','bře','dub','kvě','čer', + 'čvc','srp','zář','říj','lis','pro'], + dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'], + dayNamesShort: ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'], + dayNamesMin: ['ne','po','út','st','čt','pá','so'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['cs'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['cs']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-da.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-da.js new file mode 100644 index 0000000..d8c046c --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-da.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Danish localisation for Gregorian/Julian calendars for jQuery. + Written by Jan Christensen ( deletestuff@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['da'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januar','Februar','Marts','April','Maj','Juni', + 'Juli','August','September','Oktober','November','December'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', + 'Jul','Aug','Sep','Okt','Nov','Dec'], + dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], + dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], + dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], + digits: null, + dateFormat: 'dd-mm-yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['da'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['da']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-de-CH.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-de-CH.js new file mode 100644 index 0000000..84e42aa --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-de-CH.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Swiss-German localisation for Gregorian/Julian calendars for jQuery. + Written by Douglas Jose & Juerg Meier. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['de-CH'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januar','Februar','März','April','Mai','Juni', + 'Juli','August','September','Oktober','November','Dezember'], + monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun', + 'Jul','Aug','Sep','Okt','Nov','Dez'], + dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'], + dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'], + dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['de-CH'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['de-CH']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-de.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-de.js new file mode 100644 index 0000000..cd1cd51 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-de.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + German localisation for Gregorian/Julian calendars for jQuery. + Written by Milian Wolff (mail@milianw.de). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['de'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januar','Februar','März','April','Mai','Juni', + 'Juli','August','September','Oktober','November','Dezember'], + monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun', + 'Jul','Aug','Sep','Okt','Nov','Dez'], + dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'], + dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'], + dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['de'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['de']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-el.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-el.js new file mode 100644 index 0000000..007537a --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-el.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Greek localisation for Gregorian/Julian calendars for jQuery. + Written by Alex Cicovic (http://www.alexcicovic.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['el'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Ιανουάριος','Φεβρουάριος','Μάρτιος','Απρίλιος','Μάιος','Ιούνιος', + 'Ιούλιος','Αύγουστος','Σεπτέμβριος','Οκτώβριος','Νοέμβριος','Δεκέμβριος'], + monthNamesShort: ['Ιαν','Φεβ','Μαρ','Απρ','Μαι','Ιουν', + 'Ιουλ','Αυγ','Σεπ','Οκτ','Νοε','Δεκ'], + dayNames: ['Κυριακή','Δευτέρα','Τρίτη','Τετάρτη','Πέμπτη','Παρασκευή','Σάββατο'], + dayNamesShort: ['Κυρ','Δευ','Τρι','Τετ','Πεμ','Παρ','Σαβ'], + dayNamesMin: ['Κυ','Δε','Τρ','Τε','Πε','Πα','Σα'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['el'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['el']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-en-AU.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-en-AU.js new file mode 100644 index 0000000..5428081 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-en-AU.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + English/Australia localisation for Gregorian/Julian calendars for jQuery. + Based on en-GB. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['en-AU'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['January','February','March','April','May','June', + 'July','August','September','October','November','December'], + monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', + 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], + dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], + dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], + dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['en-AU'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['en-AU']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-en-GB.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-en-GB.js new file mode 100644 index 0000000..239d7bb --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-en-GB.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + English/UK localisation for Gregorian/Julian calendars for jQuery. + Stuart. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['en-GB'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['January','February','March','April','May','June', + 'July','August','September','October','November','December'], + monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', + 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], + dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], + dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], + dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['en-GB'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['en-GB']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-en-NZ.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-en-NZ.js new file mode 100644 index 0000000..317d9df --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-en-NZ.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + English/New Zealand localisation for Gregorian/Julian calendars for jQuery. + Based on en-GB. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['en-NZ'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['January','February','March','April','May','June', + 'July','August','September','October','November','December'], + monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', + 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], + dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], + dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], + dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['en-NZ'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['en-NZ']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-eo.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-eo.js new file mode 100644 index 0000000..e6487b7 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-eo.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Esperanto localisation for Gregorian/Julian calendars for jQuery. + Written by Olivier M. (olivierweb@ifrance.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['eo'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januaro','Februaro','Marto','Aprilo','Majo','Junio', + 'Julio','Aŭgusto','Septembro','Oktobro','Novembro','Decembro'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', + 'Jul','Aŭg','Sep','Okt','Nov','Dec'], + dayNames: ['Dimanĉo','Lundo','Mardo','Merkredo','Ĵaŭdo','Vendredo','Sabato'], + dayNamesShort: ['Dim','Lun','Mar','Mer','Ĵaŭ','Ven','Sab'], + dayNamesMin: ['Di','Lu','Ma','Me','Ĵa','Ve','Sa'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['eo'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['eo']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-es-AR.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-es-AR.js new file mode 100644 index 0000000..86244af --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-es-AR.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Spanish/Argentina localisation for Gregorian/Julian calendars for jQuery. + Written by Esteban Acosta Villafane (esteban.acosta@globant.com) of Globant (http://www.globant.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['es-AR'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio', + 'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'], + monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun', + 'Jul','Ago','Sep','Oct','Nov','Dic'], + dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'], + dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'], + dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['es-AR'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['es-AR']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-es-PE.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-es-PE.js new file mode 100644 index 0000000..c429959 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-es-PE.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Spanish/Perú localisation for Gregorian/Julian calendars for jQuery. + Written by Fischer Tirado (fishdev@globant.com) of ASIX (http://www.asixonline.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['es-PE'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio', + 'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'], + monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun', + 'Jul','Ago','Sep','Oct','Nov','Dic'], + dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'], + dayNamesShort: ['Dom','Lun','Mar','Mié','Jue','Vie','Sab'], + dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sa'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['es-PE'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['es-PE']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-es.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-es.js new file mode 100644 index 0000000..b35a06a --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-es.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Spanish localisation for Gregorian/Julian calendars for jQuery. + Traducido por Vester (xvester@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['es'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio', + 'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'], + monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun', + 'Jul','Ago','Sep','Oct','Nov','Dic'], + dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'], + dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'], + dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['es'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['es']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-et.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-et.js new file mode 100644 index 0000000..ed11011 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-et.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Estonian localisation for Gregorian/Julian calendars for jQuery. + Written by Mart Sõmermaa (mrts.pydev at gmail com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['et'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Jaanuar','Veebruar','Märts','Aprill','Mai','Juuni', + 'Juuli','August','September','Oktoober','November','Detsember'], + monthNamesShort: ['Jaan', 'Veebr', 'Märts', 'Apr', 'Mai', 'Juuni', + 'Juuli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dets'], + dayNames: ['Pühapäev', 'Esmaspäev', 'Teisipäev', 'Kolmapäev', 'Neljapäev', 'Reede', 'Laupäev'], + dayNamesShort: ['Pühap', 'Esmasp', 'Teisip', 'Kolmap', 'Neljap', 'Reede', 'Laup'], + dayNamesMin: ['P','E','T','K','N','R','L'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['et'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['et']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-eu.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-eu.js new file mode 100644 index 0000000..b1cc45d --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-eu.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Basque localisation for Gregorian/Julian calendars for jQuery. + Karrikas-ek itzulia (karrikas@karrikas.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['eu'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Urtarrila','Otsaila','Martxoa','Apirila','Maiatza','Ekaina', + 'Uztaila','Abuztua','Iraila','Urria','Azaroa','Abendua'], + monthNamesShort: ['Urt','Ots','Mar','Api','Mai','Eka', + 'Uzt','Abu','Ira','Urr','Aza','Abe'], + dayNames: ['Igandea','Astelehena','Asteartea','Asteazkena','Osteguna','Ostirala','Larunbata'], + dayNamesShort: ['Iga','Ast','Ast','Ast','Ost','Ost','Lar'], + dayNamesMin: ['Ig','As','As','As','Os','Os','La'], + digits: null, + dateFormat: 'yyyy/mm/dd', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['eu'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['eu']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fa.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fa.js new file mode 100644 index 0000000..7eb5e7d --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fa.js @@ -0,0 +1,23 @@ +/* http://keith-wood.name/calendars.html + Farsi/Persian localisation for Gregorian/Julian calendars for jQuery. + Javad Mowlanezhad -- jmowla@gmail.com */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['fa'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['فروردين','ارديبهشت','خرداد','تير','مرداد','شهريور', + 'مهر','آبان','آذر','دي','بهمن','اسفند'], + monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'], + dayNames: ['يکشنبه','دوشنبه','سه‌شنبه','چهارشنبه','پنجشنبه','جمعه','شنبه'], + dayNamesShort: ['ي','د','س','چ','پ','ج', 'ش'], + dayNamesMin: ['ي','د','س','چ','پ','ج', 'ش'], + digits: $.calendars.substituteDigits(['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹']), + dateFormat: 'yyyy/mm/dd', + firstDay: 6, + isRTL: true + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['fa'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['fa']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fi.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fi.js new file mode 100644 index 0000000..1d57387 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fi.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Finnish localisation for Gregorian/Julian calendars for jQuery. + Written by Harri Kilpiö (harrikilpio@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['fi'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu', + 'Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu'], + monthNamesShort: ['Tammi','Helmi','Maalis','Huhti','Touko','Kesä', + 'Heinä','Elo','Syys','Loka','Marras','Joulu'], + dayNamesShort: ['Su','Ma','Ti','Ke','To','Pe','Su'], + dayNames: ['Sunnuntai','Maanantai','Tiistai','Keskiviikko','Torstai','Perjantai','Lauantai'], + dayNamesMin: ['Su','Ma','Ti','Ke','To','Pe','La'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['fi'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['fi']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fo.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fo.js new file mode 100644 index 0000000..ce966d0 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fo.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Faroese localisation for Gregorian/Julian calendars for jQuery. + Written by Sverri Mohr Olsen, sverrimo@gmail.com */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['fo'] = { + name: 'Gregorianskur', + epochs: ['BCE', 'CE'], + monthNames: ['Januar','Februar','Mars','Apríl','Mei','Juni', + 'Juli','August','September','Oktober','November','Desember'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun', + 'Jul','Aug','Sep','Okt','Nov','Des'], + dayNames: ['Sunnudagur','Mánadagur','Týsdagur','Mikudagur','Hósdagur','Fríggjadagur','Leyardagur'], + dayNamesShort: ['Sun','Mán','Týs','Mik','Hós','Frí','Ley'], + dayNamesMin: ['Su','Má','Tý','Mi','Hó','Fr','Le'], + digits: null, + dateFormat: 'dd-mm-yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['fo'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['fo']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fr-CH.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fr-CH.js new file mode 100644 index 0000000..75e5ba1 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fr-CH.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Swiss French localisation for Gregorian/Julian calendars for jQuery. + Written by Martin Voelkle (martin.voelkle@e-tc.ch). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['fr-CH'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin', + 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'], + monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun', + 'Jul','Aoû','Sep','Oct','Nov','Déc'], + dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'], + dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'], + dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['fr-CH'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['fr-CH']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fr.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fr.js new file mode 100644 index 0000000..1a91bd3 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-fr.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + French localisation for Gregorian/Julian calendars for jQuery. + Stéphane Nahmani (sholby@sholby.net). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['fr'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin', + 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'], + monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun', + 'Jul','Aoû','Sep','Oct','Nov','Déc'], + dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'], + dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'], + dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['fr'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['fr']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-gl.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-gl.js new file mode 100644 index 0000000..361a282 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-gl.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Iniciacion en galego para a extensión 'UI date picker' para jQuery. + Traducido por Manuel (McNuel@gmx.net). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['gl'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Xaneiro','Febreiro','Marzo','Abril','Maio','Xuño', + 'Xullo','Agosto','Setembro','Outubro','Novembro','Decembro'], + monthNamesShort: ['Xan','Feb','Mar','Abr','Mai','Xuñ', + 'Xul','Ago','Set','Out','Nov','Dec'], + dayNames: ['Domingo','Luns','Martes','Mércores','Xoves','Venres','Sábado'], + dayNamesShort: ['Dom','Lun','Mar','Mér','Xov','Ven','Sáb'], + dayNamesMin: ['Do','Lu','Ma','Me','Xo','Ve','Sá'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['gl'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['gl']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-gu.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-gu.js new file mode 100644 index 0000000..6d3d7e4 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-gu.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Gujarati (ગુજરાતી) localisation for Gregorian/Julian calendars for jQuery. + Naymesh Mistry (naymesh@yahoo.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['gu'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['જાન્યુઆરી','ફેબ્રુઆરી','માર્ચ','એપ્રિલ','મે','જૂન', + 'જુલાઈ','ઑગસ્ટ','સપ્ટેમ્બર','ઑક્ટોબર','નવેમ્બર','ડિસેમ્બર'], + monthNamesShort: ['જાન્યુ','ફેબ્રુ','માર્ચ','એપ્રિલ','મે','જૂન', + 'જુલાઈ','ઑગસ્ટ','સપ્ટે','ઑક્ટો','નવે','ડિસે'], + dayNames: ['રવિવાર','સોમવાર','મંગળવાર','બુધવાર','ગુરુવાર','શુક્રવાર','શનિવાર'], + dayNamesShort: ['રવિ','સોમ','મંગળ','બુધ','ગુરુ','શુક્ર','શનિ'], + dayNamesMin: ['ર','સો','મં','બુ','ગુ','શુ','શ'], + digits: $.calendars.substituteDigits(['૦', '૧', '૨', '૩', '૪', '૫', '૬', '૭', '૮', '૯']), + dateFormat: 'dd-M-yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['gu'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['gu']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-he.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-he.js new file mode 100644 index 0000000..873a1f9 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-he.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Hebrew localisation for Gregorian/Julian calendars for jQuery. + Written by Amir Hardon (ahardon at gmail dot com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['he'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', + 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], + monthNamesShort: ['1','2','3','4','5','6', + '7','8','9','10','11','12'], + dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], + dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], + dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + isRTL: true + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['he'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['he']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hi-IN.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hi-IN.js new file mode 100644 index 0000000..948544d --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hi-IN.js @@ -0,0 +1,22 @@ +/* http://keith-wood.name/calendars.html + Hindi INDIA localisation for Gregorian/Julian calendars for jQuery. + Written by Pawan Kumar Singh. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['hi-IN'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['जनवरी',' फरवरी', 'मार्च', 'अप्रैल', 'मई', 'जून','जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'], + monthNamesShort: ['जन', 'फर', 'मार्च','अप्रै', 'मई', 'जून','जुलाई', 'अग', 'सित', 'अक्टू', 'नव', 'दिस'], + dayNames: ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'गुरुवार', 'शुक्रवार', 'शनिवार'], + dayNamesShort: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'], + dayNamesMin: ['र','सो','मं','बु','गु','शु','श'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['hi-IN'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['hi-IN']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hr.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hr.js new file mode 100644 index 0000000..97a76c7 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hr.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Croatian localisation for Gregorian/Julian calendars for jQuery. + Written by Vjekoslav Nesek. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['hr'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Siječanj','Veljača','Ožujak','Travanj','Svibanj','Lipanj', + 'Srpanj','Kolovoz','Rujan','Listopad','Studeni','Prosinac'], + monthNamesShort: ['Sij','Velj','Ožu','Tra','Svi','Lip', + 'Srp','Kol','Ruj','Lis','Stu','Pro'], + dayNames: ['Nedjelja','Ponedjeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], + dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], + dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], + digits: null, + dateFormat: 'dd.mm.yyyy.', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['hr'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['hr']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hu.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hu.js new file mode 100644 index 0000000..8042813 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hu.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Hungarian localisation for Gregorian/Julian calendars for jQuery. + Written by Istvan Karaszi (jquerycalendar@spam.raszi.hu). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['hu'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június', + 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'], + monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún', + 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'], + dayNames: ['Vasárnap', 'Hétfö', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'], + dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'], + dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'], + digits: null, + dateFormat: 'yyyy-mm-dd', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['hu'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['hu']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hy.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hy.js new file mode 100644 index 0000000..eb907be --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-hy.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Armenian localisation for Gregorian/Julian calendars for jQuery. + Written by Levon Zakaryan (levon.zakaryan@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['hy'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Հունվար','Փետրվար','Մարտ','Ապրիլ','Մայիս','Հունիս', + 'Հուլիս','Օգոստոս','Սեպտեմբեր','Հոկտեմբեր','Նոյեմբեր','Դեկտեմբեր'], + monthNamesShort: ['Հունվ','Փետր','Մարտ','Ապր','Մայիս','Հունիս', + 'Հուլ','Օգս','Սեպ','Հոկ','Նոյ','Դեկ'], + dayNames: ['կիրակի','եկուշաբթի','երեքշաբթի','չորեքշաբթի','հինգշաբթի','ուրբաթ','շաբաթ'], + dayNamesShort: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'], + dayNamesMin: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['hy'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['hy']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-id.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-id.js new file mode 100644 index 0000000..b205d93 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-id.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Indonesian localisation for Gregorian/Julian calendars for jQuery. + Written by Deden Fathurahman (dedenf@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['id'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januari','Februari','Maret','April','Mei','Juni', + 'Juli','Agustus','September','Oktober','Nopember','Desember'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun', + 'Jul','Agus','Sep','Okt','Nop','Des'], + dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'], + dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'], + dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['id'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['id']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-is.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-is.js new file mode 100644 index 0000000..bbe49c4 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-is.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Icelandic localisation for Gregorian/Julian calendars for jQuery. + Written by Haukur H. Thorsson (haukur@eskill.is). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['is'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Janúar','Febrúar','Mars','Apríl','Maí','Júní', + 'Júlí','Ágúst','September','Október','Nóvember','Desember'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Maí','Jún', + 'Júl','Ágú','Sep','Okt','Nóv','Des'], + dayNames: ['Sunnudagur','Mánudagur','Þriðjudagur','Miðvikudagur','Fimmtudagur','Föstudagur','Laugardagur'], + dayNamesShort: ['Sun','Mán','Þri','Mið','Fim','Fös','Lau'], + dayNamesMin: ['Su','Má','Þr','Mi','Fi','Fö','La'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['is'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['is']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-it.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-it.js new file mode 100644 index 0000000..71e249b --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-it.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Italian localisation for Gregorian/Julian calendars for jQuery. + Written by Apaella (apaella@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['it'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno', + 'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'], + monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu', + 'Lug','Ago','Set','Ott','Nov','Dic'], + dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'], + dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'], + dayNamesMin: ['Do','Lu','Ma','Me','Gio','Ve','Sa'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['it'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['it']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ja.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ja.js new file mode 100644 index 0000000..65ce576 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ja.js @@ -0,0 +1,25 @@ +/* http://keith-wood.name/calendars.html + Japanese localisation for Gregorian/Julian calendars for jQuery. + Written by Kentaro SATO (kentaro@ranvis.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ja'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['1月','2月','3月','4月','5月','6月', + '7月','8月','9月','10月','11月','12月'], + monthNamesShort: ['1月','2月','3月','4月','5月','6月', + '7月','8月','9月','10月','11月','12月'], + dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'], + dayNamesShort: ['日','月','火','水','木','金','土'], + dayNamesMin: ['日','月','火','水','木','金','土'], + digits: $.calendars.substituteChineseDigits( + ['〇', '一', '二', '三', '四', '五', '六', '七', '八', '九'], ['', '十', '百', '千']), + dateFormat: 'yyyy/mm/dd', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ja'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ja']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ka.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ka.js new file mode 100644 index 0000000..ec3390f --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ka.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Georgian localisation for Gregorian/Julian calendars for jQuery. + Andrei Gorbushkin. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ka'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['იანვარი','თებერვალი','მარტი','აპრილი','მაისი','ივნისი', + 'ივლისი','აგვისტო','სექტემბერი','ოქტომბერი','ნოემბერი','დეკემბერი'], + monthNamesShort: ['იან', 'თებ', 'მარ', 'აპრ', 'მაისი', 'ივნ', + 'ივლ', 'აგვ', 'სექ', 'ოქტ', 'ნოე', 'დეკ'], + dayNames: ['კვირა', 'ორშაბათი', 'სამშაბათი', 'ოთხშაბათი', 'ხუთშაბათი', 'პარასკევი', 'შაბათი'], + dayNamesShort: ['კვ', 'ორშ', 'სამ', 'ოთხ', 'ხუთ', 'პარ', 'შაბ'], + dayNamesMin: ['კვ','ორ','სმ','ოთ', 'ხშ', 'პრ','შბ'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ka'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ka']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-km.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-km.js new file mode 100644 index 0000000..9d4ddc9 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-km.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Khmer initialisation for Gregorian/Julian calendars for jQuery. + Written by Sovichet Tep (sovichet.tep@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['km'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['ខែ​មករា','ខែ​កុម្ភៈ','ខែ​មិនា','ខែ​មេសា','ខែ​ឧសភា','ខែ​មិថុនា', + 'ខែ​កក្កដា','ខែ​សីហា','ខែ​កញ្ញា','ខែ​តុលា','ខែ​វិច្ឆិកា','ខែ​ធ្នូ'], + monthNamesShort: ['មក', 'កុ', 'មិនា', 'មេ', 'ឧស', 'មិថុ', + 'កក្ក', 'សី', 'កញ្ញា', 'តុលា', 'វិច្ឆិ', 'ធ្នូ'], + dayNames: ['ថ្ងៃ​អាទិត្យ', 'ថ្ងៃ​ចន្ទ', 'ថ្ងៃ​អង្គារ', 'ថ្ងៃ​ពុធ', 'ថ្ងៃ​ព្រហស្បត្តិ៍', 'ថ្ងៃ​សុក្រ', 'ថ្ងៃ​សៅរ៍'], + dayNamesShort: ['អា', 'ចន្ទ', 'អង្គ', 'ពុធ', 'ព្រហ', 'សុ', 'សៅរ៍'], + dayNamesMin: ['អា','ច','អ','ពុ','ព្រ','សុ','ស'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['km'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['km']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ko.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ko.js new file mode 100644 index 0000000..74d3428 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ko.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Korean localisation for Gregorian/Julian calendars for jQuery. + Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ko'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['1월','2월','3월','4월','5월','6월', + '7월','8월','9월','10월','11월','12월'], + monthNamesShort: ['1월','2월','3월','4월','5월','6월', + '7월','8월','9월','10월','11월','12월'], + dayNames: ['일요일','월요일','화요일','수요일','목요일','금요일','토요일'], + dayNamesShort: ['일','월','화','수','목','금','토'], + dayNamesMin: ['일','월','화','수','목','금','토'], + digits: null, + dateFormat: 'yyyy-mm-dd', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ko'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ko']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-lt.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-lt.js new file mode 100644 index 0000000..bb7321e --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-lt.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Lithuanian localisation for Gregorian/Julian calendars for jQuery. + Arturas Paleicikas . */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['lt'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Sausis','Vasaris','Kovas','Balandis','Gegužė','Birželis', + 'Liepa','Rugpjūtis','Rugsėjis','Spalis','Lapkritis','Gruodis'], + monthNamesShort: ['Sau','Vas','Kov','Bal','Geg','Bir', + 'Lie','Rugp','Rugs','Spa','Lap','Gru'], + dayNames: ['sekmadienis','pirmadienis','antradienis','trečiadienis','ketvirtadienis','penktadienis','šeštadienis'], + dayNamesShort: ['sek','pir','ant','tre','ket','pen','šeš'], + dayNamesMin: ['Se','Pr','An','Tr','Ke','Pe','Še'], + digits: null, + dateFormat: 'yyyy-mm-dd', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['lt'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['lt']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-lv.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-lv.js new file mode 100644 index 0000000..3f61039 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-lv.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Latvian localisation for Gregorian/Julian calendars for jQuery. + Arturas Paleicikas . */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['lv'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Janvāris','Februāris','Marts','Aprīlis','Maijs','Jūnijs', + 'Jūlijs','Augusts','Septembris','Oktobris','Novembris','Decembris'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Mai','Jūn', + 'Jūl','Aug','Sep','Okt','Nov','Dec'], + dayNames: ['svētdiena','pirmdiena','otrdiena','trešdiena','ceturtdiena','piektdiena','sestdiena'], + dayNamesShort: ['svt','prm','otr','tre','ctr','pkt','sst'], + dayNamesMin: ['Sv','Pr','Ot','Tr','Ct','Pk','Ss'], + digits: null, + dateFormat: 'dd-mm-yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['lv'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['lv']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-me-ME.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-me-ME.js new file mode 100644 index 0000000..6e0da73 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-me-ME.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Montenegrin localisation for Gregorian/Julian calendars for jQuery. + By Miloš Milošević - fleka d.o.o. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['me-ME'] = { + name: 'Gregorijanski', + epochs: ['pne', 'ne'], + monthNames: ['Januar','Februar','Mart','April','Maj','Jun', + 'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'], + monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', + 'Jul', 'Avg', 'Sep', 'Okt', 'Nov', 'Dec'], + dayNames: ['Neđelja', 'Poneđeljak', 'Utorak', 'Srijeda', 'Četvrtak', 'Petak', 'Subota'], + dayNamesShort: ['Neđ', 'Pon', 'Uto', 'Sri', 'Čet', 'Pet', 'Sub'], + dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['me-ME'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['me-ME']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-me.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-me.js new file mode 100644 index 0000000..effa29f --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-me.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Montenegrin localisation for Gregorian/Julian calendars for jQuery. + By Miloš Milošević - fleka d.o.o. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['me'] = { + name: 'Грегоријански', + epochs: ['пне', 'не'], + monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун', + 'Јул','Август','Септембар','Октобар','Новембар','Децембар'], + monthNamesShort: ['Јан', 'Феб', 'Мар', 'Апр', 'Мај', 'Јун', + 'Јул', 'Авг', 'Сеп', 'Окт', 'Нов', 'Дец'], + dayNames: ['Неђеља', 'Понеђељак', 'Уторак', 'Сриједа', 'Четвртак', 'Петак', 'Субота'], + dayNamesShort: ['Неђ', 'Пон', 'Уто', 'Сри', 'Чет', 'Пет', 'Суб'], + dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['me'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['me']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-mk.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-mk.js new file mode 100644 index 0000000..eb59ad7 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-mk.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Македонски MK localisation for Gregorian/Julian calendars for jQuery. + Hajan Selmani (hajan [at] live [dot] com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['mk'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Јануари','Февруари','Март','Април','Мај','Јуни', + 'Јули','Август','Септември','Октомври','Ноември','Декември'], + monthNamesShort: ['Јан', 'Фев', 'Мар', 'Апр', 'Мај', 'Јун', + 'Јул', 'Авг', 'Сеп', 'Окт', 'Нов', 'Дек'], + dayNames: ['Недела', 'Понеделник', 'Вторник', 'Среда', 'Четврток', 'Петок', 'Сабота'], + dayNamesShort: ['Нед', 'Пон', 'Вто', 'Сре', 'Чет', 'Пет', 'Саб'], + dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Са'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['mk'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['mk']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ml.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ml.js new file mode 100644 index 0000000..0effb95 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ml.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Malayalam localisation for Gregorian/Julian calendars for jQuery. + Saji Nediyanchath (saji89@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ml'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['ജനുവരി','ഫെബ്രുവരി','മാര്‍ച്ച്','ഏപ്രില്‍','മേയ്','ജൂണ്‍', + 'ജൂലൈ','ആഗസ്റ്റ്','സെപ്റ്റംബര്‍','ഒക്ടോബര്‍','നവംബര്‍','ഡിസംബര്‍'], + monthNamesShort: ['ജനു', 'ഫെബ്', 'മാര്‍', 'ഏപ്രി', 'മേയ്', 'ജൂണ്‍', + 'ജൂലാ', 'ആഗ', 'സെപ്', 'ഒക്ടോ', 'നവം', 'ഡിസ'], + dayNames: ['ഞായര്‍', 'തിങ്കള്‍', 'ചൊവ്വ', 'ബുധന്‍', 'വ്യാഴം', 'വെള്ളി', 'ശനി'], + dayNamesShort: ['ഞായ', 'തിങ്ക', 'ചൊവ്വ', 'ബുധ', 'വ്യാഴം', 'വെള്ളി', 'ശനി'], + dayNamesMin: ['ഞാ','തി','ചൊ','ബു','വ്യാ','വെ','ശ'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ml'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ml']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ms.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ms.js new file mode 100644 index 0000000..e4116b2 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ms.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Malaysian localisation for Gregorian/Julian calendars for jQuery. + Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ms'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januari','Februari','Mac','April','Mei','Jun', + 'Julai','Ogos','September','Oktober','November','Disember'], + monthNamesShort: ['Jan','Feb','Mac','Apr','Mei','Jun', + 'Jul','Ogo','Sep','Okt','Nov','Dis'], + dayNames: ['Ahad','Isnin','Selasa','Rabu','Khamis','Jumaat','Sabtu'], + dayNamesShort: ['Aha','Isn','Sel','Rab','Kha','Jum','Sab'], + dayNamesMin: ['Ah','Is','Se','Ra','Kh','Ju','Sa'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ms'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ms']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-mt.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-mt.js new file mode 100644 index 0000000..40d721b --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-mt.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Maltese localisation for Gregorian/Julian calendars for jQuery. + Written by Chritian Sciberras (uuf6429@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['mt'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Jannar','Frar','Marzu','April','Mejju','Ġunju', + 'Lulju','Awissu','Settembru','Ottubru','Novembru','Diċembru'], + monthNamesShort: ['Jan', 'Fra', 'Mar', 'Apr', 'Mej', 'Ġun', + 'Lul', 'Awi', 'Set', 'Ott', 'Nov', 'Diċ'], + dayNames: ['Il-Ħadd', 'It-Tnejn', 'It-Tlieta', 'L-Erbgħa', 'Il-Ħamis', 'Il-Ġimgħa', 'Is-Sibt'], + dayNamesShort: ['Ħad', 'Tne', 'Tli', 'Erb', 'Ħam', 'Ġim', 'Sib'], + dayNamesMin: ['Ħ','T','T','E','Ħ','Ġ','S'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['mt'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['mt']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-nl-BE.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-nl-BE.js new file mode 100644 index 0000000..a1ae8df --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-nl-BE.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Dutch/Belgian localisation for Gregorian/Julian calendars for jQuery. + Written by Mathias Bynens . */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['nl-BE'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni', + 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], + monthNamesShort: ['jan', 'feb', 'maa', 'apr', 'mei', 'jun', + 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], + dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], + dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'], + dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['nl-BE'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['nl-BE']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-nl.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-nl.js new file mode 100644 index 0000000..8d6e5e8 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-nl.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Dutch localisation for Gregorian/Julian calendars for jQuery. + Written by Mathias Bynens . */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['nl'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni', + 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], + monthNamesShort: ['jan', 'feb', 'maa', 'apr', 'mei', 'jun', + 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], + dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], + dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'], + dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], + digits: null, + dateFormat: 'dd-mm-yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['nl'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['nl']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-no.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-no.js new file mode 100644 index 0000000..fcdd02c --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-no.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Norwegian localisation for Gregorian/Julian calendars for jQuery. + Written by Naimdjon Takhirov (naimdjon@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['no'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januar','Februar','Mars','April','Mai','Juni', + 'Juli','August','September','Oktober','November','Desember'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Mai','Jun', + 'Jul','Aug','Sep','Okt','Nov','Des'], + dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], + dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], + dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['no'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['no']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-pa.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-pa.js new file mode 100644 index 0000000..4e4aed2 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-pa.js @@ -0,0 +1,23 @@ +/* http://keith-wood.name/calendars.html + Punjabi localisation for Gregorian/Julian calendars for jQuery. + Sarbjit Singh (sanbroz@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['pa'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['ਜਨਵਰੀ','ਫ਼ਰਵਰੀ','ਮਾਰਚ','ਅਪ੍ਰੈਲ','ਮਈ','ਜੂਨ', + 'ਜੁਲਾਈ','ਅਗਸਤ','ਸਤੰਬਰ','ਅਕਤੂਬਰ','ਨਵੰਬਰ','ਦਸੰਬਰ'], + monthNamesShort: ['ਜਨ', 'ਫ਼ਰ', 'ਮਾਰ', 'ਅਪ੍ਰੈ', 'ਮਈ', 'ਜੂਨ', 'ਜੁਲਾ', 'ਅਗ', 'ਸਤੰ', 'ਅਕ', 'ਨਵੰ', 'ਦਸੰ'], + dayNames: ['ਐਤਵਾਰ', 'ਸੋਮਵਾਰ', 'ਮੰਗਲਵਾਰ', 'ਬੁੱਧਵਾਰ', 'ਵੀਰਵਾਰ', 'ਸ਼ੁੱਕਰਵਾਰ', 'ਸ਼ਨਿੱਚਰਵਾਰ'], + dayNamesShort: ['ਐਤ', 'ਸੋਮ', 'ਮੰਗਲ', 'ਬੁੱਧ', 'ਵੀਰ', 'ਸ਼ੁੱਕਰ', 'ਸ਼ਨਿੱਚਰ'], + dayNamesMin: ['ਐ', 'ਸੋ', 'ਮੰ', 'ਬੁੱ', 'ਵੀ', 'ਸ਼ੁੱ', 'ਸ਼'], + digits: $.calendars.substituteDigits(['੦', '੧', '੨', '੩', '੪', '੫', '੬', '੭', '੮', '੯']), + dateFormat: 'dd-mm-yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['pa'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['pa']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-pl.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-pl.js new file mode 100644 index 0000000..a33c684 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-pl.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Polish localisation for Gregorian/Julian calendars for jQuery. + Written by Jacek Wysocki (jacek.wysocki@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['pl'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec', + 'Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień'], + monthNamesShort: ['Sty','Lu','Mar','Kw','Maj','Cze', + 'Lip','Sie','Wrz','Pa','Lis','Gru'], + dayNames: ['Niedziela','Poniedzialek','Wtorek','Środa','Czwartek','Piątek','Sobota'], + dayNamesShort: ['Nie','Pn','Wt','Śr','Czw','Pt','So'], + dayNamesMin: ['N','Pn','Wt','Śr','Cz','Pt','So'], + digits: null, + dateFormat: 'yyyy-mm-dd', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['pl'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['pl']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-pt-BR.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-pt-BR.js new file mode 100644 index 0000000..96f58a2 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-pt-BR.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Brazilian Portuguese localisation for Gregorian/Julian calendars for jQuery. + Written by Leonildo Costa Silva (leocsilva@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['pt-BR'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', + 'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], + monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', + 'Jul','Ago','Set','Out','Nov','Dez'], + dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'], + dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], + dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['pt-BR'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['pt-BR']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-rm.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-rm.js new file mode 100644 index 0000000..6c742db --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-rm.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Romansh localisation for Gregorian/Julian calendars for jQuery. + Yvonne Gienal (yvonne.gienal@educa.ch). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['rm'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Schaner','Favrer','Mars','Avrigl','Matg','Zercladur', + 'Fanadur','Avust','Settember','October','November','December'], + monthNamesShort: ['Scha','Fev','Mar','Avr','Matg','Zer', + 'Fan','Avu','Sett','Oct','Nov','Dec'], + dayNames: ['Dumengia','Glindesdi','Mardi','Mesemna','Gievgia','Venderdi','Sonda'], + dayNamesShort: ['Dum','Gli','Mar','Mes','Gie','Ven','Som'], + dayNamesMin: ['Du','Gl','Ma','Me','Gi','Ve','So'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['rm'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['rm']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ro.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ro.js new file mode 100644 index 0000000..3ebddc1 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ro.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Romanian localisation for Gregorian/Julian calendars for jQuery. + Written by Edmond L. (ll_edmond@walla.com) and Ionut G. Stan (ionut.g.stan@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ro'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie', + 'Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie'], + monthNamesShort: ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun', + 'Iul', 'Aug', 'Sep', 'Oct', 'Noi', 'Dec'], + dayNames: ['Duminică', 'Luni', 'Marti', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'], + dayNamesShort: ['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'], + dayNamesMin: ['Du','Lu','Ma','Mi','Jo','Vi','Sâ'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ro'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ro']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ru.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ru.js new file mode 100644 index 0000000..7f8895b --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ru.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Russian localisation for Gregorian/Julian calendars for jQuery. + Written by Andrew Stromnov (stromnov@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ru'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь', + 'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'], + monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', + 'Июл','Авг','Сен','Окт','Ноя','Дек'], + dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'], + dayNamesShort: ['вск','пнд','втр','срд','чтв','птн','сбт'], + dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ru'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ru']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sk.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sk.js new file mode 100644 index 0000000..86f65a6 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sk.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Slovak localisation for Gregorian/Julian calendars for jQuery. + Written by Vojtech Rinik (vojto@hmm.sk). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['sk'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Január','Február','Marec','Apríl','Máj','Jún', + 'Júl','August','September','Október','November','December'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Máj','Jún', + 'Júl','Aug','Sep','Okt','Nov','Dec'], + dayNames: ['Nedel\'a','Pondelok','Utorok','Streda','Štvrtok','Piatok','Sobota'], + dayNamesShort: ['Ned','Pon','Uto','Str','Štv','Pia','Sob'], + dayNamesMin: ['Ne','Po','Ut','St','Št','Pia','So'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['sk'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['sk']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sl.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sl.js new file mode 100644 index 0000000..dd98d1d --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sl.js @@ -0,0 +1,25 @@ +/* http://keith-wood.name/calendars.html + Slovenian localisation for Gregorian/Julian calendars for jQuery. + Written by Jaka Jancar (jaka@kubje.org). */ +/* c = č, s = š z = ž C = Č S = Š Z = Ž */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['sl'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januar','Februar','Marec','April','Maj','Junij', + 'Julij','Avgust','September','Oktober','November','December'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', + 'Jul','Avg','Sep','Okt','Nov','Dec'], + dayNames: ['Nedelja','Ponedeljek','Torek','Sreda','Četrtek','Petek','Sobota'], + dayNamesShort: ['Ned','Pon','Tor','Sre','Čet','Pet','Sob'], + dayNamesMin: ['Ne','Po','To','Sr','Če','Pe','So'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['sl'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['sl']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sq.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sq.js new file mode 100644 index 0000000..3e0c9b3 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sq.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Albanian localisation for Gregorian/Julian calendars for jQuery. + Written by Flakron Bytyqi (flakron@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['sq'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Janar','Shkurt','Mars','Prill','Maj','Qershor', + 'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'], + monthNamesShort: ['Jan','Shk','Mar','Pri','Maj','Qer', + 'Kor','Gus','Sht','Tet','Nën','Dhj'], + dayNames: ['E Diel','E Hënë','E Martë','E Mërkurë','E Enjte','E Premte','E Shtune'], + dayNamesShort: ['Di','Hë','Ma','Më','En','Pr','Sh'], + dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['sq'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['sq']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sr-SR.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sr-SR.js new file mode 100644 index 0000000..fc6722e --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sr-SR.js @@ -0,0 +1,23 @@ +/* http://keith-wood.name/calendars.html + Serbian localisation for Gregorian/Julian calendars for jQuery. + Written by Dejan Dimić. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['sr-SR'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januar','Februar','Mart','April','Maj','Jun', + 'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun','Jul','Avg','Sep','Okt','Nov','Dec'], + dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'], + dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'], + dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['sr-SR'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['sr-SR']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sr.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sr.js new file mode 100644 index 0000000..30a1b69 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sr.js @@ -0,0 +1,23 @@ +/* http://keith-wood.name/calendars.html + Serbian localisation for Gregorian/Julian calendars for jQuery. + Written by Dejan Dimić. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['sr'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун', + 'Јул','Август','Септембар','Октобар','Новембар','Децембар'], + monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун','Јул','Авг','Сеп','Окт','Нов','Дец'], + dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'], + dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'], + dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['sr'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['sr']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sv.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sv.js new file mode 100644 index 0000000..5176c1b --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-sv.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Swedish localisation for Gregorian/Julian calendars for jQuery. + Written by Anders Ekdahl (anders@nomadiz.se). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['sv'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Januari','Februari','Mars','April','Maj','Juni', + 'Juli','Augusti','September','Oktober','November','December'], + monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', + 'Jul','Aug','Sep','Okt','Nov','Dec'], + dayNames: ['Söndag','Måndag','Tisdag','Onsdag','Torsdag','Fredag','Lördag'], + dayNamesShort: ['Sön','Mån','Tis','Ons','Tor','Fre','Lör'], + dayNamesMin: ['Sö','Må','Ti','On','To','Fr','Lö'], + digits: null, + dateFormat: 'yyyy-mm-dd', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['sv'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['sv']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ta.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ta.js new file mode 100644 index 0000000..1a2e363 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ta.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Tamil (UTF-8) localisation for Gregorian/Julian calendars for jQuery. + Written by S A Sureshkumar (saskumar@live.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ta'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['தை','மாசி','பங்குனி','சித்திரை','வைகாசி','ஆனி', + 'ஆடி','ஆவணி','புரட்டாசி','ஐப்பசி','கார்த்திகை','மார்கழி'], + monthNamesShort: ['தை','மாசி','பங்','சித்','வைகா','ஆனி', + 'ஆடி','ஆவ','புர','ஐப்','கார்','மார்'], + dayNames: ['ஞாயிற்றுக்கிழமை','திங்கட்கிழமை','செவ்வாய்க்கிழமை','புதன்கிழமை','வியாழக்கிழமை','வெள்ளிக்கிழமை','சனிக்கிழமை'], + dayNamesShort: ['ஞாயிறு','திங்கள்','செவ்வாய்','புதன்','வியாழன்','வெள்ளி','சனி'], + dayNamesMin: ['ஞா','தி','செ','பு','வி','வெ','ச'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ta'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ta']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-th.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-th.js new file mode 100644 index 0000000..b5f6a7d --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-th.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Thai localisation for Gregorian/Julian calendars for jQuery. + Written by pipo (pipo@sixhead.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['th'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน', + 'กรกฎาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม'], + monthNamesShort: ['ม.ค.','ก.พ.','มี.ค.','เม.ย.','พ.ค.','มิ.ย.', + 'ก.ค.','ส.ค.','ก.ย.','ต.ค.','พ.ย.','ธ.ค.'], + dayNames: ['อาทิตย์','จันทร์','อังคาร','พุธ','พฤหัสบดี','ศุกร์','เสาร์'], + dayNamesShort: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'], + dayNamesMin: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['th'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['th']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-tr.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-tr.js new file mode 100644 index 0000000..114f6bd --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-tr.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Turkish localisation for Gregorian/Julian calendars for jQuery. + Written by Izzet Emre Erkan (kara@karalamalar.net). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['tr'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran', + 'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'], + monthNamesShort: ['Oca','Şub','Mar','Nis','May','Haz', + 'Tem','Ağu','Eyl','Eki','Kas','Ara'], + dayNames: ['Pazar','Pazartesi','Salı','Çarşamba','Perşembe','Cuma','Cumartesi'], + dayNamesShort: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], + dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['tr'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['tr']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-tt.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-tt.js new file mode 100644 index 0000000..c5a9f6c --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-tt.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Tatar localisation for Gregorian/Julian calendars for jQuery. + Written by Ирек Хаҗиев (khazirek@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['tt'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Гынвар','Февраль','Март','Апрель','Май','Июнь', + 'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'], + monthNamesShort: ['Гыйн','Фев','Мар','Апр','Май','Июн', + 'Июл','Авг','Сен','Окт','Ноя','Дек'], + dayNames: ['якшәмбе','дүшәмбе','сишәмбе','чәршәмбе','пәнҗешәмбе','җомга','шимбә'], + dayNamesShort: ['якш','дүш','сиш','чәр','пән','җом','шим'], + dayNamesMin: ['Як','Дү','Си','Чә','Пә','Җо','Ши'], + digits: null, + dateFormat: 'dd.mm.yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['tt'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['tt']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-uk.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-uk.js new file mode 100644 index 0000000..b675836 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-uk.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Ukrainian localisation for Gregorian/Julian calendars for jQuery. + Written by Maxim Drogobitskiy (maxdao@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['uk'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Січень','Лютий','Березень','Квітень','Травень','Червень', + 'Липень','Серпень','Вересень','Жовтень','Листопад','Грудень'], + monthNamesShort: ['Січ','Лют','Бер','Кві','Тра','Чер', + 'Лип','Сер','Вер','Жов','Лис','Гру'], + dayNames: ['неділя','понеділок','вівторок','середа','четвер','п\'ятниця','субота'], + dayNamesShort: ['нед','пнд','вів','срд','чтв','птн','сбт'], + dayNamesMin: ['Нд','Пн','Вт','Ср','Чт','Пт','Сб'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['uk'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['uk']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ur.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ur.js new file mode 100644 index 0000000..7e152fd --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-ur.js @@ -0,0 +1,26 @@ +/* http://keith-wood.name/calendars.html + Urdu localisation for Gregorian/Julian calendars for jQuery. + Mansoor Munib -- mansoormunib@gmail.com + Thanks to Habib Ahmed, ObaidUllah Anwar. */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['ur'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['جنوری','فروری','مارچ','اپریل','مئی','جون', + 'جولائی','اگست','ستمبر','اکتوبر','نومبر','دسمبر'], + monthNamesShort: ['1','2','3','4','5','6', + '7','8','9','10','11','12'], + dayNames: ['اتوار','پير','منگل','بدھ','جمعرات','جمعہ','ہفتہ'], + dayNamesShort: ['اتوار','پير','منگل','بدھ','جمعرات','جمعہ','ہفتہ'], + dayNamesMin: ['اتوار','پير','منگل','بدھ','جمعرات','جمعہ','ہفتہ'], + digits: $.calendars.substituteDigits(['٠', '١', '٢', '٣', '۴', '۵', '۶', '۷', '٨', '٩']), + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + firstDay: 1, + isRTL: true + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['ur'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['ur']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-vi.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-vi.js new file mode 100644 index 0000000..e68543e --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-vi.js @@ -0,0 +1,24 @@ +/* http://keith-wood.name/calendars.html + Vietnamese localisation for Gregorian/Julian calendars for jQuery. + Translated by Le Thanh Huy (lthanhhuy@cit.ctu.edu.vn). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['vi'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['Tháng Một', 'Tháng Hai', 'Tháng Ba', 'Tháng Tư', 'Tháng Năm', 'Tháng Sáu', + 'Tháng Bảy', 'Tháng Tám', 'Tháng Chín', 'Tháng Mười', 'Tháng Mười Một', 'Tháng Mười Hai'], + monthNamesShort: ['Tháng 1', 'Tháng 2', 'Tháng 3', 'Tháng 4', 'Tháng 5', 'Tháng 6', + 'Tháng 7', 'Tháng 8', 'Tháng 9', 'Tháng 10', 'Tháng 11', 'Tháng 12'], + dayNames: ['Chủ Nhật', 'Thứ Hai', 'Thứ Ba', 'Thứ Tư', 'Thứ Năm', 'Thứ Sáu', 'Thứ Bảy'], + dayNamesShort: ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], + dayNamesMin: ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], + digits: null, + dateFormat: 'dd/mm/yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['vi'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['vi']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-zh-CN.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-zh-CN.js new file mode 100644 index 0000000..eb7540c --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-zh-CN.js @@ -0,0 +1,25 @@ +/* http://keith-wood.name/calendars.html + Simplified Chinese localisation for Gregorian/Julian calendars for jQuery. + Written by Cloudream (cloudream@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['zh-CN'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['一月','二月','三月','四月','五月','六月', + '七月','八月','九月','十月','十一月','十二月'], + monthNamesShort: ['一','二','三','四','五','六', + '七','八','九','十','十一','十二'], + dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], + dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], + dayNamesMin: ['日','一','二','三','四','五','六'], + digits: $.calendars.substituteChineseDigits( + ['〇', '一', '二', '三', '四', '五', '六', '七', '八', '九'], ['', '十', '百', '千']), + dateFormat: 'yyyy-mm-dd', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['zh-CN'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['zh-CN']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-zh-HK.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-zh-HK.js new file mode 100644 index 0000000..44a0ed7 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-zh-HK.js @@ -0,0 +1,25 @@ +/* http://keith-wood.name/calendars.html + Hong Kong Chinese localisation for Gregorian/Julian calendars for jQuery. + Written by SCCY (samuelcychan@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['zh-HK'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['一月','二月','三月','四月','五月','六月', + '七月','八月','九月','十月','十一月','十二月'], + monthNamesShort: ['一','二','三','四','五','六', + '七','八','九','十','十一','十二'], + dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], + dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], + dayNamesMin: ['日','一','二','三','四','五','六'], + digits: $.calendars.substituteChineseDigits( + ['〇', '一', '二', '三', '四', '五', '六', '七', '八', '九'], ['', '十', '百', '千']), + dateFormat: 'dd-mm-yyyy', + firstDay: 0, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['zh-HK'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['zh-HK']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-zh-TW.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-zh-TW.js new file mode 100644 index 0000000..e745836 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars-zh-TW.js @@ -0,0 +1,25 @@ +/* http://keith-wood.name/calendars.html + Traditional Chinese localisation for Gregorian/Julian calendars for jQuery. + Written by Ressol (ressol@gmail.com). */ +(function($) { + $.calendars.calendars.gregorian.prototype.regionalOptions['zh-TW'] = { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['一月','二月','三月','四月','五月','六月', + '七月','八月','九月','十月','十一月','十二月'], + monthNamesShort: ['一','二','三','四','五','六', + '七','八','九','十','十一','十二'], + dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], + dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], + dayNamesMin: ['日','一','二','三','四','五','六'], + digits: $.calendars.substituteChineseDigits( + ['〇', '一', '二', '三', '四', '五', '六', '七', '八', '九'], ['', '十', '百', '千']), + dateFormat: 'yyyy/mm/dd', + firstDay: 1, + isRTL: false + }; + if ($.calendars.calendars.julian) { + $.calendars.calendars.julian.prototype.regionalOptions['zh-TW'] = + $.calendars.calendars.gregorian.prototype.regionalOptions['zh-TW']; + } +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.all.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.all.js new file mode 100644 index 0000000..6f26120 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.all.js @@ -0,0 +1,3165 @@ +/* http://keith-wood.name/calendars.html + Calendars for jQuery v2.0.2. + Written by Keith Wood (wood.keith{at}optusnet.com.au) August 2009. + Available under the MIT (http://keith-wood.name/licence.html) license. + Please attribute the author if you use it. */ + +(function($) { // Hide scope, no $ conflict + + function Calendars() { + this.regionalOptions = []; + this.regionalOptions[''] = { + invalidCalendar: 'Calendar {0} not found', + invalidDate: 'Invalid {0} date', + invalidMonth: 'Invalid {0} month', + invalidYear: 'Invalid {0} year', + differentCalendars: 'Cannot mix {0} and {1} dates' + }; + this.local = this.regionalOptions['']; + this.calendars = {}; + this._localCals = {}; + } + + /** Create the calendars plugin. +

Provides support for various world calendars in a consistent manner.

+ @class Calendars + @example $.calendars.instance('julian').newDate(2014, 12, 25) */ + $.extend(Calendars.prototype, { + + /** Obtain a calendar implementation and localisation. + @memberof Calendars + @param [name='gregorian'] {string} The name of the calendar, e.g. 'gregorian', 'persian', 'islamic'. + @param [language=''] {string} The language code to use for localisation (default is English). + @return {Calendar} The calendar and localisation. + @throws Error if calendar not found. */ + instance: function(name, language) { + name = (name || 'gregorian').toLowerCase(); + language = language || ''; + var cal = this._localCals[name + '-' + language]; + if (!cal && this.calendars[name]) { + cal = new this.calendars[name](language); + this._localCals[name + '-' + language] = cal; + } + if (!cal) { + throw (this.local.invalidCalendar || this.regionalOptions[''].invalidCalendar). + replace(/\{0\}/, name); + } + return cal; + }, + + /** Create a new date - for today if no other parameters given. + @memberof Calendars + @param year {CDate|number} The date to copy or the year for the date. + @param [month] {number} The month for the date. + @param [day] {number} The day for the date. + @param [calendar='gregorian'] {BaseCalendar|string} The underlying calendar or the name of the calendar. + @param [language=''] {string} The language to use for localisation (default English). + @return {CDate} The new date. + @throws Error if an invalid date. */ + newDate: function(year, month, day, calendar, language) { + calendar = (year != null && year.year ? year.calendar() : (typeof calendar === 'string' ? + this.instance(calendar, language) : calendar)) || this.instance(); + return calendar.newDate(year, month, day); + }, + + /** A simple digit substitution function for localising numbers via the Calendar digits option. + @member Calendars + @param digits {string[]} The substitute digits, for 0 through 9. + @return {function} The substitution function. */ + substituteDigits: function(digits) { + return function(value) { + return (value + '').replace(/[0-9]/g, function(digit) { + return digits[digit]; + }); + } + }, + + /** Digit substitution function for localising Chinese style numbers via the Calendar digits option. + @member Calendars + @param digits {string[]} The substitute digits, for 0 through 9. + @param powers {string[]} The characters denoting powers of 10, i.e. 1, 10, 100, 1000. + @return {function} The substitution function. */ + substituteChineseDigits: function(digits, powers) { + return function(value) { + var localNumber = ''; + var power = 0; + while (value > 0) { + var units = value % 10; + localNumber = (units === 0 ? '' : digits[units] + powers[power]) + localNumber; + power++; + value = Math.floor(value / 10); + } + if (localNumber.indexOf(digits[1] + powers[1]) === 0) { + localNumber = localNumber.substr(1); + } + return localNumber || digits[0]; + } + } + }); + + /** Generic date, based on a particular calendar. + @class CDate + @param calendar {BaseCalendar} The underlying calendar implementation. + @param year {number} The year for this date. + @param month {number} The month for this date. + @param day {number} The day for this date. + @return {CDate} The date object. + @throws Error if an invalid date. */ + function CDate(calendar, year, month, day) { + this._calendar = calendar; + this._year = year; + this._month = month; + this._day = day; + if (this._calendar._validateLevel === 0 && + !this._calendar.isValid(this._year, this._month, this._day)) { + throw ($.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate). + replace(/\{0\}/, this._calendar.local.name); + } + } + + /** Pad a numeric value with leading zeroes. + @private + @param value {number} The number to format. + @param length {number} The minimum length. + @return {string} The formatted number. */ + function pad(value, length) { + value = '' + value; + return '000000'.substring(0, length - value.length) + value; + } + + $.extend(CDate.prototype, { + + /** Create a new date. + @memberof CDate + @param [year] {CDate|number} The date to copy or the year for the date (default this date). + @param [month] {number} The month for the date. + @param [day] {number} The day for the date. + @return {CDate} The new date. + @throws Error if an invalid date. */ + newDate: function(year, month, day) { + return this._calendar.newDate((year == null ? this : year), month, day); + }, + + /** Set or retrieve the year for this date. + @memberof CDate + @param [year] {number} The year for the date. + @return {number|CDate} The date's year (if no parameter) or the updated date. + @throws Error if an invalid date. */ + year: function(year) { + return (arguments.length === 0 ? this._year : this.set(year, 'y')); + }, + + /** Set or retrieve the month for this date. + @memberof CDate + @param [month] {number} The month for the date. + @return {number|CDate} The date's month (if no parameter) or the updated date. + @throws Error if an invalid date. */ + month: function(month) { + return (arguments.length === 0 ? this._month : this.set(month, 'm')); + }, + + /** Set or retrieve the day for this date. + @memberof CDate + @param [day] {number} The day for the date. + @return {number|CData} The date's day (if no parameter) or the updated date. + @throws Error if an invalid date. */ + day: function(day) { + return (arguments.length === 0 ? this._day : this.set(day, 'd')); + }, + + /** Set new values for this date. + @memberof CDate + @param year {number} The year for the date. + @param month {number} The month for the date. + @param day {number} The day for the date. + @return {CDate} The updated date. + @throws Error if an invalid date. */ + date: function(year, month, day) { + if (!this._calendar.isValid(year, month, day)) { + throw ($.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate). + replace(/\{0\}/, this._calendar.local.name); + } + this._year = year; + this._month = month; + this._day = day; + return this; + }, + + /** Determine whether this date is in a leap year. + @memberof CDate + @return {boolean} true if this is a leap year, false if not. */ + leapYear: function() { + return this._calendar.leapYear(this); + }, + + /** Retrieve the epoch designator for this date, e.g. BCE or CE. + @memberof CDate + @return {string} The current epoch. */ + epoch: function() { + return this._calendar.epoch(this); + }, + + /** Format the year, if not a simple sequential number. + @memberof CDate + @return {string} The formatted year. */ + formatYear: function() { + return this._calendar.formatYear(this); + }, + + /** Retrieve the month of the year for this date, + i.e. the month's position within a numbered year. + @memberof CDate + @return {number} The month of the year: minMonth to months per year. */ + monthOfYear: function() { + return this._calendar.monthOfYear(this); + }, + + /** Retrieve the week of the year for this date. + @memberof CDate + @return {number} The week of the year: 1 to weeks per year. */ + weekOfYear: function() { + return this._calendar.weekOfYear(this); + }, + + /** Retrieve the number of days in the year for this date. + @memberof CDate + @return {number} The number of days in this year. */ + daysInYear: function() { + return this._calendar.daysInYear(this); + }, + + /** Retrieve the day of the year for this date. + @memberof CDate + @return {number} The day of the year: 1 to days per year. */ + dayOfYear: function() { + return this._calendar.dayOfYear(this); + }, + + /** Retrieve the number of days in the month for this date. + @memberof CDate + @return {number} The number of days. */ + daysInMonth: function() { + return this._calendar.daysInMonth(this); + }, + + /** Retrieve the day of the week for this date. + @memberof CDate + @return {number} The day of the week: 0 to number of days - 1. */ + dayOfWeek: function() { + return this._calendar.dayOfWeek(this); + }, + + /** Determine whether this date is a week day. + @memberof CDate + @return {boolean} true if a week day, false if not. */ + weekDay: function() { + return this._calendar.weekDay(this); + }, + + /** Retrieve additional information about this date. + @memberof CDate + @return {object} Additional information - contents depends on calendar. */ + extraInfo: function() { + return this._calendar.extraInfo(this); + }, + + /** Add period(s) to a date. + @memberof CDate + @param offset {number} The number of periods to adjust by. + @param period {string} One of 'y' for year, 'm' for month, 'w' for week, 'd' for day. + @return {CDate} The updated date. */ + add: function(offset, period) { + return this._calendar.add(this, offset, period); + }, + + /** Set a portion of the date. + @memberof CDate + @param value {number} The new value for the period. + @param period {string} One of 'y' for year, 'm' for month, 'd' for day. + @return {CDate} The updated date. + @throws Error if not a valid date. */ + set: function(value, period) { + return this._calendar.set(this, value, period); + }, + + /** Compare this date to another date. + @memberof CDate + @param date {CDate} The other date. + @return {number} -1 if this date is before the other date, + 0 if they are equal, or +1 if this date is after the other date. */ + compareTo: function(date) { + if (this._calendar.name !== date._calendar.name) { + throw ($.calendars.local.differentCalendars || $.calendars.regionalOptions[''].differentCalendars). + replace(/\{0\}/, this._calendar.local.name).replace(/\{1\}/, date._calendar.local.name); + } + var c = (this._year !== date._year ? this._year - date._year : + this._month !== date._month ? this.monthOfYear() - date.monthOfYear() : + this._day - date._day); + return (c === 0 ? 0 : (c < 0 ? -1 : +1)); + }, + + /** Retrieve the calendar backing this date. + @memberof CDate + @return {BaseCalendar} The calendar implementation. */ + calendar: function() { + return this._calendar; + }, + + /** Retrieve the Julian date equivalent for this date, + i.e. days since January 1, 4713 BCE Greenwich noon. + @memberof CDate + @return {number} The equivalent Julian date. */ + toJD: function() { + return this._calendar.toJD(this); + }, + + /** Create a new date from a Julian date. + @memberof CDate + @param jd {number} The Julian date to convert. + @return {CDate} The equivalent date. */ + fromJD: function(jd) { + return this._calendar.fromJD(jd); + }, + + /** Convert this date to a standard (Gregorian) JavaScript Date. + @memberof CDate + @return {Date} The equivalent JavaScript date. */ + toJSDate: function() { + return this._calendar.toJSDate(this); + }, + + /** Create a new date from a standard (Gregorian) JavaScript Date. + @memberof CDate + @param jsd {Date} The JavaScript date to convert. + @return {CDate} The equivalent date. */ + fromJSDate: function(jsd) { + return this._calendar.fromJSDate(jsd); + }, + + /** Convert to a string for display. + @memberof CDate + @return {string} This date as a string. */ + toString: function() { + return (this.year() < 0 ? '-' : '') + pad(Math.abs(this.year()), 4) + + '-' + pad(this.month(), 2) + '-' + pad(this.day(), 2); + } + }); + + /** Basic functionality for all calendars. + Other calendars should extend this: +
OtherCalendar.prototype = new BaseCalendar;
+ @class BaseCalendar */ + function BaseCalendar() { + this.shortYearCutoff = '+10'; + } + + $.extend(BaseCalendar.prototype, { + _validateLevel: 0, // "Stack" to turn validation on/off + + /** Create a new date within this calendar - today if no parameters given. + @memberof BaseCalendar + @param year {CDate|number} The date to duplicate or the year for the date. + @param [month] {number} The month for the date. + @param [day] {number} The day for the date. + @return {CDate} The new date. + @throws Error if not a valid date or a different calendar used. */ + newDate: function(year, month, day) { + if (year == null) { + return this.today(); + } + if (year.year) { + this._validate(year, month, day, + $.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate); + day = year.day(); + month = year.month(); + year = year.year(); + } + return new CDate(this, year, month, day); + }, + + /** Create a new date for today. + @memberof BaseCalendar + @return {CDate} Today's date. */ + today: function() { + return this.fromJSDate(new Date()); + }, + + /** Retrieve the epoch designator for this date. + @memberof BaseCalendar + @param year {CDate|number} The date to examine or the year to examine. + @return {string} The current epoch. + @throws Error if an invalid year or a different calendar used. */ + epoch: function(year) { + var date = this._validate(year, this.minMonth, this.minDay, + $.calendars.local.invalidYear || $.calendars.regionalOptions[''].invalidYear); + return (date.year() < 0 ? this.local.epochs[0] : this.local.epochs[1]); + }, + + /** Format the year, if not a simple sequential number + @memberof BaseCalendar + @param year {CDate|number} The date to format or the year to format. + @return {string} The formatted year. + @throws Error if an invalid year or a different calendar used. */ + formatYear: function(year) { + var date = this._validate(year, this.minMonth, this.minDay, + $.calendars.local.invalidYear || $.calendars.regionalOptions[''].invalidYear); + return (date.year() < 0 ? '-' : '') + pad(Math.abs(date.year()), 4) + }, + + /** Retrieve the number of months in a year. + @memberof BaseCalendar + @param year {CDate|number} The date to examine or the year to examine. + @return {number} The number of months. + @throws Error if an invalid year or a different calendar used. */ + monthsInYear: function(year) { + this._validate(year, this.minMonth, this.minDay, + $.calendars.local.invalidYear || $.calendars.regionalOptions[''].invalidYear); + return 12; + }, + + /** Calculate the month's ordinal position within the year - + for those calendars that don't start at month 1! + @memberof BaseCalendar + @param year {CDate|number} The date to examine or the year to examine. + @param month {number} The month to examine. + @return {number} The ordinal position, starting from minMonth. + @throws Error if an invalid year/month or a different calendar used. */ + monthOfYear: function(year, month) { + var date = this._validate(year, month, this.minDay, + $.calendars.local.invalidMonth || $.calendars.regionalOptions[''].invalidMonth); + return (date.month() + this.monthsInYear(date) - this.firstMonth) % + this.monthsInYear(date) + this.minMonth; + }, + + /** Calculate actual month from ordinal position, starting from minMonth. + @memberof BaseCalendar + @param year {number} The year to examine. + @param ord {number} The month's ordinal position. + @return {number} The month's number. + @throws Error if an invalid year/month. */ + fromMonthOfYear: function(year, ord) { + var m = (ord + this.firstMonth - 2 * this.minMonth) % + this.monthsInYear(year) + this.minMonth; + this._validate(year, m, this.minDay, + $.calendars.local.invalidMonth || $.calendars.regionalOptions[''].invalidMonth); + return m; + }, + + /** Retrieve the number of days in a year. + @memberof BaseCalendar + @param year {CDate|number} The date to examine or the year to examine. + @return {number} The number of days. + @throws Error if an invalid year or a different calendar used. */ + daysInYear: function(year) { + var date = this._validate(year, this.minMonth, this.minDay, + $.calendars.local.invalidYear || $.calendars.regionalOptions[''].invalidYear); + return (this.leapYear(date) ? 366 : 365); + }, + + /** Retrieve the day of the year for a date. + @memberof BaseCalendar + @param year {CDate|number} The date to convert or the year to convert. + @param [month] {number} The month to convert. + @param [day] {number} The day to convert. + @return {number} The day of the year. + @throws Error if an invalid date or a different calendar used. */ + dayOfYear: function(year, month, day) { + var date = this._validate(year, month, day, + $.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate); + return date.toJD() - this.newDate(date.year(), + this.fromMonthOfYear(date.year(), this.minMonth), this.minDay).toJD() + 1; + }, + + /** Retrieve the number of days in a week. + @memberof BaseCalendar + @return {number} The number of days. */ + daysInWeek: function() { + return 7; + }, + + /** Retrieve the day of the week for a date. + @memberof BaseCalendar + @param year {CDate|number} The date to examine or the year to examine. + @param [month] {number} The month to examine. + @param [day] {number} The day to examine. + @return {number} The day of the week: 0 to number of days - 1. + @throws Error if an invalid date or a different calendar used. */ + dayOfWeek: function(year, month, day) { + var date = this._validate(year, month, day, + $.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate); + return (Math.floor(this.toJD(date)) + 2) % this.daysInWeek(); + }, + + /** Retrieve additional information about a date. + @memberof BaseCalendar + @param year {CDate|number} The date to examine or the year to examine. + @param [month] {number} The month to examine. + @param [day] {number} The day to examine. + @return {object} Additional information - contents depends on calendar. + @throws Error if an invalid date or a different calendar used. */ + extraInfo: function(year, month, day) { + this._validate(year, month, day, + $.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate); + return {}; + }, + + /** Add period(s) to a date. + Cater for no year zero. + @memberof BaseCalendar + @param date {CDate} The starting date. + @param offset {number} The number of periods to adjust by. + @param period {string} One of 'y' for year, 'm' for month, 'w' for week, 'd' for day. + @return {CDate} The updated date. + @throws Error if a different calendar used. */ + add: function(date, offset, period) { + this._validate(date, this.minMonth, this.minDay, + $.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate); + return this._correctAdd(date, this._add(date, offset, period), offset, period); + }, + + /** Add period(s) to a date. + @memberof BaseCalendar + @private + @param date {CDate} The starting date. + @param offset {number} The number of periods to adjust by. + @param period {string} One of 'y' for year, 'm' for month, 'w' for week, 'd' for day. + @return {CDate} The updated date. */ + _add: function(date, offset, period) { + this._validateLevel++; + if (period === 'd' || period === 'w') { + var jd = date.toJD() + offset * (period === 'w' ? this.daysInWeek() : 1); + var d = date.calendar().fromJD(jd); + this._validateLevel--; + return [d.year(), d.month(), d.day()]; + } + try { + var y = date.year() + (period === 'y' ? offset : 0); + var m = date.monthOfYear() + (period === 'm' ? offset : 0); + var d = date.day();// + (period === 'd' ? offset : 0) + + //(period === 'w' ? offset * this.daysInWeek() : 0); + var resyncYearMonth = function(calendar) { + while (m < calendar.minMonth) { + y--; + m += calendar.monthsInYear(y); + } + var yearMonths = calendar.monthsInYear(y); + while (m > yearMonths - 1 + calendar.minMonth) { + y++; + m -= yearMonths; + yearMonths = calendar.monthsInYear(y); + } + }; + if (period === 'y') { + if (date.month() !== this.fromMonthOfYear(y, m)) { // Hebrew + m = this.newDate(y, date.month(), this.minDay).monthOfYear(); + } + m = Math.min(m, this.monthsInYear(y)); + d = Math.min(d, this.daysInMonth(y, this.fromMonthOfYear(y, m))); + } + else if (period === 'm') { + resyncYearMonth(this); + d = Math.min(d, this.daysInMonth(y, this.fromMonthOfYear(y, m))); + } + var ymd = [y, this.fromMonthOfYear(y, m), d]; + this._validateLevel--; + return ymd; + } + catch (e) { + this._validateLevel--; + throw e; + } + }, + + /** Correct a candidate date after adding period(s) to a date. + Handle no year zero if necessary. + @memberof BaseCalendar + @private + @param date {CDate} The starting date. + @param ymd {number[]} The added date. + @param offset {number} The number of periods to adjust by. + @param period {string} One of 'y' for year, 'm' for month, 'w' for week, 'd' for day. + @return {CDate} The updated date. */ + _correctAdd: function(date, ymd, offset, period) { + if (!this.hasYearZero && (period === 'y' || period === 'm')) { + if (ymd[0] === 0 || // In year zero + (date.year() > 0) !== (ymd[0] > 0)) { // Crossed year zero + var adj = {y: [1, 1, 'y'], m: [1, this.monthsInYear(-1), 'm'], + w: [this.daysInWeek(), this.daysInYear(-1), 'd'], + d: [1, this.daysInYear(-1), 'd']}[period]; + var dir = (offset < 0 ? -1 : +1); + ymd = this._add(date, offset * adj[0] + dir * adj[1], adj[2]); + } + } + return date.date(ymd[0], ymd[1], ymd[2]); + }, + + /** Set a portion of the date. + @memberof BaseCalendar + @param date {CDate} The starting date. + @param value {number} The new value for the period. + @param period {string} One of 'y' for year, 'm' for month, 'd' for day. + @return {CDate} The updated date. + @throws Error if an invalid date or a different calendar used. */ + set: function(date, value, period) { + this._validate(date, this.minMonth, this.minDay, + $.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate); + var y = (period === 'y' ? value : date.year()); + var m = (period === 'm' ? value : date.month()); + var d = (period === 'd' ? value : date.day()); + if (period === 'y' || period === 'm') { + d = Math.min(d, this.daysInMonth(y, m)); + } + return date.date(y, m, d); + }, + + /** Determine whether a date is valid for this calendar. + @memberof BaseCalendar + @param year {number} The year to examine. + @param month {number} The month to examine. + @param day {number} The day to examine. + @return {boolean} true if a valid date, false if not. */ + isValid: function(year, month, day) { + this._validateLevel++; + var valid = (this.hasYearZero || year !== 0); + if (valid) { + var date = this.newDate(year, month, this.minDay); + valid = (month >= this.minMonth && month - this.minMonth < this.monthsInYear(date)) && + (day >= this.minDay && day - this.minDay < this.daysInMonth(date)); + } + this._validateLevel--; + return valid; + }, + + /** Convert the date to a standard (Gregorian) JavaScript Date. + @memberof BaseCalendar + @param year {CDate|number} The date to convert or the year to convert. + @param [month] {number} The month to convert. + @param [day] {number} The day to convert. + @return {Date} The equivalent JavaScript date. + @throws Error if an invalid date or a different calendar used. */ + toJSDate: function(year, month, day) { + var date = this._validate(year, month, day, + $.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate); + return $.calendars.instance().fromJD(this.toJD(date)).toJSDate(); + }, + + /** Convert the date from a standard (Gregorian) JavaScript Date. + @memberof BaseCalendar + @param jsd {Date} The JavaScript date. + @return {CDate} The equivalent calendar date. */ + fromJSDate: function(jsd) { + return this.fromJD($.calendars.instance().fromJSDate(jsd).toJD()); + }, + + /** Check that a candidate date is from the same calendar and is valid. + @memberof BaseCalendar + @private + @param year {CDate|number} The date to validate or the year to validate. + @param [month] {number} The month to validate. + @param [day] {number} The day to validate. + @param error {string} Rrror message if invalid. + @throws Error if different calendars used or invalid date. */ + _validate: function(year, month, day, error) { + if (year.year) { + if (this._validateLevel === 0 && this.name !== year.calendar().name) { + throw ($.calendars.local.differentCalendars || $.calendars.regionalOptions[''].differentCalendars). + replace(/\{0\}/, this.local.name).replace(/\{1\}/, year.calendar().local.name); + } + return year; + } + try { + this._validateLevel++; + if (this._validateLevel === 1 && !this.isValid(year, month, day)) { + throw error.replace(/\{0\}/, this.local.name); + } + var date = this.newDate(year, month, day); + this._validateLevel--; + return date; + } + catch (e) { + this._validateLevel--; + throw e; + } + } + }); + + /** Implementation of the Proleptic Gregorian Calendar. + See http://en.wikipedia.org/wiki/Gregorian_calendar + and http://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar. + @class GregorianCalendar + @augments BaseCalendar + @param [language=''] {string} The language code (default English) for localisation. */ + function GregorianCalendar(language) { + this.local = this.regionalOptions[language] || this.regionalOptions['']; + } + + GregorianCalendar.prototype = new BaseCalendar; + + $.extend(GregorianCalendar.prototype, { + /** The calendar name. + @memberof GregorianCalendar */ + name: 'Gregorian', + /** Julian date of start of Gregorian epoch: 1 January 0001 CE. + @memberof GregorianCalendar */ + jdEpoch: 1721425.5, + /** Days per month in a common year. + @memberof GregorianCalendar */ + daysPerMonth: [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], + /** true if has a year zero, false if not. + @memberof GregorianCalendar */ + hasYearZero: false, + /** The minimum month number. + @memberof GregorianCalendar */ + minMonth: 1, + /** The first month in the year. + @memberof GregorianCalendar */ + firstMonth: 1, + /** The minimum day number. + @memberof GregorianCalendar */ + minDay: 1, + + /** Localisations for the plugin. + Entries are objects indexed by the language code ('' being the default US/English). + Each object has the following attributes. + @memberof GregorianCalendar + @property name {string} The calendar name. + @property epochs {string[]} The epoch names. + @property monthNames {string[]} The long names of the months of the year. + @property monthNamesShort {string[]} The short names of the months of the year. + @property dayNames {string[]} The long names of the days of the week. + @property dayNamesShort {string[]} The short names of the days of the week. + @property dayNamesMin {string[]} The minimal names of the days of the week. + @property dateFormat {string} The date format for this calendar. + See the options on formatDate for details. + @property firstDay {number} The number of the first day of the week, starting at 0. + @property isRTL {number} true if this localisation reads right-to-left. */ + regionalOptions: { // Localisations + '': { + name: 'Gregorian', + epochs: ['BCE', 'CE'], + monthNames: ['January', 'February', 'March', 'April', 'May', 'June', + 'July', 'August', 'September', 'October', 'November', 'December'], + monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], + dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], + dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], + dayNamesMin: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'], + digits: null, + dateFormat: 'mm/dd/yyyy', + firstDay: 0, + isRTL: false + } + }, + + /** Determine whether this date is in a leap year. + @memberof GregorianCalendar + @param year {CDate|number} The date to examine or the year to examine. + @return {boolean} true if this is a leap year, false if not. + @throws Error if an invalid year or a different calendar used. */ + leapYear: function(year) { + var date = this._validate(year, this.minMonth, this.minDay, + $.calendars.local.invalidYear || $.calendars.regionalOptions[''].invalidYear); + var year = date.year() + (date.year() < 0 ? 1 : 0); // No year zero + return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0); + }, + + /** Determine the week of the year for a date - ISO 8601. + @memberof GregorianCalendar + @param year {CDate|number} The date to examine or the year to examine. + @param [month] {number} The month to examine. + @param [day] {number} The day to examine. + @return {number} The week of the year, starting from 1. + @throws Error if an invalid date or a different calendar used. */ + weekOfYear: function(year, month, day) { + // Find Thursday of this week starting on Monday + var checkDate = this.newDate(year, month, day); + checkDate.add(4 - (checkDate.dayOfWeek() || 7), 'd'); + return Math.floor((checkDate.dayOfYear() - 1) / 7) + 1; + }, + + /** Retrieve the number of days in a month. + @memberof GregorianCalendar + @param year {CDate|number} The date to examine or the year of the month. + @param [month] {number} The month. + @return {number} The number of days in this month. + @throws Error if an invalid month/year or a different calendar used. */ + daysInMonth: function(year, month) { + var date = this._validate(year, month, this.minDay, + $.calendars.local.invalidMonth || $.calendars.regionalOptions[''].invalidMonth); + return this.daysPerMonth[date.month() - 1] + + (date.month() === 2 && this.leapYear(date.year()) ? 1 : 0); + }, + + /** Determine whether this date is a week day. + @memberof GregorianCalendar + @param year {CDate|number} The date to examine or the year to examine. + @param [month] {number} The month to examine. + @param [day] {number} The day to examine. + @return {boolean} true if a week day, false if not. + @throws Error if an invalid date or a different calendar used. */ + weekDay: function(year, month, day) { + return (this.dayOfWeek(year, month, day) || 7) < 6; + }, + + /** Retrieve the Julian date equivalent for this date, + i.e. days since January 1, 4713 BCE Greenwich noon. + @memberof GregorianCalendar + @param year {CDate|number} The date to convert or the year to convert. + @param [month] {number} The month to convert. + @param [day] {number} The day to convert. + @return {number} The equivalent Julian date. + @throws Error if an invalid date or a different calendar used. */ + toJD: function(year, month, day) { + var date = this._validate(year, month, day, + $.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate); + year = date.year(); + month = date.month(); + day = date.day(); + if (year < 0) { year++; } // No year zero + // Jean Meeus algorithm, "Astronomical Algorithms", 1991 + if (month < 3) { + month += 12; + year--; + } + var a = Math.floor(year / 100); + var b = 2 - a + Math.floor(a / 4); + return Math.floor(365.25 * (year + 4716)) + + Math.floor(30.6001 * (month + 1)) + day + b - 1524.5; + }, + + /** Create a new date from a Julian date. + @memberof GregorianCalendar + @param jd {number} The Julian date to convert. + @return {CDate} The equivalent date. */ + fromJD: function(jd) { + // Jean Meeus algorithm, "Astronomical Algorithms", 1991 + var z = Math.floor(jd + 0.5); + var a = Math.floor((z - 1867216.25) / 36524.25); + a = z + 1 + a - Math.floor(a / 4); + var b = a + 1524; + var c = Math.floor((b - 122.1) / 365.25); + var d = Math.floor(365.25 * c); + var e = Math.floor((b - d) / 30.6001); + var day = b - d - Math.floor(e * 30.6001); + var month = e - (e > 13.5 ? 13 : 1); + var year = c - (month > 2.5 ? 4716 : 4715); + if (year <= 0) { year--; } // No year zero + return this.newDate(year, month, day); + }, + + /** Convert this date to a standard (Gregorian) JavaScript Date. + @memberof GregorianCalendar + @param year {CDate|number} The date to convert or the year to convert. + @param [month] {number} The month to convert. + @param [day] {number} The day to convert. + @return {Date} The equivalent JavaScript date. + @throws Error if an invalid date or a different calendar used. */ + toJSDate: function(year, month, day) { + var date = this._validate(year, month, day, + $.calendars.local.invalidDate || $.calendars.regionalOptions[''].invalidDate); + var jsd = new Date(date.year(), date.month() - 1, date.day()); + jsd.setHours(0); + jsd.setMinutes(0); + jsd.setSeconds(0); + jsd.setMilliseconds(0); + // Hours may be non-zero on daylight saving cut-over: + // > 12 when midnight changeover, but then cannot generate + // midnight datetime, so jump to 1AM, otherwise reset. + jsd.setHours(jsd.getHours() > 12 ? jsd.getHours() + 2 : 0); + return jsd; + }, + + /** Create a new date from a standard (Gregorian) JavaScript Date. + @memberof GregorianCalendar + @param jsd {Date} The JavaScript date to convert. + @return {CDate} The equivalent date. */ + fromJSDate: function(jsd) { + return this.newDate(jsd.getFullYear(), jsd.getMonth() + 1, jsd.getDate()); + } + }); + + // Singleton manager + $.calendars = new Calendars(); + + // Date template + $.calendars.cdate = CDate; + + // Base calendar template + $.calendars.baseCalendar = BaseCalendar; + + // Gregorian calendar implementation + $.calendars.calendars.gregorian = GregorianCalendar; + +})(jQuery); +/* http://keith-wood.name/calendars.html + Calendars extras for jQuery v2.0.2. + Written by Keith Wood (wood.keith{at}optusnet.com.au) August 2009. + Available under the MIT (http://keith-wood.name/licence.html) license. + Please attribute the author if you use it. */ + +(function($) { // Hide scope, no $ conflict + + $.extend($.calendars.regionalOptions[''], { + invalidArguments: 'Invalid arguments', + invalidFormat: 'Cannot format a date from another calendar', + missingNumberAt: 'Missing number at position {0}', + unknownNameAt: 'Unknown name at position {0}', + unexpectedLiteralAt: 'Unexpected literal at position {0}', + unexpectedText: 'Additional text found at end' + }); + $.calendars.local = $.calendars.regionalOptions['']; + + $.extend($.calendars.cdate.prototype, { + + /** Format this date. + Found in the jquery.calendars.plus.js module. + @memberof CDate + @param [format] {string} The date format to use (see formatDate). + @param [settings] {object} Options for the formatDate function. + @return {string} The formatted date. */ + formatDate: function(format, settings) { + if (typeof format !== 'string') { + settings = format; + format = ''; + } + return this._calendar.formatDate(format || '', this, settings); + } + }); + + $.extend($.calendars.baseCalendar.prototype, { + + UNIX_EPOCH: $.calendars.instance().newDate(1970, 1, 1).toJD(), + SECS_PER_DAY: 24 * 60 * 60, + TICKS_EPOCH: $.calendars.instance().jdEpoch, // 1 January 0001 CE + TICKS_PER_DAY: 24 * 60 * 60 * 10000000, + + /** Date form for ATOM (RFC 3339/ISO 8601). + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + ATOM: 'yyyy-mm-dd', + /** Date form for cookies. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + COOKIE: 'D, dd M yyyy', + /** Date form for full date. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + FULL: 'DD, MM d, yyyy', + /** Date form for ISO 8601. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + ISO_8601: 'yyyy-mm-dd', + /** Date form for Julian date. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + JULIAN: 'J', + /** Date form for RFC 822. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + RFC_822: 'D, d M yy', + /** Date form for RFC 850. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + RFC_850: 'DD, dd-M-yy', + /** Date form for RFC 1036. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + RFC_1036: 'D, d M yy', + /** Date form for RFC 1123. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + RFC_1123: 'D, d M yyyy', + /** Date form for RFC 2822. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + RFC_2822: 'D, d M yyyy', + /** Date form for RSS (RFC 822). + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + RSS: 'D, d M yy', + /** Date form for Windows ticks. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + TICKS: '!', + /** Date form for Unix timestamp. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + TIMESTAMP: '@', + /** Date form for W3c (ISO 8601). + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar */ + W3C: 'yyyy-mm-dd', + + /** Format a date object into a string value. + The format can be combinations of the following: +
    +
  • d - day of month (no leading zero)
  • +
  • dd - day of month (two digit)
  • +
  • o - day of year (no leading zeros)
  • +
  • oo - day of year (three digit)
  • +
  • D - day name short
  • +
  • DD - day name long
  • +
  • w - week of year (no leading zero)
  • +
  • ww - week of year (two digit)
  • +
  • m - month of year (no leading zero)
  • +
  • mm - month of year (two digit)
  • +
  • M - month name short
  • +
  • MM - month name long
  • +
  • yy - year (two digit)
  • +
  • yyyy - year (four digit)
  • +
  • YYYY - formatted year
  • +
  • J - Julian date (days since January 1, 4713 BCE Greenwich noon)
  • +
  • @ - Unix timestamp (s since 01/01/1970)
  • +
  • ! - Windows ticks (100ns since 01/01/0001)
  • +
  • '...' - literal text
  • +
  • '' - single quote
  • +
+ Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar + @param [format] {string} The desired format of the date (defaults to calendar format). + @param date {CDate} The date value to format. + @param [settings] {object} Addition options, whose attributes include: + @property [dayNamesShort] {string[]} Abbreviated names of the days from Sunday. + @property [dayNames] {string[]} Names of the days from Sunday. + @property [monthNamesShort] {string[]} Abbreviated names of the months. + @property [monthNames] {string[]} Names of the months. + @property [calculateWeek] {CalendarsPickerCalculateWeek} Function that determines week of the year. + @property [localNumbers=false] {boolean} true to localise numbers (if available), + false to use normal Arabic numerals. + @return {string} The date in the above format. + @throws Errors if the date is from a different calendar. */ + formatDate: function(format, date, settings) { + if (typeof format !== 'string') { + settings = date; + date = format; + format = ''; + } + if (!date) { + return ''; + } + if (date.calendar() !== this) { + throw $.calendars.local.invalidFormat || $.calendars.regionalOptions[''].invalidFormat; + } + format = format || this.local.dateFormat; + settings = settings || {}; + var dayNamesShort = settings.dayNamesShort || this.local.dayNamesShort; + var dayNames = settings.dayNames || this.local.dayNames; + var monthNamesShort = settings.monthNamesShort || this.local.monthNamesShort; + var monthNames = settings.monthNames || this.local.monthNames; + var calculateWeek = settings.calculateWeek || this.local.calculateWeek; + // Check whether a format character is doubled + var doubled = function(match, step) { + var matches = 1; + while (iFormat + matches < format.length && format.charAt(iFormat + matches) === match) { + matches++; + } + iFormat += matches - 1; + return Math.floor(matches / (step || 1)) > 1; + }; + // Format a number, with leading zeroes if necessary + var formatNumber = function(match, value, len, step) { + var num = '' + value; + if (doubled(match, step)) { + while (num.length < len) { + num = '0' + num; + } + } + return num; + }; + // Format a name, short or long as requested + var formatName = function(match, value, shortNames, longNames) { + return (doubled(match) ? longNames[value] : shortNames[value]); + }; + // Localise numbers if requested and available + var digits = this.local.digits; + var localiseNumbers = function(value) { + return (settings.localNumbers && digits ? digits(value) : value); + }; + var output = ''; + var literal = false; + for (var iFormat = 0; iFormat < format.length; iFormat++) { + if (literal) { + if (format.charAt(iFormat) === "'" && !doubled("'")) { + literal = false; + } + else { + output += format.charAt(iFormat); + } + } + else { + switch (format.charAt(iFormat)) { + case 'd': output += localiseNumbers(formatNumber('d', date.day(), 2)); break; + case 'D': output += formatName('D', date.dayOfWeek(), + dayNamesShort, dayNames); break; + case 'o': output += formatNumber('o', date.dayOfYear(), 3); break; + case 'w': output += formatNumber('w', date.weekOfYear(), 2); break; + case 'm': output += localiseNumbers(formatNumber('m', date.month(), 2)); break; + case 'M': output += formatName('M', date.month() - this.minMonth, + monthNamesShort, monthNames); break; + case 'y': + output += (doubled('y', 2) ? date.year() : + (date.year() % 100 < 10 ? '0' : '') + date.year() % 100); + break; + case 'Y': + doubled('Y', 2); + output += date.formatYear(); + break; + case 'J': output += date.toJD(); break; + case '@': output += (date.toJD() - this.UNIX_EPOCH) * this.SECS_PER_DAY; break; + case '!': output += (date.toJD() - this.TICKS_EPOCH) * this.TICKS_PER_DAY; break; + case "'": + if (doubled("'")) { + output += "'"; + } + else { + literal = true; + } + break; + default: + output += format.charAt(iFormat); + } + } + } + return output; + }, + + /** Parse a string value into a date object. + See formatDate for the possible formats, plus: +
    +
  • * - ignore rest of string
  • +
+ Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar + @param format {string} The expected format of the date ('' for default calendar format). + @param value {string} The date in the above format. + @param [settings] {object} Additional options whose attributes include: + @property [shortYearCutoff] {number} The cutoff year for determining the century. + @property [dayNamesShort] {string[]} Abbreviated names of the days from Sunday. + @property [dayNames] {string[]} Names of the days from Sunday. + @property [monthNamesShort] {string[]} Abbreviated names of the months. + @property [monthNames] {string[]} Names of the months. + @return {CDate} The extracted date value or null if value is blank. + @throws Errors if the format and/or value are missing, + if the value doesn't match the format, or if the date is invalid. */ + parseDate: function(format, value, settings) { + if (value == null) { + throw $.calendars.local.invalidArguments || $.calendars.regionalOptions[''].invalidArguments; + } + value = (typeof value === 'object' ? value.toString() : value + ''); + if (value === '') { + return null; + } + format = format || this.local.dateFormat; + settings = settings || {}; + var shortYearCutoff = settings.shortYearCutoff || this.shortYearCutoff; + shortYearCutoff = (typeof shortYearCutoff !== 'string' ? shortYearCutoff : + this.today().year() % 100 + parseInt(shortYearCutoff, 10)); + var dayNamesShort = settings.dayNamesShort || this.local.dayNamesShort; + var dayNames = settings.dayNames || this.local.dayNames; + var monthNamesShort = settings.monthNamesShort || this.local.monthNamesShort; + var monthNames = settings.monthNames || this.local.monthNames; + var jd = -1; + var year = -1; + var month = -1; + var day = -1; + var doy = -1; + var shortYear = false; + var literal = false; + // Check whether a format character is doubled + var doubled = function(match, step) { + var matches = 1; + while (iFormat + matches < format.length && format.charAt(iFormat + matches) === match) { + matches++; + } + iFormat += matches - 1; + return Math.floor(matches / (step || 1)) > 1; + }; + // Extract a number from the string value + var getNumber = function(match, step) { + var isDoubled = doubled(match, step); + var size = [2, 3, isDoubled ? 4 : 2, isDoubled ? 4 : 2, 10, 11, 20]['oyYJ@!'.indexOf(match) + 1]; + var digits = new RegExp('^-?\\d{1,' + size + '}'); + var num = value.substring(iValue).match(digits); + if (!num) { + throw ($.calendars.local.missingNumberAt || $.calendars.regionalOptions[''].missingNumberAt). + replace(/\{0\}/, iValue); + } + iValue += num[0].length; + return parseInt(num[0], 10); + }; + // Extract a name from the string value and convert to an index + var calendar = this; + var getName = function(match, shortNames, longNames, step) { + var names = (doubled(match, step) ? longNames : shortNames); + for (var i = 0; i < names.length; i++) { + if (value.substr(iValue, names[i].length).toLowerCase() === names[i].toLowerCase()) { + iValue += names[i].length; + return i + calendar.minMonth; + } + } + throw ($.calendars.local.unknownNameAt || $.calendars.regionalOptions[''].unknownNameAt). + replace(/\{0\}/, iValue); + }; + // Confirm that a literal character matches the string value + var checkLiteral = function() { + if (value.charAt(iValue) !== format.charAt(iFormat)) { + throw ($.calendars.local.unexpectedLiteralAt || + $.calendars.regionalOptions[''].unexpectedLiteralAt).replace(/\{0\}/, iValue); + } + iValue++; + }; + var iValue = 0; + for (var iFormat = 0; iFormat < format.length; iFormat++) { + if (literal) { + if (format.charAt(iFormat) === "'" && !doubled("'")) { + literal = false; + } + else { + checkLiteral(); + } + } + else { + switch (format.charAt(iFormat)) { + case 'd': day = getNumber('d'); break; + case 'D': getName('D', dayNamesShort, dayNames); break; + case 'o': doy = getNumber('o'); break; + case 'w': getNumber('w'); break; + case 'm': month = getNumber('m'); break; + case 'M': month = getName('M', monthNamesShort, monthNames); break; + case 'y': + var iSave = iFormat; + shortYear = !doubled('y', 2); + iFormat = iSave; + year = getNumber('y', 2); + break; + case 'Y': year = getNumber('Y', 2); break; + case 'J': + jd = getNumber('J') + 0.5; + if (value.charAt(iValue) === '.') { + iValue++; + getNumber('J'); + } + break; + case '@': jd = getNumber('@') / this.SECS_PER_DAY + this.UNIX_EPOCH; break; + case '!': jd = getNumber('!') / this.TICKS_PER_DAY + this.TICKS_EPOCH; break; + case '*': iValue = value.length; break; + case "'": + if (doubled("'")) { + checkLiteral(); + } + else { + literal = true; + } + break; + default: checkLiteral(); + } + } + } + if (iValue < value.length) { + throw $.calendars.local.unexpectedText || $.calendars.regionalOptions[''].unexpectedText; + } + if (year === -1) { + year = this.today().year(); + } + else if (year < 100 && shortYear) { + year += (shortYearCutoff === -1 ? 1900 : this.today().year() - + this.today().year() % 100 - (year <= shortYearCutoff ? 0 : 100)); + } + if (doy > -1) { + month = 1; + day = doy; + for (var dim = this.daysInMonth(year, month); day > dim; dim = this.daysInMonth(year, month)) { + month++; + day -= dim; + } + } + return (jd > -1 ? this.fromJD(jd) : this.newDate(year, month, day)); + }, + + /** A date may be specified as an exact value or a relative one. + Found in the jquery.calendars.plus.js module. + @memberof BaseCalendar + @param dateSpec {CDate|number|string} The date as an object or string in the given format or + an offset - numeric days from today, or string amounts and periods, e.g. '+1m +2w'. + @param defaultDate {CDate} The date to use if no other supplied, may be null. + @param currentDate {CDate} The current date as a possible basis for relative dates, + if null today is used (optional) + @param [dateFormat] {string} The expected date format - see formatDate. + @param [settings] {object} Additional options whose attributes include: + @property [shortYearCutoff] {number} The cutoff year for determining the century. + @property [dayNamesShort] {string[]} Abbreviated names of the days from Sunday. + @property [dayNames] {string[]} Names of the days from Sunday. + @property [monthNamesShort] {string[]} Abbreviated names of the months. + @property [monthNames] {string[]} Names of the months. + @return {CDate} The decoded date. */ + determineDate: function(dateSpec, defaultDate, currentDate, dateFormat, settings) { + if (currentDate && typeof currentDate !== 'object') { + settings = dateFormat; + dateFormat = currentDate; + currentDate = null; + } + if (typeof dateFormat !== 'string') { + settings = dateFormat; + dateFormat = ''; + } + var calendar = this; + var offsetString = function(offset) { + try { + return calendar.parseDate(dateFormat, offset, settings); + } + catch (e) { + // Ignore + } + offset = offset.toLowerCase(); + var date = (offset.match(/^c/) && currentDate ? + currentDate.newDate() : null) || calendar.today(); + var pattern = /([+-]?[0-9]+)\s*(d|w|m|y)?/g; + var matches = pattern.exec(offset); + while (matches) { + date.add(parseInt(matches[1], 10), matches[2] || 'd'); + matches = pattern.exec(offset); + } + return date; + }; + defaultDate = (defaultDate ? defaultDate.newDate() : null); + dateSpec = (dateSpec == null ? defaultDate : + (typeof dateSpec === 'string' ? offsetString(dateSpec) : (typeof dateSpec === 'number' ? + (isNaN(dateSpec) || dateSpec === Infinity || dateSpec === -Infinity ? defaultDate : + calendar.today().add(dateSpec, 'd')) : calendar.newDate(dateSpec)))); + return dateSpec; + } + }); + +})(jQuery); +/* http://keith-wood.name/calendars.html + Calendars date picker for jQuery v2.0.2. + Written by Keith Wood (wood.keith{at}optusnet.com.au) August 2009. + Available under the MIT (http://keith-wood.name/licence.html) license. + Please attribute the author if you use it. */ + +(function($) { // Hide scope, no $ conflict + + var pluginName = 'calendarsPicker'; + + + /** Create the calendars datepicker plugin. +

Sets an input field to popup a calendar for date entry, + or a div or span to show an inline calendar.

+

Expects HTML like:

+
<input type="text"> or <div></div>
+

Provide inline configuration like:

+
<input type="text" data-calendarsPicker="name: 'value'"/>
+ @class CalendarsPicker + @augments JQPlugin + @example $(selector).calendarsPicker() + $(selector).calendarsPicker({minDate: 0, maxDate: '+1m +1w'}) */ + $.JQPlugin.createPlugin({ + + /** The name of the plugin. + @memberof CalendarsPicker */ + name: pluginName, + + /** Default template for generating a datepicker. + Insert anywhere: +
    +
  • '{l10n:name}' to insert localised value for name,
  • +
  • '{link:name}' to insert a link trigger for command name,
  • +
  • '{button:name}' to insert a button trigger for command name,
  • +
  • '{popup:start}...{popup:end}' to mark a section for inclusion in a popup datepicker only,
  • +
  • '{inline:start}...{inline:end}' to mark a section for inclusion in an inline datepicker only.
  • +
+ @memberof CalendarsPicker + @property picker {string} Overall structure: '{months}' to insert calendar months. + @property monthRow {string} One row of months: '{months}' to insert calendar months. + @property month {string} A single month: '{monthHeader:dateFormat}' to insert the month header - + dateFormat is optional and defaults to 'MM yyyy', + '{weekHeader}' to insert a week header, '{weeks}' to insert the month's weeks. + @property weekHeader {string} A week header: '{days}' to insert individual day names. + @property dayHeader {string} Individual day header: '{day}' to insert day name. + @property week {string} One week of the month: '{days}' to insert the week's days, + '{weekOfYear}' to insert week of year. + @property day {string} An individual day: '{day}' to insert day value. + @property monthSelector {string} jQuery selector, relative to picker, for a single month. + @property daySelector {string} jQuery selector, relative to picker, for individual days. + @property rtlClass {string} Class for right-to-left (RTL) languages. + @property multiClass {string} Class for multi-month datepickers. + @property defaultClass {string} Class for selectable dates. + @property selectedClass {string} Class for currently selected dates. + @property highlightedClass {string} Class for highlighted dates. + @property todayClass {string} Class for today. + @property otherMonthClass {string} Class for days from other months. + @property weekendClass {string} Class for days on weekends. + @property commandClass {string} Class prefix for commands. + @property commandButtonClass {string} Extra class(es) for commands that are buttons. + @property commandLinkClass {string} Extra class(es) for commands that are links. + @property disabledClass {string} Class for disabled commands. */ + defaultRenderer: { + picker: '
' + + '
{link:prev}{link:today}{link:next}
{months}' + + '{popup:start}
{link:clear}{link:close}
{popup:end}' + + '
', + monthRow: '
{months}
', + month: '
{monthHeader}
' + + '{weekHeader}{weeks}
', + weekHeader: '{days}', + dayHeader: '{day}', + week: '{days}', + day: '{day}', + monthSelector: '.calendars-month', + daySelector: 'td', + rtlClass: 'calendars-rtl', + multiClass: 'calendars-multi', + defaultClass: '', + selectedClass: 'calendars-selected', + highlightedClass: 'calendars-highlight', + todayClass: 'calendars-today', + otherMonthClass: 'calendars-other-month', + weekendClass: 'calendars-weekend', + commandClass: 'calendars-cmd', + commandButtonClass: '', + commandLinkClass: '', + disabledClass: 'calendars-disabled' + }, + + /** Command actions that may be added to a layout by name. +
    +
  • prev - Show the previous month (based on monthsToStep option) - PageUp
  • +
  • prevJump - Show the previous year (based on monthsToJump option) - Ctrl+PageUp
  • +
  • next - Show the next month (based on monthsToStep option) - PageDown
  • +
  • nextJump - Show the next year (based on monthsToJump option) - Ctrl+PageDown
  • +
  • current - Show the currently selected month or today's if none selected - Ctrl+Home
  • +
  • today - Show today's month - Ctrl+Home
  • +
  • clear - Erase the date and close the datepicker popup - Ctrl+End
  • +
  • close - Close the datepicker popup - Esc
  • +
  • prevWeek - Move the cursor to the previous week - Ctrl+Up
  • +
  • prevDay - Move the cursor to the previous day - Ctrl+Left
  • +
  • nextDay - Move the cursor to the next day - Ctrl+Right
  • +
  • nextWeek - Move the cursor to the next week - Ctrl+Down
  • +
+ The command name is the key name and is used to add the command to a layout + with '{button:name}' or '{link:name}'. Each has the following attributes. + @memberof CalendarsPicker + @property text {string} The field in the regional settings for the displayed text. + @property status {string} The field in the regional settings for the status text. + @property keystroke {object} The keystroke to trigger the action, with attributes: + keyCode {number} the code for the keystroke, + ctrlKey {boolean} true if Ctrl is required, + altKey {boolean} true if Alt is required, + shiftKey {boolean} true if Shift is required. + @property enabled {CalendarsPickerCommandEnabled} The function that indicates the command is enabled. + @property date {CalendarsPickerCommandDate} The function to get the date associated with this action. + @property action {CalendarsPickerCommandAction} The function that implements the action. */ + commands: { + prev: {text: 'prevText', status: 'prevStatus', // Previous month + keystroke: {keyCode: 33}, // Page up + enabled: function(inst) { + var minDate = inst.curMinDate(); + return (!minDate || inst.drawDate.newDate(). + add(1 - inst.options.monthsToStep - inst.options.monthsOffset, 'm'). + day(inst.options.calendar.minDay).add(-1, 'd').compareTo(minDate) !== -1); }, + date: function(inst) { + return inst.drawDate.newDate(). + add(-inst.options.monthsToStep - inst.options.monthsOffset, 'm'). + day(inst.options.calendar.minDay); }, + action: function(inst) { + plugin.changeMonth(this, -inst.options.monthsToStep); } + }, + prevJump: {text: 'prevJumpText', status: 'prevJumpStatus', // Previous year + keystroke: {keyCode: 33, ctrlKey: true}, // Ctrl + Page up + enabled: function(inst) { + var minDate = inst.curMinDate(); + return (!minDate || inst.drawDate.newDate(). + add(1 - inst.options.monthsToJump - inst.options.monthsOffset, 'm'). + day(inst.options.calendar.minDay).add(-1, 'd').compareTo(minDate) !== -1); }, + date: function(inst) { + return inst.drawDate.newDate(). + add(-inst.options.monthsToJump - inst.options.monthsOffset, 'm'). + day(inst.options.calendar.minDay); }, + action: function(inst) { + plugin.changeMonth(this, -inst.options.monthsToJump); } + }, + next: {text: 'nextText', status: 'nextStatus', // Next month + keystroke: {keyCode: 34}, // Page down + enabled: function(inst) { + var maxDate = inst.get('maxDate'); + return (!maxDate || inst.drawDate.newDate(). + add(inst.options.monthsToStep - inst.options.monthsOffset, 'm'). + day(inst.options.calendar.minDay).compareTo(maxDate) !== +1); }, + date: function(inst) { + return inst.drawDate.newDate(). + add(inst.options.monthsToStep - inst.options.monthsOffset, 'm'). + day(inst.options.calendar.minDay); }, + action: function(inst) { + plugin.changeMonth(this, inst.options.monthsToStep); } + }, + nextJump: {text: 'nextJumpText', status: 'nextJumpStatus', // Next year + keystroke: {keyCode: 34, ctrlKey: true}, // Ctrl + Page down + enabled: function(inst) { + var maxDate = inst.get('maxDate'); + return (!maxDate || inst.drawDate.newDate(). + add(inst.options.monthsToJump - inst.options.monthsOffset, 'm'). + day(inst.options.calendar.minDay).compareTo(maxDate) !== +1); }, + date: function(inst) { + return inst.drawDate.newDate(). + add(inst.options.monthsToJump - inst.options.monthsOffset, 'm'). + day(inst.options.calendar.minDay); }, + action: function(inst) { + plugin.changeMonth(this, inst.options.monthsToJump); } + }, + current: {text: 'currentText', status: 'currentStatus', // Current month + keystroke: {keyCode: 36, ctrlKey: true}, // Ctrl + Home + enabled: function(inst) { + var minDate = inst.curMinDate(); + var maxDate = inst.get('maxDate'); + var curDate = inst.selectedDates[0] || inst.options.calendar.today(); + return (!minDate || curDate.compareTo(minDate) !== -1) && + (!maxDate || curDate.compareTo(maxDate) !== +1); }, + date: function(inst) { + return inst.selectedDates[0] || inst.options.calendar.today(); }, + action: function(inst) { + var curDate = inst.selectedDates[0] || inst.options.calendar.today(); + plugin.showMonth(this, curDate.year(), curDate.month()); } + }, + today: {text: 'todayText', status: 'todayStatus', // Today's month + keystroke: {keyCode: 36, ctrlKey: true}, // Ctrl + Home + enabled: function(inst) { + var minDate = inst.curMinDate(); + var maxDate = inst.get('maxDate'); + return (!minDate || inst.options.calendar.today().compareTo(minDate) !== -1) && + (!maxDate || inst.options.calendar.today().compareTo(maxDate) !== +1); }, + date: function(inst) { return inst.options.calendar.today(); }, + action: function(inst) { plugin.showMonth(this); } + }, + clear: {text: 'clearText', status: 'clearStatus', // Clear the datepicker + keystroke: {keyCode: 35, ctrlKey: true}, // Ctrl + End + enabled: function(inst) { return true; }, + date: function(inst) { return null; }, + action: function(inst) { plugin.clear(this); } + }, + close: {text: 'closeText', status: 'closeStatus', // Close the datepicker + keystroke: {keyCode: 27}, // Escape + enabled: function(inst) { return true; }, + date: function(inst) { return null; }, + action: function(inst) { plugin.hide(this); } + }, + prevWeek: {text: 'prevWeekText', status: 'prevWeekStatus', // Previous week + keystroke: {keyCode: 38, ctrlKey: true}, // Ctrl + Up + enabled: function(inst) { + var minDate = inst.curMinDate(); + return (!minDate || inst.drawDate.newDate(). + add(-inst.options.calendar.daysInWeek(), 'd').compareTo(minDate) !== -1); }, + date: function(inst) { return inst.drawDate.newDate(). + add(-inst.options.calendar.daysInWeek(), 'd'); }, + action: function(inst) { plugin.changeDay(this, -inst.options.calendar.daysInWeek()); } + }, + prevDay: {text: 'prevDayText', status: 'prevDayStatus', // Previous day + keystroke: {keyCode: 37, ctrlKey: true}, // Ctrl + Left + enabled: function(inst) { + var minDate = inst.curMinDate(); + return (!minDate || inst.drawDate.newDate().add(-1, 'd'). + compareTo(minDate) !== -1); }, + date: function(inst) { return inst.drawDate.newDate().add(-1, 'd'); }, + action: function(inst) { plugin.changeDay(this, -1); } + }, + nextDay: {text: 'nextDayText', status: 'nextDayStatus', // Next day + keystroke: {keyCode: 39, ctrlKey: true}, // Ctrl + Right + enabled: function(inst) { + var maxDate = inst.get('maxDate'); + return (!maxDate || inst.drawDate.newDate().add(1, 'd'). + compareTo(maxDate) !== +1); }, + date: function(inst) { return inst.drawDate.newDate().add(1, 'd'); }, + action: function(inst) { plugin.changeDay(this, 1); } + }, + nextWeek: {text: 'nextWeekText', status: 'nextWeekStatus', // Next week + keystroke: {keyCode: 40, ctrlKey: true}, // Ctrl + Down + enabled: function(inst) { + var maxDate = inst.get('maxDate'); + return (!maxDate || inst.drawDate.newDate(). + add(inst.options.calendar.daysInWeek(), 'd').compareTo(maxDate) !== +1); }, + date: function(inst) { return inst.drawDate.newDate(). + add(inst.options.calendar.daysInWeek(), 'd'); }, + action: function(inst) { plugin.changeDay(this, inst.options.calendar.daysInWeek()); } + } + }, + + /** Determine whether a command is enabled. + @callback CalendarsPickerCommandEnabled + @param inst {object} The current instance settings. + @return {boolean} true if this command is enabled, false if not. + @example enabled: function(inst) { + return !!inst.curMinDate(); + } */ + + /** Calculate the representative date for a command. + @callback CalendarsPickerCommandDate + @param inst {object} The current instance settings. + @return {CDate} A date appropriate for this command. + @example date: function(inst) { + return inst.curMinDate(); + } */ + + /** Perform the action for a command. + @callback CalendarsPickerCommandAction + @param inst {object} The current instance settings. + @example date: function(inst) { + $.datepick.setDate(inst.elem, inst.curMinDate()); + } */ + + /** Calculate the week of the year for a date. + @callback CalendarsPickerCalculateWeek + @param date {CDate} The date to evaluate. + @return {number} The week of the year. + @example calculateWeek: function(date) { + var startYear = $.calendars.newDate(date.year(), 1, 1); + return Math.floor((date.dayOfYear() - startYear.dayOfYear()) / 7) + 1; + } */ + + /** Provide information about an individual date shown in the calendar. + @callback CalendarsPickerOnDate + @param date {CDate} The date to evaluate. + @return {object} Information about that date, with the properties above. + @property selectable {boolean} true if this date can be selected. + @property dateClass {string} Class(es) to be applied to the date. + @property content {string} The date cell content. + @property tooltip {string} A popup tooltip for the date. + @example onDate: function(date) { + return {selectable: date.day() > 0 && date.day() < 5, + dateClass: date.day() === 4 ? 'last-day' : ''}; + } */ + + /** Update the datepicker display. + @callback CalendarsPickerOnShow + @param picker {jQuery} The datepicker div to be shown. + @param inst {object} The current instance settings. + @example onShow: function(picker, inst) { + picker.append('<button type="button">Hi</button>'). + find('button:last').click(function() { + alert('Hi!'); + }); + } */ + + /** React to navigating through the months/years. + @callback CalendarsPickerOnChangeMonthYear + @param year {number} The new year. + @param month {number} The new month (1 to 12). + @example onChangeMonthYear: function(year, month) { + alert('Now in ' + month + '/' + year); + } */ + + /** Datepicker on select callback. + Triggered when a date is selected. + @callback CalendarsPickerOnSelect + @param dates {CDate[]} The selected date(s). + @example onSelect: function(dates) { + alert('Selected ' + dates); + } */ + + /** Datepicker on close callback. + Triggered when a popup calendar is closed. + @callback CalendarsPickerOnClose + @param dates {CDate[]} The selected date(s). + @example onClose: function(dates) { + alert('Selected ' + dates); + } */ + + /** Default settings for the plugin. + @memberof CalendarsPicker + @property [calendar=$.calendars.instance()] {Calendar} The calendar for this datepicker. + @property [pickerClass=''] {string} CSS class to add to this instance of the datepicker. + @property [showOnFocus=true] {boolean} true for popup on focus, false for not. + @property [showTrigger=null] {string|Element|jQuery} Element to be cloned for a trigger, null for none. + @property [showAnim='show'] {string} Name of jQuery animation for popup, '' for no animation. + @property [showOptions=null] {object} Options for enhanced animations. + @property [showSpeed='normal'] {string} Duration of display/closure. + @property [popupContainer=null] {string|Element|jQuery} The element to which a popup calendar is added, null for body. + @property [alignment='bottom'] {string} Alignment of popup - with nominated corner of input: + 'top' or 'bottom' aligns depending on language direction, + 'topLeft', 'topRight', 'bottomLeft', 'bottomRight'. + @property [fixedWeeks=false] {boolean} true to always show 6 weeks, false to only show as many as are needed. + @property [firstDay=null] {number} First day of the week, 0 = Sunday, 1 = Monday, etc., null for calendar default. + @property [calculateWeek=null] {CalendarsPickerCalculateWeek} Calculate week of the year from a date, null for calendar default. + @property [localNumbers=false] {boolean} true to localise numbers (if available), + false to use normal Arabic numerals. + @property [monthsToShow=1] {number|number[]} How many months to show, cols or [rows, cols]. + @property [monthsOffset=0] {number} How many months to offset the primary month by; + may be a function that takes the date and returns the offset. + @property [monthsToStep=1] {number} How many months to move when prev/next clicked. + @property [monthsToJump=12] {number} How many months to move when large prev/next clicked. + @property [useMouseWheel=true] {boolean} true to use mousewheel if available, false to never use it. + @property [changeMonth=true] {boolean} true to change month/year via drop-down, false for navigation only. + @property [yearRange='c-10:c+10'] {string} Range of years to show in drop-down: 'any' for direct text entry + or 'start:end', where start/end are '+-nn' for relative to today + or 'c+-nn' for relative to the currently selected date + or 'nnnn' for an absolute year. + @property [showOtherMonths=false] {boolean} true to show dates from other months, false to not show them. + @property [selectOtherMonths=false] {boolean} true to allow selection of dates from other months too. + @property [defaultDate=null] {string|number|CDate} Date to show if no other selected. + @property [selectDefaultDate=false] {boolean} true to pre-select the default date if no other is chosen. + @property [minDate=null] {string|number|CDate} The minimum selectable date. + @property [maxDate=null] {string|number|CDate} The maximum selectable date. + @property [dateFormat='mm/dd/yyyy'] {string} Format for dates. + @property [autoSize=false] {boolean} true to size the input field according to the date format. + @property [rangeSelect=false] {boolean} Allows for selecting a date range on one date picker. + @property [rangeSeparator=' - '] {string} Text between two dates in a range. + @property [multiSelect=0] {number} Maximum number of selectable dates, zero for single select. + @property [multiSeparator=','] {string} Text between multiple dates. + @property [onDate=null] {CalendarsPickerOnDate} Callback as a date is added to the datepicker. + @property [onShow=null] {CalendarsPickerOnShow} Callback just before a datepicker is shown. + @property [onChangeMonthYear=null] {CalendarsPickerOnChangeMonthYear} Callback when a new month/year is selected. + @property [onSelect=null] {CalendarsPickerOnSelect} Callback when a date is selected. + @property [onClose=null] {CalendarsPickerOnClose} Callback when a datepicker is closed. + @property [altField=null] {string|Element|jQuery} Alternate field to update in synch with the datepicker. + @property [altFormat=null] {string} Date format for alternate field, defaults to dateFormat. + @property [constrainInput=true] {boolean} true to constrain typed input to dateFormat allowed characters. + @property [commandsAsDateFormat=false] {boolean} true to apply + formatDate to the command texts. + @property [commands=this.commands] {object} Command actions that may be added to a layout by name. */ + defaultOptions: { + calendar: $.calendars.instance(), + pickerClass: '', + showOnFocus: true, + showTrigger: null, + showAnim: 'show', + showOptions: {}, + showSpeed: 'normal', + popupContainer: null, + alignment: 'bottom', + fixedWeeks: false, + firstDay: null, + calculateWeek: null, + localNumbers: false, + monthsToShow: 1, + monthsOffset: 0, + monthsToStep: 1, + monthsToJump: 12, + useMouseWheel: true, + changeMonth: true, + yearRange: 'c-10:c+10', + showOtherMonths: false, + selectOtherMonths: false, + defaultDate: null, + selectDefaultDate: false, + minDate: null, + maxDate: null, + dateFormat: null, + autoSize: false, + rangeSelect: false, + rangeSeparator: ' - ', + multiSelect: 0, + multiSeparator: ',', + onDate: null, + onShow: null, + onChangeMonthYear: null, + onSelect: null, + onClose: null, + altField: null, + altFormat: null, + constrainInput: true, + commandsAsDateFormat: false, + commands: {} // this.commands + }, + + /** Localisations for the plugin. + Entries are objects indexed by the language code ('' being the default US/English). + Each object has the following attributes. + @memberof CalendarsPicker + @property [renderer=this.defaultRenderer] {string} The rendering templates. + @property [prevText='<Prev'] {string} Text for the previous month command. + @property [prevStatus='Show the previous month'] {string} Status text for the previous month command. + @property [prevJumpText='<<'] {string} Text for the previous year command. + @property [prevJumpStatus='Show the previous year'] {string} Status text for the previous year command. + @property [nextText='Next>'] {string} Text for the next month command. + @property [nextStatus='Show the next month'] {string} Status text for the next month command. + @property [nextJumpText='>>'] {string} Text for the next year command. + @property [nextJumpStatus='Show the next year'] {string} Status text for the next year command. + @property [currentText='Current'] {string} Text for the current month command. + @property [currentStatus='Show the current month'] {string} Status text for the current month command. + @property [todayText='Today'] {string} Text for the today's month command. + @property [todayStatus='Show today\'s month'] {string} Status text for the today's month command. + @property [clearText='Clear'] {string} Text for the clear command. + @property [clearStatus='Clear all the dates'] {string} Status text for the clear command. + @property [closeText='Close'] {string} Text for the close command. + @property [closeStatus='Close the datepicker'] {string} Status text for the close command. + @property [yearStatus='Change the year'] {string} Status text for year selection. + @property [earlierText='  ▲'] {string} Text for earlier years. + @property [laterText='  ▼'] {string} Text for later years. + @property [monthStatus='Change the month'] {string} Status text for month selection. + @property [weekText='Wk'] {string} Text for week of the year column header. + @property [weekStatus='Week of the year'] {string} Status text for week of the year column header. + @property [dayStatus='Select DD, M d, yyyy'] {string} Status text for selectable days. + @property [defaultStatus='Select a date'] {string} Status text shown by default. + @property [isRTL=false] {boolean} true if language is right-to-left. */ + regionalOptions: { // Available regional settings, indexed by language/country code + '': { // Default regional settings - English/US + renderer: {}, // this.defaultRenderer + prevText: '<Prev', + prevStatus: 'Show the previous month', + prevJumpText: '<<', + prevJumpStatus: 'Show the previous year', + nextText: 'Next>', + nextStatus: 'Show the next month', + nextJumpText: '>>', + nextJumpStatus: 'Show the next year', + currentText: 'Current', + currentStatus: 'Show the current month', + todayText: 'Today', + todayStatus: 'Show today\'s month', + clearText: 'Clear', + clearStatus: 'Clear all the dates', + closeText: 'Close', + closeStatus: 'Close the datepicker', + yearStatus: 'Change the year', + earlierText: '  ▲', + laterText: '  ▼', + monthStatus: 'Change the month', + weekText: 'Wk', + weekStatus: 'Week of the year', + dayStatus: 'Select DD, M d, yyyy', + defaultStatus: 'Select a date', + isRTL: false + } + }, + + /** Names of getter methods - those that can't be chained. + @memberof CalendarsPicker */ + _getters: ['getDate', 'isDisabled', 'isSelectable', 'retrieveDate'], + + _disabled: [], + + _popupClass: 'calendars-popup', // Marker for popup division + _triggerClass: 'calendars-trigger', // Marker for trigger element + _disableClass: 'calendars-disable', // Marker for disabled element + _monthYearClass: 'calendars-month-year', // Marker for month/year inputs + _curMonthClass: 'calendars-month-', // Marker for current month/year + _anyYearClass: 'calendars-any-year', // Marker for year direct input + _curDoWClass: 'calendars-dow-', // Marker for day of week + + _init: function() { + this.defaultOptions.commands = this.commands; + this.regionalOptions[''].renderer = this.defaultRenderer; + this._super(); + }, + + _instSettings: function(elem, options) { + return {selectedDates: [], drawDate: null, pickingRange: false, + inline: ($.inArray(elem[0].nodeName.toLowerCase(), ['div', 'span']) > -1), + get: function(name) { // Get a setting value, computing if necessary + if ($.inArray(name, ['defaultDate', 'minDate', 'maxDate']) > -1) { // Decode date settings + return this.options.calendar.determineDate(this.options[name], null, + this.selectedDates[0], this.get('dateFormat'), this.getConfig()); + } + if (name === 'dateFormat') { + return this.options.dateFormat || this.options.calendar.local.dateFormat; + } + return this.options[name]; + }, + curMinDate: function() { + return (this.pickingRange ? this.selectedDates[0] : this.get('minDate')); + }, + getConfig: function() { + return {dayNamesShort: this.options.dayNamesShort, dayNames: this.options.dayNames, + monthNamesShort: this.options.monthNamesShort, monthNames: this.options.monthNames, + calculateWeek: this.options.calculateWeek, shortYearCutoff: this.options.shortYearCutoff}; + } + }; + }, + + _postAttach: function(elem, inst) { + if (inst.inline) { + inst.drawDate = plugin._checkMinMax((inst.selectedDates[0] || + inst.get('defaultDate') || inst.options.calendar.today()).newDate(), inst); + inst.prevDate = inst.drawDate.newDate(); + this._update(elem[0]); + if ($.fn.mousewheel) { + elem.mousewheel(this._doMouseWheel); + } + } + else { + this._attachments(elem, inst); + elem.on('keydown.' + inst.name, this._keyDown).on('keypress.' + inst.name, this._keyPress). + on('keyup.' + inst.name, this._keyUp); + if (elem.attr('disabled')) { + this.disable(elem[0]); + } + } + }, + + _optionsChanged: function(elem, inst, options) { + if (options.calendar && options.calendar !== inst.options.calendar) { + var discardDate = function(name) { + return (typeof inst.options[name] === 'object' ? null : inst.options[name]); + }; + options = $.extend({defaultDate: discardDate('defaultDate'), + minDate: discardDate('minDate'), maxDate: discardDate('maxDate')}, options); + inst.selectedDates = []; + inst.drawDate = null; + } + var dates = inst.selectedDates; + $.extend(inst.options, options); + this.setDate(elem[0], dates, null, false, true); + inst.pickingRange = false; + var calendar = inst.options.calendar; + var defaultDate = inst.get('defaultDate'); + inst.drawDate = this._checkMinMax((defaultDate ? defaultDate : inst.drawDate) || + defaultDate || calendar.today(), inst).newDate(); + if (!inst.inline) { + this._attachments(elem, inst); + } + if (inst.inline || inst.div) { + this._update(elem[0]); + } + }, + + /** Attach events and trigger, if necessary. + @memberof CalendarsPicker + @private + @param elem {jQuery} The control to affect. + @param inst {object} The current instance settings. */ + _attachments: function(elem, inst) { + elem.off('focus.' + inst.name); + if (inst.options.showOnFocus) { + elem.on('focus.' + inst.name, this.show); + } + if (inst.trigger) { + inst.trigger.remove(); + } + var trigger = inst.options.showTrigger; + inst.trigger = (!trigger ? $([]) : + $(trigger).clone().removeAttr('id').addClass(this._triggerClass) + [inst.options.isRTL ? 'insertBefore' : 'insertAfter'](elem). + click(function() { + if (!plugin.isDisabled(elem[0])) { + plugin[plugin.curInst === inst ? 'hide' : 'show'](elem[0]); + } + })); + this._autoSize(elem, inst); + var dates = this._extractDates(inst, elem.val()); + if (dates) { + this.setDate(elem[0], dates, null, true); + } + var defaultDate = inst.get('defaultDate'); + if (inst.options.selectDefaultDate && defaultDate && inst.selectedDates.length === 0) { + this.setDate(elem[0], (defaultDate || inst.options.calendar.today()).newDate()); + } + }, + + /** Apply the maximum length for the date format. + @memberof CalendarsPicker + @private + @param elem {jQuery} The control to affect. + @param inst {object} The current instance settings. */ + _autoSize: function(elem, inst) { + if (inst.options.autoSize && !inst.inline) { + var calendar = inst.options.calendar; + var date = calendar.newDate(2009, 10, 20); // Ensure double digits + var dateFormat = inst.get('dateFormat'); + if (dateFormat.match(/[DM]/)) { + var findMax = function(names) { + var max = 0; + var maxI = 0; + for (var i = 0; i < names.length; i++) { + if (names[i].length > max) { + max = names[i].length; + maxI = i; + } + } + return maxI; + }; + date.month(findMax(calendar.local[dateFormat.match(/MM/) ? // Longest month + 'monthNames' : 'monthNamesShort']) + 1); + date.day(findMax(calendar.local[dateFormat.match(/DD/) ? // Longest day + 'dayNames' : 'dayNamesShort']) + 20 - date.dayOfWeek()); + } + inst.elem.attr('size', date.formatDate(dateFormat, + {localNumbers: inst.options.localnumbers}).length); + } + }, + + _preDestroy: function(elem, inst) { + if (inst.trigger) { + inst.trigger.remove(); + } + elem.empty().off('.' + inst.name); + if (inst.inline && $.fn.mousewheel) { + elem.unmousewheel(); + } + if (!inst.inline && inst.options.autoSize) { + elem.removeAttr('size'); + } + }, + + /** Apply multiple event functions. + @memberof CalendarsPicker + @param fns {function} The functions to apply. + @example onShow: multipleEvents(fn1, fn2, ...) */ + multipleEvents: function(fns) { + var funcs = arguments; + return function(args) { + for (var i = 0; i < funcs.length; i++) { + funcs[i].apply(this, arguments); + } + }; + }, + + /** Enable the control. + @memberof CalendarsPicker + @param elem {Element} The control to affect. + @example $(selector).datepick('enable') */ + enable: function(elem) { + elem = $(elem); + if (!elem.hasClass(this._getMarker())) { + return; + } + var inst = this._getInst(elem); + if (inst.inline) { + elem.children('.' + this._disableClass).remove().end(). + find('button,select').prop('disabled', false).end(). + find('a').attr('href', 'javascript:void(0)'); + } + else { + elem.prop('disabled', false); + inst.trigger.filter('button.' + this._triggerClass).prop('disabled', false).end(). + filter('img.' + this._triggerClass).css({opacity: '1.0', cursor: ''}); + } + this._disabled = $.map(this._disabled, + function(value) { return (value === elem[0] ? null : value); }); // Delete entry + }, + + /** Disable the control. + @memberof CalendarsPicker + @param elem {Element} The control to affect. + @example $(selector).datepick('disable') */ + disable: function(elem) { + elem = $(elem); + if (!elem.hasClass(this._getMarker())) { + return; + } + var inst = this._getInst(elem); + if (inst.inline) { + var inline = elem.children(':last'); + var offset = inline.offset(); + var relOffset = {left: 0, top: 0}; + inline.parents().each(function() { + if ($(this).css('position') === 'relative') { + relOffset = $(this).offset(); + return false; + } + }); + var zIndex = elem.css('zIndex'); + zIndex = (zIndex === 'auto' ? 0 : parseInt(zIndex, 10)) + 1; + elem.prepend('
'). + find('button,select').prop('disabled', true).end(). + find('a').removeAttr('href'); + } + else { + elem.prop('disabled', true); + inst.trigger.filter('button.' + this._triggerClass).prop('disabled', true).end(). + filter('img.' + this._triggerClass).css({opacity: '0.5', cursor: 'default'}); + } + this._disabled = $.map(this._disabled, + function(value) { return (value === elem[0] ? null : value); }); // Delete entry + this._disabled.push(elem[0]); + }, + + /** Is the first field in a jQuery collection disabled as a datepicker? + @memberof CalendarsPicker + @param elem {Element} The control to examine. + @return {boolean} true if disabled, false if enabled. + @example if ($(selector).datepick('isDisabled')) {...} */ + isDisabled: function(elem) { + return (elem && $.inArray(elem, this._disabled) > -1); + }, + + /** Show a popup datepicker. + @memberof CalendarsPicker + @param elem {Event|Element} a focus event or the control to use. + @example $(selector).datepick('show') */ + show: function(elem) { + elem = $(elem.target || elem); + var inst = plugin._getInst(elem); + if (plugin.curInst === inst) { + return; + } + if (plugin.curInst) { + plugin.hide(plugin.curInst, true); + } + if (!$.isEmptyObject(inst)) { + // Retrieve existing date(s) + inst.lastVal = null; + inst.selectedDates = plugin._extractDates(inst, elem.val()); + inst.pickingRange = false; + inst.drawDate = plugin._checkMinMax((inst.selectedDates[0] || + inst.get('defaultDate') || inst.options.calendar.today()).newDate(), inst); + inst.prevDate = inst.drawDate.newDate(); + plugin.curInst = inst; + // Generate content + plugin._update(elem[0], true); + // Adjust position before showing + var offset = plugin._checkOffset(inst); + inst.div.css({left: offset.left, top: offset.top}); + // And display + var showAnim = inst.options.showAnim; + var showSpeed = inst.options.showSpeed; + showSpeed = (showSpeed === 'normal' && $.ui && + parseInt($.ui.version.substring(2)) >= 8 ? '_default' : showSpeed); + if ($.effects && ($.effects[showAnim] || ($.effects.effect && $.effects.effect[showAnim]))) { + var data = inst.div.data(); // Update old effects data + for (var key in data) { + if (key.match(/^ec\.storage\./)) { + data[key] = inst._mainDiv.css(key.replace(/ec\.storage\./, '')); + } + } + inst.div.data(data).show(showAnim, inst.options.showOptions, showSpeed); + } + else { + inst.div[showAnim || 'show'](showAnim ? showSpeed : 0); + } + } + }, + + /** Extract possible dates from a string. + @memberof CalendarsPicker + @private + @param inst {object} The current instance settings. + @param text {string} The text to extract from. + @return {CDate[]} The extracted dates. */ + _extractDates: function(inst, datesText) { + if (datesText === inst.lastVal) { + return; + } + inst.lastVal = datesText; + datesText = datesText.split(inst.options.multiSelect ? inst.options.multiSeparator : + (inst.options.rangeSelect ? inst.options.rangeSeparator : '\x00')); + var dates = []; + for (var i = 0; i < datesText.length; i++) { + try { + var date = inst.options.calendar.parseDate(inst.get('dateFormat'), datesText[i]); + if (date) { + var found = false; + for (var j = 0; j < dates.length; j++) { + if (dates[j].compareTo(date) === 0) { + found = true; + break; + } + } + if (!found) { + dates.push(date); + } + } + } + catch (e) { + // Ignore + } + } + dates.splice(inst.options.multiSelect || (inst.options.rangeSelect ? 2 : 1), dates.length); + if (inst.options.rangeSelect && dates.length === 1) { + dates[1] = dates[0]; + } + return dates; + }, + + /** Update the datepicker display. + @memberof CalendarsPicker + @private + @param elem {Event|Element} a focus event or the control to use. + @param hidden {boolean} true to initially hide the datepicker. */ + _update: function(elem, hidden) { + elem = $(elem.target || elem); + var inst = plugin._getInst(elem); + if (!$.isEmptyObject(inst)) { + if (inst.inline || plugin.curInst === inst) { + if ($.isFunction(inst.options.onChangeMonthYear) && (!inst.prevDate || + inst.prevDate.year() !== inst.drawDate.year() || + inst.prevDate.month() !== inst.drawDate.month())) { + inst.options.onChangeMonthYear.apply(elem[0], + [inst.drawDate.year(), inst.drawDate.month()]); + } + } + if (inst.inline) { + var index = $('a, :input', elem).index($(':focus', elem)); + elem.html(this._generateContent(elem[0], inst)); + var focus = elem.find('a, :input'); + focus.eq(Math.max(Math.min(index, focus.length - 1), 0)).focus(); + } + else if (plugin.curInst === inst) { + if (!inst.div) { + inst.div = $('
').addClass(this._popupClass). + css({display: (hidden ? 'none' : 'static'), position: 'absolute', + left: elem.offset().left, top: elem.offset().top + elem.outerHeight()}). + appendTo($(inst.options.popupContainer || 'body')); + if ($.fn.mousewheel) { + inst.div.mousewheel(this._doMouseWheel); + } + } + inst.div.html(this._generateContent(elem[0], inst)); + elem.focus(); + } + } + }, + + /** Update the input field and any alternate field with the current dates. + @memberof CalendarsPicker + @private + @param elem {Element} The control to use. + @param keyUp {boolean} true if coming from keyUp processing (internal). */ + _updateInput: function(elem, keyUp) { + var inst = this._getInst(elem); + if (!$.isEmptyObject(inst)) { + var value = ''; + var altValue = ''; + var sep = (inst.options.multiSelect ? inst.options.multiSeparator : + inst.options.rangeSeparator); + var calendar = inst.options.calendar; + var dateFormat = inst.get('dateFormat'); + var altFormat = inst.options.altFormat || dateFormat; + var settings = {localNumbers: inst.options.localNumbers}; + for (var i = 0; i < inst.selectedDates.length; i++) { + value += (keyUp ? '' : (i > 0 ? sep : '') + + calendar.formatDate(dateFormat, inst.selectedDates[i], settings)); + altValue += (i > 0 ? sep : '') + + calendar.formatDate(altFormat, inst.selectedDates[i], settings); + } + if (!inst.inline && !keyUp) { + $(elem).val(value); + } + $(inst.options.altField).val(altValue); + if ($.isFunction(inst.options.onSelect) && !keyUp && !inst.inSelect) { + inst.inSelect = true; // Prevent endless loops + inst.options.onSelect.apply(elem, [inst.selectedDates]); + inst.inSelect = false; + } + } + }, + + /** Retrieve the size of left and top borders for an element. + @memberof CalendarsPicker + @private + @param elem {jQuery} The element of interest. + @return {number[]} The left and top borders. */ + _getBorders: function(elem) { + var convert = function(value) { + return {thin: 1, medium: 3, thick: 5}[value] || value; + }; + return [parseFloat(convert(elem.css('border-left-width'))), + parseFloat(convert(elem.css('border-top-width')))]; + }, + + /** Check positioning to remain on the screen. + @memberof CalendarsPicker + @private + @param inst {object} The current instance settings. + @return {object} The updated offset for the datepicker. */ + _checkOffset: function(inst) { + var base = (inst.elem.is(':hidden') && inst.trigger ? inst.trigger : inst.elem); + var offset = base.offset(); + var browserWidth = $(window).width(); + var browserHeight = $(window).height(); + if (browserWidth === 0) { + return offset; + } + var isFixed = false; + $(inst.elem).parents().each(function() { + isFixed |= $(this).css('position') === 'fixed'; + return !isFixed; + }); + var scrollX = document.documentElement.scrollLeft || document.body.scrollLeft; + var scrollY = document.documentElement.scrollTop || document.body.scrollTop; + var above = offset.top - (isFixed ? scrollY : 0) - inst.div.outerHeight(); + var below = offset.top - (isFixed ? scrollY : 0) + base.outerHeight(); + var alignL = offset.left - (isFixed ? scrollX : 0); + var alignR = offset.left - (isFixed ? scrollX : 0) + base.outerWidth() - inst.div.outerWidth(); + var tooWide = (offset.left - scrollX + inst.div.outerWidth()) > browserWidth; + var tooHigh = (offset.top - scrollY + inst.elem.outerHeight() + + inst.div.outerHeight()) > browserHeight; + inst.div.css('position', isFixed ? 'fixed' : 'absolute'); + var alignment = inst.options.alignment; + if (alignment === 'topLeft') { + offset = {left: alignL, top: above}; + } + else if (alignment === 'topRight') { + offset = {left: alignR, top: above}; + } + else if (alignment === 'bottomLeft') { + offset = {left: alignL, top: below}; + } + else if (alignment === 'bottomRight') { + offset = {left: alignR, top: below}; + } + else if (alignment === 'top') { + offset = {left: (inst.options.isRTL || tooWide ? alignR : alignL), top: above}; + } + else { // bottom + offset = {left: (inst.options.isRTL || tooWide ? alignR : alignL), + top: (tooHigh ? above : below)}; + } + offset.left = Math.max((isFixed ? 0 : scrollX), offset.left); + offset.top = Math.max((isFixed ? 0 : scrollY), offset.top); + return offset; + }, + + /** Close date picker if clicked elsewhere. + @memberof CalendarsPicker + @private + @param event {MouseEvent} The mouse click to check. */ + _checkExternalClick: function(event) { + if (!plugin.curInst) { + return; + } + var elem = $(event.target); + if (elem.closest('.' + plugin._popupClass + ',.' + plugin._triggerClass).length === 0 && + !elem.hasClass(plugin._getMarker())) { + plugin.hide(plugin.curInst); + } + }, + + /** Hide a popup datepicker. + @memberof CalendarsPicker + @param elem {Element|object} The control to use or the current instance settings. + @param immediate {boolean} true to close immediately without animation (internal). + @example $(selector).datepick('hide') */ + hide: function(elem, immediate) { + if (!elem) { + return; + } + var inst = this._getInst(elem); + if ($.isEmptyObject(inst)) { + inst = elem; + } + if (inst && inst === plugin.curInst) { + var showAnim = (immediate ? '' : inst.options.showAnim); + var showSpeed = inst.options.showSpeed; + showSpeed = (showSpeed === 'normal' && $.ui && + parseInt($.ui.version.substring(2)) >= 8 ? '_default' : showSpeed); + var postProcess = function() { + if (!inst.div) { + return; + } + inst.div.remove(); + inst.div = null; + plugin.curInst = null; + if ($.isFunction(inst.options.onClose)) { + inst.options.onClose.apply(elem, [inst.selectedDates]); + } + }; + inst.div.stop(); + if ($.effects && ($.effects[showAnim] || ($.effects.effect && $.effects.effect[showAnim]))) { + inst.div.hide(showAnim, inst.options.showOptions, showSpeed, postProcess); + } + else { + var hideAnim = (showAnim === 'slideDown' ? 'slideUp' : + (showAnim === 'fadeIn' ? 'fadeOut' : 'hide')); + inst.div[hideAnim]((showAnim ? showSpeed : ''), postProcess); + } + if (!showAnim) { + postProcess(); + } + } + }, + + /** Handle keystrokes in the datepicker. + @memberof CalendarsPicker + @private + @param event {KeyEvent} The keystroke. + @return {boolean} true if not handled, false if handled. */ + _keyDown: function(event) { + var elem = (event.data && event.data.elem) || event.target; + var inst = plugin._getInst(elem); + var handled = false; + if (inst.inline || inst.div) { + if (event.keyCode === 9) { // Tab - close + plugin.hide(elem); + } + else if (event.keyCode === 13) { // Enter - select + plugin.selectDate(elem, + $('a.' + inst.options.renderer.highlightedClass, inst.div)[0]); + handled = true; + } + else { // Command keystrokes + var commands = inst.options.commands; + for (var name in commands) { + var command = commands[name]; + if (command.keystroke.keyCode === event.keyCode && + !!command.keystroke.ctrlKey === !!(event.ctrlKey || event.metaKey) && + !!command.keystroke.altKey === event.altKey && + !!command.keystroke.shiftKey === event.shiftKey) { + plugin.performAction(elem, name); + handled = true; + break; + } + } + } + } + else { // Show on 'current' keystroke + var command = inst.options.commands.current; + if (command.keystroke.keyCode === event.keyCode && + !!command.keystroke.ctrlKey === !!(event.ctrlKey || event.metaKey) && + !!command.keystroke.altKey === event.altKey && + !!command.keystroke.shiftKey === event.shiftKey) { + plugin.show(elem); + handled = true; + } + } + inst.ctrlKey = ((event.keyCode < 48 && event.keyCode !== 32) || event.ctrlKey || event.metaKey); + if (handled) { + event.preventDefault(); + event.stopPropagation(); + } + return !handled; + }, + + /** Filter keystrokes in the datepicker. + @memberof CalendarsPicker + @private + @param event {KeyEvent} The keystroke. + @return {boolean} true if allowed, false if not allowed. */ + _keyPress: function(event) { + var inst = plugin._getInst((event.data && event.data.elem) || event.target); + if (!$.isEmptyObject(inst) && inst.options.constrainInput) { + var ch = String.fromCharCode(event.keyCode || event.charCode); + var allowedChars = plugin._allowedChars(inst); + return (event.metaKey || inst.ctrlKey || ch < ' ' || + !allowedChars || allowedChars.indexOf(ch) > -1); + } + return true; + }, + + /** Determine the set of characters allowed by the date format. + @memberof CalendarsPicker + @private + @param inst {object} The current instance settings. + @return {string} The set of allowed characters, or null if anything allowed. */ + _allowedChars: function(inst) { + var allowedChars = (inst.options.multiSelect ? inst.options.multiSeparator : + (inst.options.rangeSelect ? inst.options.rangeSeparator : '')); + var literal = false; + var hasNum = false; + var dateFormat = inst.get('dateFormat'); + for (var i = 0; i < dateFormat.length; i++) { + var ch = dateFormat.charAt(i); + if (literal) { + if (ch === "'" && dateFormat.charAt(i + 1) !== "'") { + literal = false; + } + else { + allowedChars += ch; + } + } + else { + switch (ch) { + case 'd': case 'm': case 'o': case 'w': + allowedChars += (hasNum ? '' : '0123456789'); hasNum = true; break; + case 'y': case '@': case '!': + allowedChars += (hasNum ? '' : '0123456789') + '-'; hasNum = true; break; + case 'J': + allowedChars += (hasNum ? '' : '0123456789') + '-.'; hasNum = true; break; + case 'D': case 'M': case 'Y': + return null; // Accept anything + case "'": + if (dateFormat.charAt(i + 1) === "'") { + allowedChars += "'"; + } + else { + literal = true; + } + break; + default: + allowedChars += ch; + } + } + } + return allowedChars; + }, + + /** Synchronise datepicker with the field. + @memberof CalendarsPicker + @private + @param event {KeyEvent} The keystroke. + @return {boolean} true if allowed, false if not allowed. */ + _keyUp: function(event) { + var elem = (event.data && event.data.elem) || event.target; + var inst = plugin._getInst(elem); + if (!$.isEmptyObject(inst) && !inst.ctrlKey && inst.lastVal !== inst.elem.val()) { + try { + var dates = plugin._extractDates(inst, inst.elem.val()); + if (dates.length > 0) { + plugin.setDate(elem, dates, null, true); + } + } + catch (event) { + // Ignore + } + } + return true; + }, + + /** Increment/decrement month/year on mouse wheel activity. + @memberof CalendarsPicker + @private + @param event {event} The mouse wheel event. + @param delta {number} The amount of change. */ + _doMouseWheel: function(event, delta) { + var elem = (plugin.curInst && plugin.curInst.elem[0]) || + $(event.target).closest('.' + plugin._getMarker())[0]; + if (plugin.isDisabled(elem)) { + return; + } + var inst = plugin._getInst(elem); + if (inst.options.useMouseWheel) { + delta = (delta < 0 ? -1 : +1); + plugin.changeMonth(elem, -inst.options[event.ctrlKey ? 'monthsToJump' : 'monthsToStep'] * delta); + } + event.preventDefault(); + }, + + /** Clear an input and close a popup datepicker. + @memberof CalendarsPicker + @param elem {Element} The control to use. + @example $(selector).datepick('clear') */ + clear: function(elem) { + var inst = this._getInst(elem); + if (!$.isEmptyObject(inst)) { + inst.selectedDates = []; + this.hide(elem); + var defaultDate = inst.get('defaultDate'); + if (inst.options.selectDefaultDate && defaultDate) { + this.setDate(elem, (defaultDate || inst.options.calendar.today()).newDate()); + } + else { + this._updateInput(elem); + } + } + }, + + /** Retrieve the selected date(s) for a datepicker. + @memberof CalendarsPicker + @param elem {Element} The control to examine. + @return {CDate[]} The selected date(s). + @example var dates = $(selector).datepick('getDate') */ + getDate: function(elem) { + var inst = this._getInst(elem); + return (!$.isEmptyObject(inst) ? inst.selectedDates : []); + }, + + /** Set the selected date(s) for a datepicker. + @memberof CalendarsPicker + @param elem {Element} the control to examine. + @param dates {CDate|number|string|array} the selected date(s). + @param [endDate] {CDate|number|string} the ending date for a range. + @param [keyUp] {boolean} true if coming from keyUp processing (internal). + @param [setOpt] {boolean} true if coming from option processing (internal). + @example $(selector).datepick('setDate', new Date(2014, 12-1, 25)) + $(selector).datepick('setDate', '12/25/2014', '01/01/2015') + $(selector).datepick('setDate', [date1, date2, date3]) */ + setDate: function(elem, dates, endDate, keyUp, setOpt) { + var inst = this._getInst(elem); + if (!$.isEmptyObject(inst)) { + if (!$.isArray(dates)) { + dates = [dates]; + if (endDate) { + dates.push(endDate); + } + } + var minDate = inst.get('minDate'); + var maxDate = inst.get('maxDate'); + var curDate = inst.selectedDates[0]; + inst.selectedDates = []; + for (var i = 0; i < dates.length; i++) { + var date = inst.options.calendar.determineDate( + dates[i], null, curDate, inst.get('dateFormat'), inst.getConfig()); + if (date) { + if ((!minDate || date.compareTo(minDate) !== -1) && + (!maxDate || date.compareTo(maxDate) !== +1)) { + var found = false; + for (var j = 0; j < inst.selectedDates.length; j++) { + if (inst.selectedDates[j].compareTo(date) === 0) { + found = true; + break; + } + } + if (!found) { + inst.selectedDates.push(date); + } + } + } + } + inst.selectedDates.splice(inst.options.multiSelect || + (inst.options.rangeSelect ? 2 : 1), inst.selectedDates.length); + if (inst.options.rangeSelect) { + switch (inst.selectedDates.length) { + case 1: inst.selectedDates[1] = inst.selectedDates[0]; break; + case 2: inst.selectedDates[1] = + (inst.selectedDates[0].compareTo(inst.selectedDates[1]) === +1 ? + inst.selectedDates[0] : inst.selectedDates[1]); break; + } + inst.pickingRange = false; + } + inst.prevDate = (inst.drawDate ? inst.drawDate.newDate() : null); + inst.drawDate = this._checkMinMax((inst.selectedDates[0] || + inst.get('defaultDate') || inst.options.calendar.today()).newDate(), inst); + if (!setOpt) { + this._update(elem); + this._updateInput(elem, keyUp); + } + } + }, + + /** Determine whether a date is selectable for this datepicker. + @memberof CalendarsPicker + @private + @param elem {Element} The control to check. + @param date {CDate|string|number} The date to check. + @return {boolean} true if selectable, false if not. + @example var selectable = $(selector).datepick('isSelectable', date) */ + isSelectable: function(elem, date) { + var inst = this._getInst(elem); + if ($.isEmptyObject(inst)) { + return false; + } + date = inst.options.calendar.determineDate(date, + inst.selectedDates[0] || inst.options.calendar.today(), null, + inst.options.dateFormat, inst.getConfig()); + return this._isSelectable(elem, date, inst.options.onDate, + inst.get('minDate'), inst.get('maxDate')); + }, + + /** Internally determine whether a date is selectable for this datepicker. + @memberof CalendarsPicker + @private + @param elem {Element} the control to check. + @param date {CDate} The date to check. + @param onDate {function|boolean} Any onDate callback or callback.selectable. + @param minDate {CDate} The minimum allowed date. + @param maxDate {CDate} The maximum allowed date. + @return {boolean} true if selectable, false if not. */ + _isSelectable: function(elem, date, onDate, minDate, maxDate) { + var dateInfo = (typeof onDate === 'boolean' ? {selectable: onDate} : + (!$.isFunction(onDate) ? {} : onDate.apply(elem, [date, true]))); + return (dateInfo.selectable !== false) && + (!minDate || date.toJD() >= minDate.toJD()) && (!maxDate || date.toJD() <= maxDate.toJD()); + }, + + /** Perform a named action for a datepicker. + @memberof CalendarsPicker + @param elem {element} The control to affect. + @param action {string} The name of the action. */ + performAction: function(elem, action) { + var inst = this._getInst(elem); + if (!$.isEmptyObject(inst) && !this.isDisabled(elem)) { + var commands = inst.options.commands; + if (commands[action] && commands[action].enabled.apply(elem, [inst])) { + commands[action].action.apply(elem, [inst]); + } + } + }, + + /** Set the currently shown month, defaulting to today's. + @memberof CalendarsPicker + @param elem {Element} The control to affect. + @param [year] {number} The year to show. + @param [month] {number} The month to show (1-12). + @param [day] {number} The day to show. + @example $(selector).datepick('showMonth', 2014, 12, 25) */ + showMonth: function(elem, year, month, day) { + var inst = this._getInst(elem); + if (!$.isEmptyObject(inst) && (day != null || + (inst.drawDate.year() !== year || inst.drawDate.month() !== month))) { + inst.prevDate = inst.drawDate.newDate(); + var calendar = inst.options.calendar; + var show = this._checkMinMax((year != null ? + calendar.newDate(year, month, 1) : calendar.today()), inst); + inst.drawDate.date(show.year(), show.month(), + (day != null ? day : Math.min(inst.drawDate.day(), + calendar.daysInMonth(show.year(), show.month())))); + this._update(elem); + } + }, + + /** Adjust the currently shown month. + @memberof CalendarsPicker + @param elem {Element} The control to affect. + @param offset {number} The number of months to change by. + @example $(selector).datepick('changeMonth', 2)*/ + changeMonth: function(elem, offset) { + var inst = this._getInst(elem); + if (!$.isEmptyObject(inst)) { + var date = inst.drawDate.newDate().add(offset, 'm'); + this.showMonth(elem, date.year(), date.month()); + } + }, + + /** Adjust the currently shown day. + @memberof CalendarsPicker + @param elem {Element} The control to affect. + @param offset {number} The number of days to change by. + @example $(selector).datepick('changeDay', 7)*/ + changeDay: function(elem, offset) { + var inst = this._getInst(elem); + if (!$.isEmptyObject(inst)) { + var date = inst.drawDate.newDate().add(offset, 'd'); + this.showMonth(elem, date.year(), date.month(), date.day()); + } + }, + + /** Restrict a date to the minimum/maximum specified. + @memberof CalendarsPicker + @private + @param date {CDate} The date to check. + @param inst {object} The current instance settings. */ + _checkMinMax: function(date, inst) { + var minDate = inst.get('minDate'); + var maxDate = inst.get('maxDate'); + date = (minDate && date.compareTo(minDate) === -1 ? minDate.newDate() : date); + date = (maxDate && date.compareTo(maxDate) === +1 ? maxDate.newDate() : date); + return date; + }, + + /** Retrieve the date associated with an entry in the datepicker. + @memberof CalendarsPicker + @param elem {Element} The control to examine. + @param target {Element} The selected datepicker element. + @return {CDate} The corresponding date, or null. + @example var date = $(selector).datepick('retrieveDate', $('div.datepick-popup a:contains(10)')[0]) */ + retrieveDate: function(elem, target) { + var inst = this._getInst(elem); + return ($.isEmptyObject(inst) ? null : inst.options.calendar.fromJD( + parseFloat(target.className.replace(/^.*jd(\d+\.5).*$/, '$1')))); + }, + + /** Select a date for this datepicker. + @memberof CalendarsPicker + @param elem {Element} The control to examine. + @param target {Element} The selected datepicker element. + @example $(selector).datepick('selectDate', $('div.datepick-popup a:contains(10)')[0]) */ + selectDate: function(elem, target) { + var inst = this._getInst(elem); + if (!$.isEmptyObject(inst) && !this.isDisabled(elem)) { + var date = this.retrieveDate(elem, target); + if (inst.options.multiSelect) { + var found = false; + for (var i = 0; i < inst.selectedDates.length; i++) { + if (date.compareTo(inst.selectedDates[i]) === 0) { + inst.selectedDates.splice(i, 1); + found = true; + break; + } + } + if (!found && inst.selectedDates.length < inst.options.multiSelect) { + inst.selectedDates.push(date); + } + } + else if (inst.options.rangeSelect) { + if (inst.pickingRange) { + inst.selectedDates[1] = date; + } + else { + inst.selectedDates = [date, date]; + } + inst.pickingRange = !inst.pickingRange; + } + else { + inst.selectedDates = [date]; + } + inst.prevDate = inst.drawDate = date.newDate(); + this._updateInput(elem); + if (inst.inline || inst.pickingRange || inst.selectedDates.length < + (inst.options.multiSelect || (inst.options.rangeSelect ? 2 : 1))) { + this._update(elem); + } + else { + this.hide(elem); + } + } + }, + + /** Generate the datepicker content for this control. + @memberof CalendarsPicker + @private + @param elem {Element} The control to affect. + @param inst {object} The current instance settings. + @return {jQuery} The datepicker content */ + _generateContent: function(elem, inst) { + var monthsToShow = inst.options.monthsToShow; + monthsToShow = ($.isArray(monthsToShow) ? monthsToShow : [1, monthsToShow]); + inst.drawDate = this._checkMinMax( + inst.drawDate || inst.get('defaultDate') || inst.options.calendar.today(), inst); + var drawDate = inst.drawDate.newDate().add(-inst.options.monthsOffset, 'm'); + // Generate months + var monthRows = ''; + for (var row = 0; row < monthsToShow[0]; row++) { + var months = ''; + for (var col = 0; col < monthsToShow[1]; col++) { + months += this._generateMonth(elem, inst, drawDate.year(), + drawDate.month(), inst.options.calendar, inst.options.renderer, (row === 0 && col === 0)); + drawDate.add(1, 'm'); + } + monthRows += this._prepare(inst.options.renderer.monthRow, inst).replace(/\{months\}/, months); + } + var picker = this._prepare(inst.options.renderer.picker, inst).replace(/\{months\}/, monthRows). + replace(/\{weekHeader\}/g, this._generateDayHeaders(inst, inst.options.calendar, inst.options.renderer)); + // Add commands + var addCommand = function(type, open, close, name, classes) { + if (picker.indexOf('{' + type + ':' + name + '}') === -1) { + return; + } + var command = inst.options.commands[name]; + var date = (inst.options.commandsAsDateFormat ? command.date.apply(elem, [inst]) : null); + picker = picker.replace(new RegExp('\\{' + type + ':' + name + '\\}', 'g'), + '<' + open + (command.status ? ' title="' + inst.options[command.status] + '"' : '') + + ' class="' + inst.options.renderer.commandClass + ' ' + + inst.options.renderer.commandClass + '-' + name + ' ' + classes + + (command.enabled(inst) ? '' : ' ' + inst.options.renderer.disabledClass) + '">' + + (date ? date.formatDate(inst.options[command.text], {localNumbers: inst.options.localNumbers}) : + inst.options[command.text]) + ''); + }; + for (var name in inst.options.commands) { + addCommand('button', 'button type="button"', 'button', name, + inst.options.renderer.commandButtonClass); + addCommand('link', 'a href="javascript:void(0)"', 'a', name, + inst.options.renderer.commandLinkClass); + } + picker = $(picker); + if (monthsToShow[1] > 1) { + var count = 0; + $(inst.options.renderer.monthSelector, picker).each(function() { + var nth = ++count % monthsToShow[1]; + $(this).addClass(nth === 1 ? 'first' : (nth === 0 ? 'last' : '')); + }); + } + // Add datepicker behaviour + var self = this; + function removeHighlight() { + (inst.inline ? $(this).closest('.' + self._getMarker()) : inst.div). + find(inst.options.renderer.daySelector + ' a'). + removeClass(inst.options.renderer.highlightedClass); + } + picker.find(inst.options.renderer.daySelector + ' a').hover( + function() { + removeHighlight.apply(this); + $(this).addClass(inst.options.renderer.highlightedClass); + }, + removeHighlight). + click(function() { + self.selectDate(elem, this); + }).end(). + find('select.' + this._monthYearClass + ':not(.' + this._anyYearClass + ')'). + change(function() { + var monthYear = $(this).val().split('/'); + self.showMonth(elem, parseInt(monthYear[1], 10), parseInt(monthYear[0], 10)); + }).end(). + find('select.' + this._anyYearClass).click(function() { + $(this).css('visibility', 'hidden'). + next('input').css({left: this.offsetLeft, top: this.offsetTop, + width: this.offsetWidth, height: this.offsetHeight}).show().focus(); + }).end(). + find('input.' + self._monthYearClass).change(function() { + try { + var year = parseInt($(this).val(), 10); + year = (isNaN(year) ? inst.drawDate.year() : year); + self.showMonth(elem, year, inst.drawDate.month(), inst.drawDate.day()); + } + catch (e) { + alert(e); + } + }).keydown(function(event) { + if (event.keyCode === 13) { // Enter + $(event.elem).change(); + } + else if (event.keyCode === 27) { // Escape + $(event.elem).hide().prev('select').css('visibility', 'visible'); + inst.elem.focus(); + } + }); + // Add keyboard handling + var data = {elem: inst.elem[0]}; + picker.keydown(data, this._keyDown).keypress(data, this._keyPress).keyup(data, this._keyUp); + // Add command behaviour + picker.find('.' + inst.options.renderer.commandClass).click(function() { + if (!$(this).hasClass(inst.options.renderer.disabledClass)) { + var action = this.className.replace( + new RegExp('^.*' + inst.options.renderer.commandClass + '-([^ ]+).*$'), '$1'); + plugin.performAction(elem, action); + } + }); + // Add classes + if (inst.options.isRTL) { + picker.addClass(inst.options.renderer.rtlClass); + } + if (monthsToShow[0] * monthsToShow[1] > 1) { + picker.addClass(inst.options.renderer.multiClass); + } + if (inst.options.pickerClass) { + picker.addClass(inst.options.pickerClass); + } + // Resize + $('body').append(picker); + var width = 0; + picker.find(inst.options.renderer.monthSelector).each(function() { + width += $(this).outerWidth(); + }); + picker.width(width / monthsToShow[0]); + // Pre-show customisation + if ($.isFunction(inst.options.onShow)) { + inst.options.onShow.apply(elem, [picker, inst.options.calendar, inst]); + } + return picker; + }, + + /** Generate the content for a single month. + @memberof CalendarsPicker + @private + @param elem {Element} The control to affect. + @param inst {object} The current instance settings. + @param year {number} The year to generate. + @param month {number} The month to generate. + @param calendar {BaseCalendar} The current calendar. + @param renderer {object} The rendering templates. + @param first {boolean} true if first of multiple months. + @return {string} The month content. */ + _generateMonth: function(elem, inst, year, month, calendar, renderer, first) { + var daysInMonth = calendar.daysInMonth(year, month); + var monthsToShow = inst.options.monthsToShow; + monthsToShow = ($.isArray(monthsToShow) ? monthsToShow : [1, monthsToShow]); + var fixedWeeks = inst.options.fixedWeeks || (monthsToShow[0] * monthsToShow[1] > 1); + var firstDay = inst.options.firstDay; + firstDay = (firstDay == null ? calendar.local.firstDay : firstDay); + var leadDays = (calendar.dayOfWeek(year, month, calendar.minDay) - + firstDay + calendar.daysInWeek()) % calendar.daysInWeek(); + var numWeeks = (fixedWeeks ? 6 : Math.ceil((leadDays + daysInMonth) / calendar.daysInWeek())); + var selectOtherMonths = inst.options.selectOtherMonths && inst.options.showOtherMonths; + var minDate = (inst.pickingRange ? inst.selectedDates[0] : inst.get('minDate')); + var maxDate = inst.get('maxDate'); + var showWeeks = renderer.week.indexOf('{weekOfYear}') > -1; + var today = calendar.today(); + var drawDate = calendar.newDate(year, month, calendar.minDay); + drawDate.add(-leadDays - (fixedWeeks && + (drawDate.dayOfWeek() === firstDay || drawDate.daysInMonth() < calendar.daysInWeek())? + calendar.daysInWeek() : 0), 'd'); + var jd = drawDate.toJD(); + // Localise numbers if requested and available + var localiseNumbers = function(value) { + return (inst.options.localNumbers && calendar.local.digits ? calendar.local.digits(value) : value); + }; + // Generate weeks + var weeks = ''; + for (var week = 0; week < numWeeks; week++) { + var weekOfYear = (!showWeeks ? '' : '' + + ($.isFunction(inst.options.calculateWeek) ? + inst.options.calculateWeek(drawDate) : drawDate.weekOfYear()) + ''); + var days = ''; + for (var day = 0; day < calendar.daysInWeek(); day++) { + var selected = false; + if (inst.options.rangeSelect && inst.selectedDates.length > 0) { + selected = (drawDate.compareTo(inst.selectedDates[0]) !== -1 && + drawDate.compareTo(inst.selectedDates[1]) !== +1) + } + else { + for (var i = 0; i < inst.selectedDates.length; i++) { + if (inst.selectedDates[i].compareTo(drawDate) === 0) { + selected = true; + break; + } + } + } + var dateInfo = (!$.isFunction(inst.options.onDate) ? {} : + inst.options.onDate.apply(elem, [drawDate, drawDate.month() === month])); + var selectable = (selectOtherMonths || drawDate.month() === month) && + this._isSelectable(elem, drawDate, dateInfo.selectable, minDate, maxDate); + days += this._prepare(renderer.day, inst).replace(/\{day\}/g, + (selectable ? '' + + (inst.options.showOtherMonths || drawDate.month() === month ? + dateInfo.content || localiseNumbers(drawDate.day()) : ' ') + + (selectable ? '' : '')); + drawDate.add(1, 'd'); + jd++; + } + weeks += this._prepare(renderer.week, inst).replace(/\{days\}/g, days). + replace(/\{weekOfYear\}/g, weekOfYear); + } + var monthHeader = this._prepare(renderer.month, inst).match(/\{monthHeader(:[^\}]+)?\}/); + monthHeader = (monthHeader[0].length <= 13 ? 'MM yyyy' : + monthHeader[0].substring(13, monthHeader[0].length - 1)); + monthHeader = (first ? this._generateMonthSelection( + inst, year, month, minDate, maxDate, monthHeader, calendar, renderer) : + calendar.formatDate(monthHeader, calendar.newDate(year, month, calendar.minDay), + {localNumbers: inst.options.localNumbers})); + var weekHeader = this._prepare(renderer.weekHeader, inst). + replace(/\{days\}/g, this._generateDayHeaders(inst, calendar, renderer)); + return this._prepare(renderer.month, inst).replace(/\{monthHeader(:[^\}]+)?\}/g, monthHeader). + replace(/\{weekHeader\}/g, weekHeader).replace(/\{weeks\}/g, weeks); + }, + + /** Generate the HTML for the day headers. + @memberof CalendarsPicker + @private + @param inst {object} The current instance settings. + @param calendar {BaseCalendar} The current calendar. + @param renderer {object} The rendering templates. + @return {string} A week's worth of day headers. */ + _generateDayHeaders: function(inst, calendar, renderer) { + var firstDay = inst.options.firstDay; + firstDay = (firstDay == null ? calendar.local.firstDay : firstDay); + var header = ''; + for (var day = 0; day < calendar.daysInWeek(); day++) { + var dow = (day + firstDay) % calendar.daysInWeek(); + header += this._prepare(renderer.dayHeader, inst).replace(/\{day\}/g, + '' + calendar.local.dayNamesMin[dow] + ''); + } + return header; + }, + + /** Generate selection controls for month. + @memberof CalendarsPicker + @private + @param inst {object} The current instance settings. + @param year {number} The year to generate. + @param month {number} The month to generate. + @param minDate {CDate} The minimum date allowed. + @param maxDate {CDate} The maximum date allowed. + @param monthHeader {string} The month/year format. + @param calendar {BaseCalendar} The current calendar. + @return {string} The month selection content. */ + _generateMonthSelection: function(inst, year, month, minDate, maxDate, monthHeader, calendar) { + if (!inst.options.changeMonth) { + return calendar.formatDate(monthHeader, calendar.newDate(year, month, 1), + {localNumbers: inst.options.localNumbers}); + } + // Months + var monthNames = calendar.local[ + 'monthNames' + (monthHeader.match(/mm/i) ? '' : 'Short')]; + var html = monthHeader.replace(/m+/i, '\\x2E').replace(/y+/i, '\\x2F'); + var selector = ''; + html = html.replace(/\\x2E/, selector); + // Years + var yearRange = inst.options.yearRange; + if (yearRange === 'any') { + selector = '' + + ''; + } + else { + yearRange = yearRange.split(':'); + var todayYear = calendar.today().year(); + var start = (yearRange[0].match('c[+-].*') ? year + parseInt(yearRange[0].substring(1), 10) : + ((yearRange[0].match('[+-].*') ? todayYear : 0) + parseInt(yearRange[0], 10))); + var end = (yearRange[1].match('c[+-].*') ? year + parseInt(yearRange[1].substring(1), 10) : + ((yearRange[1].match('[+-].*') ? todayYear : 0) + parseInt(yearRange[1], 10))); + selector = ''; + } + html = html.replace(/\\x2F/, selector); + return html; + }, + + /** Prepare a render template for use. + Exclude popup/inline sections that are not applicable. + Localise text of the form: {l10n:name}. + @memberof CalendarsPicker + @private + @param text {string} The text to localise. + @param inst {object} The current instance settings. + @return {string} The localised text. */ + _prepare: function(text, inst) { + var replaceSection = function(type, retain) { + while (true) { + var start = text.indexOf('{' + type + ':start}'); + if (start === -1) { + return; + } + var end = text.substring(start).indexOf('{' + type + ':end}'); + if (end > -1) { + text = text.substring(0, start) + + (retain ? text.substr(start + type.length + 8, end - type.length - 8) : '') + + text.substring(start + end + type.length + 6); + } + } + }; + replaceSection('inline', inst.inline); + replaceSection('popup', !inst.inline); + var pattern = /\{l10n:([^\}]+)\}/; + var matches = null; + while (matches = pattern.exec(text)) { + text = text.replace(matches[0], inst.options[matches[1]]); + } + return text; + } + }); + + var plugin = $.calendarsPicker; // Singleton instance + + $(function() { + $(document).on('mousedown.' + pluginName, plugin._checkExternalClick). + on('resize.' + pluginName, function() { plugin.hide(plugin.curInst); }); + }); + +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.all.min.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.all.min.js new file mode 100644 index 0000000..e22eef6 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.all.min.js @@ -0,0 +1,6 @@ +/* http://keith-wood.name/calendars.html + Calendars for jQuery v2.0.2. + Written by Keith Wood (wood.keith{at}optusnet.com.au) August 2009. + Available under the MIT (http://keith-wood.name/licence.html) license. + Please attribute the author if you use it. */ +(function($){function Calendars(){this.regionalOptions=[];this.regionalOptions['']={invalidCalendar:'Calendar {0} not found',invalidDate:'Invalid {0} date',invalidMonth:'Invalid {0} month',invalidYear:'Invalid {0} year',differentCalendars:'Cannot mix {0} and {1} dates'};this.local=this.regionalOptions[''];this.calendars={};this._localCals={}}$.extend(Calendars.prototype,{instance:function(a,b){a=(a||'gregorian').toLowerCase();b=b||'';var c=this._localCals[a+'-'+b];if(!c&&this.calendars[a]){c=new this.calendars[a](b);this._localCals[a+'-'+b]=c}if(!c){throw(this.local.invalidCalendar||this.regionalOptions[''].invalidCalendar).replace(/\{0\}/,a)}return c},newDate:function(a,b,c,d,e){d=(a!=null&&a.year?a.calendar():(typeof d==='string'?this.instance(d,e):d))||this.instance();return d.newDate(a,b,c)},substituteDigits:function(c){return function(b){return(b+'').replace(/[0-9]/g,function(a){return c[a]})}},substituteChineseDigits:function(e,f){return function(a){var b='';var c=0;while(a>0){var d=a%10;b=(d===0?'':e[d]+f[c])+b;c++;a=Math.floor(a/10)}if(b.indexOf(e[1]+f[1])===0){b=b.substr(1)}return b||e[0]}}});function CDate(a,b,c,d){this._calendar=a;this._year=b;this._month=c;this._day=d;if(this._calendar._validateLevel===0&&!this._calendar.isValid(this._year,this._month,this._day)){throw($.calendars.local.invalidDate||$.calendars.regionalOptions[''].invalidDate).replace(/\{0\}/,this._calendar.local.name)}}function pad(a,b){a=''+a;return'000000'.substring(0,b-a.length)+a}$.extend(CDate.prototype,{newDate:function(a,b,c){return this._calendar.newDate((a==null?this:a),b,c)},year:function(a){return(arguments.length===0?this._year:this.set(a,'y'))},month:function(a){return(arguments.length===0?this._month:this.set(a,'m'))},day:function(a){return(arguments.length===0?this._day:this.set(a,'d'))},date:function(a,b,c){if(!this._calendar.isValid(a,b,c)){throw($.calendars.local.invalidDate||$.calendars.regionalOptions[''].invalidDate).replace(/\{0\}/,this._calendar.local.name)}this._year=a;this._month=b;this._day=c;return this},leapYear:function(){return this._calendar.leapYear(this)},epoch:function(){return this._calendar.epoch(this)},formatYear:function(){return this._calendar.formatYear(this)},monthOfYear:function(){return this._calendar.monthOfYear(this)},weekOfYear:function(){return this._calendar.weekOfYear(this)},daysInYear:function(){return this._calendar.daysInYear(this)},dayOfYear:function(){return this._calendar.dayOfYear(this)},daysInMonth:function(){return this._calendar.daysInMonth(this)},dayOfWeek:function(){return this._calendar.dayOfWeek(this)},weekDay:function(){return this._calendar.weekDay(this)},extraInfo:function(){return this._calendar.extraInfo(this)},add:function(a,b){return this._calendar.add(this,a,b)},set:function(a,b){return this._calendar.set(this,a,b)},compareTo:function(a){if(this._calendar.name!==a._calendar.name){throw($.calendars.local.differentCalendars||$.calendars.regionalOptions[''].differentCalendars).replace(/\{0\}/,this._calendar.local.name).replace(/\{1\}/,a._calendar.local.name)}var c=(this._year!==a._year?this._year-a._year:this._month!==a._month?this.monthOfYear()-a.monthOfYear():this._day-a._day);return(c===0?0:(c<0?-1:+1))},calendar:function(){return this._calendar},toJD:function(){return this._calendar.toJD(this)},fromJD:function(a){return this._calendar.fromJD(a)},toJSDate:function(){return this._calendar.toJSDate(this)},fromJSDate:function(a){return this._calendar.fromJSDate(a)},toString:function(){return(this.year()<0?'-':'')+pad(Math.abs(this.year()),4)+'-'+pad(this.month(),2)+'-'+pad(this.day(),2)}});function BaseCalendar(){this.shortYearCutoff='+10'}$.extend(BaseCalendar.prototype,{_validateLevel:0,newDate:function(a,b,c){if(a==null){return this.today()}if(a.year){this._validate(a,b,c,$.calendars.local.invalidDate||$.calendars.regionalOptions[''].invalidDate);c=a.day();b=a.month();a=a.year()}return new CDate(this,a,b,c)},today:function(){return this.fromJSDate(new Date())},epoch:function(a){var b=this._validate(a,this.minMonth,this.minDay,$.calendars.local.invalidYear||$.calendars.regionalOptions[''].invalidYear);return(b.year()<0?this.local.epochs[0]:this.local.epochs[1])},formatYear:function(a){var b=this._validate(a,this.minMonth,this.minDay,$.calendars.local.invalidYear||$.calendars.regionalOptions[''].invalidYear);return(b.year()<0?'-':'')+pad(Math.abs(b.year()),4)},monthsInYear:function(a){this._validate(a,this.minMonth,this.minDay,$.calendars.local.invalidYear||$.calendars.regionalOptions[''].invalidYear);return 12},monthOfYear:function(a,b){var c=this._validate(a,b,this.minDay,$.calendars.local.invalidMonth||$.calendars.regionalOptions[''].invalidMonth);return(c.month()+this.monthsInYear(c)-this.firstMonth)%this.monthsInYear(c)+this.minMonth},fromMonthOfYear:function(a,b){var m=(b+this.firstMonth-2*this.minMonth)%this.monthsInYear(a)+this.minMonth;this._validate(a,m,this.minDay,$.calendars.local.invalidMonth||$.calendars.regionalOptions[''].invalidMonth);return m},daysInYear:function(a){var b=this._validate(a,this.minMonth,this.minDay,$.calendars.local.invalidYear||$.calendars.regionalOptions[''].invalidYear);return(this.leapYear(b)?366:365)},dayOfYear:function(a,b,c){var d=this._validate(a,b,c,$.calendars.local.invalidDate||$.calendars.regionalOptions[''].invalidDate);return d.toJD()-this.newDate(d.year(),this.fromMonthOfYear(d.year(),this.minMonth),this.minDay).toJD()+1},daysInWeek:function(){return 7},dayOfWeek:function(a,b,c){var d=this._validate(a,b,c,$.calendars.local.invalidDate||$.calendars.regionalOptions[''].invalidDate);return(Math.floor(this.toJD(d))+2)%this.daysInWeek()},extraInfo:function(a,b,c){this._validate(a,b,c,$.calendars.local.invalidDate||$.calendars.regionalOptions[''].invalidDate);return{}},add:function(a,b,c){this._validate(a,this.minMonth,this.minDay,$.calendars.local.invalidDate||$.calendars.regionalOptions[''].invalidDate);return this._correctAdd(a,this._add(a,b,c),b,c)},_add:function(c,f,g){this._validateLevel++;if(g==='d'||g==='w'){var h=c.toJD()+f*(g==='w'?this.daysInWeek():1);var d=c.calendar().fromJD(h);this._validateLevel--;return[d.year(),d.month(),d.day()]}try{var y=c.year()+(g==='y'?f:0);var m=c.monthOfYear()+(g==='m'?f:0);var d=c.day();var i=function(a){while(mb-1+a.minMonth){y++;m-=b;b=a.monthsInYear(y)}};if(g==='y'){if(c.month()!==this.fromMonthOfYear(y,m)){m=this.newDate(y,c.month(),this.minDay).monthOfYear()}m=Math.min(m,this.monthsInYear(y));d=Math.min(d,this.daysInMonth(y,this.fromMonthOfYear(y,m)))}else if(g==='m'){i(this);d=Math.min(d,this.daysInMonth(y,this.fromMonthOfYear(y,m)))}var j=[y,this.fromMonthOfYear(y,m),d];this._validateLevel--;return j}catch(e){this._validateLevel--;throw e;}},_correctAdd:function(a,b,c,d){if(!this.hasYearZero&&(d==='y'||d==='m')){if(b[0]===0||(a.year()>0)!==(b[0]>0)){var e={y:[1,1,'y'],m:[1,this.monthsInYear(-1),'m'],w:[this.daysInWeek(),this.daysInYear(-1),'d'],d:[1,this.daysInYear(-1),'d']}[d];var f=(c<0?-1:+1);b=this._add(a,c*e[0]+f*e[1],e[2])}}return a.date(b[0],b[1],b[2])},set:function(a,b,c){this._validate(a,this.minMonth,this.minDay,$.calendars.local.invalidDate||$.calendars.regionalOptions[''].invalidDate);var y=(c==='y'?b:a.year());var m=(c==='m'?b:a.month());var d=(c==='d'?b:a.day());if(c==='y'||c==='m'){d=Math.min(d,this.daysInMonth(y,m))}return a.date(y,m,d)},isValid:function(a,b,c){this._validateLevel++;var d=(this.hasYearZero||a!==0);if(d){var e=this.newDate(a,b,this.minDay);d=(b>=this.minMonth&&b-this.minMonth=this.minDay&&c-this.minDay13.5?13:1);var i=c-(h>2.5?4716:4715);if(i<=0){i--}return this.newDate(i,h,g)},toJSDate:function(a,b,c){var d=this._validate(a,b,c,$.calendars.local.invalidDate||$.calendars.regionalOptions[''].invalidDate);var e=new Date(d.year(),d.month()-1,d.day());e.setHours(0);e.setMinutes(0);e.setSeconds(0);e.setMilliseconds(0);e.setHours(e.getHours()>12?e.getHours()+2:0);return e},fromJSDate:function(a){return this.newDate(a.getFullYear(),a.getMonth()+1,a.getDate())}});$.calendars=new Calendars();$.calendars.cdate=CDate;$.calendars.baseCalendar=BaseCalendar;$.calendars.calendars.gregorian=GregorianCalendar})(jQuery);(function($){$.extend($.calendars.regionalOptions[''],{invalidArguments:'Invalid arguments',invalidFormat:'Cannot format a date from another calendar',missingNumberAt:'Missing number at position {0}',unknownNameAt:'Unknown name at position {0}',unexpectedLiteralAt:'Unexpected literal at position {0}',unexpectedText:'Additional text found at end'});$.calendars.local=$.calendars.regionalOptions[''];$.extend($.calendars.cdate.prototype,{formatDate:function(a,b){if(typeof a!=='string'){b=a;a=''}return this._calendar.formatDate(a||'',this,b)}});$.extend($.calendars.baseCalendar.prototype,{UNIX_EPOCH:$.calendars.instance().newDate(1970,1,1).toJD(),SECS_PER_DAY:24*60*60,TICKS_EPOCH:$.calendars.instance().jdEpoch,TICKS_PER_DAY:24*60*60*10000000,ATOM:'yyyy-mm-dd',COOKIE:'D, dd M yyyy',FULL:'DD, MM d, yyyy',ISO_8601:'yyyy-mm-dd',JULIAN:'J',RFC_822:'D, d M yy',RFC_850:'DD, dd-M-yy',RFC_1036:'D, d M yy',RFC_1123:'D, d M yyyy',RFC_2822:'D, d M yyyy',RSS:'D, d M yy',TICKS:'!',TIMESTAMP:'@',W3C:'yyyy-mm-dd',formatDate:function(f,g,h){if(typeof f!=='string'){h=g;g=f;f=''}if(!g){return''}if(g.calendar()!==this){throw $.calendars.local.invalidFormat||$.calendars.regionalOptions[''].invalidFormat;}f=f||this.local.dateFormat;h=h||{};var i=h.dayNamesShort||this.local.dayNamesShort;var j=h.dayNames||this.local.dayNames;var k=h.monthNamesShort||this.local.monthNamesShort;var l=h.monthNames||this.local.monthNames;var m=h.calculateWeek||this.local.calculateWeek;var n=function(a,b){var c=1;while(u+c1};var o=function(a,b,c,d){var e=''+b;if(n(a,d)){while(e.length1};var x=function(a,b){var c=w(a,b);var d=[2,3,c?4:2,c?4:2,10,11,20]['oyYJ@!'.indexOf(a)+1];var e=new RegExp('^-?\\d{1,'+d+'}');var f=h.substring(B).match(e);if(!f){throw($.calendars.local.missingNumberAt||$.calendars.regionalOptions[''].missingNumberAt).replace(/\{0\}/,B)}B+=f[0].length;return parseInt(f[0],10)};var y=this;var z=function(a,b,c,d){var e=(w(a,d)?c:b);for(var i=0;i-1){r=1;s=t;for(var E=this.daysInMonth(q,r);s>E;E=this.daysInMonth(q,r)){r++;s-=E}}return(p>-1?this.fromJD(p):this.newDate(q,r,s))},determineDate:function(f,g,h,i,j){if(h&&typeof h!=='object'){j=i;i=h;h=null}if(typeof i!=='string'){j=i;i=''}var k=this;var l=function(a){try{return k.parseDate(i,a,j)}catch(e){}a=a.toLowerCase();var b=(a.match(/^c/)&&h?h.newDate():null)||k.today();var c=/([+-]?[0-9]+)\s*(d|w|m|y)?/g;var d=c.exec(a);while(d){b.add(parseInt(d[1],10),d[2]||'d');d=c.exec(a)}return b};g=(g?g.newDate():null);f=(f==null?g:(typeof f==='string'?l(f):(typeof f==='number'?(isNaN(f)||f===Infinity||f===-Infinity?g:k.today().add(f,'d')):k.newDate(f))));return f}})})(jQuery);(function($){var H='calendarsPicker';$.JQPlugin.createPlugin({name:H,defaultRenderer:{picker:'
'+'
{link:prev}{link:today}{link:next}
{months}'+'{popup:start}
{link:clear}{link:close}
{popup:end}'+'
',monthRow:'
{months}
',month:'
{monthHeader}
'+'{weekHeader}{weeks}
',weekHeader:'{days}',dayHeader:'{day}',week:'{days}',day:'{day}',monthSelector:'.calendars-month',daySelector:'td',rtlClass:'calendars-rtl',multiClass:'calendars-multi',defaultClass:'',selectedClass:'calendars-selected',highlightedClass:'calendars-highlight',todayClass:'calendars-today',otherMonthClass:'calendars-other-month',weekendClass:'calendars-weekend',commandClass:'calendars-cmd',commandButtonClass:'',commandLinkClass:'',disabledClass:'calendars-disabled'},commands:{prev:{text:'prevText',status:'prevStatus',keystroke:{keyCode:33},enabled:function(a){var b=a.curMinDate();return(!b||a.drawDate.newDate().add(1-a.options.monthsToStep-a.options.monthsOffset,'m').day(a.options.calendar.minDay).add(-1,'d').compareTo(b)!==-1)},date:function(a){return a.drawDate.newDate().add(-a.options.monthsToStep-a.options.monthsOffset,'m').day(a.options.calendar.minDay)},action:function(a){I.changeMonth(this,-a.options.monthsToStep)}},prevJump:{text:'prevJumpText',status:'prevJumpStatus',keystroke:{keyCode:33,ctrlKey:true},enabled:function(a){var b=a.curMinDate();return(!b||a.drawDate.newDate().add(1-a.options.monthsToJump-a.options.monthsOffset,'m').day(a.options.calendar.minDay).add(-1,'d').compareTo(b)!==-1)},date:function(a){return a.drawDate.newDate().add(-a.options.monthsToJump-a.options.monthsOffset,'m').day(a.options.calendar.minDay)},action:function(a){I.changeMonth(this,-a.options.monthsToJump)}},next:{text:'nextText',status:'nextStatus',keystroke:{keyCode:34},enabled:function(a){var b=a.get('maxDate');return(!b||a.drawDate.newDate().add(a.options.monthsToStep-a.options.monthsOffset,'m').day(a.options.calendar.minDay).compareTo(b)!==+1)},date:function(a){return a.drawDate.newDate().add(a.options.monthsToStep-a.options.monthsOffset,'m').day(a.options.calendar.minDay)},action:function(a){I.changeMonth(this,a.options.monthsToStep)}},nextJump:{text:'nextJumpText',status:'nextJumpStatus',keystroke:{keyCode:34,ctrlKey:true},enabled:function(a){var b=a.get('maxDate');return(!b||a.drawDate.newDate().add(a.options.monthsToJump-a.options.monthsOffset,'m').day(a.options.calendar.minDay).compareTo(b)!==+1)},date:function(a){return a.drawDate.newDate().add(a.options.monthsToJump-a.options.monthsOffset,'m').day(a.options.calendar.minDay)},action:function(a){I.changeMonth(this,a.options.monthsToJump)}},current:{text:'currentText',status:'currentStatus',keystroke:{keyCode:36,ctrlKey:true},enabled:function(a){var b=a.curMinDate();var c=a.get('maxDate');var d=a.selectedDates[0]||a.options.calendar.today();return(!b||d.compareTo(b)!==-1)&&(!c||d.compareTo(c)!==+1)},date:function(a){return a.selectedDates[0]||a.options.calendar.today()},action:function(a){var b=a.selectedDates[0]||a.options.calendar.today();I.showMonth(this,b.year(),b.month())}},today:{text:'todayText',status:'todayStatus',keystroke:{keyCode:36,ctrlKey:true},enabled:function(a){var b=a.curMinDate();var c=a.get('maxDate');return(!b||a.options.calendar.today().compareTo(b)!==-1)&&(!c||a.options.calendar.today().compareTo(c)!==+1)},date:function(a){return a.options.calendar.today()},action:function(a){I.showMonth(this)}},clear:{text:'clearText',status:'clearStatus',keystroke:{keyCode:35,ctrlKey:true},enabled:function(a){return true},date:function(a){return null},action:function(a){I.clear(this)}},close:{text:'closeText',status:'closeStatus',keystroke:{keyCode:27},enabled:function(a){return true},date:function(a){return null},action:function(a){I.hide(this)}},prevWeek:{text:'prevWeekText',status:'prevWeekStatus',keystroke:{keyCode:38,ctrlKey:true},enabled:function(a){var b=a.curMinDate();return(!b||a.drawDate.newDate().add(-a.options.calendar.daysInWeek(),'d').compareTo(b)!==-1)},date:function(a){return a.drawDate.newDate().add(-a.options.calendar.daysInWeek(),'d')},action:function(a){I.changeDay(this,-a.options.calendar.daysInWeek())}},prevDay:{text:'prevDayText',status:'prevDayStatus',keystroke:{keyCode:37,ctrlKey:true},enabled:function(a){var b=a.curMinDate();return(!b||a.drawDate.newDate().add(-1,'d').compareTo(b)!==-1)},date:function(a){return a.drawDate.newDate().add(-1,'d')},action:function(a){I.changeDay(this,-1)}},nextDay:{text:'nextDayText',status:'nextDayStatus',keystroke:{keyCode:39,ctrlKey:true},enabled:function(a){var b=a.get('maxDate');return(!b||a.drawDate.newDate().add(1,'d').compareTo(b)!==+1)},date:function(a){return a.drawDate.newDate().add(1,'d')},action:function(a){I.changeDay(this,1)}},nextWeek:{text:'nextWeekText',status:'nextWeekStatus',keystroke:{keyCode:40,ctrlKey:true},enabled:function(a){var b=a.get('maxDate');return(!b||a.drawDate.newDate().add(a.options.calendar.daysInWeek(),'d').compareTo(b)!==+1)},date:function(a){return a.drawDate.newDate().add(a.options.calendar.daysInWeek(),'d')},action:function(a){I.changeDay(this,a.options.calendar.daysInWeek())}}},defaultOptions:{calendar:$.calendars.instance(),pickerClass:'',showOnFocus:true,showTrigger:null,showAnim:'show',showOptions:{},showSpeed:'normal',popupContainer:null,alignment:'bottom',fixedWeeks:false,firstDay:null,calculateWeek:null,localNumbers:false,monthsToShow:1,monthsOffset:0,monthsToStep:1,monthsToJump:12,useMouseWheel:true,changeMonth:true,yearRange:'c-10:c+10',showOtherMonths:false,selectOtherMonths:false,defaultDate:null,selectDefaultDate:false,minDate:null,maxDate:null,dateFormat:null,autoSize:false,rangeSelect:false,rangeSeparator:' - ',multiSelect:0,multiSeparator:',',onDate:null,onShow:null,onChangeMonthYear:null,onSelect:null,onClose:null,altField:null,altFormat:null,constrainInput:true,commandsAsDateFormat:false,commands:{}},regionalOptions:{'':{renderer:{},prevText:'<Prev',prevStatus:'Show the previous month',prevJumpText:'<<',prevJumpStatus:'Show the previous year',nextText:'Next>',nextStatus:'Show the next month',nextJumpText:'>>',nextJumpStatus:'Show the next year',currentText:'Current',currentStatus:'Show the current month',todayText:'Today',todayStatus:'Show today\'s month',clearText:'Clear',clearStatus:'Clear all the dates',closeText:'Close',closeStatus:'Close the datepicker',yearStatus:'Change the year',earlierText:'  ▲',laterText:'  ▼',monthStatus:'Change the month',weekText:'Wk',weekStatus:'Week of the year',dayStatus:'Select DD, M d, yyyy',defaultStatus:'Select a date',isRTL:false}},_getters:['getDate','isDisabled','isSelectable','retrieveDate'],_disabled:[],_popupClass:'calendars-popup',_triggerClass:'calendars-trigger',_disableClass:'calendars-disable',_monthYearClass:'calendars-month-year',_curMonthClass:'calendars-month-',_anyYearClass:'calendars-any-year',_curDoWClass:'calendars-dow-',_init:function(){this.defaultOptions.commands=this.commands;this.regionalOptions[''].renderer=this.defaultRenderer;this._super()},_instSettings:function(b,c){return{selectedDates:[],drawDate:null,pickingRange:false,inline:($.inArray(b[0].nodeName.toLowerCase(),['div','span'])>-1),get:function(a){if($.inArray(a,['defaultDate','minDate','maxDate'])>-1){return this.options.calendar.determineDate(this.options[a],null,this.selectedDates[0],this.get('dateFormat'),this.getConfig())}if(a==='dateFormat'){return this.options.dateFormat||this.options.calendar.local.dateFormat}return this.options[a]},curMinDate:function(){return(this.pickingRange?this.selectedDates[0]:this.get('minDate'))},getConfig:function(){return{dayNamesShort:this.options.dayNamesShort,dayNames:this.options.dayNames,monthNamesShort:this.options.monthNamesShort,monthNames:this.options.monthNames,calculateWeek:this.options.calculateWeek,shortYearCutoff:this.options.shortYearCutoff}}}},_postAttach:function(a,b){if(b.inline){b.drawDate=I._checkMinMax((b.selectedDates[0]||b.get('defaultDate')||b.options.calendar.today()).newDate(),b);b.prevDate=b.drawDate.newDate();this._update(a[0]);if($.fn.mousewheel){a.mousewheel(this._doMouseWheel)}}else{this._attachments(a,b);a.on('keydown.'+b.name,this._keyDown).on('keypress.'+b.name,this._keyPress).on('keyup.'+b.name,this._keyUp);if(a.attr('disabled')){this.disable(a[0])}}},_optionsChanged:function(b,c,d){if(d.calendar&&d.calendar!==c.options.calendar){var e=function(a){return(typeof c.options[a]==='object'?null:c.options[a])};d=$.extend({defaultDate:e('defaultDate'),minDate:e('minDate'),maxDate:e('maxDate')},d);c.selectedDates=[];c.drawDate=null}var f=c.selectedDates;$.extend(c.options,d);this.setDate(b[0],f,null,false,true);c.pickingRange=false;var g=c.options.calendar;var h=c.get('defaultDate');c.drawDate=this._checkMinMax((h?h:c.drawDate)||h||g.today(),c).newDate();if(!c.inline){this._attachments(b,c)}if(c.inline||c.div){this._update(b[0])}},_attachments:function(a,b){a.off('focus.'+b.name);if(b.options.showOnFocus){a.on('focus.'+b.name,this.show)}if(b.trigger){b.trigger.remove()}var c=b.options.showTrigger;b.trigger=(!c?$([]):$(c).clone().removeAttr('id').addClass(this._triggerClass)[b.options.isRTL?'insertBefore':'insertAfter'](a).click(function(){if(!I.isDisabled(a[0])){I[I.curInst===b?'hide':'show'](a[0])}}));this._autoSize(a,b);var d=this._extractDates(b,a.val());if(d){this.setDate(a[0],d,null,true)}var e=b.get('defaultDate');if(b.options.selectDefaultDate&&e&&b.selectedDates.length===0){this.setDate(a[0],(e||b.options.calendar.today()).newDate())}},_autoSize:function(d,e){if(e.options.autoSize&&!e.inline){var f=e.options.calendar;var g=f.newDate(2009,10,20);var h=e.get('dateFormat');if(h.match(/[DM]/)){var j=function(a){var b=0;var c=0;for(var i=0;ib){b=a[i].length;c=i}}return c};g.month(j(f.local[h.match(/MM/)?'monthNames':'monthNamesShort'])+1);g.day(j(f.local[h.match(/DD/)?'dayNames':'dayNamesShort'])+20-g.dayOfWeek())}e.elem.attr('size',g.formatDate(h,{localNumbers:e.options.localnumbers}).length)}},_preDestroy:function(a,b){if(b.trigger){b.trigger.remove()}a.empty().off('.'+b.name);if(b.inline&&$.fn.mousewheel){a.unmousewheel()}if(!b.inline&&b.options.autoSize){a.removeAttr('size')}},multipleEvents:function(b){var c=arguments;return function(a){for(var i=0;i').find('button,select').prop('disabled',true).end().find('a').removeAttr('href')}else{b.prop('disabled',true);c.trigger.filter('button.'+this._triggerClass).prop('disabled',true).end().filter('img.'+this._triggerClass).css({opacity:'0.5',cursor:'default'})}this._disabled=$.map(this._disabled,function(a){return(a===b[0]?null:a)});this._disabled.push(b[0])},isDisabled:function(a){return(a&&$.inArray(a,this._disabled)>-1)},show:function(a){a=$(a.target||a);var b=I._getInst(a);if(I.curInst===b){return}if(I.curInst){I.hide(I.curInst,true)}if(!$.isEmptyObject(b)){b.lastVal=null;b.selectedDates=I._extractDates(b,a.val());b.pickingRange=false;b.drawDate=I._checkMinMax((b.selectedDates[0]||b.get('defaultDate')||b.options.calendar.today()).newDate(),b);b.prevDate=b.drawDate.newDate();I.curInst=b;I._update(a[0],true);var c=I._checkOffset(b);b.div.css({left:c.left,top:c.top});var d=b.options.showAnim;var e=b.options.showSpeed;e=(e==='normal'&&$.ui&&parseInt($.ui.version.substring(2))>=8?'_default':e);if($.effects&&($.effects[d]||($.effects.effect&&$.effects.effect[d]))){var f=b.div.data();for(var g in f){if(g.match(/^ec\.storage\./)){f[g]=b._mainDiv.css(g.replace(/ec\.storage\./,''))}}b.div.data(f).show(d,b.options.showOptions,e)}else{b.div[d||'show'](d?e:0)}}},_extractDates:function(a,b){if(b===a.lastVal){return}a.lastVal=b;b=b.split(a.options.multiSelect?a.options.multiSeparator:(a.options.rangeSelect?a.options.rangeSeparator:'\x00'));var c=[];for(var i=0;i').addClass(this._popupClass).css({display:(b?'none':'static'),position:'absolute',left:a.offset().left,top:a.offset().top+a.outerHeight()}).appendTo($(c.options.popupContainer||'body'));if($.fn.mousewheel){c.div.mousewheel(this._doMouseWheel)}}c.div.html(this._generateContent(a[0],c));a.focus()}}},_updateInput:function(a,b){var c=this._getInst(a);if(!$.isEmptyObject(c)){var d='';var e='';var f=(c.options.multiSelect?c.options.multiSeparator:c.options.rangeSeparator);var g=c.options.calendar;var h=c.get('dateFormat');var j=c.options.altFormat||h;var k={localNumbers:c.options.localNumbers};for(var i=0;i0?f:'')+g.formatDate(h,c.selectedDates[i],k));e+=(i>0?f:'')+g.formatDate(j,c.selectedDates[i],k)}if(!c.inline&&!b){$(a).val(d)}$(c.options.altField).val(e);if($.isFunction(c.options.onSelect)&&!b&&!c.inSelect){c.inSelect=true;c.options.onSelect.apply(a,[c.selectedDates]);c.inSelect=false}}},_getBorders:function(b){var c=function(a){return{thin:1,medium:3,thick:5}[a]||a};return[parseFloat(c(b.css('border-left-width'))),parseFloat(c(b.css('border-top-width')))]},_checkOffset:function(a){var b=(a.elem.is(':hidden')&&a.trigger?a.trigger:a.elem);var c=b.offset();var d=$(window).width();var e=$(window).height();if(d===0){return c}var f=false;$(a.elem).parents().each(function(){f|=$(this).css('position')==='fixed';return!f});var g=document.documentElement.scrollLeft||document.body.scrollLeft;var h=document.documentElement.scrollTop||document.body.scrollTop;var i=c.top-(f?h:0)-a.div.outerHeight();var j=c.top-(f?h:0)+b.outerHeight();var k=c.left-(f?g:0);var l=c.left-(f?g:0)+b.outerWidth()-a.div.outerWidth();var m=(c.left-g+a.div.outerWidth())>d;var n=(c.top-h+a.elem.outerHeight()+a.div.outerHeight())>e;a.div.css('position',f?'fixed':'absolute');var o=a.options.alignment;if(o==='topLeft'){c={left:k,top:i}}else if(o==='topRight'){c={left:l,top:i}}else if(o==='bottomLeft'){c={left:k,top:j}}else if(o==='bottomRight'){c={left:l,top:j}}else if(o==='top'){c={left:(a.options.isRTL||m?l:k),top:i}}else{c={left:(a.options.isRTL||m?l:k),top:(n?i:j)}}c.left=Math.max((f?0:g),c.left);c.top=Math.max((f?0:h),c.top);return c},_checkExternalClick:function(a){if(!I.curInst){return}var b=$(a.target);if(b.closest('.'+I._popupClass+',.'+I._triggerClass).length===0&&!b.hasClass(I._getMarker())){I.hide(I.curInst)}},hide:function(a,b){if(!a){return}var c=this._getInst(a);if($.isEmptyObject(c)){c=a}if(c&&c===I.curInst){var d=(b?'':c.options.showAnim);var e=c.options.showSpeed;e=(e==='normal'&&$.ui&&parseInt($.ui.version.substring(2))>=8?'_default':e);var f=function(){if(!c.div){return}c.div.remove();c.div=null;I.curInst=null;if($.isFunction(c.options.onClose)){c.options.onClose.apply(a,[c.selectedDates])}};c.div.stop();if($.effects&&($.effects[d]||($.effects.effect&&$.effects.effect[d]))){c.div.hide(d,c.options.showOptions,e,f)}else{var g=(d==='slideDown'?'slideUp':(d==='fadeIn'?'fadeOut':'hide'));c.div[g]((d?e:''),f)}if(!d){f()}}},_keyDown:function(a){var b=(a.data&&a.data.elem)||a.target;var c=I._getInst(b);var d=false;if(c.inline||c.div){if(a.keyCode===9){I.hide(b)}else if(a.keyCode===13){I.selectDate(b,$('a.'+c.options.renderer.highlightedClass,c.div)[0]);d=true}else{var e=c.options.commands;for(var f in e){var g=e[f];if(g.keystroke.keyCode===a.keyCode&&!!g.keystroke.ctrlKey===!!(a.ctrlKey||a.metaKey)&&!!g.keystroke.altKey===a.altKey&&!!g.keystroke.shiftKey===a.shiftKey){I.performAction(b,f);d=true;break}}}}else{var g=c.options.commands.current;if(g.keystroke.keyCode===a.keyCode&&!!g.keystroke.ctrlKey===!!(a.ctrlKey||a.metaKey)&&!!g.keystroke.altKey===a.altKey&&!!g.keystroke.shiftKey===a.shiftKey){I.show(b);d=true}}c.ctrlKey=((a.keyCode<48&&a.keyCode!==32)||a.ctrlKey||a.metaKey);if(d){a.preventDefault();a.stopPropagation()}return!d},_keyPress:function(a){var b=I._getInst((a.data&&a.data.elem)||a.target);if(!$.isEmptyObject(b)&&b.options.constrainInput){var c=String.fromCharCode(a.keyCode||a.charCode);var d=I._allowedChars(b);return(a.metaKey||b.ctrlKey||c<' '||!d||d.indexOf(c)>-1)}return true},_allowedChars:function(a){var b=(a.options.multiSelect?a.options.multiSeparator:(a.options.rangeSelect?a.options.rangeSeparator:''));var c=false;var d=false;var e=a.get('dateFormat');for(var i=0;i0){I.setDate(b,d,null,true)}}catch(a){}}return true},_doMouseWheel:function(a,b){var c=(I.curInst&&I.curInst.elem[0])||$(a.target).closest('.'+I._getMarker())[0];if(I.isDisabled(c)){return}var d=I._getInst(c);if(d.options.useMouseWheel){b=(b<0?-1:+1);I.changeMonth(c,-d.options[a.ctrlKey?'monthsToJump':'monthsToStep']*b)}a.preventDefault()},clear:function(a){var b=this._getInst(a);if(!$.isEmptyObject(b)){b.selectedDates=[];this.hide(a);var c=b.get('defaultDate');if(b.options.selectDefaultDate&&c){this.setDate(a,(c||b.options.calendar.today()).newDate())}else{this._updateInput(a)}}},getDate:function(a){var b=this._getInst(a);return(!$.isEmptyObject(b)?b.selectedDates:[])},setDate:function(a,b,c,d,e){var f=this._getInst(a);if(!$.isEmptyObject(f)){if(!$.isArray(b)){b=[b];if(c){b.push(c)}}var g=f.get('minDate');var h=f.get('maxDate');var k=f.selectedDates[0];f.selectedDates=[];for(var i=0;i=d.toJD())&&(!e||b.toJD()<=e.toJD())},performAction:function(a,b){var c=this._getInst(a);if(!$.isEmptyObject(c)&&!this.isDisabled(a)){var d=c.options.commands;if(d[b]&&d[b].enabled.apply(a,[c])){d[b].action.apply(a,[c])}}},showMonth:function(a,b,c,d){var e=this._getInst(a);if(!$.isEmptyObject(e)&&(d!=null||(e.drawDate.year()!==b||e.drawDate.month()!==c))){e.prevDate=e.drawDate.newDate();var f=e.options.calendar;var g=this._checkMinMax((b!=null?f.newDate(b,c,1):f.today()),e);e.drawDate.date(g.year(),g.month(),(d!=null?d:Math.min(e.drawDate.day(),f.daysInMonth(g.year(),g.month()))));this._update(a)}},changeMonth:function(a,b){var c=this._getInst(a);if(!$.isEmptyObject(c)){var d=c.drawDate.newDate().add(b,'m');this.showMonth(a,d.year(),d.month())}},changeDay:function(a,b){var c=this._getInst(a);if(!$.isEmptyObject(c)){var d=c.drawDate.newDate().add(b,'d');this.showMonth(a,d.year(),d.month(),d.day())}},_checkMinMax:function(a,b){var c=b.get('minDate');var d=b.get('maxDate');a=(c&&a.compareTo(c)===-1?c.newDate():a);a=(d&&a.compareTo(d)===+1?d.newDate():a);return a},retrieveDate:function(a,b){var c=this._getInst(a);return($.isEmptyObject(c)?null:c.options.calendar.fromJD(parseFloat(b.className.replace(/^.*jd(\d+\.5).*$/,'$1'))))},selectDate:function(a,b){var c=this._getInst(a);if(!$.isEmptyObject(c)&&!this.isDisabled(a)){var d=this.retrieveDate(a,b);if(c.options.multiSelect){var e=false;for(var i=0;i'+(g?g.formatDate(i.options[f.text],{localNumbers:i.options.localNumbers}):i.options[f.text])+'')};for(var r in i.options.commands){q('button','button type="button"','button',r,i.options.renderer.commandButtonClass);q('link','a href="javascript:void(0)"','a',r,i.options.renderer.commandLinkClass)}p=$(p);if(j[1]>1){var s=0;$(i.options.renderer.monthSelector,p).each(function(){var a=++s%j[1];$(this).addClass(a===1?'first':(a===0?'last':''))})}var t=this;function removeHighlight(){(i.inline?$(this).closest('.'+t._getMarker()):i.div).find(i.options.renderer.daySelector+' a').removeClass(i.options.renderer.highlightedClass)}p.find(i.options.renderer.daySelector+' a').hover(function(){removeHighlight.apply(this);$(this).addClass(i.options.renderer.highlightedClass)},removeHighlight).click(function(){t.selectDate(h,this)}).end().find('select.'+this._monthYearClass+':not(.'+this._anyYearClass+')').change(function(){var a=$(this).val().split('/');t.showMonth(h,parseInt(a[1],10),parseInt(a[0],10))}).end().find('select.'+this._anyYearClass).click(function(){$(this).css('visibility','hidden').next('input').css({left:this.offsetLeft,top:this.offsetTop,width:this.offsetWidth,height:this.offsetHeight}).show().focus()}).end().find('input.'+t._monthYearClass).change(function(){try{var a=parseInt($(this).val(),10);a=(isNaN(a)?i.drawDate.year():a);t.showMonth(h,a,i.drawDate.month(),i.drawDate.day())}catch(e){alert(e)}}).keydown(function(a){if(a.keyCode===13){$(a.elem).change()}else if(a.keyCode===27){$(a.elem).hide().prev('select').css('visibility','visible');i.elem.focus()}});var u={elem:i.elem[0]};p.keydown(u,this._keyDown).keypress(u,this._keyPress).keyup(u,this._keyUp);p.find('.'+i.options.renderer.commandClass).click(function(){if(!$(this).hasClass(i.options.renderer.disabledClass)){var a=this.className.replace(new RegExp('^.*'+i.options.renderer.commandClass+'-([^ ]+).*$'),'$1');I.performAction(h,a)}});if(i.options.isRTL){p.addClass(i.options.renderer.rtlClass)}if(j[0]*j[1]>1){p.addClass(i.options.renderer.multiClass)}if(i.options.pickerClass){p.addClass(i.options.pickerClass)}$('body').append(p);var v=0;p.find(i.options.renderer.monthSelector).each(function(){v+=$(this).outerWidth()});p.width(v/j[0]);if($.isFunction(i.options.onShow)){i.options.onShow.apply(h,[p,i.options.calendar,i])}return p},_generateMonth:function(b,c,d,e,f,g,h){var j=f.daysInMonth(d,e);var k=c.options.monthsToShow;k=($.isArray(k)?k:[1,k]);var l=c.options.fixedWeeks||(k[0]*k[1]>1);var m=c.options.firstDay;m=(m==null?f.local.firstDay:m);var n=(f.dayOfWeek(d,e,f.minDay)-m+f.daysInWeek())%f.daysInWeek();var o=(l?6:Math.ceil((n+j)/f.daysInWeek()));var p=c.options.selectOtherMonths&&c.options.showOtherMonths;var q=(c.pickingRange?c.selectedDates[0]:c.get('minDate'));var r=c.get('maxDate');var s=g.week.indexOf('{weekOfYear}')>-1;var t=f.today();var u=f.newDate(d,e,f.minDay);u.add(-n-(l&&(u.dayOfWeek()===m||u.daysInMonth()'+($.isFunction(c.options.calculateWeek)?c.options.calculateWeek(u):u.weekOfYear())+'');var A='';for(var B=0;B0){C=(u.compareTo(c.selectedDates[0])!==-1&&u.compareTo(c.selectedDates[1])!==+1)}else{for(var i=0;i'+(c.options.showOtherMonths||u.month()===e?D.content||w(u.day()):' ')+(E?'':''));u.add(1,'d');v++}x+=this._prepare(g.week,c).replace(/\{days\}/g,A).replace(/\{weekOfYear\}/g,z)}var F=this._prepare(g.month,c).match(/\{monthHeader(:[^\}]+)?\}/);F=(F[0].length<=13?'MM yyyy':F[0].substring(13,F[0].length-1));F=(h?this._generateMonthSelection(c,d,e,q,r,F,f,g):f.formatDate(F,f.newDate(d,e,f.minDay),{localNumbers:c.options.localNumbers}));var G=this._prepare(g.weekHeader,c).replace(/\{days\}/g,this._generateDayHeaders(c,f,g));return this._prepare(g.month,c).replace(/\{monthHeader(:[^\}]+)?\}/g,F).replace(/\{weekHeader\}/g,G).replace(/\{weeks\}/g,x)},_generateDayHeaders:function(a,b,c){var d=a.options.firstDay;d=(d==null?b.local.firstDay:d);var e='';for(var f=0;f'+b.local.dayNamesMin[g]+'')}return e},_generateMonthSelection:function(b,c,d,e,f,g,h){if(!b.options.changeMonth){return h.formatDate(g,h.newDate(c,d,1),{localNumbers:b.options.localNumbers})}var i=h.local['monthNames'+(g.match(/mm/i)?'':'Short')];var j=g.replace(/m+/i,'\\x2E').replace(/y+/i,'\\x2F');var k='';j=j.replace(/\\x2E/,k);var n=b.options.yearRange;if(n==='any'){k=''+''}else{n=n.split(':');var o=h.today().year();var p=(n[0].match('c[+-].*')?c+parseInt(n[0].substring(1),10):((n[0].match('[+-].*')?o:0)+parseInt(n[0],10)));var q=(n[1].match('c[+-].*')?c+parseInt(n[1].substring(1),10):((n[1].match('[+-].*')?o:0)+parseInt(n[1],10)));k=''; + var maxMonth = calendar.monthsInYear(year) + calendar.minMonth; + for (var m = calendar.minMonth; m < maxMonth; m++) { + if ((!minDate || calendar.newDate(year, m, + calendar.daysInMonth(year, m) - 1 + calendar.minDay). + compareTo(minDate) !== -1) && + (!maxDate || calendar.newDate(year, m, calendar.minDay). + compareTo(maxDate) !== +1)) { + selector += ''; + } + } + selector += ''; + html = html.replace(/\\x2E/, selector); + // Years + var yearRange = inst.options.yearRange; + if (yearRange === 'any') { + selector = '' + + ''; + } + else { + yearRange = yearRange.split(':'); + var todayYear = calendar.today().year(); + var start = (yearRange[0].match('c[+-].*') ? year + parseInt(yearRange[0].substring(1), 10) : + ((yearRange[0].match('[+-].*') ? todayYear : 0) + parseInt(yearRange[0], 10))); + var end = (yearRange[1].match('c[+-].*') ? year + parseInt(yearRange[1].substring(1), 10) : + ((yearRange[1].match('[+-].*') ? todayYear : 0) + parseInt(yearRange[1], 10))); + selector = ''; + } + html = html.replace(/\\x2F/, selector); + return html; + }, + + /** Prepare a render template for use. + Exclude popup/inline sections that are not applicable. + Localise text of the form: {l10n:name}. + @memberof CalendarsPicker + @private + @param text {string} The text to localise. + @param inst {object} The current instance settings. + @return {string} The localised text. */ + _prepare: function(text, inst) { + var replaceSection = function(type, retain) { + while (true) { + var start = text.indexOf('{' + type + ':start}'); + if (start === -1) { + return; + } + var end = text.substring(start).indexOf('{' + type + ':end}'); + if (end > -1) { + text = text.substring(0, start) + + (retain ? text.substr(start + type.length + 8, end - type.length - 8) : '') + + text.substring(start + end + type.length + 6); + } + } + }; + replaceSection('inline', inst.inline); + replaceSection('popup', !inst.inline); + var pattern = /\{l10n:([^\}]+)\}/; + var matches = null; + while (matches = pattern.exec(text)) { + text = text.replace(matches[0], inst.options[matches[1]]); + } + return text; + } + }); + + var plugin = $.calendarsPicker; // Singleton instance + + $(function() { + $(document).on('mousedown.' + pluginName, plugin._checkExternalClick). + on('resize.' + pluginName, function() { plugin.hide(plugin.curInst); }); + }); + +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.picker.lang.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.picker.lang.js new file mode 100644 index 0000000..93aa1c9 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.picker.lang.js @@ -0,0 +1,1571 @@ +/* http://keith-wood.name/calendars.html + Calendars datepicker localisations for jQuery v2.0.2. + Written by Keith Wood (wood.keith{at}optusnet.com.au) August 2009. + Available under the MIT (http://keith-wood.name/licence.html) license. + Please attribute the author if you use it. */ +/* http://keith-wood.name/calendars.html + Afrikaans localisation for calendars datepicker for jQuery. + Written by Renier Pretorius and Ruediger Thiede. */ +(function($) { + $.calendarsPicker.regionalOptions['af'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'Vorige', prevStatus: 'Vertoon vorige maand', + prevJumpText: '<<', prevJumpStatus: 'Vertoon vorige jaar', + nextText: 'Volgende', nextStatus: 'Vertoon volgende maand', + nextJumpText: '>>', nextJumpStatus: 'Vertoon volgende jaar', + currentText: 'Vandag', currentStatus: 'Vertoon huidige maand', + todayText: 'Vandag', todayStatus: 'Vertoon huidige maand', + clearText: 'Vee uit', clearStatus: 'Verwyder die huidige datum', + closeText: 'Klaar', closeStatus: 'Sluit sonder verandering', + yearStatus: 'Vertoon \'n ander jaar', monthStatus: 'Vertoon \'n ander maand', + weekText: 'Wk', weekStatus: 'Week van die jaar', + dayStatus: 'Kies DD, M d', defaultStatus: 'Kies \'n datum', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['af']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Amharic (አማርኛ) localisation for calendars datepicker for jQuery. + Leyu Sisay. */ +(function($) { + $.calendarsPicker.regionalOptions['am'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'ያለፈ', prevStatus: 'ያለፈውን ወር አሳይ', + prevJumpText: '<<', prevJumpStatus: 'ያለፈውን ዓመት አሳይ', + nextText: 'ቀጣይ', nextStatus: 'ቀጣዩን ወር አሳይ', + nextJumpText: '>>', nextJumpStatus: 'ቀጣዩን ዓመት አሳይ', + currentText: 'አሁን', currentStatus: 'የአሁኑን ወር አሳይ', + todayText: 'ዛሬ', todayStatus: 'የዛሬን ወር አሳይ', + clearText: 'አጥፋ', clearStatus: 'የተመረጠውን ቀን አጥፋ', + closeText: 'ዝጋ', closeStatus: 'የቀን መምረጫውን ዝጋ', + yearStatus: 'ዓመቱን ቀይር', monthStatus: 'ወሩን ቀይር', + weekText: 'ሳም', weekStatus: 'የዓመቱ ሳምንት ', + dayStatus: 'DD, M d, yyyy ምረጥ', defaultStatus: 'ቀን ምረጥ', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['am']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Algerian (and Tunisian) Arabic localisation for calendars datepicker for jQuery. + Mohamed Cherif BOUCHELAGHEM -- cherifbouchelaghem@yahoo.fr */ +(function($) { + $.calendarsPicker.regionalOptions['ar-DZ'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<السابق', prevStatus: 'عرض الشهر السابق', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'التالي>', nextStatus: 'عرض الشهر القادم', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'اليوم', currentStatus: 'عرض الشهر الحالي', + todayText: 'اليوم', todayStatus: 'عرض الشهر الحالي', + clearText: 'مسح', clearStatus: 'امسح التاريخ الحالي', + closeText: 'إغلاق', closeStatus: 'إغلاق بدون حفظ', + yearStatus: 'عرض سنة آخرى', monthStatus: 'عرض شهر آخر', + weekText: 'أسبوع', weekStatus: 'أسبوع السنة', + dayStatus: 'اختر D, M d', defaultStatus: 'اختر يوم', + isRTL: true + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ar-DZ']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Arabic localisation for calendars datepicker for jQuery. + Mahmoud Khaled -- mahmoud.khaled@badrit.com + NOTE: monthNames are the new months names */ +(function($) { + $.calendarsPicker.regionalOptions['ar-EG'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<السابق', prevStatus: 'عرض الشهر السابق', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'التالي>', nextStatus: 'عرض الشهر القادم', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'اليوم', currentStatus: 'عرض الشهر الحالي', + todayText: 'اليوم', todayStatus: 'عرض الشهر الحالي', + clearText: 'مسح', clearStatus: 'امسح التاريخ الحالي', + closeText: 'إغلاق', closeStatus: 'إغلاق بدون حفظ', + yearStatus: 'عرض سنة آخرى', monthStatus: 'عرض شهر آخر', + weekText: 'أسبوع', weekStatus: 'أسبوع السنة', + dayStatus: 'اختر D, M d', defaultStatus: 'اختر يوم', + isRTL: true + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ar-EG']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Arabic localisation for calendars datepicker for jQuery. + Khaled Al Horani -- خالد الحوراني -- koko.dw@gmail.com */ +(function($) { + $.calendarsPicker.regionalOptions['ar'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<السابق', prevStatus: 'عرض الشهر السابق', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'التالي>', nextStatus: 'عرض الشهر القادم', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'اليوم', currentStatus: 'عرض الشهر الحالي', + todayText: 'اليوم', todayStatus: 'عرض الشهر الحالي', + clearText: 'مسح', clearStatus: 'امسح التاريخ الحالي', + closeText: 'إغلاق', closeStatus: 'إغلاق بدون حفظ', + yearStatus: 'عرض سنة آخرى', monthStatus: 'عرض شهر آخر', + weekText: 'أسبوع', weekStatus: 'أسبوع السنة', + dayStatus: 'اختر D, M d', defaultStatus: 'اختر يوم', + isRTL: true + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ar']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Azerbaijani localisation for calendars datepicker for jQuery. + Written by Jamil Najafov (necefov33@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['az'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Geri', prevStatus: 'Əvvəlki ay', + prevJumpText: '<<', prevJumpStatus: 'Əvvəlki il', + nextText: 'İrəli>', nextStatus: 'Sonrakı ay', + nextJumpText: '>>', nextJumpStatus: 'Sonrakı il', + currentText: 'Bugün', currentStatus: 'İndiki ay', + todayText: 'Bugün', todayStatus: 'İndiki ay', + clearText: 'Təmizlə', clearStatus: 'Tarixi sil', + closeText: 'Bağla', closeStatus: 'Təqvimi bağla', + yearStatus: 'Başqa il', monthStatus: 'Başqa ay', + weekText: 'Hf', weekStatus: 'Həftələr', + dayStatus: 'D, M d seçin', defaultStatus: 'Bir tarix seçin', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['az']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Bulgarian localisation for calendars datepicker for jQuery. + Written by Stoyan Kyosev (http://svest.org). */ +(function($) { + $.calendarsPicker.regionalOptions['bg'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<назад', prevStatus: 'покажи последния месец', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'напред>', nextStatus: 'покажи следващия месец', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'днес', currentStatus: '', + todayText: 'днес', todayStatus: '', + clearText: 'изчисти', clearStatus: 'изчисти актуалната дата', + closeText: 'затвори', closeStatus: 'затвори без промени', + yearStatus: 'покажи друга година', monthStatus: 'покажи друг месец', + weekText: 'Wk', weekStatus: 'седмица от месеца', + dayStatus: 'Избери D, M d', defaultStatus: 'Избери дата', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['bg']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Bosnian localisation for calendars datepicker for jQuery. + Kenan Konjo. */ +(function($) { + $.calendarsPicker.regionalOptions['bs'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: '>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Danas', currentStatus: '', + todayText: 'Danas', todayStatus: '', + clearText: 'X', clearStatus: '', + closeText: 'Zatvori', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Wk', weekStatus: '', + dayStatus: '', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['bs']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Catalan localisation for calendars datepicker for jQuery. + Writers: (joan.leon@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['ca'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Ant', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Seg>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Avui', currentStatus: '', + todayText: 'Avui', todayStatus: '', + clearText: 'Netejar', clearStatus: '', + closeText: 'Tancar', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Wk', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ca']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Czech localisation for calendars datepicker for jQuery. + Written by Tomas Muller (tomas@tomas-muller.net). */ +(function($) { + $.calendarsPicker.regionalOptions['cs'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Dříve', prevStatus: 'Přejít na předchozí měsí', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Později>', nextStatus: 'Přejít na další měsíc', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Nyní', currentStatus: 'Přejde na aktuální měsíc', + todayText: 'Nyní', todayStatus: 'Přejde na aktuální měsíc', + clearText: 'Vymazat', clearStatus: 'Vymaže zadané datum', + closeText: 'Zavřít', closeStatus: 'Zavře kalendář beze změny', + yearStatus: 'Přejít na jiný rok', monthStatus: 'Přejít na jiný měsíc', + weekText: 'Týd', weekStatus: 'Týden v roce', + dayStatus: '\'Vyber\' DD, M d', defaultStatus: 'Vyberte datum', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['cs']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Danish localisation for calendars datepicker for jQuery. + Written by Jan Christensen ( deletestuff@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['da'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Forrige', prevStatus: 'Vis forrige måned', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Næste>', nextStatus: 'Vis næste måned', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Idag', currentStatus: 'Vis aktuel måned', + todayText: 'Idag', todayStatus: 'Vis aktuel måned', + clearText: 'Nulstil', clearStatus: 'Nulstil den aktuelle dato', + closeText: 'Luk', closeStatus: 'Luk uden ændringer', + yearStatus: 'Vis et andet år', monthStatus: 'Vis en anden måned', + weekText: 'Uge', weekStatus: 'Årets uge', + dayStatus: 'Vælg D, M d', defaultStatus: 'Vælg en dato', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['da']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Swiss-German localisation for calendars datepicker for jQuery. + Written by Douglas Jose & Juerg Meier. */ +(function($) { + $.calendarsPicker.regionalOptions['de-CH'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<zurück', prevStatus: 'letzten Monat zeigen', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'nächster>', nextStatus: 'nächsten Monat zeigen', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'heute', currentStatus: '', + todayText: 'heute', todayStatus: '', + clearText: 'löschen', clearStatus: 'aktuelles Datum löschen', + closeText: 'schliessen', closeStatus: 'ohne Änderungen schliessen', + yearStatus: 'anderes Jahr anzeigen', monthStatus: 'anderen Monat anzeige', + weekText: 'Wo', weekStatus: 'Woche des Monats', + dayStatus: 'Wähle D, M d', defaultStatus: 'Wähle ein Datum', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['de-CH']); +})(jQuery); +/* http://keith-wood.name/calendars.html + German localisation for calendars datepicker for jQuery. + Written by Milian Wolff (mail@milianw.de). */ +(function($) { + $.calendarsPicker.regionalOptions['de'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<zurück', prevStatus: 'letzten Monat zeigen', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Vor>', nextStatus: 'nächsten Monat zeigen', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'heute', currentStatus: '', + todayText: 'heute', todayStatus: '', + clearText: 'löschen', clearStatus: 'aktuelles Datum löschen', + closeText: 'schließen', closeStatus: 'ohne Änderungen schließen', + yearStatus: 'anderes Jahr anzeigen', monthStatus: 'anderen Monat anzeige', + weekText: 'Wo', weekStatus: 'Woche des Monats', + dayStatus: 'Wähle D, M d', defaultStatus: 'Wähle ein Datum', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['de']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Greek localisation for calendars datepicker for jQuery. + Written by Alex Cicovic (http://www.alexcicovic.com). */ +(function($) { + $.calendarsPicker.regionalOptions['el'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'Προηγούμενος', prevStatus: 'Επισκόπηση προηγούμενου μήνα', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Επόμενος', nextStatus: 'Επισκόπηση επόμενου μήνα', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Τρέχων Μήνας', currentStatus: 'Επισκόπηση τρέχοντος μήνα', + todayText: 'Τρέχων Μήνας', todayStatus: 'Επισκόπηση τρέχοντος μήνα', + clearText: 'Σβήσιμο', clearStatus: 'Σβήσιμο της επιλεγμένης ημερομηνίας', + closeText: 'Κλείσιμο', closeStatus: 'Κλείσιμο χωρίς αλλαγή', + yearStatus: 'Επισκόπηση άλλου έτους', monthStatus: 'Επισκόπηση άλλου μήνα', + weekText: 'Εβδ', weekStatus: '', + dayStatus: 'Επιλογή DD d MM', defaultStatus: 'Επιλέξτε μια ημερομηνία', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['el']); +})(jQuery); +/* http://keith-wood.name/calendars.html + English/Australia localisation for calendars datepicker for jQuery. + Based on en-GB. */ +(function($) { + $.calendarsPicker.regionalOptions['en-AU'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'Prev', prevStatus: 'Show the previous month', + prevJumpText: '<<', prevJumpStatus: 'Show the previous year', + nextText: 'Next', nextStatus: 'Show the next month', + nextJumpText: '>>', nextJumpStatus: 'Show the next year', + currentText: 'Current', currentStatus: 'Show the current month', + todayText: 'Today', todayStatus: 'Show today\'s month', + clearText: 'Clear', clearStatus: 'Clear all the dates', + closeText: 'Done', closeStatus: 'Close the datepicker', + yearStatus: 'Change the year', monthStatus: 'Change the month', + weekText: 'Wk', weekStatus: 'Week of the year', + dayStatus: 'Select DD, M d, yyyy', defaultStatus: 'Select a date', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['en-AU']); +})(jQuery); +/* http://keith-wood.name/calendars.html + English/UK localisation for calendars datepicker for jQuery. + Stuart. */ +(function($) { + $.calendarsPicker.regionalOptions['en-GB'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'Prev', prevStatus: 'Show the previous month', + prevJumpText: '<<', prevJumpStatus: 'Show the previous year', + nextText: 'Next', nextStatus: 'Show the next month', + nextJumpText: '>>', nextJumpStatus: 'Show the next year', + currentText: 'Current', currentStatus: 'Show the current month', + todayText: 'Today', todayStatus: 'Show today\'s month', + clearText: 'Clear', clearStatus: 'Clear all the dates', + closeText: 'Done', closeStatus: 'Close the datepicker', + yearStatus: 'Change the year', monthStatus: 'Change the month', + weekText: 'Wk', weekStatus: 'Week of the year', + dayStatus: 'Select DD, M d, yyyy', defaultStatus: 'Select a date', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['en-GB']); +})(jQuery); +/* http://keith-wood.name/calendars.html + English/New Zealand localisation for calendars datepicker for jQuery. + Based on en-GB. */ +(function($) { + $.calendarsPicker.regionalOptions['en-NZ'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'Prev', prevStatus: 'Show the previous month', + prevJumpText: '<<', prevJumpStatus: 'Show the previous year', + nextText: 'Next', nextStatus: 'Show the next month', + nextJumpText: '>>', nextJumpStatus: 'Show the next year', + currentText: 'Current', currentStatus: 'Show the current month', + todayText: 'Today', todayStatus: 'Show today\'s month', + clearText: 'Clear', clearStatus: 'Clear all the dates', + closeText: 'Done', closeStatus: 'Close the datepicker', + yearStatus: 'Change the year', monthStatus: 'Change the month', + weekText: 'Wk', weekStatus: 'Week of the year', + dayStatus: 'Select DD, M d, yyyy', defaultStatus: 'Select a date', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['en-NZ']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Esperanto localisation for calendars datepicker for jQuery. + Written by Olivier M. (olivierweb@ifrance.com). */ +(function($) { + $.calendarsPicker.regionalOptions['eo'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Anta', prevStatus: 'Vidi la antaŭan monaton', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Sekv>', nextStatus: 'Vidi la sekvan monaton', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Nuna', currentStatus: 'Vidi la nunan monaton', + todayText: 'Nuna', todayStatus: 'Vidi la nunan monaton', + clearText: 'Vakigi', clearStatus: '', + closeText: 'Fermi', closeStatus: 'Fermi sen modifi', + yearStatus: 'Vidi alian jaron', monthStatus: 'Vidi alian monaton', + weekText: 'Sb', weekStatus: '', + dayStatus: 'Elekti DD, MM d', defaultStatus: 'Elekti la daton', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['eo']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Spanish/Argentina localisation for calendars datepicker for jQuery. + Written by Esteban Acosta Villafane (esteban.acosta@globant.com) of Globant (http://www.globant.com). */ +(function($) { + $.calendarsPicker.regionalOptions['es-AR'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Ant', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Sig>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Hoy', currentStatus: '', + todayText: 'Hoy', todayStatus: '', + clearText: 'Limpiar', clearStatus: '', + closeText: 'Cerrar', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Sm', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['es-AR']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Spanish/Perú localisation for calendars datepicker for jQuery. + Written by Fischer Tirado (fishdev@globant.com) of ASIX (http://www.asixonline.com). */ +(function($) { + $.calendarsPicker.regionalOptions['es-PE'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Ant', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Sig>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Hoy', currentStatus: '', + todayText: 'Hoy', todayStatus: '', + clearText: 'Limpiar', clearStatus: '', + closeText: 'Cerrar', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Sm', weekStatus: '', + dayStatus: 'DD d, MM yyyy', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['es-PE']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Spanish localisation for calendars datepicker for jQuery. + Traducido por Vester (xvester@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['es'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Ant', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Sig>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Hoy', currentStatus: '', + todayText: 'Hoy', todayStatus: '', + clearText: 'Limpiar', clearStatus: '', + closeText: 'Cerrar', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Sm', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['es']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Estonian localisation for calendars datepicker for jQuery. + Written by Mart Sõmermaa (mrts.pydev at gmail com). */ +(function($) { + $.calendarsPicker.regionalOptions['et'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'Eelnev', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Järgnev', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Täna', currentStatus: '', + todayText: 'Täna', todayStatus: '', + clearText: 'X', clearStatus: '', + closeText: 'Sulge', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Wk', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['et']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Basque localisation for calendars datepicker for jQuery. + Karrikas-ek itzulia (karrikas@karrikas.com). */ +(function($) { + $.calendarsPicker.regionalOptions['eu'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Aur', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Hur>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Gaur', currentStatus: '', + todayText: 'Gaur', todayStatus: '', + clearText: 'X', clearStatus: '', + closeText: 'Egina', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Wk', weekStatus: '', + dayStatus: 'DD d MM', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['eu']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Farsi/Persian localisation for calendars datepicker for jQuery. + Javad Mowlanezhad -- jmowla@gmail.com. */ +(function($) { + $.calendarsPicker.regionalOptions['fa'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<قبلي', prevStatus: 'نمايش ماه قبل', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'بعدي>', nextStatus: 'نمايش ماه بعد', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'امروز', currentStatus: 'نمايش ماه جاري', + todayText: 'امروز', todayStatus: 'نمايش ماه جاري', + clearText: 'حذف تاريخ', clearStatus: 'پاک کردن تاريخ جاري', + closeText: 'بستن', closeStatus: 'بستن بدون اعمال تغييرات', + yearStatus: 'نمايش سال متفاوت', monthStatus: 'نمايش ماه متفاوت', + weekText: 'هف', weekStatus: 'هفتهِ سال', + dayStatus: 'انتخاب D, M d', defaultStatus: 'انتخاب تاريخ', + isRTL: true + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['fa']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Finnish localisation for calendars datepicker for jQuery. + Written by Harri Kilpiö (harrikilpio@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['fi'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '«Edellinen', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Seuraava»', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Tänään', currentStatus: '', + todayText: 'Tänään', todayStatus: '', + clearText: 'Tyhjennä', clearStatus: '', + closeText: 'Sulje', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Vk', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['fi']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Faroese localisation for calendars datepicker for jQuery. + Written by Sverri Mohr Olsen, sverrimo@gmail.com */ +(function($) { + $.calendarsPicker.regionalOptions['fo'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Sísta', prevStatus: 'Vís sísta mánaðan', + prevJumpText: '<<', prevJumpStatus: 'Vís sísta árið', + nextText: 'Næsta>', nextStatus: 'Vís næsta mánaðan', + nextJumpText: '>>', nextJumpStatus: 'Vís næsta árið', + currentText: 'Hesin', currentStatus: 'Vís hendan mánaðan', + todayText: 'Í dag', todayStatus: 'Vís mánaðan fyri í dag', + clearText: 'Strika', clearStatus: 'Strika allir mánaðarnar', + closeText: 'Goym', closeStatus: 'Goym hetta vindeyðga', + yearStatus: 'Broyt árið', monthStatus: 'Broyt mánaðans', + weekText: 'Vk', weekStatus: 'Vika av árinum', + dayStatus: 'Vel DD, M d, yyyy', defaultStatus: 'Vel ein dato', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['fo']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Swiss French localisation for calendars datepicker for jQuery. + Written by Martin Voelkle (martin.voelkle@e-tc.ch). */ +(function($) { + $.calendarsPicker.regionalOptions['fr-CH'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Préc', prevStatus: 'Voir le mois précédent', + prevJumpText: '<<', prevJumpStatus: 'Voir l\'année précédent', + nextText: 'Suiv>', nextStatus: 'Voir le mois suivant', + nextJumpText: '>>', nextJumpStatus: 'Voir l\'année suivant', + currentText: 'Courant', currentStatus: 'Voir le mois courant', + todayText: 'Aujourd\'hui', todayStatus: 'Voir aujourd\'hui', + clearText: 'Effacer', clearStatus: 'Effacer la date sélectionnée', + closeText: 'Fermer', closeStatus: 'Fermer sans modifier', + yearStatus: 'Voir une autre année', monthStatus: 'Voir un autre mois', + weekText: 'Sm', weekStatus: 'Semaine de l\'année', + dayStatus: '\'Choisir\' le DD d MM', defaultStatus: 'Choisir la date', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['fr-CH']); +})(jQuery); +/* http://keith-wood.name/calendars.html + French localisation for calendars datepicker for jQuery. + Stéphane Nahmani (sholby@sholby.net). */ +(function($) { + $.calendarsPicker.regionalOptions['fr'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Préc', prevStatus: 'Voir le mois précédent', + prevJumpText: '<<', prevJumpStatus: 'Voir l\'année précédent', + nextText: 'Suiv>', nextStatus: 'Voir le mois suivant', + nextJumpText: '>>', nextJumpStatus: 'Voir l\'année suivant', + currentText: 'Courant', currentStatus: 'Voir le mois courant', + todayText: 'Aujourd\'hui', todayStatus: 'Voir aujourd\'hui', + clearText: 'Effacer', clearStatus: 'Effacer la date sélectionnée', + closeText: 'Fermer', closeStatus: 'Fermer sans modifier', + yearStatus: 'Voir une autre année', monthStatus: 'Voir un autre mois', + weekText: 'Sm', weekStatus: 'Semaine de l\'année', + dayStatus: '\'Choisir\' le DD d MM', defaultStatus: 'Choisir la date', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['fr']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Iniciacion en galego para a extensión 'UI date picker' para jQuery. + Traducido por Manuel (McNuel@gmx.net). */ +(function($) { + $.calendarsPicker.regionalOptions['gl'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Ant', prevStatus: 'Amosar mes anterior', + prevJumpText: '<<', prevJumpStatus: 'Amosar ano anterior', + nextText: 'Seg>', nextStatus: 'Amosar mes seguinte', + nextJumpText: '>>', nextJumpStatus: 'Amosar ano seguinte', + currentText: 'Hoxe', currentStatus: 'Amosar mes actual', + todayText: 'Hoxe', todayStatus: 'Amosar mes actual', + clearText: 'Limpar', clearStatus: 'Borrar data actual', + closeText: 'Pechar', closeStatus: 'Pechar sen gardar', + yearStatus: 'Amosar outro ano', monthStatus: 'Amosar outro mes', + weekText: 'Sm', weekStatus: 'Semana do ano', + dayStatus: 'D, M d', defaultStatus: 'Selecciona Data', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['gl']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Gujarati (ગુજરાતી) localisation for calendars datepicker for jQuery. + Naymesh Mistry (naymesh@yahoo.com). */ +(function($) { + $.calendarsPicker.regionalOptions['gu'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<પાછળ', prevStatus: 'પાછલો મહિનો બતાવો', + prevJumpText: '<<', prevJumpStatus: 'પાછળ', + nextText: 'આગળ>', nextStatus: 'આગલો મહિનો બતાવો', + nextJumpText: '>>', nextJumpStatus: 'આગળ', + currentText: 'આજે', currentStatus: 'આજનો દિવસ બતાવો', + todayText: 'આજે', todayStatus: 'આજનો દિવસ', + clearText: 'ભૂંસો', clearStatus: 'હાલ પસંદ કરેલી તારીખ ભૂંસો', + closeText: 'બંધ કરો', closeStatus: 'તારીખ પસંદ કર્યા વગર બંધ કરો', + yearStatus: 'જુદુ વર્ષ બતાવો', monthStatus: 'જુદો મહિનો બતાવો', + weekText: 'અઠવાડિયું', weekStatus: 'અઠવાડિયું', + dayStatus: 'અઠવાડિયાનો પહેલો દિવસ પસંદ કરો', defaultStatus: 'તારીખ પસંદ કરો', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['gu']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Hebrew localisation for calendars datepicker for jQuery. + Written by Amir Hardon (ahardon at gmail dot com). */ +(function($) { + $.calendarsPicker.regionalOptions['he'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<הקודם', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'הבא>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'היום', currentStatus: '', + todayText: 'היום', todayStatus: '', + clearText: 'נקה', clearStatus: '', + closeText: 'סגור', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Wk', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: true + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['he']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Hindi INDIA localisation for calendars datepicker for jQuery. + Written by Pawan Kumar Singh. */ +(function($) { + $.calendarsPicker.regionalOptions['hi-IN'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'पिछला', prevStatus: 'पिछला महीना देखें', + prevJumpText: '<<', prevJumpStatus: 'पिछला वर्ष देखें', + nextText: 'अगला', nextStatus: 'अगला महीना देखें', + nextJumpText: '>>', nextJumpStatus: 'अगला वर्ष देखें', + currentText: 'वर्तमान', currentStatus: 'वर्तमान महीना देखें', + todayText: 'आज', todayStatus: 'वर्तमान दिन देखें', + clearText: 'साफ', clearStatus: 'वर्तमान दिनांक मिटाए', + closeText: 'समाप्त', closeStatus: 'बदलाव के बिना बंद', + yearStatus: 'एक अलग वर्ष का चयन करें', monthStatus: 'एक अलग महीने का चयन करें', + weekText: 'Wk', weekStatus: 'वर्ष का सप्ताह', + dayStatus: 'चुने DD, M d', defaultStatus: 'एक तिथि का चयन करें', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['hi-IN']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Croatian localisation for calendars datepicker for jQuery. + Written by Vjekoslav Nesek. */ +(function($) { + $.calendarsPicker.regionalOptions['hr'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<', prevStatus: 'Prikaži prethodni mjesec', + prevJumpText: '<<', prevJumpStatus: '', + nextText: '>', nextStatus: 'Prikaži slijedeći mjesec', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Danas', currentStatus: 'Današnji datum', + todayText: 'Danas', todayStatus: 'Današnji datum', + clearText: 'izbriši', clearStatus: 'Izbriši trenutni datum', + closeText: 'Zatvori', closeStatus: 'Zatvori kalendar', + yearStatus: 'Prikaži godine', monthStatus: 'Prikaži mjesece', + weekText: 'Tje', weekStatus: 'Tjedanr', + dayStatus: '\'Datum\' DD, M d', defaultStatus: 'Odaberi datum', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['hr']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Hungarian localisation for calendars datepicker for jQuery. + Written by Istvan Karaszi (jquerycalendar@spam.raszi.hu). */ +(function($) { + $.calendarsPicker.regionalOptions['hu'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '« vissza', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'előre »', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'ma', currentStatus: '', + todayText: 'ma', todayStatus: '', + clearText: 'törlés', clearStatus: '', + closeText: 'bezárás', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Hé', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['hu']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Armenian localisation for calendars datepicker for jQuery. + Written by Levon Zakaryan (levon.zakaryan@gmail.com) */ +(function($) { + $.calendarsPicker.regionalOptions['hy'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Նախ.', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Հաջ.>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Այսօր', currentStatus: '', + todayText: 'Այսօր', todayStatus: '', + clearText: 'Մաքրել', clearStatus: '', + closeText: 'Փակել', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'ՇԲՏ', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['hy']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Indonesian localisation for calendars datepicker for jQuery. + Written by Deden Fathurahman (dedenf@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['id'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<mundur', prevStatus: 'Tampilkan bulan sebelumnya', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'maju>', nextStatus: 'Tampilkan bulan berikutnya', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'hari ini', currentStatus: 'Tampilkan bulan sekarang', + todayText: 'hari ini', todayStatus: 'Tampilkan bulan sekarang', + clearText: 'kosongkan', clearStatus: 'bersihkan tanggal yang sekarang', + closeText: 'Tutup', closeStatus: 'Tutup tanpa mengubah', + yearStatus: 'Tampilkan tahun yang berbeda', monthStatus: 'Tampilkan bulan yang berbeda', + weekText: 'Mg', weekStatus: 'Minggu dalam tahu', + dayStatus: 'pilih le DD, MM d', defaultStatus: 'Pilih Tanggal', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['id']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Icelandic localisation for calendars datepicker for jQuery. + Written by Haukur H. Thorsson (haukur@eskill.is). */ +(function($) { + $.calendarsPicker.regionalOptions['is'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '< Fyrri', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Næsti >', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Í dag', currentStatus: '', + todayText: 'Í dag', todayStatus: '', + clearText: 'Hreinsa', clearStatus: '', + closeText: 'Loka', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Vika', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['is']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Italian localisation for calendars datepicker for jQuery. + Written by Apaella (apaella@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['it'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Prec', prevStatus: 'Mese precedente', + prevJumpText: '<<', prevJumpStatus: 'Mostra l\'anno precedente', + nextText: 'Succ>', nextStatus: 'Mese successivo', + nextJumpText: '>>', nextJumpStatus: 'Mostra l\'anno successivo', + currentText: 'Oggi', currentStatus: 'Mese corrente', + todayText: 'Oggi', todayStatus: 'Mese corrente', + clearText: 'Svuota', clearStatus: 'Annulla', + closeText: 'Chiudi', closeStatus: 'Chiudere senza modificare', + yearStatus: 'Seleziona un altro anno', monthStatus: 'Seleziona un altro mese', + weekText: 'Sm', weekStatus: 'Settimana dell\'anno', + dayStatus: '\'Seleziona\' DD, M d', defaultStatus: 'Scegliere una data', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['it']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Japanese localisation for calendars datepicker for jQuery. + Written by Kentaro SATO (kentaro@ranvis.com). */ +(function($) { + $.calendarsPicker.regionalOptions['ja'] = { + renderer: $.extend({}, $.calendarsPicker.defaultRenderer, + {month: $.calendarsPicker.defaultRenderer.month. + replace(/monthHeader/, 'monthHeader:yyyy年 MM')}), + prevText: '<前', prevStatus: '前月を表示します', + prevJumpText: '<<', prevJumpStatus: '前年を表示します', + nextText: '次>', nextStatus: '翌月を表示します', + nextJumpText: '>>', nextJumpStatus: '翌年を表示します', + currentText: '今日', currentStatus: '今月を表示します', + todayText: '今日', todayStatus: '今月を表示します', + clearText: 'クリア', clearStatus: '日付をクリアします', + closeText: '閉じる', closeStatus: '変更せずに閉じます', + yearStatus: '表示する年を変更します', monthStatus: '表示する月を変更します', + weekText: '週', weekStatus: '暦週で第何週目かを表します', + dayStatus: 'yyyy/mm/dd', defaultStatus: '日付を選択します', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ja']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Georgian localisation for calendars datepicker for jQuery. + Andrei Gorbushkin. */ +(function($) { + $.calendarsPicker.regionalOptions['ka'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<უკან', prevStatus: 'წინა თვე', + prevJumpText: '<<', prevJumpStatus: 'წინა წელი', + nextText: 'წინ>', nextStatus: 'შემდეგი თვე', + nextJumpText: '>>', nextJumpStatus: 'შემდეგი წელი', + currentText: 'მიმდინარე', currentStatus: 'მიმდინარე თვე', + todayText: 'დღეს', todayStatus: 'მიმდინარე დღე', + clearText: 'გასუფთავება', clearStatus: 'მიმდინარე თარიღის წაშლა', + closeText: 'არის', closeStatus: 'დახურვა უცვლილებოდ', + yearStatus: 'სხვა წელი', monthStatus: 'სხვა თვე', + weekText: 'კვ', weekStatus: 'წლის კვირა', + dayStatus: 'აირჩიეთ DD, M d', defaultStatus: 'აიღჩიეთ თარიღი', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ka']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Khmer initialisation for calendars datepicker for jQuery. + Written by Sovichet Tep (sovichet.tep@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['km'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'ថយ​ក្រោយ', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'ទៅ​មុខ', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'ថ្ងៃ​នេះ', currentStatus: '', + todayText: 'ថ្ងៃ​នេះ', todayStatus: '', + clearText: 'X', clearStatus: '', + closeText: 'រួច​រាល់', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Wk', weekStatus: '', + dayStatus: 'DD d MM', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['km']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Korean localisation for calendars datepicker for jQuery. + Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */ +(function($) { + $.calendarsPicker.regionalOptions['ko'] = { + renderer: $.extend({}, $.calendarsPicker.defaultRenderer, + {month: $.calendarsPicker.defaultRenderer.month. + replace(/monthHeader/, 'monthHeader:yyyy년 MM')}), + prevText: '이전달', prevStatus: '이전달을 표시합니다', + prevJumpText: '<<', prevJumpStatus: '이전 연도를 표시합니다', + nextText: '다음달', nextStatus: '다음달을 표시합니다', + nextJumpText: '>>', nextJumpStatus: '다음 연도를 표시합니다', + currentText: '현재', currentStatus: '입력한 달을 표시합니다', + todayText: '오늘', todayStatus: '이번달을 표시합니다', + clearText: '지우기', clearStatus: '입력한 날짜를 지웁니다', + closeText: '닫기', closeStatus: '', + yearStatus: '표시할 연도를 변경합니다', monthStatus: '표시할 월을 변경합니다', + weekText: 'Wk', weekStatus: '해당 연도의 주차', + dayStatus: 'M d일 (D)', defaultStatus: '날짜를 선택하세요', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ko']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Lithuanian localisation for calendars datepicker for jQuery. + Arturas Paleicikas . */ +(function($) { + $.calendarsPicker.regionalOptions['lt'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Atgal', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Pirmyn>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Šiandien', currentStatus: '', + todayText: 'Šiandien', todayStatus: '', + clearText: 'Išvalyti', clearStatus: '', + closeText: 'Uždaryti', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Wk', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['lt']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Latvian localisation for calendars datepicker for jQuery. + Arturas Paleicikas . */ +(function($) { + $.calendarsPicker.regionalOptions['lv'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'Iepr', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Nāka', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Šodien', currentStatus: '', + todayText: 'Šodien', todayStatus: '', + clearText: 'Notīrīt', clearStatus: '', + closeText: 'Aizvērt', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Nav', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['lv']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Montenegrin localisation for calendars datepicker for jQuery. + Written by Miloš Milošević - fleka d.o.o. */ +(function($) { + $.calendarsPicker.regionalOptions['me-ME'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<', prevStatus: 'Prikaži prethodni mjesec', + prevJumpText: '<<', prevJumpStatus: 'Prikaži prethodnu godinu', + nextText: '>', nextStatus: 'Prikaži sljedeći mjesec', + nextJumpText: '>>', nextJumpStatus: 'Prikaži sljedeću godinu', + currentText: 'Danas', currentStatus: 'Tekući mjesec', + todayText: 'Danas', todayStatus: 'Tekući mjesec', + clearText: 'Obriši', clearStatus: 'Obriši trenutni datum', + closeText: 'Zatvori', closeStatus: 'Zatvori kalendar', + yearStatus: 'Prikaži godine', monthStatus: 'Prikaži mjesece', + weekText: 'Sed', weekStatus: 'Sedmica', + dayStatus: '\'Datum\' DD, M d', defaultStatus: 'Odaberi datum', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['me-ME']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Montenegrin localisation for calendars datepicker for jQuery. + Written by Miloš Milošević - fleka d.o.o. */ +(function($) { + $.calendarsPicker.regionalOptions['me'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<', prevStatus: 'Прикажи претходни мјесец', + prevJumpText: '<<', prevJumpStatus: 'Прикажи претходну годину', + nextText: '>', nextStatus: 'Прикажи сљедећи мјесец', + nextJumpText: '>>', nextJumpStatus: 'Прикажи сљедећу годину', + currentText: 'Данас', currentStatus: 'Текући мјесец', + todayText: 'Данас', todayStatus: 'Текући мјесец', + clearText: 'Обриши', clearStatus: 'Обриши тренутни датум', + closeText: 'Затвори', closeStatus: 'Затвори календар', + yearStatus: 'Прикажи године', monthStatus: 'Прикажи мјесеце', + weekText: 'Сед', weekStatus: 'Седмица', + dayStatus: '\'Датум\' DD d MM', defaultStatus: 'Одабери датум', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['me']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Македонски MK localisation for calendars datepicker for jQuery. + Hajan Selmani (hajan [at] live [dot] com). */ +(function($) { + $.calendarsPicker.regionalOptions['mk'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'Претх.', prevStatus: 'Прикажи го претходниот месец', + prevJumpText: '<<', prevJumpStatus: 'Прикажи ја претходната година', + nextText: 'Следен', nextStatus: 'Прикажи го следниот месец', + nextJumpText: '>>', nextJumpStatus: 'Прикажи ја следната година', + currentText: 'Тековен', currentStatus: 'Прикажи го тековниот месец', + todayText: 'Денес', todayStatus: 'Прикажи го денешниот месец', + clearText: 'Бриши', clearStatus: 'Избриши го тековниот датум', + closeText: 'Затвори', closeStatus: 'Затвори без промени', + yearStatus: 'Избери друга година', monthStatus: 'Избери друг месец', + weekText: 'Нед', weekStatus: 'Недела во годината', + dayStatus: 'Избери DD, M d', defaultStatus: 'Избери датум', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['mk']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Malayalam localisation for calendars datepicker for jQuery. + Saji Nediyanchath (saji89@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['ml'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'മുന്നത്തെ', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'അടുത്തത് ', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'ഇന്ന്', currentStatus: '', + todayText: 'ഇന്ന്', todayStatus: '', + clearText: 'X', clearStatus: '', + closeText: 'ശരി', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'ആ', weekStatus: '', + dayStatus: 'DD d MM', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ml']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Malaysian localisation for calendars datepicker for jQuery. + Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */ +(function($) { + $.calendarsPicker.regionalOptions['ms'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Sebelum', prevStatus: 'Tunjukkan bulan lepas', + prevJumpText: '<<', prevJumpStatus: 'Tunjukkan tahun lepas', + nextText: 'Selepas>', nextStatus: 'Tunjukkan bulan depan', + nextJumpText: '>>', nextJumpStatus: 'Tunjukkan tahun depan', + currentText: 'hari ini', currentStatus: 'Tunjukkan bulan terkini', + todayText: 'hari ini', todayStatus: 'Tunjukkan bulan terkini', + clearText: 'Padam', clearStatus: 'Padamkan tarikh terkini', + closeText: 'Tutup', closeStatus: 'Tutup tanpa perubahan', + yearStatus: 'Tunjukkan tahun yang lain', monthStatus: 'Tunjukkan bulan yang lain', + weekText: 'Mg', weekStatus: 'Minggu bagi tahun ini', + dayStatus: 'DD, d MM', defaultStatus: 'Sila pilih tarikh', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ms']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Maltese localisation for calendars datepicker for jQuery. + Written by Chritian Sciberras (uuf6429@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['mt'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'Ta Qabel', prevStatus: 'Ix-xahar ta qabel', + prevJumpText: '<<', prevJumpStatus: 'Is-sena ta qabel', + nextText: 'Li Jmiss', nextStatus: 'Ix-xahar li jmiss', + nextJumpText: '>>', nextJumpStatus: 'Is-sena li jmiss', + currentText: 'Illum', currentStatus: 'Ix-xahar ta llum', + todayText: 'Illum', todayStatus: 'Uri ix-xahar ta llum', + clearText: 'Ħassar', clearStatus: 'Ħassar id-data', + closeText: 'Lest', closeStatus: 'Għalaq mingħajr tibdiliet', + yearStatus: 'Uri sena differenti', monthStatus: 'Uri xahar differenti', + weekText: 'Ġm', weekStatus: 'Il-Ġimgħa fis-sena', + dayStatus: 'Għazel DD, M d', defaultStatus: 'Għazel data', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['mt']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Dutch/Belgian localisation for calendars datepicker for jQuery. + Written by Mathias Bynens . */ +(function($) { + $.calendarsPicker.regionalOptions['nl-BE'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '←', prevStatus: 'Bekijk de vorige maand', + prevJumpText: '«', nextJumpStatus: 'Bekijk het vorige jaar', + nextText: '→', nextStatus: 'Bekijk de volgende maand', + nextJumpText: '»', nextJumpStatus: 'Bekijk het volgende jaar', + currentText: 'Vandaag', currentStatus: 'Bekijk de huidige maand', + todayText: 'Vandaag', todayStatus: 'Bekijk de huidige maand', + clearText: 'Wissen', clearStatus: 'Wis de huidige datum', + closeText: 'Sluiten', closeStatus: 'Sluit zonder verandering', + yearStatus: 'Bekijk een ander jaar', monthStatus: 'Bekijk een andere maand', + weekText: 'Wk', weekStatus: 'Week van het jaar', + dayStatus: 'dd/mm/yyyy', defaultStatus: 'Kies een datum', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['nl-BE']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Dutch localisation for calendars datepicker for jQuery. + Written by Mathias Bynens . */ +(function($) { + $.calendarsPicker.regionalOptions['nl'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '←', prevStatus: 'Bekijk de vorige maand', + prevJumpText: '«', nextJumpStatus: 'Bekijk het vorige jaar', + nextText: '→', nextStatus: 'Bekijk de volgende maand', + nextJumpText: '»', nextJumpStatus: 'Bekijk het volgende jaar', + currentText: 'Vandaag', currentStatus: 'Bekijk de huidige maand', + todayText: 'Vandaag', todayStatus: 'Bekijk de huidige maand', + clearText: 'Wissen', clearStatus: 'Wis de huidige datum', + closeText: 'Sluiten', closeStatus: 'Sluit zonder verandering', + yearStatus: 'Bekijk een ander jaar', monthStatus: 'Bekijk een andere maand', + weekText: 'Wk', weekStatus: 'Week van het jaar', + dayStatus: 'dd-mm-yyyy', defaultStatus: 'Kies een datum', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['nl']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Norwegian localisation for calendars datepicker for jQuery. + Written by Naimdjon Takhirov (naimdjon@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['no'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '«Forrige', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Neste»', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'I dag', currentStatus: '', + todayText: 'I dag', todayStatus: '', + clearText: 'Tøm', clearStatus: '', + closeText: 'Lukk', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Uke', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['no']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Polish localisation for calendars datepicker for jQuery. + Written by Jacek Wysocki (jacek.wysocki@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['pl'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Poprzedni', prevStatus: 'Pokaż poprzedni miesiąc', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Następny>', nextStatus: 'Pokaż następny miesiąc', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Dziś', currentStatus: 'Pokaż aktualny miesiąc', + todayText: 'Dziś', todayStatus: 'Pokaż aktualny miesiąc', + clearText: 'Wyczyść', clearStatus: 'Wyczyść obecną datę', + closeText: 'Zamknij', closeStatus: 'Zamknij bez zapisywania', + yearStatus: 'Pokaż inny rok', monthStatus: 'Pokaż inny miesiąc', + weekText: 'Tydz', weekStatus: 'Tydzień roku', + dayStatus: '\'Wybierz\' DD, M d', defaultStatus: 'Wybierz datę', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['pl']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Brazilian Portuguese localisation for calendars datepicker for jQuery. + Written by Leonildo Costa Silva (leocsilva@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['pt-BR'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Anterior', prevStatus: 'Mostra o mês anterior', + prevJumpText: '<<', prevJumpStatus: 'Mostra o ano anterior', + nextText: 'Próximo>', nextStatus: 'Mostra o próximo mês', + nextJumpText: '>>', nextJumpStatus: 'Mostra o próximo ano', + currentText: 'Atual', currentStatus: 'Mostra o mês atual', + todayText: 'Hoje', todayStatus: 'Vai para hoje', + clearText: 'Limpar', clearStatus: 'Limpar data', + closeText: 'Fechar', closeStatus: 'Fechar o calendário', + yearStatus: 'Selecionar ano', monthStatus: 'Selecionar mês', + weekText: 's', weekStatus: 'Semana do ano', + dayStatus: 'DD, d \'de\' M \'de\' yyyy', defaultStatus: 'Selecione um dia', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['pt-BR']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Romansh localisation for calendars datepicker for jQuery. + Yvonne Gienal (yvonne.gienal@educa.ch). */ +(function($) { + $.calendarsPicker.regionalOptions['rm'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Suandant', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Precedent>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Actual', currentStatus: '', + todayText: 'Actual', todayStatus: '', + clearText: 'X', clearStatus: '', + closeText: 'Serrar', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'emna', weekStatus: '', + dayStatus: 'DD d MM', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['rm']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Romanian localisation for calendars datepicker for jQuery. + Written by Edmond L. (ll_edmond@walla.com) and Ionut G. Stan (ionut.g.stan@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['ro'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '«Precedenta', prevStatus: 'Arata luna precedenta', + prevJumpText: '««', prevJumpStatus: '', + nextText: 'Urmatoare»', nextStatus: 'Arata luna urmatoare', + nextJumpText: '»»', nextJumpStatus: '', + currentText: 'Azi', currentStatus: 'Arata luna curenta', + todayText: 'Azi', todayStatus: 'Arata luna curenta', + clearText: 'Curat', clearStatus: 'Sterge data curenta', + closeText: 'Închide', closeStatus: 'Închide fara schimbare', + yearStatus: 'Arat un an diferit', monthStatus: 'Arata o luna diferita', + weekText: 'Săpt', weekStatus: 'Săptamana anului', + dayStatus: 'Selecteaza DD, M d', defaultStatus: 'Selecteaza o data', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ro']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Russian localisation for calendars datepicker for jQuery. + Written by Andrew Stromnov (stromnov@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['ru'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Пред', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'След>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Сегодня', currentStatus: '', + todayText: 'Сегодня', todayStatus: '', + clearText: 'Очистить', clearStatus: '', + closeText: 'Закрыть', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Не', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ru']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Slovak localisation for calendars datepicker for jQuery. + Written by Vojtech Rinik (vojto@hmm.sk). */ +(function($) { + $.calendarsPicker.regionalOptions['sk'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Predchádzajúci', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Nasledujúci>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Dnes', currentStatus: '', + todayText: 'Dnes', todayStatus: '', + clearText: 'Zmazať', clearStatus: '', + closeText: 'Zavrieť', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Ty', weekStatus: '', + dayStatus: 'DD. M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sk']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Slovenian localisation for calendars datepicker for jQuery. + Written by Jaka Jancar (jaka@kubje.org). */ +(function($) { + $.calendarsPicker.regionalOptions['sl'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Prejšnji', prevStatus: 'Prikaži prejšnji mesec', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Naslednji>', nextStatus: 'Prikaži naslednji mesec', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Trenutni', currentStatus: 'Prikaži trenutni mesec', + todayText: 'Trenutni', todayStatus: 'Prikaži trenutni mesec', + clearText: 'Izbriši', clearStatus: 'Izbriši trenutni datum', + closeText: 'Zapri', closeStatus: 'Zapri brez spreminjanja', + yearStatus: 'Prikaži drugo leto', monthStatus: 'Prikaži drug mesec', + weekText: 'Teden', weekStatus: 'Teden v letu', + dayStatus: 'Izberi DD, d MM yy', defaultStatus: 'Izbira datuma', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sl']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Albanian localisation for calendars datepicker for jQuery. + Written by Flakron Bytyqi (flakron@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['sq'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<mbrapa', prevStatus: 'trego muajin e fundit', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Përpara>', nextStatus: 'trego muajin tjetër', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'sot', currentStatus: '', + todayText: 'sot', todayStatus: '', + clearText: 'fshije', clearStatus: 'fshije datën aktuale', + closeText: 'mbylle', closeStatus: 'mbylle pa ndryshime', + yearStatus: 'trego tjetër vit', monthStatus: 'trego muajin tjetër', + weekText: 'Ja', weekStatus: 'Java e muajit', + dayStatus: '\'Zgjedh\' D, M d', defaultStatus: 'Zgjedhe një datë', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sq']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Serbian localisation for calendars datepicker for jQuery. + Written by Dejan Dimić. */ +(function($) { + $.calendarsPicker.regionalOptions['sr-SR'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<', prevStatus: 'Prikaži predhodni mesec', + prevJumpText: '<<', prevJumpStatus: 'Prikaži predhodnu godinu', + nextText: '>', nextStatus: 'Prikaži sledeći mesec', + nextJumpText: '>>', nextJumpStatus: 'Prikaži sledeću godinu', + currentText: 'Danas', currentStatus: 'Tekući mesec', + todayText: 'Danas', todayStatus: 'Tekući mesec', + clearText: 'Obriši', clearStatus: 'Obriši trenutni datum', + closeText: 'Zatvori', closeStatus: 'Zatvori kalendar', + yearStatus: 'Prikaži godine', monthStatus: 'Prikaži mesece', + weekText: 'Sed', weekStatus: 'Sedmica', + dayStatus: '\'Datum\' DD, M d', defaultStatus: 'Odaberi datum', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sr-SR']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Serbian localisation for calendars datepicker for jQuery. + Written by Dejan Dimić. */ +(function($) { + $.calendarsPicker.regionalOptions['sr'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<', prevStatus: 'Прикажи предходни месец', + prevJumpText: '<<', prevJumpStatus: 'Прикажи предходну годину', + nextText: '>', nextStatus: 'Прикажи слецећи месец', + nextJumpText: '>>', nextJumpStatus: 'Прикажи следећу годину', + currentText: 'Данас', currentStatus: 'Текући месец', + todayText: 'Данас', todayStatus: 'Текући месец', + clearText: 'Обриши', clearStatus: 'Обриши тренутни датум', + closeText: 'Затвори', closeStatus: 'Затвори календар', + yearStatus: 'Прикажи године', monthStatus: 'Прикажи месеце', + weekText: 'Сед', weekStatus: 'Седмица', + dayStatus: '\'Датум\' DD d MM', defaultStatus: 'Одабери датум', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sr']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Swedish localisation for calendars datepicker for jQuery. + Written by Anders Ekdahl ( anders@nomadiz.se). */ +(function($) { + $.calendarsPicker.regionalOptions['sv'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '«Förra', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'Nästa»', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Idag', currentStatus: '', + todayText: 'Idag', todayStatus: '', + clearText: 'Rensa', clearStatus: '', + closeText: 'Stäng', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Ve', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sv']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Tamil (UTF-8) localisation for calendars datepicker for jQuery. + Written by S A Sureshkumar (saskumar@live.com). */ +(function($) { + $.calendarsPicker.regionalOptions['ta'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'முன்னையது', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'அடுத்தது', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'இன்று', currentStatus: '', + todayText: 'இன்று', todayStatus: '', + clearText: 'அழி', clearStatus: '', + closeText: 'மூடு', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Wk', weekStatus: '', + dayStatus: 'D, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ta']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Thai localisation for calendars datepicker for jQuery. + Written by pipo (pipo@sixhead.com). */ +(function($) { + $.calendarsPicker.regionalOptions['th'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '« ย้อน', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'ถัดไป »', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'วันนี้', currentStatus: '', + todayText: 'วันนี้', todayStatus: '', + clearText: 'ลบ', clearStatus: '', + closeText: 'ปิด', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Wk', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['th']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Turkish localisation for calendars datepicker for jQuery. + Written by Izzet Emre Erkan (kara@karalamalar.net). */ +(function($) { + $.calendarsPicker.regionalOptions['tr'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<geri', prevStatus: 'önceki ayı göster', + prevJumpText: '<<', prevJumpStatus: '', + nextText: 'ileri>', nextStatus: 'sonraki ayı göster', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'bugün', currentStatus: '', + todayText: 'bugün', todayStatus: '', + clearText: 'temizle', clearStatus: 'geçerli tarihi temizler', + closeText: 'kapat', closeStatus: 'sadece göstergeyi kapat', + yearStatus: 'başka yıl', monthStatus: 'başka ay', + weekText: 'Hf', weekStatus: 'Ayın haftaları', + dayStatus: 'D, M d seçiniz', defaultStatus: 'Bir tarih seçiniz', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['tr']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Tatar localisation for calendars datepicker for jQuery. + Written by Irek Khaziev (khazirek@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['tt'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: 'Алдагы', prevStatus: 'Алдагы айны күрсәтү', + prevJumpText: '<<', prevJumpStatus: 'Алдагы елны күрсәтү', + nextText: 'Киләсе', nextStatus: 'Киләсе айны күрсәтү', + nextJumpText: '>>', nextJumpStatus: 'Киләсе елны күрсәтү', + currentText: 'Хәзер', currentStatus: 'Хәзерге айны күрсәтү', + todayText: 'Бүген', todayStatus: 'Бүгенге айны күрсәтү', + clearText: 'Чистарту', clearStatus: 'Барлык көннәрне чистарту', + closeText: 'Ябарга', closeStatus: 'Көн сайлауны ябарга', + yearStatus: 'Елны кертегез', monthStatus: 'Айны кертегез', + weekText: 'Атна', weekStatus: 'Елда атна саны', + dayStatus: 'DD, M d', defaultStatus: 'Көнне сайлагыз', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['tt']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Ukrainian localisation for calendars datepicker for jQuery. + Written by Maxim Drogobitskiy (maxdao@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['uk'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<', prevStatus: '', + prevJumpText: '<<', prevJumpStatus: '', + nextText: '>', nextStatus: '', + nextJumpText: '>>', nextJumpStatus: '', + currentText: 'Сьогодні', currentStatus: '', + todayText: 'Сьогодні', todayStatus: '', + clearText: 'Очистити', clearStatus: '', + closeText: 'Закрити', closeStatus: '', + yearStatus: '', monthStatus: '', + weekText: 'Не', weekStatus: '', + dayStatus: 'DD, M d', defaultStatus: '', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['uk']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Urdu localisation for calendars datepicker for jQuery. + Mansoor Munib -- mansoormunib@gmail.com + Thanks to Habib Ahmed, ObaidUllah Anwar. */ +(function($) { + $.calendarsPicker.regionalOptions['ur'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<گذشتہ', prevStatus: 'ماه گذشتہ', + prevJumpText: '<<', prevJumpStatus: 'برس گذشتہ', + nextText: 'آئندہ>', nextStatus: 'ماه آئندہ', + nextJumpText: '>>', nextJumpStatus: 'برس آئندہ', + currentText: 'رواں', currentStatus: 'ماه رواں', + todayText: 'آج', todayStatus: 'آج', + clearText: 'حذف تاريخ', clearStatus: 'کریں حذف تاریخ', + closeText: 'کریں بند', closeStatus: 'کیلئے کرنے بند', + yearStatus: 'برس تبدیلی', monthStatus: 'ماه تبدیلی', + weekText: 'ہفتہ', weekStatus: 'ہفتہ', + dayStatus: 'انتخاب D, M d', defaultStatus: 'کریں منتخب تاريخ', + isRTL: true + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ur']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Vietnamese localisation for calendars datepicker for jQuery. + Translated by Le Thanh Huy (lthanhhuy@cit.ctu.edu.vn). */ +(function($) { + $.calendarsPicker.regionalOptions['vi'] = { + renderer: $.calendarsPicker.defaultRenderer, + prevText: '<Trước', prevStatus: 'Tháng trước', + prevJumpText: '<<', prevJumpStatus: 'Năm trước', + nextText: 'Tiếp>', nextStatus: 'Tháng sau', + nextJumpText: '>>', nextJumpStatus: 'Năm sau', + currentText: 'Hôm nay', currentStatus: 'Tháng hiện tại', + todayText: 'Hôm nay', todayStatus: 'Tháng hiện tại', + clearText: 'Xóa', clearStatus: 'Xóa ngày hiện tại', + closeText: 'Đóng', closeStatus: 'Đóng và không lưu lại thay đổi', + yearStatus: 'Năm khác', monthStatus: 'Tháng khác', + weekText: 'Tu', weekStatus: 'Tuần trong năm', + dayStatus: 'Đang chọn DD, \'ngày\' d M', defaultStatus: 'Chọn ngày', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['vi']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Simplified Chinese localisation for calendars datepicker for jQuery. + Written by Cloudream (cloudream@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['zh-CN'] = { + renderer: $.extend({}, $.calendarsPicker.defaultRenderer, + {month: $.calendarsPicker.defaultRenderer.month. + replace(/monthHeader/, 'monthHeader:MM yyyy年')}), + prevText: '<上月', prevStatus: '显示上月', + prevJumpText: '<<', prevJumpStatus: '显示上一年', + nextText: '下月>', nextStatus: '显示下月', + nextJumpText: '>>', nextJumpStatus: '显示下一年', + currentText: '今天', currentStatus: '显示本月', + todayText: '今天', todayStatus: '显示本月', + clearText: '清除', clearStatus: '清除已选日期', + closeText: '关闭', closeStatus: '不改变当前选择', + yearStatus: '选择年份', monthStatus: '选择月份', + weekText: '周', weekStatus: '年内周次', + dayStatus: '选择 m月 d日, DD', defaultStatus: '请选择日期', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['zh-CN']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Hong Kong Chinese localisation for calendars datepicker for jQuery. + Written by SCCY (samuelcychan@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['zh-HK'] = { + renderer: $.extend({}, $.calendarsPicker.defaultRenderer, + {month: $.calendarsPicker.defaultRenderer.month. + replace(/monthHeader/, 'monthHeader:yyyy年 MM')}), + prevText: '<上月', prevStatus: '顯示上月', + prevJumpText: '<<', prevJumpStatus: '顯示上一年', + nextText: '下月>', nextStatus: '顯示下月', + nextJumpText: '>>', nextJumpStatus: '顯示下一年', + currentText: '今天', currentStatus: '顯示本月', + todayText: '今天', todayStatus: '顯示本月', + clearText: '清除', clearStatus: '清除已選日期', + closeText: '關閉', closeStatus: '不改變目前的選擇', + yearStatus: '選擇年份', monthStatus: '選擇月份', + weekText: '周', weekStatus: '年內周次', + dayStatus: '選擇 m月 d日, DD', defaultStatus: '請選擇日期', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['zh-HK']); +})(jQuery); +/* http://keith-wood.name/calendars.html + Traditional Chinese localisation for calendars datepicker for jQuery. + Written by Ressol (ressol@gmail.com). */ +(function($) { + $.calendarsPicker.regionalOptions['zh-TW'] = { + renderer: $.extend({}, $.calendarsPicker.defaultRenderer, + {month: $.calendarsPicker.defaultRenderer.month. + replace(/monthHeader/, 'monthHeader:MM yyyy年')}), + prevText: '<上月', prevStatus: '顯示上月', + prevJumpText: '<<', prevJumpStatus: '顯示上一年', + nextText: '下月>', nextStatus: '顯示下月', + nextJumpText: '>>', nextJumpStatus: '顯示下一年', + currentText: '今天', currentStatus: '顯示本月', + todayText: '今天', todayStatus: '顯示本月', + clearText: '清除', clearStatus: '清除已選日期', + closeText: '關閉', closeStatus: '不改變目前的選擇', + yearStatus: '選擇年份', monthStatus: '選擇月份', + weekText: '周', weekStatus: '年內周次', + dayStatus: '選擇 m月 d日, DD', defaultStatus: '請選擇日期', + isRTL: false + }; + $.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['zh-TW']); +})(jQuery); diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.picker.lang.min.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.picker.lang.min.js new file mode 100644 index 0000000..7e22608 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.picker.lang.min.js @@ -0,0 +1,6 @@ +/* http://keith-wood.name/calendars.html + Calendars datepicker localisations for jQuery v2.0.2. + Written by Keith Wood (wood.keith{at}optusnet.com.au) August 2009. + Available under the MIT (http://keith-wood.name/licence.html) license. + Please attribute the author if you use it. */ +(function($){$.calendarsPicker.regionalOptions['af']={renderer:$.calendarsPicker.defaultRenderer,prevText:'Vorige',prevStatus:'Vertoon vorige maand',prevJumpText:'<<',prevJumpStatus:'Vertoon vorige jaar',nextText:'Volgende',nextStatus:'Vertoon volgende maand',nextJumpText:'>>',nextJumpStatus:'Vertoon volgende jaar',currentText:'Vandag',currentStatus:'Vertoon huidige maand',todayText:'Vandag',todayStatus:'Vertoon huidige maand',clearText:'Vee uit',clearStatus:'Verwyder die huidige datum',closeText:'Klaar',closeStatus:'Sluit sonder verandering',yearStatus:'Vertoon \'n ander jaar',monthStatus:'Vertoon \'n ander maand',weekText:'Wk',weekStatus:'Week van die jaar',dayStatus:'Kies DD, M d',defaultStatus:'Kies \'n datum',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['af'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['am']={renderer:$.calendarsPicker.defaultRenderer,prevText:'ያለፈ',prevStatus:'ያለፈውን ወር አሳይ',prevJumpText:'<<',prevJumpStatus:'ያለፈውን ዓመት አሳይ',nextText:'ቀጣይ',nextStatus:'ቀጣዩን ወር አሳይ',nextJumpText:'>>',nextJumpStatus:'ቀጣዩን ዓመት አሳይ',currentText:'አሁን',currentStatus:'የአሁኑን ወር አሳይ',todayText:'ዛሬ',todayStatus:'የዛሬን ወር አሳይ',clearText:'አጥፋ',clearStatus:'የተመረጠውን ቀን አጥፋ',closeText:'ዝጋ',closeStatus:'የቀን መምረጫውን ዝጋ',yearStatus:'ዓመቱን ቀይር',monthStatus:'ወሩን ቀይር',weekText:'ሳም',weekStatus:'የዓመቱ ሳምንት ',dayStatus:'DD, M d, yyyy ምረጥ',defaultStatus:'ቀን ምረጥ',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['am'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ar-DZ']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<السابق',prevStatus:'عرض الشهر السابق',prevJumpText:'<<',prevJumpStatus:'',nextText:'التالي>',nextStatus:'عرض الشهر القادم',nextJumpText:'>>',nextJumpStatus:'',currentText:'اليوم',currentStatus:'عرض الشهر الحالي',todayText:'اليوم',todayStatus:'عرض الشهر الحالي',clearText:'مسح',clearStatus:'امسح التاريخ الحالي',closeText:'إغلاق',closeStatus:'إغلاق بدون حفظ',yearStatus:'عرض سنة آخرى',monthStatus:'عرض شهر آخر',weekText:'أسبوع',weekStatus:'أسبوع السنة',dayStatus:'اختر D, M d',defaultStatus:'اختر يوم',isRTL:true};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ar-DZ'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ar-EG']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<السابق',prevStatus:'عرض الشهر السابق',prevJumpText:'<<',prevJumpStatus:'',nextText:'التالي>',nextStatus:'عرض الشهر القادم',nextJumpText:'>>',nextJumpStatus:'',currentText:'اليوم',currentStatus:'عرض الشهر الحالي',todayText:'اليوم',todayStatus:'عرض الشهر الحالي',clearText:'مسح',clearStatus:'امسح التاريخ الحالي',closeText:'إغلاق',closeStatus:'إغلاق بدون حفظ',yearStatus:'عرض سنة آخرى',monthStatus:'عرض شهر آخر',weekText:'أسبوع',weekStatus:'أسبوع السنة',dayStatus:'اختر D, M d',defaultStatus:'اختر يوم',isRTL:true};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ar-EG'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ar']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<السابق',prevStatus:'عرض الشهر السابق',prevJumpText:'<<',prevJumpStatus:'',nextText:'التالي>',nextStatus:'عرض الشهر القادم',nextJumpText:'>>',nextJumpStatus:'',currentText:'اليوم',currentStatus:'عرض الشهر الحالي',todayText:'اليوم',todayStatus:'عرض الشهر الحالي',clearText:'مسح',clearStatus:'امسح التاريخ الحالي',closeText:'إغلاق',closeStatus:'إغلاق بدون حفظ',yearStatus:'عرض سنة آخرى',monthStatus:'عرض شهر آخر',weekText:'أسبوع',weekStatus:'أسبوع السنة',dayStatus:'اختر D, M d',defaultStatus:'اختر يوم',isRTL:true};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ar'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['az']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Geri',prevStatus:'Əvvəlki ay',prevJumpText:'<<',prevJumpStatus:'Əvvəlki il',nextText:'İrəli>',nextStatus:'Sonrakı ay',nextJumpText:'>>',nextJumpStatus:'Sonrakı il',currentText:'Bugün',currentStatus:'İndiki ay',todayText:'Bugün',todayStatus:'İndiki ay',clearText:'Təmizlə',clearStatus:'Tarixi sil',closeText:'Bağla',closeStatus:'Təqvimi bağla',yearStatus:'Başqa il',monthStatus:'Başqa ay',weekText:'Hf',weekStatus:'Həftələr',dayStatus:'D, M d seçin',defaultStatus:'Bir tarix seçin',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['az'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['bg']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<назад',prevStatus:'покажи последния месец',prevJumpText:'<<',prevJumpStatus:'',nextText:'напред>',nextStatus:'покажи следващия месец',nextJumpText:'>>',nextJumpStatus:'',currentText:'днес',currentStatus:'',todayText:'днес',todayStatus:'',clearText:'изчисти',clearStatus:'изчисти актуалната дата',closeText:'затвори',closeStatus:'затвори без промени',yearStatus:'покажи друга година',monthStatus:'покажи друг месец',weekText:'Wk',weekStatus:'седмица от месеца',dayStatus:'Избери D, M d',defaultStatus:'Избери дата',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['bg'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['bs']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Danas',currentStatus:'',todayText:'Danas',todayStatus:'',clearText:'X',clearStatus:'',closeText:'Zatvori',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Wk',weekStatus:'',dayStatus:'',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['bs'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ca']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Ant',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Seg>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Avui',currentStatus:'',todayText:'Avui',todayStatus:'',clearText:'Netejar',clearStatus:'',closeText:'Tancar',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Wk',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ca'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['cs']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Dříve',prevStatus:'Přejít na předchozí měsí',prevJumpText:'<<',prevJumpStatus:'',nextText:'Později>',nextStatus:'Přejít na další měsíc',nextJumpText:'>>',nextJumpStatus:'',currentText:'Nyní',currentStatus:'Přejde na aktuální měsíc',todayText:'Nyní',todayStatus:'Přejde na aktuální měsíc',clearText:'Vymazat',clearStatus:'Vymaže zadané datum',closeText:'Zavřít',closeStatus:'Zavře kalendář beze změny',yearStatus:'Přejít na jiný rok',monthStatus:'Přejít na jiný měsíc',weekText:'Týd',weekStatus:'Týden v roce',dayStatus:'\'Vyber\' DD, M d',defaultStatus:'Vyberte datum',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['cs'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['da']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Forrige',prevStatus:'Vis forrige måned',prevJumpText:'<<',prevJumpStatus:'',nextText:'Næste>',nextStatus:'Vis næste måned',nextJumpText:'>>',nextJumpStatus:'',currentText:'Idag',currentStatus:'Vis aktuel måned',todayText:'Idag',todayStatus:'Vis aktuel måned',clearText:'Nulstil',clearStatus:'Nulstil den aktuelle dato',closeText:'Luk',closeStatus:'Luk uden ændringer',yearStatus:'Vis et andet år',monthStatus:'Vis en anden måned',weekText:'Uge',weekStatus:'Årets uge',dayStatus:'Vælg D, M d',defaultStatus:'Vælg en dato',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['da'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['de-CH']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<zurück',prevStatus:'letzten Monat zeigen',prevJumpText:'<<',prevJumpStatus:'',nextText:'nächster>',nextStatus:'nächsten Monat zeigen',nextJumpText:'>>',nextJumpStatus:'',currentText:'heute',currentStatus:'',todayText:'heute',todayStatus:'',clearText:'löschen',clearStatus:'aktuelles Datum löschen',closeText:'schliessen',closeStatus:'ohne Änderungen schliessen',yearStatus:'anderes Jahr anzeigen',monthStatus:'anderen Monat anzeige',weekText:'Wo',weekStatus:'Woche des Monats',dayStatus:'Wähle D, M d',defaultStatus:'Wähle ein Datum',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['de-CH'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['de']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<zurück',prevStatus:'letzten Monat zeigen',prevJumpText:'<<',prevJumpStatus:'',nextText:'Vor>',nextStatus:'nächsten Monat zeigen',nextJumpText:'>>',nextJumpStatus:'',currentText:'heute',currentStatus:'',todayText:'heute',todayStatus:'',clearText:'löschen',clearStatus:'aktuelles Datum löschen',closeText:'schließen',closeStatus:'ohne Änderungen schließen',yearStatus:'anderes Jahr anzeigen',monthStatus:'anderen Monat anzeige',weekText:'Wo',weekStatus:'Woche des Monats',dayStatus:'Wähle D, M d',defaultStatus:'Wähle ein Datum',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['de'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['el']={renderer:$.calendarsPicker.defaultRenderer,prevText:'Προηγούμενος',prevStatus:'Επισκόπηση προηγούμενου μήνα',prevJumpText:'<<',prevJumpStatus:'',nextText:'Επόμενος',nextStatus:'Επισκόπηση επόμενου μήνα',nextJumpText:'>>',nextJumpStatus:'',currentText:'Τρέχων Μήνας',currentStatus:'Επισκόπηση τρέχοντος μήνα',todayText:'Τρέχων Μήνας',todayStatus:'Επισκόπηση τρέχοντος μήνα',clearText:'Σβήσιμο',clearStatus:'Σβήσιμο της επιλεγμένης ημερομηνίας',closeText:'Κλείσιμο',closeStatus:'Κλείσιμο χωρίς αλλαγή',yearStatus:'Επισκόπηση άλλου έτους',monthStatus:'Επισκόπηση άλλου μήνα',weekText:'Εβδ',weekStatus:'',dayStatus:'Επιλογή DD d MM',defaultStatus:'Επιλέξτε μια ημερομηνία',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['el'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['en-AU']={renderer:$.calendarsPicker.defaultRenderer,prevText:'Prev',prevStatus:'Show the previous month',prevJumpText:'<<',prevJumpStatus:'Show the previous year',nextText:'Next',nextStatus:'Show the next month',nextJumpText:'>>',nextJumpStatus:'Show the next year',currentText:'Current',currentStatus:'Show the current month',todayText:'Today',todayStatus:'Show today\'s month',clearText:'Clear',clearStatus:'Clear all the dates',closeText:'Done',closeStatus:'Close the datepicker',yearStatus:'Change the year',monthStatus:'Change the month',weekText:'Wk',weekStatus:'Week of the year',dayStatus:'Select DD, M d, yyyy',defaultStatus:'Select a date',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['en-AU'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['en-GB']={renderer:$.calendarsPicker.defaultRenderer,prevText:'Prev',prevStatus:'Show the previous month',prevJumpText:'<<',prevJumpStatus:'Show the previous year',nextText:'Next',nextStatus:'Show the next month',nextJumpText:'>>',nextJumpStatus:'Show the next year',currentText:'Current',currentStatus:'Show the current month',todayText:'Today',todayStatus:'Show today\'s month',clearText:'Clear',clearStatus:'Clear all the dates',closeText:'Done',closeStatus:'Close the datepicker',yearStatus:'Change the year',monthStatus:'Change the month',weekText:'Wk',weekStatus:'Week of the year',dayStatus:'Select DD, M d, yyyy',defaultStatus:'Select a date',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['en-GB'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['en-NZ']={renderer:$.calendarsPicker.defaultRenderer,prevText:'Prev',prevStatus:'Show the previous month',prevJumpText:'<<',prevJumpStatus:'Show the previous year',nextText:'Next',nextStatus:'Show the next month',nextJumpText:'>>',nextJumpStatus:'Show the next year',currentText:'Current',currentStatus:'Show the current month',todayText:'Today',todayStatus:'Show today\'s month',clearText:'Clear',clearStatus:'Clear all the dates',closeText:'Done',closeStatus:'Close the datepicker',yearStatus:'Change the year',monthStatus:'Change the month',weekText:'Wk',weekStatus:'Week of the year',dayStatus:'Select DD, M d, yyyy',defaultStatus:'Select a date',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['en-NZ'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['eo']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Anta',prevStatus:'Vidi la antaŭan monaton',prevJumpText:'<<',prevJumpStatus:'',nextText:'Sekv>',nextStatus:'Vidi la sekvan monaton',nextJumpText:'>>',nextJumpStatus:'',currentText:'Nuna',currentStatus:'Vidi la nunan monaton',todayText:'Nuna',todayStatus:'Vidi la nunan monaton',clearText:'Vakigi',clearStatus:'',closeText:'Fermi',closeStatus:'Fermi sen modifi',yearStatus:'Vidi alian jaron',monthStatus:'Vidi alian monaton',weekText:'Sb',weekStatus:'',dayStatus:'Elekti DD, MM d',defaultStatus:'Elekti la daton',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['eo'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['es-AR']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Ant',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Sig>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Hoy',currentStatus:'',todayText:'Hoy',todayStatus:'',clearText:'Limpiar',clearStatus:'',closeText:'Cerrar',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Sm',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['es-AR'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['es-PE']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Ant',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Sig>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Hoy',currentStatus:'',todayText:'Hoy',todayStatus:'',clearText:'Limpiar',clearStatus:'',closeText:'Cerrar',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Sm',weekStatus:'',dayStatus:'DD d, MM yyyy',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['es-PE'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['es']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Ant',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Sig>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Hoy',currentStatus:'',todayText:'Hoy',todayStatus:'',clearText:'Limpiar',clearStatus:'',closeText:'Cerrar',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Sm',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['es'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['et']={renderer:$.calendarsPicker.defaultRenderer,prevText:'Eelnev',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Järgnev',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Täna',currentStatus:'',todayText:'Täna',todayStatus:'',clearText:'X',clearStatus:'',closeText:'Sulge',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Wk',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['et'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['eu']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Aur',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Hur>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Gaur',currentStatus:'',todayText:'Gaur',todayStatus:'',clearText:'X',clearStatus:'',closeText:'Egina',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Wk',weekStatus:'',dayStatus:'DD d MM',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['eu'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['fa']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<قبلي',prevStatus:'نمايش ماه قبل',prevJumpText:'<<',prevJumpStatus:'',nextText:'بعدي>',nextStatus:'نمايش ماه بعد',nextJumpText:'>>',nextJumpStatus:'',currentText:'امروز',currentStatus:'نمايش ماه جاري',todayText:'امروز',todayStatus:'نمايش ماه جاري',clearText:'حذف تاريخ',clearStatus:'پاک کردن تاريخ جاري',closeText:'بستن',closeStatus:'بستن بدون اعمال تغييرات',yearStatus:'نمايش سال متفاوت',monthStatus:'نمايش ماه متفاوت',weekText:'هف',weekStatus:'هفتهِ سال',dayStatus:'انتخاب D, M d',defaultStatus:'انتخاب تاريخ',isRTL:true};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['fa'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['fi']={renderer:$.calendarsPicker.defaultRenderer,prevText:'«Edellinen',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Seuraava»',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Tänään',currentStatus:'',todayText:'Tänään',todayStatus:'',clearText:'Tyhjennä',clearStatus:'',closeText:'Sulje',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Vk',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['fi'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['fo']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Sísta',prevStatus:'Vís sísta mánaðan',prevJumpText:'<<',prevJumpStatus:'Vís sísta árið',nextText:'Næsta>',nextStatus:'Vís næsta mánaðan',nextJumpText:'>>',nextJumpStatus:'Vís næsta árið',currentText:'Hesin',currentStatus:'Vís hendan mánaðan',todayText:'Í dag',todayStatus:'Vís mánaðan fyri í dag',clearText:'Strika',clearStatus:'Strika allir mánaðarnar',closeText:'Goym',closeStatus:'Goym hetta vindeyðga',yearStatus:'Broyt árið',monthStatus:'Broyt mánaðans',weekText:'Vk',weekStatus:'Vika av árinum',dayStatus:'Vel DD, M d, yyyy',defaultStatus:'Vel ein dato',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['fo'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['fr-CH']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Préc',prevStatus:'Voir le mois précédent',prevJumpText:'<<',prevJumpStatus:'Voir l\'année précédent',nextText:'Suiv>',nextStatus:'Voir le mois suivant',nextJumpText:'>>',nextJumpStatus:'Voir l\'année suivant',currentText:'Courant',currentStatus:'Voir le mois courant',todayText:'Aujourd\'hui',todayStatus:'Voir aujourd\'hui',clearText:'Effacer',clearStatus:'Effacer la date sélectionnée',closeText:'Fermer',closeStatus:'Fermer sans modifier',yearStatus:'Voir une autre année',monthStatus:'Voir un autre mois',weekText:'Sm',weekStatus:'Semaine de l\'année',dayStatus:'\'Choisir\' le DD d MM',defaultStatus:'Choisir la date',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['fr-CH'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['fr']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Préc',prevStatus:'Voir le mois précédent',prevJumpText:'<<',prevJumpStatus:'Voir l\'année précédent',nextText:'Suiv>',nextStatus:'Voir le mois suivant',nextJumpText:'>>',nextJumpStatus:'Voir l\'année suivant',currentText:'Courant',currentStatus:'Voir le mois courant',todayText:'Aujourd\'hui',todayStatus:'Voir aujourd\'hui',clearText:'Effacer',clearStatus:'Effacer la date sélectionnée',closeText:'Fermer',closeStatus:'Fermer sans modifier',yearStatus:'Voir une autre année',monthStatus:'Voir un autre mois',weekText:'Sm',weekStatus:'Semaine de l\'année',dayStatus:'\'Choisir\' le DD d MM',defaultStatus:'Choisir la date',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['fr'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['gl']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Ant',prevStatus:'Amosar mes anterior',prevJumpText:'<<',prevJumpStatus:'Amosar ano anterior',nextText:'Seg>',nextStatus:'Amosar mes seguinte',nextJumpText:'>>',nextJumpStatus:'Amosar ano seguinte',currentText:'Hoxe',currentStatus:'Amosar mes actual',todayText:'Hoxe',todayStatus:'Amosar mes actual',clearText:'Limpar',clearStatus:'Borrar data actual',closeText:'Pechar',closeStatus:'Pechar sen gardar',yearStatus:'Amosar outro ano',monthStatus:'Amosar outro mes',weekText:'Sm',weekStatus:'Semana do ano',dayStatus:'D, M d',defaultStatus:'Selecciona Data',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['gl'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['gu']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<પાછળ',prevStatus:'પાછલો મહિનો બતાવો',prevJumpText:'<<',prevJumpStatus:'પાછળ',nextText:'આગળ>',nextStatus:'આગલો મહિનો બતાવો',nextJumpText:'>>',nextJumpStatus:'આગળ',currentText:'આજે',currentStatus:'આજનો દિવસ બતાવો',todayText:'આજે',todayStatus:'આજનો દિવસ',clearText:'ભૂંસો',clearStatus:'હાલ પસંદ કરેલી તારીખ ભૂંસો',closeText:'બંધ કરો',closeStatus:'તારીખ પસંદ કર્યા વગર બંધ કરો',yearStatus:'જુદુ વર્ષ બતાવો',monthStatus:'જુદો મહિનો બતાવો',weekText:'અઠવાડિયું',weekStatus:'અઠવાડિયું',dayStatus:'અઠવાડિયાનો પહેલો દિવસ પસંદ કરો',defaultStatus:'તારીખ પસંદ કરો',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['gu'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['he']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<הקודם',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'הבא>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'היום',currentStatus:'',todayText:'היום',todayStatus:'',clearText:'נקה',clearStatus:'',closeText:'סגור',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Wk',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:true};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['he'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['hi-IN']={renderer:$.calendarsPicker.defaultRenderer,prevText:'पिछला',prevStatus:'पिछला महीना देखें',prevJumpText:'<<',prevJumpStatus:'पिछला वर्ष देखें',nextText:'अगला',nextStatus:'अगला महीना देखें',nextJumpText:'>>',nextJumpStatus:'अगला वर्ष देखें',currentText:'वर्तमान',currentStatus:'वर्तमान महीना देखें',todayText:'आज',todayStatus:'वर्तमान दिन देखें',clearText:'साफ',clearStatus:'वर्तमान दिनांक मिटाए',closeText:'समाप्त',closeStatus:'बदलाव के बिना बंद',yearStatus:'एक अलग वर्ष का चयन करें',monthStatus:'एक अलग महीने का चयन करें',weekText:'Wk',weekStatus:'वर्ष का सप्ताह',dayStatus:'चुने DD, M d',defaultStatus:'एक तिथि का चयन करें',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['hi-IN'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['hr']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<',prevStatus:'Prikaži prethodni mjesec',prevJumpText:'<<',prevJumpStatus:'',nextText:'>',nextStatus:'Prikaži slijedeći mjesec',nextJumpText:'>>',nextJumpStatus:'',currentText:'Danas',currentStatus:'Današnji datum',todayText:'Danas',todayStatus:'Današnji datum',clearText:'izbriši',clearStatus:'Izbriši trenutni datum',closeText:'Zatvori',closeStatus:'Zatvori kalendar',yearStatus:'Prikaži godine',monthStatus:'Prikaži mjesece',weekText:'Tje',weekStatus:'Tjedanr',dayStatus:'\'Datum\' DD, M d',defaultStatus:'Odaberi datum',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['hr'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['hu']={renderer:$.calendarsPicker.defaultRenderer,prevText:'« vissza',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'előre »',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'ma',currentStatus:'',todayText:'ma',todayStatus:'',clearText:'törlés',clearStatus:'',closeText:'bezárás',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Hé',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['hu'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['hy']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Նախ.',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Հաջ.>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Այսօր',currentStatus:'',todayText:'Այսօր',todayStatus:'',clearText:'Մաքրել',clearStatus:'',closeText:'Փակել',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'ՇԲՏ',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['hy'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['id']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<mundur',prevStatus:'Tampilkan bulan sebelumnya',prevJumpText:'<<',prevJumpStatus:'',nextText:'maju>',nextStatus:'Tampilkan bulan berikutnya',nextJumpText:'>>',nextJumpStatus:'',currentText:'hari ini',currentStatus:'Tampilkan bulan sekarang',todayText:'hari ini',todayStatus:'Tampilkan bulan sekarang',clearText:'kosongkan',clearStatus:'bersihkan tanggal yang sekarang',closeText:'Tutup',closeStatus:'Tutup tanpa mengubah',yearStatus:'Tampilkan tahun yang berbeda',monthStatus:'Tampilkan bulan yang berbeda',weekText:'Mg',weekStatus:'Minggu dalam tahu',dayStatus:'pilih le DD, MM d',defaultStatus:'Pilih Tanggal',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['id'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['is']={renderer:$.calendarsPicker.defaultRenderer,prevText:'< Fyrri',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Næsti >',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Í dag',currentStatus:'',todayText:'Í dag',todayStatus:'',clearText:'Hreinsa',clearStatus:'',closeText:'Loka',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Vika',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['is'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['it']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Prec',prevStatus:'Mese precedente',prevJumpText:'<<',prevJumpStatus:'Mostra l\'anno precedente',nextText:'Succ>',nextStatus:'Mese successivo',nextJumpText:'>>',nextJumpStatus:'Mostra l\'anno successivo',currentText:'Oggi',currentStatus:'Mese corrente',todayText:'Oggi',todayStatus:'Mese corrente',clearText:'Svuota',clearStatus:'Annulla',closeText:'Chiudi',closeStatus:'Chiudere senza modificare',yearStatus:'Seleziona un altro anno',monthStatus:'Seleziona un altro mese',weekText:'Sm',weekStatus:'Settimana dell\'anno',dayStatus:'\'Seleziona\' DD, M d',defaultStatus:'Scegliere una data',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['it'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ja']={renderer:$.extend({},$.calendarsPicker.defaultRenderer,{month:$.calendarsPicker.defaultRenderer.month.replace(/monthHeader/,'monthHeader:yyyy年 MM')}),prevText:'<前',prevStatus:'前月を表示します',prevJumpText:'<<',prevJumpStatus:'前年を表示します',nextText:'次>',nextStatus:'翌月を表示します',nextJumpText:'>>',nextJumpStatus:'翌年を表示します',currentText:'今日',currentStatus:'今月を表示します',todayText:'今日',todayStatus:'今月を表示します',clearText:'クリア',clearStatus:'日付をクリアします',closeText:'閉じる',closeStatus:'変更せずに閉じます',yearStatus:'表示する年を変更します',monthStatus:'表示する月を変更します',weekText:'週',weekStatus:'暦週で第何週目かを表します',dayStatus:'yyyy/mm/dd',defaultStatus:'日付を選択します',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ja'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ka']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<უკან',prevStatus:'წინა თვე',prevJumpText:'<<',prevJumpStatus:'წინა წელი',nextText:'წინ>',nextStatus:'შემდეგი თვე',nextJumpText:'>>',nextJumpStatus:'შემდეგი წელი',currentText:'მიმდინარე',currentStatus:'მიმდინარე თვე',todayText:'დღეს',todayStatus:'მიმდინარე დღე',clearText:'გასუფთავება',clearStatus:'მიმდინარე თარიღის წაშლა',closeText:'არის',closeStatus:'დახურვა უცვლილებოდ',yearStatus:'სხვა წელი',monthStatus:'სხვა თვე',weekText:'კვ',weekStatus:'წლის კვირა',dayStatus:'აირჩიეთ DD, M d',defaultStatus:'აიღჩიეთ თარიღი',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ka'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['km']={renderer:$.calendarsPicker.defaultRenderer,prevText:'ថយ​ក្រោយ',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'ទៅ​មុខ',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'ថ្ងៃ​នេះ',currentStatus:'',todayText:'ថ្ងៃ​នេះ',todayStatus:'',clearText:'X',clearStatus:'',closeText:'រួច​រាល់',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Wk',weekStatus:'',dayStatus:'DD d MM',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['km'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ko']={renderer:$.extend({},$.calendarsPicker.defaultRenderer,{month:$.calendarsPicker.defaultRenderer.month.replace(/monthHeader/,'monthHeader:yyyy년 MM')}),prevText:'이전달',prevStatus:'이전달을 표시합니다',prevJumpText:'<<',prevJumpStatus:'이전 연도를 표시합니다',nextText:'다음달',nextStatus:'다음달을 표시합니다',nextJumpText:'>>',nextJumpStatus:'다음 연도를 표시합니다',currentText:'현재',currentStatus:'입력한 달을 표시합니다',todayText:'오늘',todayStatus:'이번달을 표시합니다',clearText:'지우기',clearStatus:'입력한 날짜를 지웁니다',closeText:'닫기',closeStatus:'',yearStatus:'표시할 연도를 변경합니다',monthStatus:'표시할 월을 변경합니다',weekText:'Wk',weekStatus:'해당 연도의 주차',dayStatus:'M d일 (D)',defaultStatus:'날짜를 선택하세요',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ko'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['lt']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Atgal',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Pirmyn>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Šiandien',currentStatus:'',todayText:'Šiandien',todayStatus:'',clearText:'Išvalyti',clearStatus:'',closeText:'Uždaryti',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Wk',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['lt'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['lv']={renderer:$.calendarsPicker.defaultRenderer,prevText:'Iepr',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Nāka',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Šodien',currentStatus:'',todayText:'Šodien',todayStatus:'',clearText:'Notīrīt',clearStatus:'',closeText:'Aizvērt',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Nav',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['lv'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['me-ME']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<',prevStatus:'Prikaži prethodni mjesec',prevJumpText:'<<',prevJumpStatus:'Prikaži prethodnu godinu',nextText:'>',nextStatus:'Prikaži sljedeći mjesec',nextJumpText:'>>',nextJumpStatus:'Prikaži sljedeću godinu',currentText:'Danas',currentStatus:'Tekući mjesec',todayText:'Danas',todayStatus:'Tekući mjesec',clearText:'Obriši',clearStatus:'Obriši trenutni datum',closeText:'Zatvori',closeStatus:'Zatvori kalendar',yearStatus:'Prikaži godine',monthStatus:'Prikaži mjesece',weekText:'Sed',weekStatus:'Sedmica',dayStatus:'\'Datum\' DD, M d',defaultStatus:'Odaberi datum',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['me-ME'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['me']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<',prevStatus:'Прикажи претходни мјесец',prevJumpText:'<<',prevJumpStatus:'Прикажи претходну годину',nextText:'>',nextStatus:'Прикажи сљедећи мјесец',nextJumpText:'>>',nextJumpStatus:'Прикажи сљедећу годину',currentText:'Данас',currentStatus:'Текући мјесец',todayText:'Данас',todayStatus:'Текући мјесец',clearText:'Обриши',clearStatus:'Обриши тренутни датум',closeText:'Затвори',closeStatus:'Затвори календар',yearStatus:'Прикажи године',monthStatus:'Прикажи мјесеце',weekText:'Сед',weekStatus:'Седмица',dayStatus:'\'Датум\' DD d MM',defaultStatus:'Одабери датум',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['me'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['mk']={renderer:$.calendarsPicker.defaultRenderer,prevText:'Претх.',prevStatus:'Прикажи го претходниот месец',prevJumpText:'<<',prevJumpStatus:'Прикажи ја претходната година',nextText:'Следен',nextStatus:'Прикажи го следниот месец',nextJumpText:'>>',nextJumpStatus:'Прикажи ја следната година',currentText:'Тековен',currentStatus:'Прикажи го тековниот месец',todayText:'Денес',todayStatus:'Прикажи го денешниот месец',clearText:'Бриши',clearStatus:'Избриши го тековниот датум',closeText:'Затвори',closeStatus:'Затвори без промени',yearStatus:'Избери друга година',monthStatus:'Избери друг месец',weekText:'Нед',weekStatus:'Недела во годината',dayStatus:'Избери DD, M d',defaultStatus:'Избери датум',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['mk'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ml']={renderer:$.calendarsPicker.defaultRenderer,prevText:'മുന്നത്തെ',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'അടുത്തത് ',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'ഇന്ന്',currentStatus:'',todayText:'ഇന്ന്',todayStatus:'',clearText:'X',clearStatus:'',closeText:'ശരി',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'ആ',weekStatus:'',dayStatus:'DD d MM',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ml'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ms']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Sebelum',prevStatus:'Tunjukkan bulan lepas',prevJumpText:'<<',prevJumpStatus:'Tunjukkan tahun lepas',nextText:'Selepas>',nextStatus:'Tunjukkan bulan depan',nextJumpText:'>>',nextJumpStatus:'Tunjukkan tahun depan',currentText:'hari ini',currentStatus:'Tunjukkan bulan terkini',todayText:'hari ini',todayStatus:'Tunjukkan bulan terkini',clearText:'Padam',clearStatus:'Padamkan tarikh terkini',closeText:'Tutup',closeStatus:'Tutup tanpa perubahan',yearStatus:'Tunjukkan tahun yang lain',monthStatus:'Tunjukkan bulan yang lain',weekText:'Mg',weekStatus:'Minggu bagi tahun ini',dayStatus:'DD, d MM',defaultStatus:'Sila pilih tarikh',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ms'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['mt']={renderer:$.calendarsPicker.defaultRenderer,prevText:'Ta Qabel',prevStatus:'Ix-xahar ta qabel',prevJumpText:'<<',prevJumpStatus:'Is-sena ta qabel',nextText:'Li Jmiss',nextStatus:'Ix-xahar li jmiss',nextJumpText:'>>',nextJumpStatus:'Is-sena li jmiss',currentText:'Illum',currentStatus:'Ix-xahar ta llum',todayText:'Illum',todayStatus:'Uri ix-xahar ta llum',clearText:'Ħassar',clearStatus:'Ħassar id-data',closeText:'Lest',closeStatus:'Għalaq mingħajr tibdiliet',yearStatus:'Uri sena differenti',monthStatus:'Uri xahar differenti',weekText:'Ġm',weekStatus:'Il-Ġimgħa fis-sena',dayStatus:'Għazel DD, M d',defaultStatus:'Għazel data',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['mt'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['nl-BE']={renderer:$.calendarsPicker.defaultRenderer,prevText:'←',prevStatus:'Bekijk de vorige maand',prevJumpText:'«',nextJumpStatus:'Bekijk het vorige jaar',nextText:'→',nextStatus:'Bekijk de volgende maand',nextJumpText:'»',nextJumpStatus:'Bekijk het volgende jaar',currentText:'Vandaag',currentStatus:'Bekijk de huidige maand',todayText:'Vandaag',todayStatus:'Bekijk de huidige maand',clearText:'Wissen',clearStatus:'Wis de huidige datum',closeText:'Sluiten',closeStatus:'Sluit zonder verandering',yearStatus:'Bekijk een ander jaar',monthStatus:'Bekijk een andere maand',weekText:'Wk',weekStatus:'Week van het jaar',dayStatus:'dd/mm/yyyy',defaultStatus:'Kies een datum',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['nl-BE'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['nl']={renderer:$.calendarsPicker.defaultRenderer,prevText:'←',prevStatus:'Bekijk de vorige maand',prevJumpText:'«',nextJumpStatus:'Bekijk het vorige jaar',nextText:'→',nextStatus:'Bekijk de volgende maand',nextJumpText:'»',nextJumpStatus:'Bekijk het volgende jaar',currentText:'Vandaag',currentStatus:'Bekijk de huidige maand',todayText:'Vandaag',todayStatus:'Bekijk de huidige maand',clearText:'Wissen',clearStatus:'Wis de huidige datum',closeText:'Sluiten',closeStatus:'Sluit zonder verandering',yearStatus:'Bekijk een ander jaar',monthStatus:'Bekijk een andere maand',weekText:'Wk',weekStatus:'Week van het jaar',dayStatus:'dd-mm-yyyy',defaultStatus:'Kies een datum',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['nl'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['no']={renderer:$.calendarsPicker.defaultRenderer,prevText:'«Forrige',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Neste»',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'I dag',currentStatus:'',todayText:'I dag',todayStatus:'',clearText:'Tøm',clearStatus:'',closeText:'Lukk',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Uke',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['no'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['pl']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Poprzedni',prevStatus:'Pokaż poprzedni miesiąc',prevJumpText:'<<',prevJumpStatus:'',nextText:'Następny>',nextStatus:'Pokaż następny miesiąc',nextJumpText:'>>',nextJumpStatus:'',currentText:'Dziś',currentStatus:'Pokaż aktualny miesiąc',todayText:'Dziś',todayStatus:'Pokaż aktualny miesiąc',clearText:'Wyczyść',clearStatus:'Wyczyść obecną datę',closeText:'Zamknij',closeStatus:'Zamknij bez zapisywania',yearStatus:'Pokaż inny rok',monthStatus:'Pokaż inny miesiąc',weekText:'Tydz',weekStatus:'Tydzień roku',dayStatus:'\'Wybierz\' DD, M d',defaultStatus:'Wybierz datę',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['pl'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['pt-BR']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Anterior',prevStatus:'Mostra o mês anterior',prevJumpText:'<<',prevJumpStatus:'Mostra o ano anterior',nextText:'Próximo>',nextStatus:'Mostra o próximo mês',nextJumpText:'>>',nextJumpStatus:'Mostra o próximo ano',currentText:'Atual',currentStatus:'Mostra o mês atual',todayText:'Hoje',todayStatus:'Vai para hoje',clearText:'Limpar',clearStatus:'Limpar data',closeText:'Fechar',closeStatus:'Fechar o calendário',yearStatus:'Selecionar ano',monthStatus:'Selecionar mês',weekText:'s',weekStatus:'Semana do ano',dayStatus:'DD, d \'de\' M \'de\' yyyy',defaultStatus:'Selecione um dia',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['pt-BR'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['rm']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Suandant',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Precedent>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Actual',currentStatus:'',todayText:'Actual',todayStatus:'',clearText:'X',clearStatus:'',closeText:'Serrar',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'emna',weekStatus:'',dayStatus:'DD d MM',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['rm'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ro']={renderer:$.calendarsPicker.defaultRenderer,prevText:'«Precedenta',prevStatus:'Arata luna precedenta',prevJumpText:'««',prevJumpStatus:'',nextText:'Urmatoare»',nextStatus:'Arata luna urmatoare',nextJumpText:'»»',nextJumpStatus:'',currentText:'Azi',currentStatus:'Arata luna curenta',todayText:'Azi',todayStatus:'Arata luna curenta',clearText:'Curat',clearStatus:'Sterge data curenta',closeText:'Închide',closeStatus:'Închide fara schimbare',yearStatus:'Arat un an diferit',monthStatus:'Arata o luna diferita',weekText:'Săpt',weekStatus:'Săptamana anului',dayStatus:'Selecteaza DD, M d',defaultStatus:'Selecteaza o data',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ro'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ru']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Пред',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'След>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Сегодня',currentStatus:'',todayText:'Сегодня',todayStatus:'',clearText:'Очистить',clearStatus:'',closeText:'Закрыть',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Не',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ru'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['sk']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Predchádzajúci',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Nasledujúci>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Dnes',currentStatus:'',todayText:'Dnes',todayStatus:'',clearText:'Zmazať',clearStatus:'',closeText:'Zavrieť',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Ty',weekStatus:'',dayStatus:'DD. M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sk'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['sl']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Prejšnji',prevStatus:'Prikaži prejšnji mesec',prevJumpText:'<<',prevJumpStatus:'',nextText:'Naslednji>',nextStatus:'Prikaži naslednji mesec',nextJumpText:'>>',nextJumpStatus:'',currentText:'Trenutni',currentStatus:'Prikaži trenutni mesec',todayText:'Trenutni',todayStatus:'Prikaži trenutni mesec',clearText:'Izbriši',clearStatus:'Izbriši trenutni datum',closeText:'Zapri',closeStatus:'Zapri brez spreminjanja',yearStatus:'Prikaži drugo leto',monthStatus:'Prikaži drug mesec',weekText:'Teden',weekStatus:'Teden v letu',dayStatus:'Izberi DD, d MM yy',defaultStatus:'Izbira datuma',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sl'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['sq']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<mbrapa',prevStatus:'trego muajin e fundit',prevJumpText:'<<',prevJumpStatus:'',nextText:'Përpara>',nextStatus:'trego muajin tjetër',nextJumpText:'>>',nextJumpStatus:'',currentText:'sot',currentStatus:'',todayText:'sot',todayStatus:'',clearText:'fshije',clearStatus:'fshije datën aktuale',closeText:'mbylle',closeStatus:'mbylle pa ndryshime',yearStatus:'trego tjetër vit',monthStatus:'trego muajin tjetër',weekText:'Ja',weekStatus:'Java e muajit',dayStatus:'\'Zgjedh\' D, M d',defaultStatus:'Zgjedhe një datë',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sq'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['sr-SR']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<',prevStatus:'Prikaži predhodni mesec',prevJumpText:'<<',prevJumpStatus:'Prikaži predhodnu godinu',nextText:'>',nextStatus:'Prikaži sledeći mesec',nextJumpText:'>>',nextJumpStatus:'Prikaži sledeću godinu',currentText:'Danas',currentStatus:'Tekući mesec',todayText:'Danas',todayStatus:'Tekući mesec',clearText:'Obriši',clearStatus:'Obriši trenutni datum',closeText:'Zatvori',closeStatus:'Zatvori kalendar',yearStatus:'Prikaži godine',monthStatus:'Prikaži mesece',weekText:'Sed',weekStatus:'Sedmica',dayStatus:'\'Datum\' DD, M d',defaultStatus:'Odaberi datum',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sr-SR'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['sr']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<',prevStatus:'Прикажи предходни месец',prevJumpText:'<<',prevJumpStatus:'Прикажи предходну годину',nextText:'>',nextStatus:'Прикажи слецећи месец',nextJumpText:'>>',nextJumpStatus:'Прикажи следећу годину',currentText:'Данас',currentStatus:'Текући месец',todayText:'Данас',todayStatus:'Текући месец',clearText:'Обриши',clearStatus:'Обриши тренутни датум',closeText:'Затвори',closeStatus:'Затвори календар',yearStatus:'Прикажи године',monthStatus:'Прикажи месеце',weekText:'Сед',weekStatus:'Седмица',dayStatus:'\'Датум\' DD d MM',defaultStatus:'Одабери датум',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sr'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['sv']={renderer:$.calendarsPicker.defaultRenderer,prevText:'«Förra',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'Nästa»',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Idag',currentStatus:'',todayText:'Idag',todayStatus:'',clearText:'Rensa',clearStatus:'',closeText:'Stäng',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Ve',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['sv'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ta']={renderer:$.calendarsPicker.defaultRenderer,prevText:'முன்னையது',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'அடுத்தது',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'இன்று',currentStatus:'',todayText:'இன்று',todayStatus:'',clearText:'அழி',clearStatus:'',closeText:'மூடு',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Wk',weekStatus:'',dayStatus:'D, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ta'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['th']={renderer:$.calendarsPicker.defaultRenderer,prevText:'« ย้อน',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'ถัดไป »',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'วันนี้',currentStatus:'',todayText:'วันนี้',todayStatus:'',clearText:'ลบ',clearStatus:'',closeText:'ปิด',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Wk',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['th'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['tr']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<geri',prevStatus:'önceki ayı göster',prevJumpText:'<<',prevJumpStatus:'',nextText:'ileri>',nextStatus:'sonraki ayı göster',nextJumpText:'>>',nextJumpStatus:'',currentText:'bugün',currentStatus:'',todayText:'bugün',todayStatus:'',clearText:'temizle',clearStatus:'geçerli tarihi temizler',closeText:'kapat',closeStatus:'sadece göstergeyi kapat',yearStatus:'başka yıl',monthStatus:'başka ay',weekText:'Hf',weekStatus:'Ayın haftaları',dayStatus:'D, M d seçiniz',defaultStatus:'Bir tarih seçiniz',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['tr'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['tt']={renderer:$.calendarsPicker.defaultRenderer,prevText:'Алдагы',prevStatus:'Алдагы айны күрсәтү',prevJumpText:'<<',prevJumpStatus:'Алдагы елны күрсәтү',nextText:'Киләсе',nextStatus:'Киләсе айны күрсәтү',nextJumpText:'>>',nextJumpStatus:'Киләсе елны күрсәтү',currentText:'Хәзер',currentStatus:'Хәзерге айны күрсәтү',todayText:'Бүген',todayStatus:'Бүгенге айны күрсәтү',clearText:'Чистарту',clearStatus:'Барлык көннәрне чистарту',closeText:'Ябарга',closeStatus:'Көн сайлауны ябарга',yearStatus:'Елны кертегез',monthStatus:'Айны кертегез',weekText:'Атна',weekStatus:'Елда атна саны',dayStatus:'DD, M d',defaultStatus:'Көнне сайлагыз',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['tt'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['uk']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<',prevStatus:'',prevJumpText:'<<',prevJumpStatus:'',nextText:'>',nextStatus:'',nextJumpText:'>>',nextJumpStatus:'',currentText:'Сьогодні',currentStatus:'',todayText:'Сьогодні',todayStatus:'',clearText:'Очистити',clearStatus:'',closeText:'Закрити',closeStatus:'',yearStatus:'',monthStatus:'',weekText:'Не',weekStatus:'',dayStatus:'DD, M d',defaultStatus:'',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['uk'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['ur']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<گذشتہ',prevStatus:'ماه گذشتہ',prevJumpText:'<<',prevJumpStatus:'برس گذشتہ',nextText:'آئندہ>',nextStatus:'ماه آئندہ',nextJumpText:'>>',nextJumpStatus:'برس آئندہ',currentText:'رواں',currentStatus:'ماه رواں',todayText:'آج',todayStatus:'آج',clearText:'حذف تاريخ',clearStatus:'کریں حذف تاریخ',closeText:'کریں بند',closeStatus:'کیلئے کرنے بند',yearStatus:'برس تبدیلی',monthStatus:'ماه تبدیلی',weekText:'ہفتہ',weekStatus:'ہفتہ',dayStatus:'انتخاب D, M d',defaultStatus:'کریں منتخب تاريخ',isRTL:true};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['ur'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['vi']={renderer:$.calendarsPicker.defaultRenderer,prevText:'<Trước',prevStatus:'Tháng trước',prevJumpText:'<<',prevJumpStatus:'Năm trước',nextText:'Tiếp>',nextStatus:'Tháng sau',nextJumpText:'>>',nextJumpStatus:'Năm sau',currentText:'Hôm nay',currentStatus:'Tháng hiện tại',todayText:'Hôm nay',todayStatus:'Tháng hiện tại',clearText:'Xóa',clearStatus:'Xóa ngày hiện tại',closeText:'Đóng',closeStatus:'Đóng và không lưu lại thay đổi',yearStatus:'Năm khác',monthStatus:'Tháng khác',weekText:'Tu',weekStatus:'Tuần trong năm',dayStatus:'Đang chọn DD, \'ngày\' d M',defaultStatus:'Chọn ngày',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['vi'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['zh-CN']={renderer:$.extend({},$.calendarsPicker.defaultRenderer,{month:$.calendarsPicker.defaultRenderer.month.replace(/monthHeader/,'monthHeader:MM yyyy年')}),prevText:'<上月',prevStatus:'显示上月',prevJumpText:'<<',prevJumpStatus:'显示上一年',nextText:'下月>',nextStatus:'显示下月',nextJumpText:'>>',nextJumpStatus:'显示下一年',currentText:'今天',currentStatus:'显示本月',todayText:'今天',todayStatus:'显示本月',clearText:'清除',clearStatus:'清除已选日期',closeText:'关闭',closeStatus:'不改变当前选择',yearStatus:'选择年份',monthStatus:'选择月份',weekText:'周',weekStatus:'年内周次',dayStatus:'选择 m月 d日, DD',defaultStatus:'请选择日期',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['zh-CN'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['zh-HK']={renderer:$.extend({},$.calendarsPicker.defaultRenderer,{month:$.calendarsPicker.defaultRenderer.month.replace(/monthHeader/,'monthHeader:yyyy年 MM')}),prevText:'<上月',prevStatus:'顯示上月',prevJumpText:'<<',prevJumpStatus:'顯示上一年',nextText:'下月>',nextStatus:'顯示下月',nextJumpText:'>>',nextJumpStatus:'顯示下一年',currentText:'今天',currentStatus:'顯示本月',todayText:'今天',todayStatus:'顯示本月',clearText:'清除',clearStatus:'清除已選日期',closeText:'關閉',closeStatus:'不改變目前的選擇',yearStatus:'選擇年份',monthStatus:'選擇月份',weekText:'周',weekStatus:'年內周次',dayStatus:'選擇 m月 d日, DD',defaultStatus:'請選擇日期',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['zh-HK'])})(jQuery);(function($){$.calendarsPicker.regionalOptions['zh-TW']={renderer:$.extend({},$.calendarsPicker.defaultRenderer,{month:$.calendarsPicker.defaultRenderer.month.replace(/monthHeader/,'monthHeader:MM yyyy年')}),prevText:'<上月',prevStatus:'顯示上月',prevJumpText:'<<',prevJumpStatus:'顯示上一年',nextText:'下月>',nextStatus:'顯示下月',nextJumpText:'>>',nextJumpStatus:'顯示下一年',currentText:'今天',currentStatus:'顯示本月',todayText:'今天',todayStatus:'顯示本月',clearText:'清除',clearStatus:'清除已選日期',closeText:'關閉',closeStatus:'不改變目前的選擇',yearStatus:'選擇年份',monthStatus:'選擇月份',weekText:'周',weekStatus:'年內周次',dayStatus:'選擇 m月 d日, DD',defaultStatus:'請選擇日期',isRTL:false};$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['zh-TW'])})(jQuery); \ No newline at end of file diff --git a/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.picker.min.js b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.picker.min.js new file mode 100644 index 0000000..973e5df --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/lib/jquery.calendars.package-2.0.2/jquery.calendars.picker.min.js @@ -0,0 +1,6 @@ +/* http://keith-wood.name/calendars.html + Calendars date picker for jQuery v2.0.2. + Written by Keith Wood (wood.keith{at}optusnet.com.au) August 2009. + Available under the MIT (http://keith-wood.name/licence.html) license. + Please attribute the author if you use it. */ +(function($){var H='calendarsPicker';$.JQPlugin.createPlugin({name:H,defaultRenderer:{picker:'
'+'
{link:prev}{link:today}{link:next}
{months}'+'{popup:start}
{link:clear}{link:close}
{popup:end}'+'
',monthRow:'
{months}
',month:'
{monthHeader}
'+'{weekHeader}{weeks}
',weekHeader:'{days}',dayHeader:'{day}',week:'{days}',day:'{day}',monthSelector:'.calendars-month',daySelector:'td',rtlClass:'calendars-rtl',multiClass:'calendars-multi',defaultClass:'',selectedClass:'calendars-selected',highlightedClass:'calendars-highlight',todayClass:'calendars-today',otherMonthClass:'calendars-other-month',weekendClass:'calendars-weekend',commandClass:'calendars-cmd',commandButtonClass:'',commandLinkClass:'',disabledClass:'calendars-disabled'},commands:{prev:{text:'prevText',status:'prevStatus',keystroke:{keyCode:33},enabled:function(a){var b=a.curMinDate();return(!b||a.drawDate.newDate().add(1-a.options.monthsToStep-a.options.monthsOffset,'m').day(a.options.calendar.minDay).add(-1,'d').compareTo(b)!==-1)},date:function(a){return a.drawDate.newDate().add(-a.options.monthsToStep-a.options.monthsOffset,'m').day(a.options.calendar.minDay)},action:function(a){I.changeMonth(this,-a.options.monthsToStep)}},prevJump:{text:'prevJumpText',status:'prevJumpStatus',keystroke:{keyCode:33,ctrlKey:true},enabled:function(a){var b=a.curMinDate();return(!b||a.drawDate.newDate().add(1-a.options.monthsToJump-a.options.monthsOffset,'m').day(a.options.calendar.minDay).add(-1,'d').compareTo(b)!==-1)},date:function(a){return a.drawDate.newDate().add(-a.options.monthsToJump-a.options.monthsOffset,'m').day(a.options.calendar.minDay)},action:function(a){I.changeMonth(this,-a.options.monthsToJump)}},next:{text:'nextText',status:'nextStatus',keystroke:{keyCode:34},enabled:function(a){var b=a.get('maxDate');return(!b||a.drawDate.newDate().add(a.options.monthsToStep-a.options.monthsOffset,'m').day(a.options.calendar.minDay).compareTo(b)!==+1)},date:function(a){return a.drawDate.newDate().add(a.options.monthsToStep-a.options.monthsOffset,'m').day(a.options.calendar.minDay)},action:function(a){I.changeMonth(this,a.options.monthsToStep)}},nextJump:{text:'nextJumpText',status:'nextJumpStatus',keystroke:{keyCode:34,ctrlKey:true},enabled:function(a){var b=a.get('maxDate');return(!b||a.drawDate.newDate().add(a.options.monthsToJump-a.options.monthsOffset,'m').day(a.options.calendar.minDay).compareTo(b)!==+1)},date:function(a){return a.drawDate.newDate().add(a.options.monthsToJump-a.options.monthsOffset,'m').day(a.options.calendar.minDay)},action:function(a){I.changeMonth(this,a.options.monthsToJump)}},current:{text:'currentText',status:'currentStatus',keystroke:{keyCode:36,ctrlKey:true},enabled:function(a){var b=a.curMinDate();var c=a.get('maxDate');var d=a.selectedDates[0]||a.options.calendar.today();return(!b||d.compareTo(b)!==-1)&&(!c||d.compareTo(c)!==+1)},date:function(a){return a.selectedDates[0]||a.options.calendar.today()},action:function(a){var b=a.selectedDates[0]||a.options.calendar.today();I.showMonth(this,b.year(),b.month())}},today:{text:'todayText',status:'todayStatus',keystroke:{keyCode:36,ctrlKey:true},enabled:function(a){var b=a.curMinDate();var c=a.get('maxDate');return(!b||a.options.calendar.today().compareTo(b)!==-1)&&(!c||a.options.calendar.today().compareTo(c)!==+1)},date:function(a){return a.options.calendar.today()},action:function(a){I.showMonth(this)}},clear:{text:'clearText',status:'clearStatus',keystroke:{keyCode:35,ctrlKey:true},enabled:function(a){return true},date:function(a){return null},action:function(a){I.clear(this)}},close:{text:'closeText',status:'closeStatus',keystroke:{keyCode:27},enabled:function(a){return true},date:function(a){return null},action:function(a){I.hide(this)}},prevWeek:{text:'prevWeekText',status:'prevWeekStatus',keystroke:{keyCode:38,ctrlKey:true},enabled:function(a){var b=a.curMinDate();return(!b||a.drawDate.newDate().add(-a.options.calendar.daysInWeek(),'d').compareTo(b)!==-1)},date:function(a){return a.drawDate.newDate().add(-a.options.calendar.daysInWeek(),'d')},action:function(a){I.changeDay(this,-a.options.calendar.daysInWeek())}},prevDay:{text:'prevDayText',status:'prevDayStatus',keystroke:{keyCode:37,ctrlKey:true},enabled:function(a){var b=a.curMinDate();return(!b||a.drawDate.newDate().add(-1,'d').compareTo(b)!==-1)},date:function(a){return a.drawDate.newDate().add(-1,'d')},action:function(a){I.changeDay(this,-1)}},nextDay:{text:'nextDayText',status:'nextDayStatus',keystroke:{keyCode:39,ctrlKey:true},enabled:function(a){var b=a.get('maxDate');return(!b||a.drawDate.newDate().add(1,'d').compareTo(b)!==+1)},date:function(a){return a.drawDate.newDate().add(1,'d')},action:function(a){I.changeDay(this,1)}},nextWeek:{text:'nextWeekText',status:'nextWeekStatus',keystroke:{keyCode:40,ctrlKey:true},enabled:function(a){var b=a.get('maxDate');return(!b||a.drawDate.newDate().add(a.options.calendar.daysInWeek(),'d').compareTo(b)!==+1)},date:function(a){return a.drawDate.newDate().add(a.options.calendar.daysInWeek(),'d')},action:function(a){I.changeDay(this,a.options.calendar.daysInWeek())}}},defaultOptions:{calendar:$.calendars.instance(),pickerClass:'',showOnFocus:true,showTrigger:null,showAnim:'show',showOptions:{},showSpeed:'normal',popupContainer:null,alignment:'bottom',fixedWeeks:false,firstDay:null,calculateWeek:null,localNumbers:false,monthsToShow:1,monthsOffset:0,monthsToStep:1,monthsToJump:12,useMouseWheel:true,changeMonth:true,yearRange:'c-10:c+10',showOtherMonths:false,selectOtherMonths:false,defaultDate:null,selectDefaultDate:false,minDate:null,maxDate:null,dateFormat:null,autoSize:false,rangeSelect:false,rangeSeparator:' - ',multiSelect:0,multiSeparator:',',onDate:null,onShow:null,onChangeMonthYear:null,onSelect:null,onClose:null,altField:null,altFormat:null,constrainInput:true,commandsAsDateFormat:false,commands:{}},regionalOptions:{'':{renderer:{},prevText:'<Prev',prevStatus:'Show the previous month',prevJumpText:'<<',prevJumpStatus:'Show the previous year',nextText:'Next>',nextStatus:'Show the next month',nextJumpText:'>>',nextJumpStatus:'Show the next year',currentText:'Current',currentStatus:'Show the current month',todayText:'Today',todayStatus:'Show today\'s month',clearText:'Clear',clearStatus:'Clear all the dates',closeText:'Close',closeStatus:'Close the datepicker',yearStatus:'Change the year',earlierText:'  ▲',laterText:'  ▼',monthStatus:'Change the month',weekText:'Wk',weekStatus:'Week of the year',dayStatus:'Select DD, M d, yyyy',defaultStatus:'Select a date',isRTL:false}},_getters:['getDate','isDisabled','isSelectable','retrieveDate'],_disabled:[],_popupClass:'calendars-popup',_triggerClass:'calendars-trigger',_disableClass:'calendars-disable',_monthYearClass:'calendars-month-year',_curMonthClass:'calendars-month-',_anyYearClass:'calendars-any-year',_curDoWClass:'calendars-dow-',_init:function(){this.defaultOptions.commands=this.commands;this.regionalOptions[''].renderer=this.defaultRenderer;this._super()},_instSettings:function(b,c){return{selectedDates:[],drawDate:null,pickingRange:false,inline:($.inArray(b[0].nodeName.toLowerCase(),['div','span'])>-1),get:function(a){if($.inArray(a,['defaultDate','minDate','maxDate'])>-1){return this.options.calendar.determineDate(this.options[a],null,this.selectedDates[0],this.get('dateFormat'),this.getConfig())}if(a==='dateFormat'){return this.options.dateFormat||this.options.calendar.local.dateFormat}return this.options[a]},curMinDate:function(){return(this.pickingRange?this.selectedDates[0]:this.get('minDate'))},getConfig:function(){return{dayNamesShort:this.options.dayNamesShort,dayNames:this.options.dayNames,monthNamesShort:this.options.monthNamesShort,monthNames:this.options.monthNames,calculateWeek:this.options.calculateWeek,shortYearCutoff:this.options.shortYearCutoff}}}},_postAttach:function(a,b){if(b.inline){b.drawDate=I._checkMinMax((b.selectedDates[0]||b.get('defaultDate')||b.options.calendar.today()).newDate(),b);b.prevDate=b.drawDate.newDate();this._update(a[0]);if($.fn.mousewheel){a.mousewheel(this._doMouseWheel)}}else{this._attachments(a,b);a.on('keydown.'+b.name,this._keyDown).on('keypress.'+b.name,this._keyPress).on('keyup.'+b.name,this._keyUp);if(a.attr('disabled')){this.disable(a[0])}}},_optionsChanged:function(b,c,d){if(d.calendar&&d.calendar!==c.options.calendar){var e=function(a){return(typeof c.options[a]==='object'?null:c.options[a])};d=$.extend({defaultDate:e('defaultDate'),minDate:e('minDate'),maxDate:e('maxDate')},d);c.selectedDates=[];c.drawDate=null}var f=c.selectedDates;$.extend(c.options,d);this.setDate(b[0],f,null,false,true);c.pickingRange=false;var g=c.options.calendar;var h=c.get('defaultDate');c.drawDate=this._checkMinMax((h?h:c.drawDate)||h||g.today(),c).newDate();if(!c.inline){this._attachments(b,c)}if(c.inline||c.div){this._update(b[0])}},_attachments:function(a,b){a.off('focus.'+b.name);if(b.options.showOnFocus){a.on('focus.'+b.name,this.show)}if(b.trigger){b.trigger.remove()}var c=b.options.showTrigger;b.trigger=(!c?$([]):$(c).clone().removeAttr('id').addClass(this._triggerClass)[b.options.isRTL?'insertBefore':'insertAfter'](a).click(function(){if(!I.isDisabled(a[0])){I[I.curInst===b?'hide':'show'](a[0])}}));this._autoSize(a,b);var d=this._extractDates(b,a.val());if(d){this.setDate(a[0],d,null,true)}var e=b.get('defaultDate');if(b.options.selectDefaultDate&&e&&b.selectedDates.length===0){this.setDate(a[0],(e||b.options.calendar.today()).newDate())}},_autoSize:function(d,e){if(e.options.autoSize&&!e.inline){var f=e.options.calendar;var g=f.newDate(2009,10,20);var h=e.get('dateFormat');if(h.match(/[DM]/)){var j=function(a){var b=0;var c=0;for(var i=0;ib){b=a[i].length;c=i}}return c};g.month(j(f.local[h.match(/MM/)?'monthNames':'monthNamesShort'])+1);g.day(j(f.local[h.match(/DD/)?'dayNames':'dayNamesShort'])+20-g.dayOfWeek())}e.elem.attr('size',g.formatDate(h,{localNumbers:e.options.localnumbers}).length)}},_preDestroy:function(a,b){if(b.trigger){b.trigger.remove()}a.empty().off('.'+b.name);if(b.inline&&$.fn.mousewheel){a.unmousewheel()}if(!b.inline&&b.options.autoSize){a.removeAttr('size')}},multipleEvents:function(b){var c=arguments;return function(a){for(var i=0;i').find('button,select').prop('disabled',true).end().find('a').removeAttr('href')}else{b.prop('disabled',true);c.trigger.filter('button.'+this._triggerClass).prop('disabled',true).end().filter('img.'+this._triggerClass).css({opacity:'0.5',cursor:'default'})}this._disabled=$.map(this._disabled,function(a){return(a===b[0]?null:a)});this._disabled.push(b[0])},isDisabled:function(a){return(a&&$.inArray(a,this._disabled)>-1)},show:function(a){a=$(a.target||a);var b=I._getInst(a);if(I.curInst===b){return}if(I.curInst){I.hide(I.curInst,true)}if(!$.isEmptyObject(b)){b.lastVal=null;b.selectedDates=I._extractDates(b,a.val());b.pickingRange=false;b.drawDate=I._checkMinMax((b.selectedDates[0]||b.get('defaultDate')||b.options.calendar.today()).newDate(),b);b.prevDate=b.drawDate.newDate();I.curInst=b;I._update(a[0],true);var c=I._checkOffset(b);b.div.css({left:c.left,top:c.top});var d=b.options.showAnim;var e=b.options.showSpeed;e=(e==='normal'&&$.ui&&parseInt($.ui.version.substring(2))>=8?'_default':e);if($.effects&&($.effects[d]||($.effects.effect&&$.effects.effect[d]))){var f=b.div.data();for(var g in f){if(g.match(/^ec\.storage\./)){f[g]=b._mainDiv.css(g.replace(/ec\.storage\./,''))}}b.div.data(f).show(d,b.options.showOptions,e)}else{b.div[d||'show'](d?e:0)}}},_extractDates:function(a,b){if(b===a.lastVal){return}a.lastVal=b;b=b.split(a.options.multiSelect?a.options.multiSeparator:(a.options.rangeSelect?a.options.rangeSeparator:'\x00'));var c=[];for(var i=0;i').addClass(this._popupClass).css({display:(b?'none':'static'),position:'absolute',left:a.offset().left,top:a.offset().top+a.outerHeight()}).appendTo($(c.options.popupContainer||'body'));if($.fn.mousewheel){c.div.mousewheel(this._doMouseWheel)}}c.div.html(this._generateContent(a[0],c));a.focus()}}},_updateInput:function(a,b){var c=this._getInst(a);if(!$.isEmptyObject(c)){var d='';var e='';var f=(c.options.multiSelect?c.options.multiSeparator:c.options.rangeSeparator);var g=c.options.calendar;var h=c.get('dateFormat');var j=c.options.altFormat||h;var k={localNumbers:c.options.localNumbers};for(var i=0;i0?f:'')+g.formatDate(h,c.selectedDates[i],k));e+=(i>0?f:'')+g.formatDate(j,c.selectedDates[i],k)}if(!c.inline&&!b){$(a).val(d)}$(c.options.altField).val(e);if($.isFunction(c.options.onSelect)&&!b&&!c.inSelect){c.inSelect=true;c.options.onSelect.apply(a,[c.selectedDates]);c.inSelect=false}}},_getBorders:function(b){var c=function(a){return{thin:1,medium:3,thick:5}[a]||a};return[parseFloat(c(b.css('border-left-width'))),parseFloat(c(b.css('border-top-width')))]},_checkOffset:function(a){var b=(a.elem.is(':hidden')&&a.trigger?a.trigger:a.elem);var c=b.offset();var d=$(window).width();var e=$(window).height();if(d===0){return c}var f=false;$(a.elem).parents().each(function(){f|=$(this).css('position')==='fixed';return!f});var g=document.documentElement.scrollLeft||document.body.scrollLeft;var h=document.documentElement.scrollTop||document.body.scrollTop;var i=c.top-(f?h:0)-a.div.outerHeight();var j=c.top-(f?h:0)+b.outerHeight();var k=c.left-(f?g:0);var l=c.left-(f?g:0)+b.outerWidth()-a.div.outerWidth();var m=(c.left-g+a.div.outerWidth())>d;var n=(c.top-h+a.elem.outerHeight()+a.div.outerHeight())>e;a.div.css('position',f?'fixed':'absolute');var o=a.options.alignment;if(o==='topLeft'){c={left:k,top:i}}else if(o==='topRight'){c={left:l,top:i}}else if(o==='bottomLeft'){c={left:k,top:j}}else if(o==='bottomRight'){c={left:l,top:j}}else if(o==='top'){c={left:(a.options.isRTL||m?l:k),top:i}}else{c={left:(a.options.isRTL||m?l:k),top:(n?i:j)}}c.left=Math.max((f?0:g),c.left);c.top=Math.max((f?0:h),c.top);return c},_checkExternalClick:function(a){if(!I.curInst){return}var b=$(a.target);if(b.closest('.'+I._popupClass+',.'+I._triggerClass).length===0&&!b.hasClass(I._getMarker())){I.hide(I.curInst)}},hide:function(a,b){if(!a){return}var c=this._getInst(a);if($.isEmptyObject(c)){c=a}if(c&&c===I.curInst){var d=(b?'':c.options.showAnim);var e=c.options.showSpeed;e=(e==='normal'&&$.ui&&parseInt($.ui.version.substring(2))>=8?'_default':e);var f=function(){if(!c.div){return}c.div.remove();c.div=null;I.curInst=null;if($.isFunction(c.options.onClose)){c.options.onClose.apply(a,[c.selectedDates])}};c.div.stop();if($.effects&&($.effects[d]||($.effects.effect&&$.effects.effect[d]))){c.div.hide(d,c.options.showOptions,e,f)}else{var g=(d==='slideDown'?'slideUp':(d==='fadeIn'?'fadeOut':'hide'));c.div[g]((d?e:''),f)}if(!d){f()}}},_keyDown:function(a){var b=(a.data&&a.data.elem)||a.target;var c=I._getInst(b);var d=false;if(c.inline||c.div){if(a.keyCode===9){I.hide(b)}else if(a.keyCode===13){I.selectDate(b,$('a.'+c.options.renderer.highlightedClass,c.div)[0]);d=true}else{var e=c.options.commands;for(var f in e){var g=e[f];if(g.keystroke.keyCode===a.keyCode&&!!g.keystroke.ctrlKey===!!(a.ctrlKey||a.metaKey)&&!!g.keystroke.altKey===a.altKey&&!!g.keystroke.shiftKey===a.shiftKey){I.performAction(b,f);d=true;break}}}}else{var g=c.options.commands.current;if(g.keystroke.keyCode===a.keyCode&&!!g.keystroke.ctrlKey===!!(a.ctrlKey||a.metaKey)&&!!g.keystroke.altKey===a.altKey&&!!g.keystroke.shiftKey===a.shiftKey){I.show(b);d=true}}c.ctrlKey=((a.keyCode<48&&a.keyCode!==32)||a.ctrlKey||a.metaKey);if(d){a.preventDefault();a.stopPropagation()}return!d},_keyPress:function(a){var b=I._getInst((a.data&&a.data.elem)||a.target);if(!$.isEmptyObject(b)&&b.options.constrainInput){var c=String.fromCharCode(a.keyCode||a.charCode);var d=I._allowedChars(b);return(a.metaKey||b.ctrlKey||c<' '||!d||d.indexOf(c)>-1)}return true},_allowedChars:function(a){var b=(a.options.multiSelect?a.options.multiSeparator:(a.options.rangeSelect?a.options.rangeSeparator:''));var c=false;var d=false;var e=a.get('dateFormat');for(var i=0;i0){I.setDate(b,d,null,true)}}catch(a){}}return true},_doMouseWheel:function(a,b){var c=(I.curInst&&I.curInst.elem[0])||$(a.target).closest('.'+I._getMarker())[0];if(I.isDisabled(c)){return}var d=I._getInst(c);if(d.options.useMouseWheel){b=(b<0?-1:+1);I.changeMonth(c,-d.options[a.ctrlKey?'monthsToJump':'monthsToStep']*b)}a.preventDefault()},clear:function(a){var b=this._getInst(a);if(!$.isEmptyObject(b)){b.selectedDates=[];this.hide(a);var c=b.get('defaultDate');if(b.options.selectDefaultDate&&c){this.setDate(a,(c||b.options.calendar.today()).newDate())}else{this._updateInput(a)}}},getDate:function(a){var b=this._getInst(a);return(!$.isEmptyObject(b)?b.selectedDates:[])},setDate:function(a,b,c,d,e){var f=this._getInst(a);if(!$.isEmptyObject(f)){if(!$.isArray(b)){b=[b];if(c){b.push(c)}}var g=f.get('minDate');var h=f.get('maxDate');var k=f.selectedDates[0];f.selectedDates=[];for(var i=0;i=d.toJD())&&(!e||b.toJD()<=e.toJD())},performAction:function(a,b){var c=this._getInst(a);if(!$.isEmptyObject(c)&&!this.isDisabled(a)){var d=c.options.commands;if(d[b]&&d[b].enabled.apply(a,[c])){d[b].action.apply(a,[c])}}},showMonth:function(a,b,c,d){var e=this._getInst(a);if(!$.isEmptyObject(e)&&(d!=null||(e.drawDate.year()!==b||e.drawDate.month()!==c))){e.prevDate=e.drawDate.newDate();var f=e.options.calendar;var g=this._checkMinMax((b!=null?f.newDate(b,c,1):f.today()),e);e.drawDate.date(g.year(),g.month(),(d!=null?d:Math.min(e.drawDate.day(),f.daysInMonth(g.year(),g.month()))));this._update(a)}},changeMonth:function(a,b){var c=this._getInst(a);if(!$.isEmptyObject(c)){var d=c.drawDate.newDate().add(b,'m');this.showMonth(a,d.year(),d.month())}},changeDay:function(a,b){var c=this._getInst(a);if(!$.isEmptyObject(c)){var d=c.drawDate.newDate().add(b,'d');this.showMonth(a,d.year(),d.month(),d.day())}},_checkMinMax:function(a,b){var c=b.get('minDate');var d=b.get('maxDate');a=(c&&a.compareTo(c)===-1?c.newDate():a);a=(d&&a.compareTo(d)===+1?d.newDate():a);return a},retrieveDate:function(a,b){var c=this._getInst(a);return($.isEmptyObject(c)?null:c.options.calendar.fromJD(parseFloat(b.className.replace(/^.*jd(\d+\.5).*$/,'$1'))))},selectDate:function(a,b){var c=this._getInst(a);if(!$.isEmptyObject(c)&&!this.isDisabled(a)){var d=this.retrieveDate(a,b);if(c.options.multiSelect){var e=false;for(var i=0;i'+(g?g.formatDate(i.options[f.text],{localNumbers:i.options.localNumbers}):i.options[f.text])+'')};for(var r in i.options.commands){q('button','button type="button"','button',r,i.options.renderer.commandButtonClass);q('link','a href="javascript:void(0)"','a',r,i.options.renderer.commandLinkClass)}p=$(p);if(j[1]>1){var s=0;$(i.options.renderer.monthSelector,p).each(function(){var a=++s%j[1];$(this).addClass(a===1?'first':(a===0?'last':''))})}var t=this;function removeHighlight(){(i.inline?$(this).closest('.'+t._getMarker()):i.div).find(i.options.renderer.daySelector+' a').removeClass(i.options.renderer.highlightedClass)}p.find(i.options.renderer.daySelector+' a').hover(function(){removeHighlight.apply(this);$(this).addClass(i.options.renderer.highlightedClass)},removeHighlight).click(function(){t.selectDate(h,this)}).end().find('select.'+this._monthYearClass+':not(.'+this._anyYearClass+')').change(function(){var a=$(this).val().split('/');t.showMonth(h,parseInt(a[1],10),parseInt(a[0],10))}).end().find('select.'+this._anyYearClass).click(function(){$(this).css('visibility','hidden').next('input').css({left:this.offsetLeft,top:this.offsetTop,width:this.offsetWidth,height:this.offsetHeight}).show().focus()}).end().find('input.'+t._monthYearClass).change(function(){try{var a=parseInt($(this).val(),10);a=(isNaN(a)?i.drawDate.year():a);t.showMonth(h,a,i.drawDate.month(),i.drawDate.day())}catch(e){alert(e)}}).keydown(function(a){if(a.keyCode===13){$(a.elem).change()}else if(a.keyCode===27){$(a.elem).hide().prev('select').css('visibility','visible');i.elem.focus()}});var u={elem:i.elem[0]};p.keydown(u,this._keyDown).keypress(u,this._keyPress).keyup(u,this._keyUp);p.find('.'+i.options.renderer.commandClass).click(function(){if(!$(this).hasClass(i.options.renderer.disabledClass)){var a=this.className.replace(new RegExp('^.*'+i.options.renderer.commandClass+'-([^ ]+).*$'),'$1');I.performAction(h,a)}});if(i.options.isRTL){p.addClass(i.options.renderer.rtlClass)}if(j[0]*j[1]>1){p.addClass(i.options.renderer.multiClass)}if(i.options.pickerClass){p.addClass(i.options.pickerClass)}$('body').append(p);var v=0;p.find(i.options.renderer.monthSelector).each(function(){v+=$(this).outerWidth()});p.width(v/j[0]);if($.isFunction(i.options.onShow)){i.options.onShow.apply(h,[p,i.options.calendar,i])}return p},_generateMonth:function(b,c,d,e,f,g,h){var j=f.daysInMonth(d,e);var k=c.options.monthsToShow;k=($.isArray(k)?k:[1,k]);var l=c.options.fixedWeeks||(k[0]*k[1]>1);var m=c.options.firstDay;m=(m==null?f.local.firstDay:m);var n=(f.dayOfWeek(d,e,f.minDay)-m+f.daysInWeek())%f.daysInWeek();var o=(l?6:Math.ceil((n+j)/f.daysInWeek()));var p=c.options.selectOtherMonths&&c.options.showOtherMonths;var q=(c.pickingRange?c.selectedDates[0]:c.get('minDate'));var r=c.get('maxDate');var s=g.week.indexOf('{weekOfYear}')>-1;var t=f.today();var u=f.newDate(d,e,f.minDay);u.add(-n-(l&&(u.dayOfWeek()===m||u.daysInMonth()'+($.isFunction(c.options.calculateWeek)?c.options.calculateWeek(u):u.weekOfYear())+'');var A='';for(var B=0;B0){C=(u.compareTo(c.selectedDates[0])!==-1&&u.compareTo(c.selectedDates[1])!==+1)}else{for(var i=0;i'+(c.options.showOtherMonths||u.month()===e?D.content||w(u.day()):' ')+(E?'':''));u.add(1,'d');v++}x+=this._prepare(g.week,c).replace(/\{days\}/g,A).replace(/\{weekOfYear\}/g,z)}var F=this._prepare(g.month,c).match(/\{monthHeader(:[^\}]+)?\}/);F=(F[0].length<=13?'MM yyyy':F[0].substring(13,F[0].length-1));F=(h?this._generateMonthSelection(c,d,e,q,r,F,f,g):f.formatDate(F,f.newDate(d,e,f.minDay),{localNumbers:c.options.localNumbers}));var G=this._prepare(g.weekHeader,c).replace(/\{days\}/g,this._generateDayHeaders(c,f,g));return this._prepare(g.month,c).replace(/\{monthHeader(:[^\}]+)?\}/g,F).replace(/\{weekHeader\}/g,G).replace(/\{weeks\}/g,x)},_generateDayHeaders:function(a,b,c){var d=a.options.firstDay;d=(d==null?b.local.firstDay:d);var e='';for(var f=0;f'+b.local.dayNamesMin[g]+'')}return e},_generateMonthSelection:function(b,c,d,e,f,g,h){if(!b.options.changeMonth){return h.formatDate(g,h.newDate(c,d,1),{localNumbers:b.options.localNumbers})}var i=h.local['monthNames'+(g.match(/mm/i)?'':'Short')];var j=g.replace(/m+/i,'\\x2E').replace(/y+/i,'\\x2F');var k='';j=j.replace(/\\x2E/,k);var n=b.options.yearRange;if(n==='any'){k=''+''}else{n=n.split(':');var o=h.today().year();var p=(n[0].match('c[+-].*')?c+parseInt(n[0].substring(1),10):((n[0].match('[+-].*')?o:0)+parseInt(n[0],10)));var q=(n[1].match('c[+-].*')?c+parseInt(n[1].substring(1),10):((n[1].match('[+-].*')?o:0)+parseInt(n[1],10)));k='

+ + diff --git a/odex30_base/web_hijri_datepicker/static/src/components/hijri_date_field.js b/odex30_base/web_hijri_datepicker/static/src/components/hijri_date_field.js new file mode 100644 index 0000000..8a9768e --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/src/components/hijri_date_field.js @@ -0,0 +1,90 @@ +/** @odoo-module **/ + +import { DateTimeField } from "@web/views/fields/datetime/datetime_field"; +import { registry } from "@web/core/registry"; +import { _t } from "@web/core/l10n/translation"; +import { Component, onMounted, useRef, useState } from "@odoo/owl"; +import { HijriDate } from "../utils/hijri_converter"; + +export class HijriDateField extends DateTimeField { + static template = "web_hijri_datepicker.HijriDateField"; + + setup() { + super.setup(); + this.hijriInputRef = useRef("hijriInput"); + this.state = useState({ + showHijriPicker: false, + hijriDate: null + }); + + onMounted(() => { + this.updateHijriDate(); + }); + } + + updateHijriDate() { + if (this.props.value) { + const gregorianDate = new Date(this.props.value); + this.state.hijriDate = HijriDate.fromGregorian(gregorianDate); + } else { + this.state.hijriDate = null; + } + } + + get hijriDateString() { + if (!this.state.hijriDate) { + return ""; + } + return this.state.hijriDate.toString('ar'); + } + + get hijriDateStringEn() { + if (!this.state.hijriDate) { + return ""; + } + return this.state.hijriDate.toString('en'); + } + + onHijriInputClick(ev) { + ev.preventDefault(); + this.state.showHijriPicker = !this.state.showHijriPicker; + } + + onHijriDateChange(year, month, day) { + try { + const hijriDate = new HijriDate(year, month, day); + const gregorianDate = hijriDate.hijriToGregorian(); + this.state.showHijriPicker = false; + this.state.hijriDate = hijriDate; + + // Format date for Odoo + const formattedDate = gregorianDate.toISOString().split('T')[0]; + this.onChange(formattedDate); + } catch (error) { + console.error("Error converting Hijri to Gregorian:", error); + } + } + + onClosePicker() { + this.state.showHijriPicker = false; + } + + getCurrentHijriYear() { + return this.state.hijriDate?.year || new HijriDate().year; + } + + getCurrentHijriMonth() { + return this.state.hijriDate?.month || new HijriDate().month; + } + + getCurrentHijriDay() { + return this.state.hijriDate?.day || new HijriDate().day; + } +} + +// Register the field +registry.category("fields").add("hijri_date", { + component: HijriDateField, + displayName: "Hijri Date", + supportedTypes: ["date", "datetime"], +}); \ No newline at end of file diff --git a/odex30_base/web_hijri_datepicker/static/src/components/hijri_date_field.xml b/odex30_base/web_hijri_datepicker/static/src/components/hijri_date_field.xml new file mode 100644 index 0000000..d3ca22f --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/src/components/hijri_date_field.xml @@ -0,0 +1,72 @@ + + + + + + + +
+ +
+ + + +
+ + +
+
+
Select Hijri Date
+
+
+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+
+
\ No newline at end of file diff --git a/odex30_base/web_hijri_datepicker/static/src/fields/hijri_date_field.js b/odex30_base/web_hijri_datepicker/static/src/fields/hijri_date_field.js new file mode 100644 index 0000000..6343573 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/src/fields/hijri_date_field.js @@ -0,0 +1,230 @@ +/** @odoo-module **/ + +import { DateTimeField, dateField } from "@web/views/fields/datetime/datetime_field"; +import { registry } from "@web/core/registry"; +import { _t } from "@web/core/l10n/translation"; +import { localization } from "@web/core/l10n/localization"; +import { useState, onMounted, useRef, useEffect } from "@odoo/owl"; +import { deserializeDate, deserializeDateTime } from "@web/core/l10n/dates"; + +// Hijri month names mapping +const hijriMonths = { + "Muharram": "مُحَرَّم", + "Safar": "صَفَر", + "Rabi' al-awwal": "رَبِيْعُ الأَوّل", + "Rabi' al-thani": "رَبِيْعُ الثَّانِي", + "Jumada al-awwal": "جَمَادِي الأَوّل", + "Jumada al-thani": "جَمَادِي الثَّانِي", + "Rajab": "رَجَب", + "Sha'aban": "شَعْبَان", + "Ramadan": "رَمَضَان", + "Shawwal": "شَوَّال", + "Dhu al-Qi'dah": "ذُوالْقَعْدَة", + "Dhu al-Hijjah": "ذُوالْحِجَّة" +}; + +// Convert Western digits to Arabic-Indic digits +function toArabicDigits(str) { + const arabicDigits = ['٠', '١', '٢', '٣', '٤', '٥', '٦', '٧', '٨', '٩']; + return String(str).replace(/[0-9]/g, (w) => arabicDigits[+w]); +} + +export class HijriDateTimeField extends DateTimeField { + static template = "web_hijri_datepicker.HijriDateTimeField"; + + setup() { + super.setup(); + this.hijriInputRef = useRef("hijriInput"); + this.hijriState = useState({ + hijriValue: "", + }); + + onMounted(() => { + this.initHijriCalendar(); + this.updateHijriDisplay(); + }); + + useEffect( + () => { + this.updateHijriDisplay(); + }, + () => [this.state.value] + ); + } + + initHijriCalendar() { + // Check if jQuery calendars library is loaded + if (!window.$ || !window.$.calendars) { + console.warn("jQuery calendars library not loaded. Hijri calendar functionality will be limited."); + return; + } + + const $hijriInput = $(this.hijriInputRef.el); + if (!$hijriInput.length) return; + + // Initialize the Hijri calendar picker + try { + const calendar = $.calendars.instance('islamic', 'en'); + + $hijriInput.calendarsPicker({ + calendar: calendar, + dateFormat: 'MM d, yyyy', + changeMonth: false, + changeYear: false, + showAnim: '', + onSelect: (dates) => this.onHijriDateSelected(dates), + showOtherMonths: false, + selectOtherMonths: false + }); + + } catch (error) { + console.error("Error initializing Hijri calendar:", error); + } + } + + onHijriDateSelected(dates) { + if (!dates || dates.length === 0) { + return; + } + + try { + const hijriDate = dates[0]; + const islamic = $.calendars.instance('islamic'); + const gregorian = $.calendars.instance('gregorian'); + + // Convert Hijri to Julian Day then to Gregorian + const jd = islamic.toJD(hijriDate.year(), hijriDate.month(), hijriDate.day()); + const gregDate = gregorian.fromJD(jd); + + // Create luxon DateTime object + const dateValue = this.field.type === "date" + ? deserializeDate(`${gregDate.year()}-${String(gregDate.month()).padStart(2, '0')}-${String(gregDate.day()).padStart(2, '0')}`) + : deserializeDateTime(`${gregDate.year()}-${String(gregDate.month()).padStart(2, '0')}-${String(gregDate.day()).padStart(2, '0')} 00:00:00`); + + // Update the field value using parent's state management + this.state.value = dateValue; + + // Trigger the parent's onApply to save the change + const toUpdate = {}; + toUpdate[this.props.name] = dateValue; + this.props.record.update(toUpdate); + + // Update Hijri display + this.updateHijriDisplay(); + + } catch (error) { + console.error("Error converting Hijri date:", error); + } + } + + updateHijriDisplay() { + if (!this.state.value || !window.$ || !window.$.calendars) { + this.hijriState.hijriValue = ""; + return; + } + + try { + const value = this.state.value; + if (!value || !value.isValid) { + this.hijriState.hijriValue = ""; + return; + } + + // Convert luxon DateTime to JavaScript Date + const jsDate = value.toJSDate(); + + // Convert Gregorian to Hijri + const gregorianCalendar = $.calendars.instance('gregorian'); + const islamicCalendar = $.calendars.instance('islamic'); + + const jd = gregorianCalendar.toJD( + jsDate.getFullYear(), + jsDate.getMonth() + 1, + jsDate.getDate() + ); + + const hijriDate = islamicCalendar.fromJD(jd); + + // Format the Hijri date + let formattedDate = islamicCalendar.formatDate('MM d, yyyy', hijriDate); + + // If Arabic locale, convert month names and digits + if (localization.code === 'ar' || localization.code.startsWith('ar_')) { + const monthName = islamicCalendar.formatDate('MM', hijriDate); + const dayYear = islamicCalendar.formatDate('d, yyyy', hijriDate); + + // Replace month name with Arabic equivalent + const arabicMonth = hijriMonths[monthName] || monthName; + + // Convert digits to Arabic-Indic + const arabicDayYear = toArabicDigits(dayYear); + + formattedDate = `${arabicMonth} ${arabicDayYear}`; + } + + this.hijriState.hijriValue = formattedDate; + + } catch (error) { + console.error("Error converting to Hijri date:", error); + this.hijriState.hijriValue = ""; + } + } + + onHijriInputClick(ev) { + ev.preventDefault(); + ev.stopPropagation(); + + if (!window.$ || !window.$.calendars) { + console.warn("Hijri calendar library not available"); + return; + } + + const $hijriInput = $(this.hijriInputRef.el); + + if ($hijriInput.length && $hijriInput.calendarsPicker) { + // Show the calendar picker + $hijriInput.calendarsPicker('show'); + + // If there's a current value, set it in the picker + if (this.state.value && this.state.value.isValid) { + try { + const jsDate = this.state.value.toJSDate(); + const gregorianCalendar = $.calendars.instance('gregorian'); + const islamicCalendar = $.calendars.instance('islamic'); + + const jd = gregorianCalendar.toJD( + jsDate.getFullYear(), + jsDate.getMonth() + 1, + jsDate.getDate() + ); + + const hijriDate = islamicCalendar.fromJD(jd); + $hijriInput.calendarsPicker('setDate', hijriDate); + } catch (error) { + console.error("Error setting Hijri date in picker:", error); + } + } + } + } + + onHijriInputFocus(ev) { + // Prevent keyboard input + ev.target.blur(); + this.onHijriInputClick(ev); + } +} + +// Register field widget +export const hijriDateField = { + ...dateField, + component: HijriDateTimeField, + displayName: _t("Hijri Date"), + supportedTypes: ["date", "datetime"], +}; + +// Register for both date and datetime types +registry.category("fields").add("hijri_date", hijriDateField); +registry.category("fields").add("hijri_datetime", { + ...hijriDateField, + supportedTypes: ["datetime"], +}); \ No newline at end of file diff --git a/odex30_base/web_hijri_datepicker/static/src/fields/hijri_date_field.scss b/odex30_base/web_hijri_datepicker/static/src/fields/hijri_date_field.scss new file mode 100644 index 0000000..5cd243a --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/src/fields/hijri_date_field.scss @@ -0,0 +1,89 @@ +.o_field_hijri_datetime { + .o_datetime_input_container { + width: 100%; + } + + .o_hijri_input_container { + .input-group-text { + background-color: #f8f9fa; + border-color: #dee2e6; + + i { + color: #6c757d; + } + } + + .o_hijri_input { + cursor: pointer; + background-color: #fff; + + &:hover { + background-color: #f8f9fa; + } + + &:focus { + border-color: #86b7fe; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); + } + } + } + + &.o_readonly_datetime_field { + .o_hijri_date { + margin-top: 0.25rem; + font-size: 0.875rem; + + i { + opacity: 0.7; + } + } + } +} + +// Hijri calendar picker customizations +.calendars-popup { + z-index: 1055 !important; // Ensure it appears above modals + + .calendars-month-header { + background-color: #7c7bad; + color: white; + } + + .calendars-today { + background-color: #e9ecef; + font-weight: bold; + } + + .calendars-selected { + background-color: #7c7bad !important; + color: white !important; + } + + .calendars-highlight { + background-color: rgba(124, 123, 173, 0.2); + } + + &[dir="rtl"] { + .calendars-month-header { + direction: rtl; + } + } +} + +// Arabic locale specific styles +html[lang="ar"] { + .o_field_hijri_datetime { + .o_hijri_input_container { + direction: rtl; + + .input-group { + flex-direction: row-reverse; + } + } + } + + .calendars-popup { + direction: rtl; + font-family: 'Segoe UI', Tahoma, sans-serif; + } +} \ No newline at end of file diff --git a/odex30_base/web_hijri_datepicker/static/src/fields/hijri_date_field.xml b/odex30_base/web_hijri_datepicker/static/src/fields/hijri_date_field.xml new file mode 100644 index 0000000..9d67d3b --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/src/fields/hijri_date_field.xml @@ -0,0 +1,38 @@ + + + + + + + +
+
+ + + + +
+
+
+ + + +
+ + + + +
+
+
+
+
+
\ No newline at end of file diff --git a/odex30_base/web_hijri_datepicker/static/src/patches/datetime_field_patch.js b/odex30_base/web_hijri_datepicker/static/src/patches/datetime_field_patch.js new file mode 100644 index 0000000..033f55b --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/src/patches/datetime_field_patch.js @@ -0,0 +1,165 @@ +/** @odoo-module **/ + +import { DateTimeField } from "@web/views/fields/datetime/datetime_field"; +import { patch } from "@web/core/utils/patch"; +import { useState, onMounted, useEffect } from "@odoo/owl"; +import { HijriDate } from "../utils/hijri_converter"; +import { deserializeDate, deserializeDateTime } from "@web/core/l10n/dates"; + +patch(DateTimeField.prototype, { + setup() { + super.setup(); + + // Add Hijri-specific state + this.hijriState = useState({ + hijriValue: "", + showPicker: false, + hijriDate: null + }); + + onMounted(() => { + this.updateHijriDisplay(); + }); + + // Add effect to update Hijri when value changes + useEffect( + () => { + this.updateHijriDisplay(); + }, + () => [this.state.value] + ); + }, + + updateHijriDisplay() { + if (!this.hijriState) { + return; + } + + // Get the actual value + const value = this.state.value; + + if (!value || !value.isValid) { + this.hijriState.hijriValue = ""; + this.hijriState.hijriDate = null; + return; + } + + try { + // Convert luxon DateTime to JavaScript Date + const jsDate = value.toJSDate(); + + // Convert Gregorian to Hijri using our utility + const hijriDate = HijriDate.fromGregorian(jsDate); + + // Store the hijri date object + this.hijriState.hijriDate = hijriDate; + + // Format for display + this.hijriState.hijriValue = hijriDate.toString('ar'); + + } catch (error) { + console.error("Error converting to Hijri date:", error); + this.hijriState.hijriValue = ""; + this.hijriState.hijriDate = null; + } + }, + + get showHijriDate() { + return this.hijriState && this.hijriState.hijriValue; + }, + + onHijriInputClick(ev) { + ev.preventDefault(); + this.hijriState.showPicker = !this.hijriState.showPicker; + }, + + onHijriYearChange(ev) { + const year = parseInt(ev.target.value); + this.onHijriDateChange(year, this.getCurrentHijriMonth(), this.getCurrentHijriDay()); + }, + + onHijriMonthChange(ev) { + const month = parseInt(ev.target.value); + this.onHijriDateChange(this.getCurrentHijriYear(), month, this.getCurrentHijriDay()); + }, + + onHijriDayChange(ev) { + const day = parseInt(ev.target.value); + this.onHijriDateChange(this.getCurrentHijriYear(), this.getCurrentHijriMonth(), day); + }, + + onHijriDateChange(year, month, day) { + try { + const hijriDate = new HijriDate(year, month, day); + const gregorianDate = hijriDate.hijriToGregorian(); + + // Format date for Odoo's DateTime field + const dateString = gregorianDate.toISOString().split('T')[0]; + const luxonDate = this.props.type === "datetime" + ? deserializeDateTime(dateString + " 00:00:00") + : deserializeDate(dateString); + + this.state.value = luxonDate; + this.hijriState.showPicker = false; + + // Trigger field update + this.props.record.update({[this.props.name]: luxonDate}); + + } catch (error) { + console.error("Error converting Hijri to Gregorian:", error); + } + }, + + onClosePicker() { + this.hijriState.showPicker = false; + }, + + getCurrentHijriYear() { + return this.hijriState.hijriDate?.year || new HijriDate().year; + }, + + getCurrentHijriMonth() { + return this.hijriState.hijriDate?.month || new HijriDate().month; + }, + + getCurrentHijriDay() { + return this.hijriState.hijriDate?.day || new HijriDate().day; + }, + + getHijriMonthName() { + const monthIndex = this.getCurrentHijriMonth() - 1; + const months = ['محرم', 'صفر', 'ربيع الأول', 'ربيع الثاني', 'جمادى الأولى', 'جمادى الثانية', 'رجب', 'شعبان', 'رمضان', 'شوال', 'ذو القعدة', 'ذو الحجة']; + return months[monthIndex] || months[0]; + }, + + onPrevMonth() { + let month = this.getCurrentHijriMonth() - 1; + let year = this.getCurrentHijriYear(); + + if (month < 1) { + month = 12; + year--; + } + + const day = Math.min(this.getCurrentHijriDay(), 29); // Ensure valid day + this.onHijriDateChange(year, month, day); + }, + + onNextMonth() { + let month = this.getCurrentHijriMonth() + 1; + let year = this.getCurrentHijriYear(); + + if (month > 12) { + month = 1; + year++; + } + + const day = Math.min(this.getCurrentHijriDay(), 29); // Ensure valid day + this.onHijriDateChange(year, month, day); + }, + + onSelectToday() { + const today = new HijriDate(); // Current Hijri date + this.onHijriDateChange(today.year, today.month, today.day); + } +}); \ No newline at end of file diff --git a/odex30_base/web_hijri_datepicker/static/src/patches/datetime_field_patch.xml b/odex30_base/web_hijri_datepicker/static/src/patches/datetime_field_patch.xml new file mode 100644 index 0000000..52ce359 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/src/patches/datetime_field_patch.xml @@ -0,0 +1,112 @@ + + + + + + +
+ +
+
+ + +
+
+
+ + +
+
+
+
Hijri Calendar
+
+ +
+ +
+ +
+ +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
+
+
+
+ + + + \ No newline at end of file diff --git a/odex30_base/web_hijri_datepicker/static/src/scss/web_hijri_date.scss b/odex30_base/web_hijri_datepicker/static/src/scss/web_hijri_date.scss new file mode 100644 index 0000000..7277726 --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/src/scss/web_hijri_date.scss @@ -0,0 +1,118 @@ +.calendars-popup { + z-index: 99999 !important; + position: absolute !important; + & > .calendars { + min-width: 225px; + & > .calendars-month-row { + & > .calendars-month { + width: 100%; + & > .calendars-month-header { + display: flex; + & > .calendars-month-year { + width: auto; + display: inline; + } + } + } + } + .calendars-month { + table { + & > thead { + & > tr { + & > th { + span { + max-width: 29px; + } + } + } + } + } + + } + } +} + +.o_list_view .o_data_row.o_selected_row { + & > .o_data_cell:not(.o_readonly_modifier) { + & > .o_datepicker { + position: relative; + display: inline; + float: left; + width: 50%; + } + } +} + +.o_list_view { + .o_list_table { + tbody { + tr { + td { + .o_datepicker_input { + width: 50% !important; + } + } + } + } + } +} + +.o_datepicker { + .o_datepicker_button { + &.o_hijri_datepicker_button { + top: 30px; + } + } +} + +/* Hijri date display styling */ +.hijri-date-container { + margin-top: 2px !important; /* Reduce top margin */ + + .hijri-date-input { + margin-top: 4px !important; /* Much smaller top margin */ + + input[readonly] { + background-color: #f8f9fa; + border-color: #dee2e6; + font-family: "Segoe UI", Tahoma, Arial, sans-serif; + font-size: 13px; /* Slightly smaller font */ + text-align: center; + direction: rtl; + padding: 4px 8px; /* Reduced padding */ + height: 32px; /* Set fixed smaller height */ + + &:focus { + outline: none; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + border-color: #80bdff; + } + } + + .form-control-plaintext { + font-family: "Segoe UI", Tahoma, Arial, sans-serif; + font-size: 13px; /* Slightly smaller font */ + text-align: center; + direction: rtl; + color: #6c757d; + padding: 4px 0; /* Reduced padding */ + line-height: 1.2; /* Tighter line height */ + } + } + + .hijri-picker-dropdown { + .card-header h6 { + font-family: "Segoe UI", Tahoma, Arial, sans-serif; + color: #495057; + } + + .btn { + font-family: inherit; + } + + select.form-select { + font-family: "Segoe UI", Tahoma, Arial, sans-serif; + font-size: 13px; + } + } +} \ No newline at end of file diff --git a/odex30_base/web_hijri_datepicker/static/src/utils/hijri_converter.js b/odex30_base/web_hijri_datepicker/static/src/utils/hijri_converter.js new file mode 100644 index 0000000..ce2d05f --- /dev/null +++ b/odex30_base/web_hijri_datepicker/static/src/utils/hijri_converter.js @@ -0,0 +1,133 @@ +/** @odoo-module **/ + +// Simple Hijri date converter +// Based on the Umm al-Qura calendar system + +const HIJRI_EPOCH = 1948439.5; // Julian day number for 1 Muharram 1 AH +const DAYS_IN_YEAR = 354.36667; // Average days in a Hijri year + +const HIJRI_MONTHS = [ + "محرم", "صفر", "ربيع الأول", "ربيع الثاني", + "جمادى الأولى", "جمادى الثانية", "رجب", "شعبان", + "رمضان", "شوال", "ذو القعدة", "ذو الحجة" +]; + +const HIJRI_MONTHS_EN = [ + "Muharram", "Safar", "Rabi' al-awwal", "Rabi' al-thani", + "Jumada al-awwal", "Jumada al-thani", "Rajab", "Sha'ban", + "Ramadan", "Shawwal", "Dhu al-Qi'dah", "Dhu al-Hijjah" +]; + +class HijriDate { + constructor(year = null, month = null, day = null) { + if (year === null) { + // Initialize with current Hijri date + const today = new Date(); + const hijri = this.gregorianToHijri(today); + this.year = hijri.year; + this.month = hijri.month; + this.day = hijri.day; + } else { + this.year = year; + this.month = month; + this.day = day; + } + } + + static fromGregorian(gregorianDate) { + const hijri = new HijriDate(); + const converted = hijri.gregorianToHijri(gregorianDate); + hijri.year = converted.year; + hijri.month = converted.month; + hijri.day = converted.day; + return hijri; + } + + gregorianToHijri(gregorianDate) { + // Convert Gregorian date to Julian day number + const jd = this.gregorianToJulian(gregorianDate); + + // Convert Julian day to Hijri + const l = jd - HIJRI_EPOCH; + const n = Math.floor(l / DAYS_IN_YEAR); + const aux1 = Math.ceil((l - n * DAYS_IN_YEAR) / 29.5); + const aux2 = ((l - n * DAYS_IN_YEAR) - Math.floor(aux1 * 29.5)) + 1; + + const year = n + 1; + const month = Math.ceil(aux1); + const day = Math.floor(aux2); + + return { + year: year, + month: month > 12 ? month - 12 : month, + day: day < 1 ? 1 : day + }; + } + + hijriToGregorian() { + // Convert Hijri to Julian day number + const jd = HIJRI_EPOCH + (this.year - 1) * DAYS_IN_YEAR + + (this.month - 1) * 29.5 + this.day; + + // Convert Julian day to Gregorian + return this.julianToGregorian(jd); + } + + gregorianToJulian(date) { + const year = date.getFullYear(); + const month = date.getMonth() + 1; + const day = date.getDate(); + + let a = Math.floor((14 - month) / 12); + let y = year - a; + let m = month + 12 * a - 3; + + return Math.floor(365.25 * y) + Math.floor(30.6001 * (m + 1)) + day + 1720995; + } + + julianToGregorian(jd) { + const l = jd + 68569; + const n = Math.floor((4 * l) / 146097); + const l2 = l - Math.floor((146097 * n + 3) / 4); + + const i = Math.floor((4000 * (l2 + 1)) / 1461001); + const l3 = l2 - Math.floor((1461 * i) / 4) + 31; + const j = Math.floor((80 * l3) / 2447); + const day = l3 - Math.floor((2447 * j) / 80); + const l4 = Math.floor(j / 11); + const month = j + 2 - (12 * l4); + const year = 100 * (n - 49) + i + l4; + + return new Date(year, month - 1, day); + } + + toString(lang = 'ar') { + const months = lang === 'ar' ? HIJRI_MONTHS : HIJRI_MONTHS_EN; + + if (lang === 'ar') { + // Better Arabic format with proper spacing and layout + const arabicDay = this.toArabicNumerals(this.day); + const arabicYear = this.toArabicNumerals(this.year); + const monthName = months[this.month - 1]; + return `${arabicDay} ${monthName} ${arabicYear}هـ`; + } else { + // English format: "15 Ramadan 1446 AH" + return `${this.day} ${months[this.month - 1]} ${this.year} AH`; + } + } + + toArabicNumerals(num) { + const arabicNumerals = ['٠', '١', '٢', '٣', '٤', '٥', '٦', '٧', '٨', '٩']; + return String(num).replace(/[0-9]/g, (digit) => arabicNumerals[parseInt(digit)]); + } + + toObject() { + return { + year: this.year, + month: this.month, + day: this.day + }; + } +} + +export { HijriDate, HIJRI_MONTHS, HIJRI_MONTHS_EN }; \ No newline at end of file