├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── config │ ├── .htaccess │ ├── application.ini │ ├── communication.ini │ ├── log.ini │ ├── permission.ini │ └── sample.ini ├── control │ ├── .htaccess │ ├── CommonPage.class.php │ ├── MessageList.class.php │ ├── NotificationList.class.php │ ├── SearchBox.class.php │ ├── SearchInputBox.class.php │ ├── WelcomeView.class.php │ ├── admin │ │ ├── EmptyPage.class.php │ │ ├── LoginForm.class.php │ │ ├── SystemDataBrowser.class.php │ │ ├── SystemDatabaseExplorer.class.php │ │ ├── SystemGroupForm.class.php │ │ ├── SystemGroupList.class.php │ │ ├── SystemMenuUpdate.class.php │ │ ├── SystemModulesCheckView.class.php │ │ ├── SystemPHPErrorLogView.class.php │ │ ├── SystemPHPInfoView.class.php │ │ ├── SystemPageBatchUpdate.class.php │ │ ├── SystemPageUpdate.class.php │ │ ├── SystemPasswordResetForm.class.php │ │ ├── SystemPreferenceForm.class.php │ │ ├── SystemProfileForm.class.php │ │ ├── SystemProfileView.class.php │ │ ├── SystemProgramForm.class.php │ │ ├── SystemProgramList.class.php │ │ ├── SystemRegistrationForm.class.php │ │ ├── SystemRequestPasswordResetForm.class.php │ │ ├── SystemSQLPanel.class.php │ │ ├── SystemSupportForm.class.php │ │ ├── SystemTableList.class.php │ │ ├── SystemUnitForm.class.php │ │ ├── SystemUnitList.class.php │ │ ├── SystemUserForm.class.php │ │ └── SystemUserList.class.php │ ├── communication │ │ ├── SystemDocumentCategoryFormList.class.php │ │ ├── SystemDocumentForm.class.php │ │ ├── SystemDocumentList.class.php │ │ ├── SystemDocumentUploadForm.class.php │ │ ├── SystemMessageForm.class.php │ │ ├── SystemMessageFormView.class.php │ │ ├── SystemMessageList.class.php │ │ ├── SystemNotificationFormView.class.php │ │ ├── SystemNotificationList.class.php │ │ └── SystemSharedDocumentList.class.php │ ├── log │ │ ├── SystemAccessLogList.class.php │ │ ├── SystemAccessLogStats.class.php │ │ ├── SystemChangeLogView.class.php │ │ └── SystemSqlLogList.class.php │ └── public │ │ └── PublicView.class.php ├── database │ ├── .htaccess │ ├── communication.db │ ├── communication.sql │ ├── log.db │ ├── log.sql │ ├── migrations │ │ ├── 20170505190148_create_system_group_table.php │ │ ├── 20170505192126_create_system_program_table.php │ │ ├── 20170505194209_create_system_unit_table.php │ │ ├── 20170505195702_create_system_user_table.php │ │ ├── 20170505202210_create_system_user_group_table.php │ │ ├── 20170505203441_create_system_group_program_table.php │ │ ├── 20170506134603_create_system_user_program_table.php │ │ ├── 20170506135318_create_system_preference_table.php │ │ ├── 20170506142054_create_system_message_table.php │ │ ├── 20170506142713_create_system_notification_table.php │ │ ├── 20170506143159_create_system_document_category_table.php │ │ ├── 20170506143519_create_system_document_table.php │ │ ├── 20170506144515_create_system_document_user_table.php │ │ ├── 20170506144801_create_system_document_group_table.php │ │ ├── 20170506165019_create_system_change_log_table.php │ │ ├── 20170506165428_create_system_sql_log_table.php │ │ ├── 20170506165843_create_system_access_log_table.php │ │ └── 20180905213637_create_system_user_unit.php │ ├── permission-update.sql │ ├── permission.asta │ ├── permission.db │ ├── permission.sql │ └── permission.xml ├── forms │ └── .htaccess ├── images │ └── adianti.png ├── lib │ ├── barcode │ │ └── AdiantiBarcodeDocumentGenerator.php │ ├── html │ │ └── AdiantiHTMLDocumentParser.php │ ├── include │ │ ├── application.js │ │ ├── fuse │ │ │ └── fuse.min.js │ │ └── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ ├── menu │ │ └── AdiantiMenuBuilder.php │ ├── pdf │ │ ├── FPDF.php │ │ ├── font │ │ │ ├── courier.php │ │ │ ├── courierb.php │ │ │ ├── courierbi.php │ │ │ ├── courieri.php │ │ │ ├── helvetica.php │ │ │ ├── helveticab.php │ │ │ ├── helveticabi.php │ │ │ ├── helveticai.php │ │ │ ├── makefont │ │ │ │ ├── cp1250.map │ │ │ │ ├── cp1251.map │ │ │ │ ├── cp1252.map │ │ │ │ ├── cp1253.map │ │ │ │ ├── cp1254.map │ │ │ │ ├── cp1255.map │ │ │ │ ├── cp1257.map │ │ │ │ ├── cp1258.map │ │ │ │ ├── cp874.map │ │ │ │ ├── iso-8859-1.map │ │ │ │ ├── iso-8859-11.map │ │ │ │ ├── iso-8859-15.map │ │ │ │ ├── iso-8859-16.map │ │ │ │ ├── iso-8859-2.map │ │ │ │ ├── iso-8859-4.map │ │ │ │ ├── iso-8859-5.map │ │ │ │ ├── iso-8859-7.map │ │ │ │ ├── iso-8859-9.map │ │ │ │ ├── koi8-r.map │ │ │ │ ├── koi8-u.map │ │ │ │ ├── makefont.php │ │ │ │ └── ttfparser.php │ │ │ ├── symbol.php │ │ │ ├── times.php │ │ │ ├── timesb.php │ │ │ ├── timesbi.php │ │ │ ├── timesi.php │ │ │ └── zapfdingbats.php │ │ └── license.txt │ ├── reports │ │ ├── ITableWriter.iface.php │ │ ├── TAdiantiElement.class.php │ │ ├── TAdiantiStyle.class.php │ │ ├── TAdiantiTable.class.php │ │ ├── TAdiantiTableCell.class.php │ │ ├── TAdiantiTableRow.class.php │ │ ├── TTableWriterHTML.class.php │ │ ├── TTableWriterPDF.class.php │ │ ├── TTableWriterRTF.class.php │ │ └── TTableWriterXLS.class.php │ ├── util │ │ ├── .htaccess │ │ ├── ApplicationTranslator.class.php │ │ ├── MailService.class.php │ │ ├── TApplicationFileSessionHandler.class.php │ │ └── TMail.class.php │ ├── validator │ │ └── TDateValidator.class.php │ └── widget │ │ └── TAccordion.class.php ├── model │ ├── .htaccess │ ├── admin │ │ ├── .htaccess │ │ ├── EmptyPage.class.php │ │ ├── LoginForm.class.php │ │ ├── SystemDataBrowser.class.php │ │ ├── SystemDatabaseExplorer.class.php │ │ ├── SystemGroup.class.php │ │ ├── SystemGroupForm.class.php │ │ ├── SystemGroupList.class.php │ │ ├── SystemGroupProgram.class.php │ │ ├── SystemPHPErrorLogView.class.php │ │ ├── SystemPHPInfoView.class.php │ │ ├── SystemPageBatchUpdate.class.php │ │ ├── SystemPageUpdate.class.php │ │ ├── SystemPermission.class.php │ │ ├── SystemPreference.class.php │ │ ├── SystemPreferenceForm.class.php │ │ ├── SystemProfileForm.class.php │ │ ├── SystemProfileView.class.php │ │ ├── SystemProgram.class.php │ │ ├── SystemProgramForm.class.php │ │ ├── SystemProgramList.class.php │ │ ├── SystemSQLPanel.class.php │ │ ├── SystemSupportForm.class.php │ │ ├── SystemTableList.class.php │ │ ├── SystemUnit.class.php │ │ ├── SystemUnitForm.class.php │ │ ├── SystemUnitList.class.php │ │ ├── SystemUser.class.php │ │ ├── SystemUserForm.class.php │ │ ├── SystemUserGroup.class.php │ │ ├── SystemUserList.class.php │ │ ├── SystemUserProgram.class.php │ │ └── SystemUserUnit.class.php │ ├── communication │ │ ├── SystemDocument.class.php │ │ ├── SystemDocumentCategory.class.php │ │ ├── SystemDocumentCategoryFormList.class.php │ │ ├── SystemDocumentForm.class.php │ │ ├── SystemDocumentGroup.class.php │ │ ├── SystemDocumentList.class.php │ │ ├── SystemDocumentUploadForm.class.php │ │ ├── SystemDocumentUser.class.php │ │ ├── SystemMessage.class.php │ │ ├── SystemMessageForm.class.php │ │ ├── SystemMessageFormView.class.php │ │ ├── SystemMessageList.class.php │ │ ├── SystemNotification.class.php │ │ ├── SystemNotificationFormView.class.php │ │ ├── SystemNotificationList.class.php │ │ └── SystemSharedDocumentList.class.php │ └── log │ │ ├── SystemAccessLog.class.php │ │ ├── SystemAccessLogList.class.php │ │ ├── SystemAccessLogStats.class.php │ │ ├── SystemChangeLog.class.php │ │ ├── SystemChangeLogTrait.php │ │ ├── SystemChangeLogView.class.php │ │ ├── SystemSqlLog.class.php │ │ └── SystemSqlLogList.class.php ├── output │ └── .gitignore ├── reports │ └── .htaccess ├── resources │ ├── bemvindo.html │ ├── checkbox.html │ ├── google_bar_chart.html │ ├── google_line_chart.html │ ├── google_pie_chart.html │ ├── mail_folders.html │ ├── profile.html │ ├── public.html │ ├── styles.css │ ├── system_database_browser.html │ ├── system_input_fuse_search.html │ ├── system_message_folders.html │ ├── system_message_form_view.html │ ├── system_notification_view.html │ ├── system_profile.html │ ├── system_reset_password.html │ ├── system_welcome_en.html │ ├── system_welcome_pt.html │ ├── systemmessageformview.html │ ├── systemnotificationview.html │ └── welcome.html ├── service │ └── system │ │ ├── SystemDatabaseInformationService.class.php │ │ ├── SystemDocumentUploaderService.class.php │ │ └── SystemPageService.class.php ├── templates │ ├── theme1 │ │ ├── application.css │ │ ├── images │ │ │ ├── adianti.png │ │ │ └── framework.png │ │ ├── layout.html │ │ ├── libraries.html │ │ └── login.html │ ├── theme2 │ │ ├── application.css │ │ ├── gray.css │ │ ├── green.css │ │ ├── layout.html │ │ ├── libraries.html │ │ ├── login.html │ │ ├── metisMenu │ │ │ ├── metisMenu.css │ │ │ ├── metisMenu.js │ │ │ ├── metisMenu.min.css │ │ │ └── metisMenu.min.js │ │ ├── red.css │ │ ├── sb-admin-2.css │ │ └── sb-admin-2.js │ ├── theme3 │ │ ├── application.css │ │ ├── builder-menu.html │ │ ├── css │ │ │ ├── AdminLTE.css │ │ │ ├── AdminLTE.min.css │ │ │ └── skins │ │ │ │ ├── _all-skins.css │ │ │ │ ├── _all-skins.min.css │ │ │ │ ├── skin-black-light.css │ │ │ │ ├── skin-black-light.min.css │ │ │ │ ├── skin-black.css │ │ │ │ ├── skin-black.min.css │ │ │ │ ├── skin-blue-light.css │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ ├── skin-blue.css │ │ │ │ ├── skin-blue.min.css │ │ │ │ ├── skin-green-light.css │ │ │ │ ├── skin-green-light.min.css │ │ │ │ ├── skin-green.css │ │ │ │ ├── skin-green.min.css │ │ │ │ ├── skin-purple-light.css │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ ├── skin-purple.css │ │ │ │ ├── skin-purple.min.css │ │ │ │ ├── skin-red-light.css │ │ │ │ ├── skin-red-light.min.css │ │ │ │ ├── skin-red.css │ │ │ │ ├── skin-red.min.css │ │ │ │ ├── skin-yellow-light.css │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ ├── skin-yellow.css │ │ │ │ └── skin-yellow.min.css │ │ ├── img │ │ │ ├── avatar.png │ │ │ ├── avatar04.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar5.png │ │ │ ├── boxed-bg.jpg │ │ │ ├── boxed-bg.png │ │ │ ├── default-50x50.gif │ │ │ └── icons.png │ │ ├── js │ │ │ ├── app.js │ │ │ ├── app.min.js │ │ │ ├── custom.js │ │ │ ├── demo.js │ │ │ └── pages │ │ │ │ ├── dashboard.js │ │ │ │ └── dashboard2.js │ │ ├── layout.html │ │ ├── libraries.html │ │ └── login.html │ └── theme4 │ │ ├── application.css │ │ ├── builder-menu.html │ │ ├── css │ │ ├── fonts │ │ │ ├── 2fcrYFNaTjcS6g4U3t-Y5UEw0lE80llgEseQY3FEmqw.woff2 │ │ │ ├── 77FXFjRbGzN4aCrSFhlh3oX0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ ├── 97uahxiqZRoncBaCEI3aW4X0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ ├── Ks_cVxiCiwUWVsFWFA3Bjn-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ ├── NJ4vxlgWwWbEsv18dAhqnn-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ ├── PwZc-YbIL414wB9rB1IAPYX0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ ├── UX6i4JxQDm3fVTc1CPuwqoX0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ ├── _VYFx-s824kXq_Ul2BHqYH-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ ├── d-6IYplOFocCacKzxwXSOJBw1xU1rKptJj_0jans920.woff2 │ │ │ ├── isZ-wbCXNKAbnjo6_TwHToX0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ ├── jSN2CGVDbcVyCnfJfjSdfIX0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ ├── oMMgfZMQthOryQo9n22dcuvvDin1pK8aKteLpeZ5c0A.woff2 │ │ │ ├── sTdaA6j0Psb920Vjv-mrzH-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ ├── tnj4SB6DNbdaQnsM8CFqBX-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ └── uYECMKoHcO9x1wdmbyHIm3-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ ├── materialize.css │ │ ├── style.css │ │ ├── style.min.css │ │ ├── sweetalert.css │ │ └── themes │ │ │ ├── all-themes.css │ │ │ ├── all-themes.min.css │ │ │ ├── theme-amber.css │ │ │ ├── theme-amber.min.css │ │ │ ├── theme-black.css │ │ │ ├── theme-black.min.css │ │ │ ├── theme-blue-grey.css │ │ │ ├── theme-blue-grey.min.css │ │ │ ├── theme-blue.css │ │ │ ├── theme-blue.min.css │ │ │ ├── theme-brown.css │ │ │ ├── theme-brown.min.css │ │ │ ├── theme-cyan.css │ │ │ ├── theme-cyan.min.css │ │ │ ├── theme-deep-orange.css │ │ │ ├── theme-deep-orange.min.css │ │ │ ├── theme-deep-purple.css │ │ │ ├── theme-deep-purple.min.css │ │ │ ├── theme-green.css │ │ │ ├── theme-green.min.css │ │ │ ├── theme-grey.css │ │ │ ├── theme-grey.min.css │ │ │ ├── theme-indigo.css │ │ │ ├── theme-indigo.min.css │ │ │ ├── theme-light-blue.css │ │ │ ├── theme-light-blue.min.css │ │ │ ├── theme-lime.css │ │ │ ├── theme-lime.min.css │ │ │ ├── theme-orange.css │ │ │ ├── theme-orange.min.css │ │ │ ├── theme-pink.css │ │ │ ├── theme-pink.min.css │ │ │ ├── theme-purple.css │ │ │ ├── theme-purple.min.css │ │ │ ├── theme-red.css │ │ │ ├── theme-red.min.css │ │ │ ├── theme-teal.css │ │ │ ├── theme-teal.min.css │ │ │ ├── theme-yellow.css │ │ │ └── theme-yellow.min.css │ │ ├── images │ │ ├── animation-bg.jpg │ │ ├── screenshot.png │ │ ├── thumbs-up.png │ │ ├── user-img-background.jpg │ │ ├── user.jpg │ │ └── user.png │ │ ├── js │ │ ├── admin-login.js │ │ ├── admin.js │ │ ├── custom.js │ │ ├── demo.js │ │ ├── helpers.js │ │ ├── pages │ │ │ ├── cards │ │ │ │ ├── basic.js │ │ │ │ └── colored.js │ │ │ ├── charts │ │ │ │ ├── chartjs.js │ │ │ │ ├── flot.js │ │ │ │ ├── jquery-knob.js │ │ │ │ ├── morris.js │ │ │ │ └── sparkline.js │ │ │ ├── examples │ │ │ │ ├── forgot-password.js │ │ │ │ ├── sign-in.js │ │ │ │ └── sign-up.js │ │ │ ├── forms │ │ │ │ ├── advanced-form-elements.js │ │ │ │ ├── basic-form-elements.js │ │ │ │ ├── editors.js │ │ │ │ ├── form-validation.js │ │ │ │ └── form-wizard.js │ │ │ ├── index.js │ │ │ ├── maps │ │ │ │ ├── google.js │ │ │ │ └── jvectormap.js │ │ │ ├── medias │ │ │ │ └── image-gallery.js │ │ │ ├── tables │ │ │ │ ├── editable-table.js │ │ │ │ └── jquery-datatable.js │ │ │ ├── ui │ │ │ │ ├── animations.js │ │ │ │ ├── dialogs.js │ │ │ │ ├── modals.js │ │ │ │ ├── notifications.js │ │ │ │ ├── range-sliders.js │ │ │ │ ├── sortable-nestable.js │ │ │ │ └── tooltips-popovers.js │ │ │ └── widgets │ │ │ │ └── infobox │ │ │ │ ├── infobox-1.js │ │ │ │ ├── infobox-2.js │ │ │ │ ├── infobox-3.js │ │ │ │ ├── infobox-4.js │ │ │ │ └── infobox-5.js │ │ ├── script.js │ │ └── sweetalert.min.js │ │ ├── layout.html │ │ ├── libraries.html │ │ ├── login.html │ │ └── plugins │ │ ├── animate-css │ │ ├── animate.css │ │ └── animate.min.css │ │ ├── bootstrap-material-datetimepicker │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ └── bootstrap-material-datetimepicker.css │ │ ├── font │ │ │ ├── Material-Design-Icons.eot │ │ │ ├── Material-Design-Icons.svg │ │ │ ├── Material-Design-Icons.ttf │ │ │ ├── Material-Design-Icons.woff │ │ │ └── Material-Design-Icons.woff2 │ │ ├── index.html │ │ ├── js │ │ │ └── bootstrap-material-datetimepicker.js │ │ └── package.json │ │ ├── jquery-slimscroll │ │ └── jquery.slimscroll.js │ │ ├── moment │ │ └── moment-with-locales.min.js │ │ └── node-waves │ │ ├── waves.css │ │ ├── waves.js │ │ ├── waves.min.css │ │ ├── waves.min.js │ │ └── waves.min.js.map └── view │ └── .htaccess ├── cmd.php ├── composer.json ├── composer.lock ├── docker-compose.yml ├── dockerfile ├── download.php ├── engine.php ├── files ├── .htaccess └── documents │ └── .htaccess ├── index.php ├── init.php ├── lib ├── adianti │ ├── LICENSE │ ├── base │ │ ├── .htaccess │ │ ├── AdiantiFileSaveTrait.php │ │ ├── AdiantiMasterDetailTrait.php │ │ ├── AdiantiStandardControlTrait.php │ │ ├── AdiantiStandardFormListTrait.php │ │ ├── AdiantiStandardFormTrait.php │ │ ├── AdiantiStandardListTrait.php │ │ ├── TStandardForm.php │ │ ├── TStandardFormList.php │ │ ├── TStandardList.php │ │ └── TStandardSeek.php │ ├── control │ │ ├── .htaccess │ │ ├── TAction.php │ │ ├── TPage.php │ │ └── TWindow.php │ ├── core │ │ ├── AdiantiApplicationConfig.php │ │ ├── AdiantiApplicationLoader.php │ │ ├── AdiantiClassMap.php │ │ ├── AdiantiCoreApplication.php │ │ ├── AdiantiCoreLoader.php │ │ ├── AdiantiCoreTranslator.php │ │ └── AdiantiTemplateParser.php │ ├── database │ │ ├── .htaccess │ │ ├── TConnection.php │ │ ├── TCriteria.php │ │ ├── TDatabase.php │ │ ├── TExpression.php │ │ ├── TFilter.php │ │ ├── TRecord.php │ │ ├── TRepository.php │ │ ├── TSqlDelete.php │ │ ├── TSqlInsert.php │ │ ├── TSqlMultiInsert.php │ │ ├── TSqlSelect.php │ │ ├── TSqlStatement.php │ │ ├── TSqlUpdate.php │ │ └── TTransaction.php │ ├── images │ │ ├── error.png │ │ ├── ico_add.png │ │ ├── ico_apply.png │ │ ├── ico_back.png │ │ ├── ico_choose.png │ │ ├── ico_close.png │ │ ├── ico_datagrid.png │ │ ├── ico_delete.png │ │ ├── ico_down.png │ │ ├── ico_edit.png │ │ ├── ico_email.png │ │ ├── ico_error.png │ │ ├── ico_find.png │ │ ├── ico_help.png │ │ ├── ico_new.png │ │ ├── ico_no.png │ │ ├── ico_ok.png │ │ ├── ico_print.png │ │ ├── ico_question.png │ │ ├── ico_save.png │ │ ├── ico_up.png │ │ ├── ico_view.png │ │ ├── info.png │ │ ├── menu-bar-gradient-gray.gif │ │ ├── menu-bar-gradient.jpg │ │ ├── menu-bar-right-arrow.gif │ │ ├── menu-bar-right-arrow.png │ │ ├── menu_strip_bg.jpg │ │ ├── menu_strip_bg_gray.gif │ │ ├── menu_strip_down_arrow.gif │ │ ├── menu_strip_down_arrow.png │ │ ├── menu_strip_separator-gray.gif │ │ ├── menu_strip_separator.gif │ │ ├── question.png │ │ ├── tbutton_back.gif │ │ ├── tdate-gtk.png │ │ ├── tdate.png │ │ ├── tfield_back.gif │ │ ├── tfield_back_focus.gif │ │ ├── tfile_loader.gif │ │ └── ttext_back.gif │ ├── include │ │ ├── adianti.css │ │ ├── adianti.js │ │ ├── adianti.min.css │ │ ├── adianti.min.js │ │ ├── components.css │ │ ├── components.js │ │ ├── components.min.css │ │ ├── components.min.js │ │ ├── fonts │ │ │ └── opensans │ │ │ │ └── v13 │ │ │ │ └── cJZKeOuBrn4kERxqtaUH3ZBw1xU1rKptJj_0jans920.woff2 │ │ ├── talert │ │ │ └── talert.css │ │ ├── tbreadcrumb │ │ │ ├── footer-arrow.png │ │ │ ├── home.png │ │ │ └── tbreadcrumb.css │ │ ├── tbutton │ │ │ └── tbutton.js │ │ ├── tcalendar │ │ │ └── tcalendar.css │ │ ├── tcheckgroup │ │ │ └── tcheckgroup.js │ │ ├── tcolor │ │ │ ├── tcolor.css │ │ │ └── tcolor.js │ │ ├── tcombo │ │ │ ├── tcombo.css │ │ │ └── tcombo.js │ │ ├── tcombocombined │ │ │ └── tcombocombined.js │ │ ├── tdatagrid │ │ │ ├── tdatagrid.css │ │ │ └── tdatagrid.js │ │ ├── tdate │ │ │ ├── tdate.css │ │ │ └── tdate.js │ │ ├── tdatetime │ │ │ ├── tdatetime.css │ │ │ └── tdatetime.js │ │ ├── tdbentry │ │ │ └── tdbentry.js │ │ ├── tdbmultisearch │ │ │ └── tdbmultisearch.js │ │ ├── tdbuniquesearch │ │ │ └── tdbuniquesearch.js │ │ ├── tdialog │ │ │ ├── tdialog.css │ │ │ └── tdialog.js │ │ ├── tentry │ │ │ └── tentry.js │ │ ├── texpander │ │ │ └── texpander.js │ │ ├── tfield │ │ │ ├── tfield.css │ │ │ └── tfield.js │ │ ├── tfieldlist │ │ │ └── tfieldlist.js │ │ ├── tfile │ │ │ ├── tfile.css │ │ │ └── tfile.js │ │ ├── tform │ │ │ ├── tform.css │ │ │ └── tform.js │ │ ├── tframe │ │ │ └── tframe.css │ │ ├── tfullcalendar │ │ │ └── tfullcalendar.js │ │ ├── thtmleditor │ │ │ └── thtmleditor.js │ │ ├── ticon │ │ │ ├── ticon.css │ │ │ └── ticon.js │ │ ├── tjquerydialog │ │ │ └── tjquerydialog.js │ │ ├── tlabel │ │ │ └── tlabel.css │ │ ├── tmenu │ │ │ └── tmenu.css │ │ ├── tmenubar │ │ │ └── tmenubar.js │ │ ├── tmultientry │ │ │ └── tmultientry.js │ │ ├── tmultifield │ │ │ ├── tmultifield.css │ │ │ └── tmultifield.js │ │ ├── tmultifile │ │ │ └── tmultifile.js │ │ ├── tmultisearch │ │ │ ├── tmultisearch.css │ │ │ └── tmultisearch.js │ │ ├── tnotebook │ │ │ └── tnotebook.css │ │ ├── tooltip │ │ │ └── tooltip.css │ │ ├── tpagenavigation │ │ │ └── tpagenavigation.css │ │ ├── tradiogroup │ │ │ └── tradiogroup.js │ │ ├── tscroll │ │ │ └── tscroll.css │ │ ├── tseekbutton │ │ │ ├── tseekbutton.css │ │ │ └── tseekbutton.js │ │ ├── tselect │ │ │ └── tselect.js │ │ ├── tslider │ │ │ └── tslider.js │ │ ├── tsortlist │ │ │ ├── tsortlist.css │ │ │ └── tsortlist.js │ │ ├── tsourcecode │ │ │ └── tsourcecode.css │ │ ├── tspinner │ │ │ ├── tspinner.css │ │ │ └── tspinner.js │ │ ├── ttable │ │ │ └── ttable.js │ │ ├── ttreeview │ │ │ └── ttreeview.js │ │ └── twindow │ │ │ └── twindow.css │ ├── log │ │ ├── AdiantiLoggerInterface.php │ │ ├── TLogger.php │ │ ├── TLoggerHTML.php │ │ ├── TLoggerSTD.php │ │ ├── TLoggerTXT.php │ │ └── TLoggerXML.php │ ├── registry │ │ ├── AdiantiRegistryInterface.php │ │ ├── TAPCache.php │ │ └── TSession.php │ ├── service │ │ ├── AdiantiAutocompleteService.php │ │ ├── AdiantiMultiSearchService.php │ │ ├── AdiantiRecordService.php │ │ └── AdiantiUploaderService.php │ ├── validator │ │ ├── TCNPJValidator.php │ │ ├── TCPFValidator.php │ │ ├── TEmailValidator.php │ │ ├── TFieldValidator.php │ │ ├── TMaxLengthValidator.php │ │ ├── TMaxValueValidator.php │ │ ├── TMinLengthValidator.php │ │ ├── TMinValueValidator.php │ │ ├── TNumericValidator.php │ │ └── TRequiredValidator.php │ ├── widget │ │ ├── .htaccess │ │ ├── base │ │ │ ├── TElement.php │ │ │ ├── TScript.php │ │ │ └── TStyle.php │ │ ├── container │ │ │ ├── TExpander.php │ │ │ ├── TFrame.php │ │ │ ├── THBox.php │ │ │ ├── TJQueryDialog.php │ │ │ ├── TNotebook.php │ │ │ ├── TPanel.php │ │ │ ├── TPanelGroup.php │ │ │ ├── TScroll.php │ │ │ ├── TTable.php │ │ │ ├── TTableCell.php │ │ │ ├── TTableRow.php │ │ │ └── TVBox.php │ │ ├── datagrid │ │ │ ├── TDataGrid.php │ │ │ ├── TDataGridAction.php │ │ │ ├── TDataGridActionGroup.php │ │ │ ├── TDataGridColumn.php │ │ │ └── TPageNavigation.php │ │ ├── dialog │ │ │ ├── TAlert.php │ │ │ ├── TInputDialog.php │ │ │ ├── TMessage.php │ │ │ └── TQuestion.php │ │ ├── form │ │ │ ├── AdiantiFormInterface.php │ │ │ ├── AdiantiWidgetInterface.php │ │ │ ├── TButton.php │ │ │ ├── TCheckButton.php │ │ │ ├── TCheckGroup.php │ │ │ ├── TColor.php │ │ │ ├── TCombo.php │ │ │ ├── TComboCombined.php │ │ │ ├── TDate.php │ │ │ ├── TDateTime.php │ │ │ ├── TEntry.php │ │ │ ├── TField.php │ │ │ ├── TFieldList.php │ │ │ ├── TFile.php │ │ │ ├── TForm.php │ │ │ ├── TFormSeparator.php │ │ │ ├── THidden.php │ │ │ ├── THtmlEditor.php │ │ │ ├── TIcon.php │ │ │ ├── TLabel.php │ │ │ ├── TMultiEntry.php │ │ │ ├── TMultiField.php │ │ │ ├── TMultiFile.php │ │ │ ├── TMultiSearch.php │ │ │ ├── TNumeric.php │ │ │ ├── TPassword.php │ │ │ ├── TRadioButton.php │ │ │ ├── TRadioGroup.php │ │ │ ├── TSeekButton.php │ │ │ ├── TSelect.php │ │ │ ├── TSlider.php │ │ │ ├── TSortList.php │ │ │ ├── TSpinner.php │ │ │ ├── TText.php │ │ │ ├── TTime.php │ │ │ └── TUniqueSearch.php │ │ ├── menu │ │ │ ├── TMenu.php │ │ │ ├── TMenuBar.php │ │ │ ├── TMenuItem.php │ │ │ └── TMenuParser.php │ │ ├── template │ │ │ └── THtmlRenderer.php │ │ ├── util │ │ │ ├── TActionLink.php │ │ │ ├── TBreadCrumb.php │ │ │ ├── TCalendar.php │ │ │ ├── TDropDown.php │ │ │ ├── TExceptionView.php │ │ │ ├── TFullCalendar.php │ │ │ ├── THyperLink.php │ │ │ ├── TImage.php │ │ │ ├── TProgressBar.php │ │ │ ├── TSourceCode.php │ │ │ ├── TTextDisplay.php │ │ │ ├── TTreeView.php │ │ │ └── TXMLBreadCrumb.php │ │ └── wrapper │ │ │ ├── TDBCheckGroup.php │ │ │ ├── TDBCombo.php │ │ │ ├── TDBEntry.php │ │ │ ├── TDBMultiSearch.php │ │ │ ├── TDBRadioGroup.php │ │ │ ├── TDBSeekButton.php │ │ │ ├── TDBSelect.php │ │ │ ├── TDBSortList.php │ │ │ ├── TDBUniqueSearch.php │ │ │ ├── TQuickForm.php │ │ │ ├── TQuickGrid.php │ │ │ └── TQuickNotebookForm.php │ └── wrapper │ │ ├── AdiantiPDFDesigner.php │ │ ├── AdiantiUIBuilder.php │ │ ├── BootstrapDatagridWrapper.php │ │ ├── BootstrapFormBuilder.php │ │ ├── BootstrapFormWrapper.php │ │ └── BootstrapNotebookWrapper.php ├── bootstrap │ ├── config.json │ ├── css │ │ ├── boostrap-plugins.min.css │ │ ├── bootstrap-colorpicker.css │ │ ├── bootstrap-colorpicker.css.map │ │ ├── bootstrap-colorpicker.min.css │ │ ├── bootstrap-colorpicker.min.css.map │ │ ├── bootstrap-datepicker.css │ │ ├── bootstrap-datepicker.min.css │ │ ├── bootstrap-datetimepicker.min.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.vertical-tabs.css │ │ ├── bootstrap.vertical-tabs.min.css │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ ├── fontawesome-iconpicker.css │ │ ├── fontawesome-iconpicker.min.css │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-ar-AR.min.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-bg-BG.min.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-ca-ES.min.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-cs-CZ.min.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-da-DK.min.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-de-DE.min.js │ │ │ ├── summernote-el-GR.js │ │ │ ├── summernote-el-GR.min.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-ES.min.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-es-EU.min.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fa-IR.min.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fi-FI.min.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-fr-FR.min.js │ │ │ ├── summernote-gl-ES.js │ │ │ ├── summernote-gl-ES.min.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-he-IL.min.js │ │ │ ├── summernote-hr-HR.js │ │ │ ├── summernote-hr-HR.min.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-hu-HU.min.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-id-ID.min.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-it-IT.min.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ja-JP.min.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-ko-KR.min.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-lt-LT.min.js │ │ │ ├── summernote-lt-LV.js │ │ │ ├── summernote-lt-LV.min.js │ │ │ ├── summernote-mn-MN.js │ │ │ ├── summernote-mn-MN.min.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nb-NO.min.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-nl-NL.min.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pl-PL.min.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-BR.min.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-pt-PT.min.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ro-RO.min.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-ru-RU.min.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sk-SK.min.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sl-SI.min.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sr-RS.min.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-sv-SE.min.js │ │ │ ├── summernote-ta-IN.js │ │ │ ├── summernote-ta-IN.min.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-th-TH.min.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-tr-TR.min.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-uk-UA.min.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-vi-VN.min.js │ │ │ ├── summernote-zh-CN.js │ │ │ ├── summernote-zh-CN.min.js │ │ │ ├── summernote-zh-TW.js │ │ │ └── summernote-zh-TW.min.js │ │ └── summernote.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ └── bootstrap-colorpicker │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ └── js │ │ ├── bootbox.min.js │ │ ├── bootstrap-colorpicker.js │ │ ├── bootstrap-colorpicker.min.js │ │ ├── bootstrap-datepicker.js │ │ ├── bootstrap-datepicker.min.js │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap-plugins.js │ │ ├── bootstrap-plugins.min.js │ │ ├── bootstrap-plugins.txt │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── fontawesome-iconpicker.js │ │ ├── fontawesome-iconpicker.min.js │ │ ├── lang │ │ ├── summernote-ar-AR.js │ │ ├── summernote-ar-AR.min.js │ │ ├── summernote-bg-BG.js │ │ ├── summernote-bg-BG.min.js │ │ ├── summernote-ca-ES.js │ │ ├── summernote-ca-ES.min.js │ │ ├── summernote-cs-CZ.js │ │ ├── summernote-cs-CZ.min.js │ │ ├── summernote-da-DK.js │ │ ├── summernote-da-DK.min.js │ │ ├── summernote-de-DE.js │ │ ├── summernote-de-DE.min.js │ │ ├── summernote-el-GR.js │ │ ├── summernote-el-GR.min.js │ │ ├── summernote-es-ES.js │ │ ├── summernote-es-ES.min.js │ │ ├── summernote-es-EU.js │ │ ├── summernote-es-EU.min.js │ │ ├── summernote-fa-IR.js │ │ ├── summernote-fa-IR.min.js │ │ ├── summernote-fi-FI.js │ │ ├── summernote-fi-FI.min.js │ │ ├── summernote-fr-FR.js │ │ ├── summernote-fr-FR.min.js │ │ ├── summernote-gl-ES.js │ │ ├── summernote-gl-ES.min.js │ │ ├── summernote-he-IL.js │ │ ├── summernote-he-IL.min.js │ │ ├── summernote-hr-HR.js │ │ ├── summernote-hr-HR.min.js │ │ ├── summernote-hu-HU.js │ │ ├── summernote-hu-HU.min.js │ │ ├── summernote-id-ID.js │ │ ├── summernote-id-ID.min.js │ │ ├── summernote-it-IT.js │ │ ├── summernote-it-IT.min.js │ │ ├── summernote-ja-JP.js │ │ ├── summernote-ja-JP.min.js │ │ ├── summernote-ko-KR.js │ │ ├── summernote-ko-KR.min.js │ │ ├── summernote-lt-LT.js │ │ ├── summernote-lt-LT.min.js │ │ ├── summernote-lt-LV.js │ │ ├── summernote-lt-LV.min.js │ │ ├── summernote-mn-MN.js │ │ ├── summernote-mn-MN.min.js │ │ ├── summernote-nb-NO.js │ │ ├── summernote-nb-NO.min.js │ │ ├── summernote-nl-NL.js │ │ ├── summernote-nl-NL.min.js │ │ ├── summernote-pl-PL.js │ │ ├── summernote-pl-PL.min.js │ │ ├── summernote-pt-BR.js │ │ ├── summernote-pt-BR.min.js │ │ ├── summernote-pt-PT.js │ │ ├── summernote-pt-PT.min.js │ │ ├── summernote-ro-RO.js │ │ ├── summernote-ro-RO.min.js │ │ ├── summernote-ru-RU.js │ │ ├── summernote-ru-RU.min.js │ │ ├── summernote-sk-SK.js │ │ ├── summernote-sk-SK.min.js │ │ ├── summernote-sl-SI.js │ │ ├── summernote-sl-SI.min.js │ │ ├── summernote-sr-RS-Latin.js │ │ ├── summernote-sr-RS-Latin.min.js │ │ ├── summernote-sr-RS.js │ │ ├── summernote-sr-RS.min.js │ │ ├── summernote-sv-SE.js │ │ ├── summernote-sv-SE.min.js │ │ ├── summernote-ta-IN.js │ │ ├── summernote-ta-IN.min.js │ │ ├── summernote-th-TH.js │ │ ├── summernote-th-TH.min.js │ │ ├── summernote-tr-TR.js │ │ ├── summernote-tr-TR.min.js │ │ ├── summernote-uk-UA.js │ │ ├── summernote-uk-UA.min.js │ │ ├── summernote-vi-VN.js │ │ ├── summernote-vi-VN.min.js │ │ ├── summernote-zh-CN.js │ │ ├── summernote-zh-CN.min.js │ │ ├── summernote-zh-TW.js │ │ └── summernote-zh-TW.min.js │ │ ├── locales │ │ ├── bootstrap-datepicker-en-CA.js │ │ ├── bootstrap-datepicker.ar-tn.js │ │ ├── bootstrap-datepicker.ar.js │ │ ├── bootstrap-datepicker.az.js │ │ ├── bootstrap-datepicker.bg.js │ │ ├── bootstrap-datepicker.bn.js │ │ ├── bootstrap-datepicker.br.js │ │ ├── bootstrap-datepicker.bs.js │ │ ├── bootstrap-datepicker.ca.js │ │ ├── bootstrap-datepicker.cs.js │ │ ├── bootstrap-datepicker.cy.js │ │ ├── bootstrap-datepicker.da.js │ │ ├── bootstrap-datepicker.de.js │ │ ├── bootstrap-datepicker.el.js │ │ ├── bootstrap-datepicker.en-AU.js │ │ ├── bootstrap-datepicker.en-CA.js │ │ ├── bootstrap-datepicker.en-GB.js │ │ ├── bootstrap-datepicker.en-IE.js │ │ ├── bootstrap-datepicker.en-NZ.js │ │ ├── bootstrap-datepicker.en-ZA.js │ │ ├── bootstrap-datepicker.eo.js │ │ ├── bootstrap-datepicker.es.js │ │ ├── bootstrap-datepicker.et.js │ │ ├── bootstrap-datepicker.eu.js │ │ ├── bootstrap-datepicker.fa.js │ │ ├── bootstrap-datepicker.fi.js │ │ ├── bootstrap-datepicker.fo.js │ │ ├── bootstrap-datepicker.fr-CH.js │ │ ├── bootstrap-datepicker.fr.js │ │ ├── bootstrap-datepicker.gl.js │ │ ├── bootstrap-datepicker.he.js │ │ ├── bootstrap-datepicker.hi.js │ │ ├── bootstrap-datepicker.hr.js │ │ ├── bootstrap-datepicker.hu.js │ │ ├── bootstrap-datepicker.hy.js │ │ ├── bootstrap-datepicker.id.js │ │ ├── bootstrap-datepicker.is.js │ │ ├── bootstrap-datepicker.it-CH.js │ │ ├── bootstrap-datepicker.it.js │ │ ├── bootstrap-datepicker.ja.js │ │ ├── bootstrap-datepicker.ka.js │ │ ├── bootstrap-datepicker.kh.js │ │ ├── bootstrap-datepicker.kk.js │ │ ├── bootstrap-datepicker.km.js │ │ ├── bootstrap-datepicker.ko.js │ │ ├── bootstrap-datepicker.kr.js │ │ ├── bootstrap-datepicker.lt.js │ │ ├── bootstrap-datepicker.lv.js │ │ ├── bootstrap-datepicker.me.js │ │ ├── bootstrap-datepicker.mk.js │ │ ├── bootstrap-datepicker.mn.js │ │ ├── bootstrap-datepicker.ms.js │ │ ├── bootstrap-datepicker.nb.js │ │ ├── bootstrap-datepicker.nl-BE.js │ │ ├── bootstrap-datepicker.nl.js │ │ ├── bootstrap-datepicker.no.js │ │ ├── bootstrap-datepicker.oc.js │ │ ├── bootstrap-datepicker.pl.js │ │ ├── bootstrap-datepicker.pt-BR.js │ │ ├── bootstrap-datepicker.pt.js │ │ ├── bootstrap-datepicker.ro.js │ │ ├── bootstrap-datepicker.rs-latin.js │ │ ├── bootstrap-datepicker.rs.js │ │ ├── bootstrap-datepicker.ru.js │ │ ├── bootstrap-datepicker.si.js │ │ ├── bootstrap-datepicker.sk.js │ │ ├── bootstrap-datepicker.sl.js │ │ ├── bootstrap-datepicker.sq.js │ │ ├── bootstrap-datepicker.sr-latin.js │ │ ├── bootstrap-datepicker.sr.js │ │ ├── bootstrap-datepicker.sv.js │ │ ├── bootstrap-datepicker.sw.js │ │ ├── bootstrap-datepicker.ta.js │ │ ├── bootstrap-datepicker.tg.js │ │ ├── bootstrap-datepicker.th.js │ │ ├── bootstrap-datepicker.tr.js │ │ ├── bootstrap-datepicker.uk.js │ │ ├── bootstrap-datepicker.uz-cyrl.js │ │ ├── bootstrap-datepicker.uz-latn.js │ │ ├── bootstrap-datepicker.vi.js │ │ ├── bootstrap-datepicker.zh-CN.js │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── summernote.js │ │ └── summernote.min.js ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── screen-reader.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── jquery │ ├── dataTables.responsive.css │ ├── dataTables.responsive.min.js │ ├── fullcalendar-pt.js │ ├── fullcalendar.css │ ├── fullcalendar.js │ ├── fullcalendar.min.js │ ├── i18n │ │ ├── jquery-ui-i18n.js │ │ ├── jquery.ui.datepicker-af.js │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ ├── jquery.ui.datepicker-ar.js │ │ ├── jquery.ui.datepicker-az.js │ │ ├── jquery.ui.datepicker-bg.js │ │ ├── jquery.ui.datepicker-bs.js │ │ ├── jquery.ui.datepicker-ca.js │ │ ├── jquery.ui.datepicker-cs.js │ │ ├── jquery.ui.datepicker-da.js │ │ ├── jquery.ui.datepicker-de.js │ │ ├── jquery.ui.datepicker-el.js │ │ ├── jquery.ui.datepicker-en-AU.js │ │ ├── jquery.ui.datepicker-en-GB.js │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ ├── jquery.ui.datepicker-eo.js │ │ ├── jquery.ui.datepicker-es.js │ │ ├── jquery.ui.datepicker-et.js │ │ ├── jquery.ui.datepicker-eu.js │ │ ├── jquery.ui.datepicker-fa.js │ │ ├── jquery.ui.datepicker-fi.js │ │ ├── jquery.ui.datepicker-fo.js │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ ├── jquery.ui.datepicker-fr.js │ │ ├── jquery.ui.datepicker-gl.js │ │ ├── jquery.ui.datepicker-he.js │ │ ├── jquery.ui.datepicker-hr.js │ │ ├── jquery.ui.datepicker-hu.js │ │ ├── jquery.ui.datepicker-hy.js │ │ ├── jquery.ui.datepicker-id.js │ │ ├── jquery.ui.datepicker-is.js │ │ ├── jquery.ui.datepicker-it.js │ │ ├── jquery.ui.datepicker-ja.js │ │ ├── jquery.ui.datepicker-ko.js │ │ ├── jquery.ui.datepicker-kz.js │ │ ├── jquery.ui.datepicker-lt.js │ │ ├── jquery.ui.datepicker-lv.js │ │ ├── jquery.ui.datepicker-ml.js │ │ ├── jquery.ui.datepicker-ms.js │ │ ├── jquery.ui.datepicker-nl.js │ │ ├── jquery.ui.datepicker-no.js │ │ ├── jquery.ui.datepicker-pl.js │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ ├── jquery.ui.datepicker-pt.js │ │ ├── jquery.ui.datepicker-rm.js │ │ ├── jquery.ui.datepicker-ro.js │ │ ├── jquery.ui.datepicker-ru.js │ │ ├── jquery.ui.datepicker-sk.js │ │ ├── jquery.ui.datepicker-sl.js │ │ ├── jquery.ui.datepicker-sq.js │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ ├── jquery.ui.datepicker-sr.js │ │ ├── jquery.ui.datepicker-sv.js │ │ ├── jquery.ui.datepicker-ta.js │ │ ├── jquery.ui.datepicker-th.js │ │ ├── jquery.ui.datepicker-tr.js │ │ ├── jquery.ui.datepicker-uk.js │ │ ├── jquery.ui.datepicker-vi.js │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ └── jquery.ui.datepicker-zh-TW.js │ ├── images │ │ ├── buttons.gif │ │ ├── ico_folder.png │ │ ├── ico_folder_open.png │ │ ├── select2-spinner.gif │ │ ├── select2.png │ │ ├── select2x2.png │ │ ├── toolbar.gif │ │ ├── treeview-default-line.gif │ │ ├── treeview-default.gif │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── jquery-licence.txt │ ├── jquery-migrate-3.0.0.js │ ├── jquery-plugins.js │ ├── jquery-plugins.min.css │ ├── jquery-plugins.min.js │ ├── jquery-plugins.txt │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ ├── jquery.autocomplete.css │ ├── jquery.autocomplete.min.js │ ├── jquery.blockUI.js │ ├── jquery.blockUI.min.js │ ├── jquery.dataTables.min.css │ ├── jquery.dataTables.min.js │ ├── jquery.editinplace.js │ ├── jquery.editinplace.min.js │ ├── jquery.imask.min.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.scrollto.min.js │ ├── jquery.treeview.css │ ├── jquery.treeview.js │ ├── jquery.treeview.min.css │ ├── jquery.treeview.min.js │ ├── moment.min.js │ ├── select2-bootstrap.css │ ├── select2.css │ ├── select2.js │ ├── select2.min.css │ ├── select2.min.js │ └── select2_locale_pt.js └── math │ ├── Lexer.php │ ├── Operator.php │ ├── Parser.php │ ├── Token.php │ └── translationstrategy │ ├── ShuntingYard.php │ └── TranslationStrategyInterface.php ├── menu.xml ├── phinx.yml └── tmp └── .htaccess /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | vendor 3 | -------------------------------------------------------------------------------- /app/config/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /dev/null 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /app/config/application.ini: -------------------------------------------------------------------------------- 1 | [general] 2 | timezone = America/Sao_Paulo 3 | language = pt 4 | application = template 5 | theme = theme3 6 | seed = h6d587dfgh5df7h 7 | locale = pt_BR 8 | 9 | [permission] 10 | ; Permite que usuários criem conta (auto registro) - por meio de um link na tela de login 11 | user_register = "1" 12 | ; Permite que usuários resetem a senha - por meio de um link na tela de login 13 | reset_password = "1" 14 | ; Lista de grupos default para usuários que se auto registrarem 15 | default_groups = "2" 16 | ; Código do programa inicial para usuários que se auto registrarem 17 | default_screen = "10" 18 | 19 | ; Public classes, anyone (logged or not) has access 20 | public_classes[] = PublicForm 21 | public_classes[] = PublicView 22 | public_classes[] = SystemRequestPasswordResetForm 23 | public_classes[] = SystemPasswordResetForm 24 | public_classes[] = SystemModulesCheckView 25 | public_classes[] = SystemRegistrationForm 26 | -------------------------------------------------------------------------------- /app/config/communication.ini: -------------------------------------------------------------------------------- 1 | host = "db" 2 | port = 3 | name = "development_db" 4 | user = "root" 5 | pass = "root" 6 | type = "mysql" 7 | prep = "1" 8 | -------------------------------------------------------------------------------- /app/config/log.ini: -------------------------------------------------------------------------------- 1 | host = "db" 2 | port = 3 | name = "development_db" 4 | user = "root" 5 | pass = "root" 6 | type = "mysql" 7 | prep = "1" 8 | -------------------------------------------------------------------------------- /app/config/permission.ini: -------------------------------------------------------------------------------- 1 | host = "db" 2 | port = 3 | name = "development_db" 4 | user = "root" 5 | pass = "root" 6 | type = "mysql" 7 | prep = "1" 8 | -------------------------------------------------------------------------------- /app/config/sample.ini: -------------------------------------------------------------------------------- 1 | host = 2 | name = 3 | user = 4 | pass = 5 | type = -------------------------------------------------------------------------------- /app/control/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /app/control/CommonPage.class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/control/admin/EmptyPage.class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/control/public/PublicView.class.php: -------------------------------------------------------------------------------- 1 | enableSection('main', array()); 12 | 13 | $panel = new TPanelGroup('Public!'); 14 | $panel->add($html); 15 | $panel->style = 'margin: 100px'; 16 | 17 | // add the template to the page 18 | parent::add( $panel ); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/database/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /app/database/communication.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/database/communication.db -------------------------------------------------------------------------------- /app/database/log.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/database/log.db -------------------------------------------------------------------------------- /app/database/log.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE system_change_log ( 2 | id INTEGER PRIMARY KEY NOT NULL, 3 | logdate timestamp, 4 | login TEXT, 5 | tablename TEXT, 6 | primarykey TEXT, 7 | pkvalue TEXT, 8 | operation TEXT, 9 | columnname TEXT, 10 | oldvalue TEXT, 11 | newvalue TEXT); 12 | 13 | CREATE TABLE system_sql_log ( 14 | id INTEGER PRIMARY KEY NOT NULL, 15 | logdate timestamp, 16 | login TEXT, 17 | database_name TEXT, 18 | sql_command TEXT, 19 | statement_type TEXT); 20 | 21 | CREATE TABLE system_access_log ( 22 | id INTEGER PRIMARY KEY NOT NULL, 23 | sessionid text, 24 | login text, 25 | login_time timestamp, 26 | logout_time timestamp); -------------------------------------------------------------------------------- /app/database/migrations/20170505190148_create_system_group_table.php: -------------------------------------------------------------------------------- 1 | table('system_group'); 10 | $table->addColumn('name', 'string', array('limit' => 100)) 11 | ->create(); 12 | 13 | $data = [ 14 | ['id' => 1, 'name' => 'Admin'], 15 | ['id' => 2, 'name' => 'Standard'], 16 | ]; 17 | 18 | $this->insert('system_group', $data); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/database/migrations/20170505194209_create_system_unit_table.php: -------------------------------------------------------------------------------- 1 | table('system_unit'); 10 | $table->addColumn('name', 'string', array('limit' => 100)) 11 | ->create(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/database/migrations/20170505202210_create_system_user_group_table.php: -------------------------------------------------------------------------------- 1 | table('system_user_group'); 10 | $table->addColumn('system_user_id', 'integer') 11 | ->addColumn('system_group_id', 'integer') 12 | ->addForeignKey('system_user_id', 'system_user', array('id')) 13 | ->addForeignKey('system_group_id', 'system_group', array('id')) 14 | ->create(); 15 | 16 | $data = [ 17 | ['id' => 1, 'system_user_id' => 1, 'system_group_id' => 1], 18 | ['id' => 2, 'system_user_id' => 2, 'system_group_id' => 2], 19 | ['id' => 3, 'system_user_id' => 1, 'system_group_id' => 2] 20 | ]; 21 | 22 | $this->insert('system_user_group', $data); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/database/migrations/20170506134603_create_system_user_program_table.php: -------------------------------------------------------------------------------- 1 | table('system_user_program'); 10 | $table->addColumn('system_user_id', 'integer') 11 | ->addColumn('system_program_id', 'integer') 12 | ->addForeignKey('system_user_id', 'system_user', array('id')) 13 | ->addForeignKey('system_program_id', 'system_program', array('id')) 14 | ->create(); 15 | 16 | $data = ['id' => 1, 'system_user_id' => 2, 'system_program_id' => 7]; 17 | 18 | $this->insert('system_user_program', $data); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/database/migrations/20170506135318_create_system_preference_table.php: -------------------------------------------------------------------------------- 1 | table('system_preference', array('id' => false, 'primary_key' => 'id')); 10 | $table->addColumn('id', 'string', array('null' => false)) 11 | ->addColumn('value', 'string', array('null' => false)) 12 | ->create(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /app/database/migrations/20170506142054_create_system_message_table.php: -------------------------------------------------------------------------------- 1 | table('system_message'); 10 | $table->addColumn('system_user_id', 'integer') 11 | ->addColumn('system_user_to_id', 'integer') 12 | ->addColumn('subject', 'text', array('null' => false)) 13 | ->addColumn('message', 'text', array('null' => false)) 14 | ->addColumn('checked', 'string', array('limit' => 1)) 15 | ->addForeignKey('system_user_id', 'system_user', array('id')) 16 | ->addForeignKey('system_user_to_id', 'system_user', array('id')) 17 | ->create(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/database/migrations/20170506143159_create_system_document_category_table.php: -------------------------------------------------------------------------------- 1 | table('system_document_category'); 10 | $table->addColumn('name', 'string', array('null' => false)) 11 | ->create(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/database/migrations/20170506143519_create_system_document_table.php: -------------------------------------------------------------------------------- 1 | table('system_document'); 10 | $table->addColumn('system_user_id', 'integer') 11 | ->addColumn('title', 'string', array('null' => false)) 12 | ->addColumn('description', 'text', array('null' => false)) 13 | ->addColumn('category_id', 'integer') 14 | ->addColumn('submission_date', 'date') 15 | ->addColumn('archive_date', 'date') 16 | ->addColumn('filename', 'text') 17 | ->addForeignKey('system_user_id', 'system_user', array('id')) 18 | ->addForeignKey('category_id', 'system_document_category', array('id')) 19 | ->create(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/database/migrations/20170506144515_create_system_document_user_table.php: -------------------------------------------------------------------------------- 1 | table('system_document_user'); 10 | $table->addColumn('document_id', 'integer') 11 | ->addColumn('system_user_id', 'integer') 12 | ->addForeignKey('document_id', 'system_document', array('id')) 13 | ->addForeignKey('system_user_id', 'system_user', array('id')) 14 | ->create(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/database/migrations/20170506144801_create_system_document_group_table.php: -------------------------------------------------------------------------------- 1 | table('system_document_group'); 10 | $table->addColumn('document_id', 'integer') 11 | ->addColumn('system_group_id', 'integer') 12 | ->addForeignKey('document_id', 'system_document', array('id')) 13 | ->addForeignKey('system_group_id', 'system_group', array('id')) 14 | ->create(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/database/migrations/20170506165019_create_system_change_log_table.php: -------------------------------------------------------------------------------- 1 | table('system_change_log'); 10 | $table->addColumn('logdate', 'timestamp', array('default' => 'CURRENT_TIMESTAMP')) 11 | ->addColumn('login', 'string') 12 | ->addColumn('tablename', 'string') 13 | ->addColumn('primarykey', 'string') 14 | ->addColumn('pkvalue', 'string') 15 | ->addColumn('operation', 'string') 16 | ->addColumn('columnname', 'string') 17 | ->addColumn('oldvalue', 'string') 18 | ->addColumn('newvalue', 'string') 19 | ->create(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/database/migrations/20170506165428_create_system_sql_log_table.php: -------------------------------------------------------------------------------- 1 | table('system_sql_log'); 10 | $table->addColumn('logdate', 'timestamp', array('default' => 'CURRENT_TIMESTAMP')) 11 | ->addColumn('login', 'string') 12 | ->addColumn('database_name', 'string') 13 | ->addColumn('sql_command', 'text') 14 | ->addColumn('statement_type', 'string') 15 | ->create(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/database/migrations/20170506165843_create_system_access_log_table.php: -------------------------------------------------------------------------------- 1 | table('system_access_log'); 10 | $table->addColumn('sessionid', 'string') 11 | ->addColumn('login', 'string') 12 | ->addColumn('login_time', 'timestamp', array('default' => 'CURRENT_TIMESTAMP')) 13 | ->addColumn('logout_time', 'timestamp', array('default' => 'CURRENT_TIMESTAMP')) 14 | ->create(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/database/migrations/20180905213637_create_system_user_unit.php: -------------------------------------------------------------------------------- 1 | table('system_user_unit'); 10 | $table->addColumn('system_user_id', 'integer', array('null' => true)) 11 | ->addColumn('system_unit_id', 'integer', array('null' => true)) 12 | ->addForeignKey('system_user_id', 'system_user', array('id')) 13 | ->addForeignKey('system_unit_id', 'system_unit', array('id')) 14 | ->create(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/database/permission.asta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/database/permission.asta -------------------------------------------------------------------------------- /app/database/permission.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/database/permission.db -------------------------------------------------------------------------------- /app/forms/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /app/images/adianti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/images/adianti.png -------------------------------------------------------------------------------- /app/lib/include/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/lib/include/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /app/lib/include/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/lib/include/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /app/lib/pdf/font/courier.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /app/lib/pdf/font/courierb.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /app/lib/pdf/font/courierbi.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /app/lib/pdf/font/courieri.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /app/lib/pdf/license.txt: -------------------------------------------------------------------------------- 1 | Permission is hereby granted, free of charge, to any person obtaining a copy 2 | of this software to use, copy, modify, distribute, sublicense, and/or sell 3 | copies of the software, and to permit persons to whom the software is furnished 4 | to do so. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. -------------------------------------------------------------------------------- /app/lib/reports/ITableWriter.iface.php: -------------------------------------------------------------------------------- 1 | 33 | -------------------------------------------------------------------------------- /app/lib/reports/TAdiantiTableCell.class.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /app/lib/reports/TAdiantiTableRow.class.php: -------------------------------------------------------------------------------- 1 | 35 | -------------------------------------------------------------------------------- /app/lib/util/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /app/model/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /app/model/admin/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /dev/null 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /app/model/admin/EmptyPage.class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/model/admin/SystemGroupProgram.class.php: -------------------------------------------------------------------------------- 1 | 2 | {label} 3 | -------------------------------------------------------------------------------- /app/resources/public.html: -------------------------------------------------------------------------------- 1 | 2 |

3 | This is a public view test. 4 |

5 | -------------------------------------------------------------------------------- /app/resources/system_database_browser.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | {$database_browser} 6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /app/resources/system_input_fuse_search.html: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /app/resources/system_reset_password.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Olá {$name},
4 |

5 | A troca de senha para seu usuário foi solicitada.
6 | Caso você não tenha feito esta solicitação, ignore este e-mail.

7 | 8 | Para redefinir a senha, clique no link a seguir:
9 | Redefinir 10 |

11 | Atenciosamente,
12 | 13 | -------------------------------------------------------------------------------- /app/resources/system_welcome_en.html: -------------------------------------------------------------------------------- 1 | 2 |

3 | Now, you can start creating your classes in template structure; 4 |

5 |
    6 |
  1. 7 | Create the controller class. Ex: ProductForm, ProductList; 8 |
  2. 9 |
  3. 10 | Login as administrator (admin), in order to register the permissions; 11 |
  4. 12 |
  5. 13 | Register the class as a program (Administration -> Programs). You must fill the "controller" field with the class name (Ex: ProductForm); 14 |
  6. 15 |
  7. 16 | Give permission on the registered class to some user or group (Administration -> Users or Administration -> Groups); 17 |
  8. 18 |
  9. 19 | Add the program to the menu.xml, that contains the menu structure; 20 |
  10. 21 |
  11. 22 | Perform a logout and login with some user with permission to run the created program; 23 |
  12. 24 |
  13. 25 | Finish the program creation. 26 |
  14. 27 |
28 | -------------------------------------------------------------------------------- /app/resources/welcome.html: -------------------------------------------------------------------------------- 1 | 2 |

3 | Now, you can start creating your classes in template structure; 4 |

5 |
    6 |
  1. 7 | Create the controller class. Ex: ProductForm, ProductList; 8 |
  2. 9 |
  3. 10 | Login as administrator (admin), in order to register the permissions; 11 |
  4. 12 |
  5. 13 | Register the class as a program (Administration -> Programs). You must fill the "controller" field with the class name (Ex: ProductForm); 14 |
  6. 15 |
  7. 16 | Give permission on the registered class to some user or group (Administration -> Users or Administration -> Groups); 17 |
  8. 18 |
  9. 19 | Add the program to the menu.xml, that contains the menu structure; 20 |
  10. 21 |
  11. 22 | Perform a logout and login with some user with permission to run the created program; 23 |
  12. 24 |
  13. 25 | Finish the program creation. 26 |
  14. 27 |
28 | -------------------------------------------------------------------------------- /app/templates/theme1/images/adianti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme1/images/adianti.png -------------------------------------------------------------------------------- /app/templates/theme1/images/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme1/images/framework.png -------------------------------------------------------------------------------- /app/templates/theme2/gray.css: -------------------------------------------------------------------------------- 1 | .navbar 2 | { 3 | background: #616161; 4 | } 5 | 6 | .tformtitle > td 7 | { 8 | background-color: #8E8E8E !important; 9 | } 10 | 11 | ul.navbar-top-links > li.dropdown > a:hover { 12 | background: #9A9898; 13 | } 14 | 15 | ul.navbar-top-links .open>a, ul.navbar-top-links .open>a:hover, ul.navbar-top-links .open>a:focus { 16 | background: #9A9898; 17 | } -------------------------------------------------------------------------------- /app/templates/theme2/green.css: -------------------------------------------------------------------------------- 1 | .navbar 2 | { 3 | background: #13892F; 4 | } 5 | 6 | .tformtitle > td 7 | { 8 | background-color: #1EB231 !important; 9 | } 10 | 11 | ul.navbar-top-links > li.dropdown > a:hover { 12 | background: #7ACA77; 13 | } 14 | 15 | ul.navbar-top-links .open>a, ul.navbar-top-links .open>a:hover, ul.navbar-top-links .open>a:focus { 16 | background: #7ACA77; 17 | } -------------------------------------------------------------------------------- /app/templates/theme2/metisMenu/metisMenu.min.css: -------------------------------------------------------------------------------- 1 | /* 2 | * metismenu - v1.1.1 3 | * Easy menu jQuery plugin for Twitter Bootstrap 3 4 | * https://github.com/onokumus/metisMenu 5 | * 6 | * Made by Osman Nuri Okumus 7 | * Under MIT License 8 | */ 9 | 10 | .arrow{float:right;line-height:1.42857}.glyphicon.arrow:before{content:"\e079"}.active>a>.glyphicon.arrow:before{content:"\e114"}.fa.arrow:before{content:"\f104"}.active>a>.fa.arrow:before{content:"\f107"}.plus-times{float:right}.fa.plus-times:before{content:"\f067"}.active>a>.fa.plus-times{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.plus-minus{float:right}.fa.plus-minus:before{content:"\f067"}.active>a>.fa.plus-minus:before{content:"\f068"} -------------------------------------------------------------------------------- /app/templates/theme2/red.css: -------------------------------------------------------------------------------- 1 | .navbar 2 | { 3 | background: #B61313; 4 | } 5 | 6 | .tformtitle > td 7 | { 8 | background-color: #D21F1F !important; 9 | } 10 | 11 | ul.navbar-top-links > li.dropdown > a:hover { 12 | background: #D48787; 13 | } 14 | 15 | ul.navbar-top-links .open>a, ul.navbar-top-links .open>a:hover, ul.navbar-top-links .open>a:focus { 16 | background: #D48787; 17 | } -------------------------------------------------------------------------------- /app/templates/theme3/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme3/img/avatar.png -------------------------------------------------------------------------------- /app/templates/theme3/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme3/img/avatar04.png -------------------------------------------------------------------------------- /app/templates/theme3/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme3/img/avatar2.png -------------------------------------------------------------------------------- /app/templates/theme3/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme3/img/avatar3.png -------------------------------------------------------------------------------- /app/templates/theme3/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme3/img/avatar5.png -------------------------------------------------------------------------------- /app/templates/theme3/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme3/img/boxed-bg.jpg -------------------------------------------------------------------------------- /app/templates/theme3/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme3/img/boxed-bg.png -------------------------------------------------------------------------------- /app/templates/theme3/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme3/img/default-50x50.gif -------------------------------------------------------------------------------- /app/templates/theme3/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme3/img/icons.png -------------------------------------------------------------------------------- /app/templates/theme3/js/custom.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | // close side menu on small devices 3 | $('#side-menu a[generator="adianti"]').click(function() { 4 | $('body').removeClass('sidebar-open'); 5 | $('body').scrollTop(0); 6 | }) 7 | 8 | setTimeout( function() { 9 | $('#envelope_messages a').click(function() { $(this).closest('.dropdown.open').removeClass('open'); }); 10 | $('#envelope_notifications a').click(function() { $(this).closest('.dropdown.open').removeClass('open'); }); 11 | }, 500); 12 | }); -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/2fcrYFNaTjcS6g4U3t-Y5UEw0lE80llgEseQY3FEmqw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/2fcrYFNaTjcS6g4U3t-Y5UEw0lE80llgEseQY3FEmqw.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/77FXFjRbGzN4aCrSFhlh3oX0hVgzZQUfRDuZrPvH3D8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/77FXFjRbGzN4aCrSFhlh3oX0hVgzZQUfRDuZrPvH3D8.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/97uahxiqZRoncBaCEI3aW4X0hVgzZQUfRDuZrPvH3D8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/97uahxiqZRoncBaCEI3aW4X0hVgzZQUfRDuZrPvH3D8.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/Ks_cVxiCiwUWVsFWFA3Bjn-_kf6ByYO6CLYdB4HQE-Y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/Ks_cVxiCiwUWVsFWFA3Bjn-_kf6ByYO6CLYdB4HQE-Y.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/NJ4vxlgWwWbEsv18dAhqnn-_kf6ByYO6CLYdB4HQE-Y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/NJ4vxlgWwWbEsv18dAhqnn-_kf6ByYO6CLYdB4HQE-Y.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/PwZc-YbIL414wB9rB1IAPYX0hVgzZQUfRDuZrPvH3D8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/PwZc-YbIL414wB9rB1IAPYX0hVgzZQUfRDuZrPvH3D8.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/UX6i4JxQDm3fVTc1CPuwqoX0hVgzZQUfRDuZrPvH3D8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/UX6i4JxQDm3fVTc1CPuwqoX0hVgzZQUfRDuZrPvH3D8.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/_VYFx-s824kXq_Ul2BHqYH-_kf6ByYO6CLYdB4HQE-Y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/_VYFx-s824kXq_Ul2BHqYH-_kf6ByYO6CLYdB4HQE-Y.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/d-6IYplOFocCacKzxwXSOJBw1xU1rKptJj_0jans920.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/d-6IYplOFocCacKzxwXSOJBw1xU1rKptJj_0jans920.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/isZ-wbCXNKAbnjo6_TwHToX0hVgzZQUfRDuZrPvH3D8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/isZ-wbCXNKAbnjo6_TwHToX0hVgzZQUfRDuZrPvH3D8.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/jSN2CGVDbcVyCnfJfjSdfIX0hVgzZQUfRDuZrPvH3D8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/jSN2CGVDbcVyCnfJfjSdfIX0hVgzZQUfRDuZrPvH3D8.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/oMMgfZMQthOryQo9n22dcuvvDin1pK8aKteLpeZ5c0A.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/oMMgfZMQthOryQo9n22dcuvvDin1pK8aKteLpeZ5c0A.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/sTdaA6j0Psb920Vjv-mrzH-_kf6ByYO6CLYdB4HQE-Y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/sTdaA6j0Psb920Vjv-mrzH-_kf6ByYO6CLYdB4HQE-Y.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/tnj4SB6DNbdaQnsM8CFqBX-_kf6ByYO6CLYdB4HQE-Y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/tnj4SB6DNbdaQnsM8CFqBX-_kf6ByYO6CLYdB4HQE-Y.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/css/fonts/uYECMKoHcO9x1wdmbyHIm3-_kf6ByYO6CLYdB4HQE-Y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/css/fonts/uYECMKoHcO9x1wdmbyHIm3-_kf6ByYO6CLYdB4HQE-Y.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/images/animation-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/images/animation-bg.jpg -------------------------------------------------------------------------------- /app/templates/theme4/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/images/screenshot.png -------------------------------------------------------------------------------- /app/templates/theme4/images/thumbs-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/images/thumbs-up.png -------------------------------------------------------------------------------- /app/templates/theme4/images/user-img-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/images/user-img-background.jpg -------------------------------------------------------------------------------- /app/templates/theme4/images/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/images/user.jpg -------------------------------------------------------------------------------- /app/templates/theme4/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/images/user.png -------------------------------------------------------------------------------- /app/templates/theme4/js/helpers.js: -------------------------------------------------------------------------------- 1 | function hexToRgb(hexCode) { 2 | var patt = /^#([\da-fA-F]{2})([\da-fA-F]{2})([\da-fA-F]{2})$/; 3 | var matches = patt.exec(hexCode); 4 | var rgb = "rgb(" + parseInt(matches[1], 16) + "," + parseInt(matches[2], 16) + "," + parseInt(matches[3], 16) + ")"; 5 | return rgb; 6 | } 7 | 8 | function hexToRgba(hexCode, opacity) { 9 | var patt = /^#([\da-fA-F]{2})([\da-fA-F]{2})([\da-fA-F]{2})$/; 10 | var matches = patt.exec(hexCode); 11 | var rgb = "rgba(" + parseInt(matches[1], 16) + "," + parseInt(matches[2], 16) + "," + parseInt(matches[3], 16) + "," + opacity + ")"; 12 | return rgb; 13 | } -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/cards/basic.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | initLoading(); 3 | }); 4 | 5 | //Init Loading 6 | function initLoading() { 7 | $('[data-toggle="cardloading"]').on('click', function () { 8 | var effect = $(this).data('loadingEffect'); 9 | var $loading = $(this).parents('.card').waitMe({ 10 | effect: effect, 11 | text: 'Loading...', 12 | bg: 'rgba(255,255,255,0.90)', 13 | color: '#555' 14 | }); 15 | 16 | setTimeout(function () { 17 | //Loading hide 18 | $loading.waitMe('hide'); 19 | }, 3200); 20 | }); 21 | } -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/cards/colored.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | initLoading(); 3 | }); 4 | 5 | //Init Loading 6 | function initLoading() { 7 | $('[data-toggle="cardloading"]').on('click', function () { 8 | var effect = $(this).data('loadingEffect'); 9 | var color = $.AdminBSB.options.colors[$(this).data('loadingColor')]; 10 | 11 | var $loading = $(this).parents('.card').waitMe({ 12 | effect: effect, 13 | text: 'Loading...', 14 | bg: 'rgba(255,255,255,0.90)', 15 | color: color 16 | }); 17 | 18 | setTimeout(function () { 19 | //Loading hide 20 | $loading.waitMe('hide'); 21 | }, 3200); 22 | }); 23 | } -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/examples/forgot-password.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('#forgot_password').validate({ 3 | highlight: function (input) { 4 | console.log(input); 5 | $(input).parents('.form-line').addClass('error'); 6 | }, 7 | unhighlight: function (input) { 8 | $(input).parents('.form-line').removeClass('error'); 9 | }, 10 | errorPlacement: function (error, element) { 11 | $(element).parents('.input-group').append(error); 12 | } 13 | }); 14 | }); -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/examples/sign-in.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('#sign_in').validate({ 3 | highlight: function (input) { 4 | console.log(input); 5 | $(input).parents('.form-line').addClass('error'); 6 | }, 7 | unhighlight: function (input) { 8 | $(input).parents('.form-line').removeClass('error'); 9 | }, 10 | errorPlacement: function (error, element) { 11 | $(element).parents('.input-group').append(error); 12 | } 13 | }); 14 | }); -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/examples/sign-up.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('#sign_up').validate({ 3 | rules: { 4 | 'terms': { 5 | required: true 6 | }, 7 | 'confirm': { 8 | equalTo: '[name="password"]' 9 | } 10 | }, 11 | highlight: function (input) { 12 | console.log(input); 13 | $(input).parents('.form-line').addClass('error'); 14 | }, 15 | unhighlight: function (input) { 16 | $(input).parents('.form-line').removeClass('error'); 17 | }, 18 | errorPlacement: function (error, element) { 19 | $(element).parents('.input-group').append(error); 20 | $(element).parents('.form-group').append(error); 21 | } 22 | }); 23 | }); -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/forms/basic-form-elements.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | //Textare auto growth 3 | autosize($('textarea.auto-growth')); 4 | 5 | //Datetimepicker plugin 6 | $('.datetimepicker').bootstrapMaterialDatePicker({ 7 | format: 'dddd DD MMMM YYYY - HH:mm', 8 | clearButton: true, 9 | weekStart: 1 10 | }); 11 | 12 | $('.datepicker').bootstrapMaterialDatePicker({ 13 | format: 'dddd DD MMMM YYYY', 14 | clearButton: true, 15 | weekStart: 1, 16 | time: false 17 | }); 18 | 19 | $('.timepicker').bootstrapMaterialDatePicker({ 20 | format: 'HH:mm', 21 | clearButton: true, 22 | date: false 23 | }); 24 | }); -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/medias/image-gallery.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('#aniimated-thumbnials').lightGallery({ 3 | thumbnail: true, 4 | selector: 'a' 5 | }); 6 | }); -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/tables/editable-table.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('#mainTable').editableTableWidget(); 3 | }); -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/tables/jquery-datatable.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('.js-basic-example').DataTable({ 3 | responsive: true 4 | }); 5 | 6 | //Exportable table 7 | $('.js-exportable').DataTable({ 8 | dom: 'Bfrtip', 9 | responsive: true, 10 | buttons: [ 11 | 'copy', 'csv', 'excel', 'pdf', 'print' 12 | ] 13 | }); 14 | }); -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/ui/animations.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('.js-animations').bind('change', function () { 3 | var animation = $(this).val(); 4 | $('.js-animating-object').animateCss(animation); 5 | }); 6 | }); 7 | 8 | //Copied from https://github.com/daneden/animate.css 9 | $.fn.extend({ 10 | animateCss: function (animationName) { 11 | var animationEnd = 'webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend'; 12 | $(this).addClass('animated ' + animationName).one(animationEnd, function() { 13 | $(this).removeClass('animated ' + animationName); 14 | }); 15 | } 16 | }); -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/ui/modals.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('.js-modal-buttons .btn').on('click', function () { 3 | var color = $(this).data('color'); 4 | $('#mdModal .modal-content').removeAttr('class').addClass('modal-content modal-col-' + color); 5 | $('#mdModal').modal('show'); 6 | }); 7 | }); -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/ui/sortable-nestable.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('.dd').nestable(); 3 | 4 | $('.dd').on('change', function () { 5 | var $this = $(this); 6 | var serializedData = window.JSON.stringify($($this).nestable('serialize')); 7 | 8 | $this.parents('div.body').find('textarea').val(serializedData); 9 | }); 10 | }); -------------------------------------------------------------------------------- /app/templates/theme4/js/pages/ui/tooltips-popovers.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | //Tooltip 3 | $('[data-toggle="tooltip"]').tooltip({ 4 | container: 'body' 5 | }); 6 | 7 | //Popover 8 | $('[data-toggle="popover"]').popover(); 9 | }) -------------------------------------------------------------------------------- /app/templates/theme4/js/script.js: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/templates/theme4/plugins/bootstrap-material-datetimepicker/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) -------------------------------------------------------------------------------- /app/templates/theme4/plugins/bootstrap-material-datetimepicker/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-material-datetimepicker", 3 | "description": ".", 4 | "version": "2.7.1", 5 | "keywords": [ 6 | "css", 7 | "js", 8 | "mobile-first", 9 | "responsive", 10 | "front-end", 11 | "web" 12 | ], 13 | "homepage": "https://github.com/t00rk/bootstrap-material-datetimepicker", 14 | "main": [ 15 | "js/bootstrap-material-datetimepicker.js", 16 | "css/bootstrap-material-datetimepicker.css" 17 | ], 18 | "ignore": [ 19 | "/.*", 20 | "_config.yml", 21 | "CNAME", 22 | "composer.json", 23 | "CONTRIBUTING.md", 24 | "docs", 25 | "js/tests", 26 | "test-infra" 27 | ], 28 | "dependencies": { 29 | "momentjs": "~2.10.2", 30 | "bootstrap": "~3.3.4", 31 | "jquery": "1.12.3", 32 | "bootstrap-material-design": "~0.3.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/templates/theme4/plugins/bootstrap-material-datetimepicker/font/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/plugins/bootstrap-material-datetimepicker/font/Material-Design-Icons.eot -------------------------------------------------------------------------------- /app/templates/theme4/plugins/bootstrap-material-datetimepicker/font/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/plugins/bootstrap-material-datetimepicker/font/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /app/templates/theme4/plugins/bootstrap-material-datetimepicker/font/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/plugins/bootstrap-material-datetimepicker/font/Material-Design-Icons.woff -------------------------------------------------------------------------------- /app/templates/theme4/plugins/bootstrap-material-datetimepicker/font/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/app/templates/theme4/plugins/bootstrap-material-datetimepicker/font/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /app/templates/theme4/plugins/bootstrap-material-datetimepicker/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-material-datetimepicker", 3 | "description": ".", 4 | "version": "2.7.1", 5 | "keywords": [ 6 | "css", 7 | "js", 8 | "mobile-first", 9 | "responsive", 10 | "front-end", 11 | "web" 12 | ], 13 | "homepage": "https://github.com/T00rk/bootstrap-material-datetimepicker", 14 | "main": "js/bootstrap-material-datetimepicker.js", 15 | "ignore": [ 16 | "/.*", 17 | "_config.yml", 18 | "CNAME", 19 | "composer.json", 20 | "CONTRIBUTING.md", 21 | "docs", 22 | "js/tests", 23 | "test-infra" 24 | ], 25 | "dependencies": { 26 | "moment": "~2.10.2", 27 | "bootstrap": "~3.3.4", 28 | "jquery": "1.12.3", 29 | "bootstrap-material-design": "~0.3.0" 30 | }, 31 | "repository": { 32 | "type": "git", 33 | "url": "https://github.com/T00rk/bootstrap-material-datetimepicker" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /app/view/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "repositories": [ 3 | { "type": "vcs", "url": "https://github.com/pablodalloglio/ole" }, 4 | { "type": "vcs", "url": "https://github.com/pablodalloglio/spreadsheet_excel_writer" } 5 | ], 6 | "require": { 7 | "phpmailer/phpmailer": "^6.0", 8 | "tburry/pquery": "^1.1", 9 | "picqer/php-barcode-generator": "^0.2.2", 10 | "dompdf/dompdf": "^0.8.1", 11 | "bacon/bacon-qr-code": "^1.0", 12 | "phprtflite/phprtflite": "^1.3", 13 | "firebase/php-jwt": "^5.0", 14 | "pablodalloglio/ole": "dev-master", 15 | "pablodalloglio/spreadsheet_excel_writer": "dev-master" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '2' 2 | services: 3 | db: 4 | image: mysql:5.7 5 | ports: 6 | - "3306:3306" 7 | volumes: 8 | - mysql-datavolume:/var/lib/mysql 9 | environment: 10 | - MYSQL_ROOT_PASSWORD=root 11 | 12 | php: 13 | build: . 14 | ports: 15 | - "80:80" 16 | - "443:443" 17 | volumes: 18 | - ./:/var/www/html 19 | links: 20 | - db 21 | 22 | phpmyadmin: 23 | image: phpmyadmin/phpmyadmin 24 | restart: always 25 | links: 26 | - db 27 | ports: 28 | - 8183:80 29 | environment: 30 | - MYSQL_USER=root 31 | - MYSQL_ROOT_PASSWORD=root 32 | volumes: 33 | mysql-datavolume: 34 | -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:7.2-apache 2 | RUN apt-get update 3 | RUN apt-get install -ym wget g++ curl git gnupg2 apt-utils software-properties-common libpng-dev 4 | 5 | # mysql 6 | RUN docker-php-source extract \ 7 | && docker-php-ext-install gd mysqli pdo_mysql \ 8 | && docker-php-source delete 9 | 10 | # composer 11 | RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer 12 | 13 | RUN alias composer="php -n /usr/local/bin/composer" 14 | -------------------------------------------------------------------------------- /files/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /dev/null 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /files/documents/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /dev/null 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /lib/adianti/base/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /lib/adianti/base/TStandardForm.php: -------------------------------------------------------------------------------- 1 | button > span 8 | { 9 | font-size: 17pt; 10 | } -------------------------------------------------------------------------------- /lib/adianti/include/tbreadcrumb/footer-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/adianti/include/tbreadcrumb/footer-arrow.png -------------------------------------------------------------------------------- /lib/adianti/include/tbreadcrumb/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/adianti/include/tbreadcrumb/home.png -------------------------------------------------------------------------------- /lib/adianti/include/tbutton/tbutton.js: -------------------------------------------------------------------------------- 1 | function tbutton_enable_field(form_name, field) { 2 | setTimeout(function(){ 3 | $('button[name='+field+']').removeAttr('disabled'); 4 | $('button[name=btn_'+field+']').removeAttr('disabled'); 5 | $('#tbutton_'+field).removeAttr('disabled'); 6 | },1); 7 | } 8 | function tbutton_disable_field(form_name, field) { 9 | setTimeout(function(){ 10 | $('button[name='+field+']').attr('disabled', true); 11 | $('button[name=btn_'+field+']').attr('disabled', true); 12 | $('#tbutton_'+field).attr('disabled', true); 13 | },1); 14 | } -------------------------------------------------------------------------------- /lib/adianti/include/tcheckgroup/tcheckgroup.js: -------------------------------------------------------------------------------- 1 | function tcheckgroup_enable_field(form_name, field) { 2 | setTimeout(function(){ 3 | $('form[name='+form_name+'] [checkgroup='+field+']').removeAttr('disabled'); 4 | $('form[name='+form_name+'] [checkgroup='+field+']').parent().removeAttr('disabled'); 5 | },1); 6 | } 7 | 8 | function tcheckgroup_disable_field(form_name, field) { 9 | setTimeout(function(){ 10 | $('form[name='+form_name+'] [checkgroup='+field+']').attr('disabled', ''); 11 | $('form[name='+form_name+'] [checkgroup='+field+']').parent().attr('disabled', ''); 12 | },1); 13 | } 14 | 15 | function tcheckgroup_clear_field(form_name, field) { 16 | setTimeout(function(){ $('form[name='+form_name+'] [checkgroup='+field+']').attr('checked', false) },1); 17 | } -------------------------------------------------------------------------------- /lib/adianti/include/tdatetime/tdatetime.css: -------------------------------------------------------------------------------- 1 | .datetimepicker 2 | { 3 | font-size: 13px !important; 4 | line-height: 14px; 5 | } 6 | 7 | .datetimepicker .day, .datetimepicker .hour, .datetimepicker .minute 8 | { 9 | border: 1px solid #e0e0e0; 10 | border-spacing: 0; 11 | 12 | } 13 | 14 | .datetimepicker .prev, .datetimepicker .next, .datetimepicker .cw, .datetimepicker .switch 15 | { 16 | background: whiteSmoke; 17 | } -------------------------------------------------------------------------------- /lib/adianti/include/tdbentry/tdbentry.js: -------------------------------------------------------------------------------- 1 | function tdbentry_start( field_name, url, min ) 2 | { 3 | $('input[name="'+field_name+'"]').autocomplete( { serviceUrl: url, minChars: min } ); 4 | } -------------------------------------------------------------------------------- /lib/adianti/include/tdialog/tdialog.css: -------------------------------------------------------------------------------- 1 | .modal-header 2 | { 3 | padding: 9px 15px; 4 | } 5 | 6 | .modal-footer 7 | { 8 | padding: 14px 15px 15px; 9 | margin-bottom: 0; 10 | text-align: right; 11 | background-color: #f5f5f5; 12 | border-top: 1px solid #ddd; 13 | -webkit-border-radius: 0 0 6px 6px; 14 | -moz-border-radius: 0 0 6px 6px; 15 | border-radius: 0 0 6px 6px; 16 | -webkit-box-shadow: inset 0 1px 0 #ffffff; 17 | -moz-box-shadow: inset 0 1px 0 #ffffff; 18 | box-shadow: inset 0 1px 0 #ffffff; 19 | *zoom: 1; 20 | } 21 | 22 | .modal-body 23 | { 24 | overflow-y: auto; 25 | padding: 15px; 26 | } 27 | 28 | body.modal-open, .modal-open .navbar-fixed-top, .modal-open .navbar-fixed-bottom 29 | { 30 | margin-right: 0; 31 | } 32 | 33 | .modal 34 | { 35 | overflow-y: auto; 36 | } 37 | 38 | .bootbox.modal { 39 | padding-top: 10%; 40 | z-index: 4000; 41 | } 42 | -------------------------------------------------------------------------------- /lib/adianti/include/tdialog/tdialog.js: -------------------------------------------------------------------------------- 1 | function tdialog_start(id, callback) 2 | { 3 | $.fn.modal.Constructor.prototype.enforceFocus = function() {}; 4 | 5 | $( id ).modal({backdrop:true, keyboard:true}); 6 | 7 | if (typeof callback != 'undefined') 8 | { 9 | $( id ).on("hidden.bs.modal", function(){ callback(); tdialog_close(id.substring(1)); } ); 10 | } 11 | else 12 | { 13 | $( id ).on("hidden.bs.modal", function(){ tdialog_close(id.substring(1)); } ); 14 | 15 | } 16 | } 17 | 18 | function tdialog_close(id) 19 | { 20 | $( '.modal-backdrop' ).last().remove(); 21 | $('#'+id).modal('hide'); 22 | $('body').removeClass('modal-open'); 23 | setTimeout(function(){ $('#'+id).remove(); }, 300); 24 | } -------------------------------------------------------------------------------- /lib/adianti/include/texpander/texpander.js: -------------------------------------------------------------------------------- 1 | function texpander_start() 2 | { 3 | $('.texpander-container').click(function (e) 4 | { 5 | e.stopPropagation(); 6 | }); 7 | } -------------------------------------------------------------------------------- /lib/adianti/include/tfile/tfile.css: -------------------------------------------------------------------------------- 1 | .tfile_row_wrapper 2 | { 3 | display:inline-block; 4 | margin-top:1px; 5 | } 6 | 7 | .tfile_link_wrapper 8 | { 9 | float:left; 10 | padding:4px; 11 | margin-top:1px; 12 | overflow:auto; 13 | } 14 | 15 | .tfile_del_icon 16 | { 17 | cursor: pointer; 18 | float:left; 19 | padding:4px; 20 | } 21 | 22 | .tfile_row_2 23 | { 24 | float:left; 25 | width:100%; 26 | overflow:auto; 27 | margin-top:2px; 28 | } -------------------------------------------------------------------------------- /lib/adianti/include/tframe/tframe.css: -------------------------------------------------------------------------------- 1 | .tframe 2 | { 3 | -webkit-box-sizing: content-box !important; 4 | -moz-box-sizing: content-box !important; 5 | box-sizing: content-box !important; 6 | } 7 | 8 | .tframe 9 | { 10 | border : solid; 11 | border-color : #a0a0a0; 12 | border-width : 1px; 13 | padding-left : 3px; 14 | padding-right : 3px; 15 | padding-top : 3px; 16 | padding-bottom : 3px; 17 | border-radius : 3px; 18 | margin: 2px; 19 | } 20 | 21 | .tframe legend 22 | { 23 | width: auto; 24 | margin: 0; 25 | border:0; 26 | font-size: inherit; 27 | height: 15px; 28 | padding-left: 5px; 29 | padding-right: 5px; 30 | } -------------------------------------------------------------------------------- /lib/adianti/include/ticon/ticon.css: -------------------------------------------------------------------------------- 1 | .iconpicker-input{ 2 | border-radius: 0px !important; 3 | } 4 | 5 | .iconpicker { 6 | position: relative; 7 | text-align: left; 8 | text-shadow: none; 9 | line-height: 0; 10 | display: block; 11 | margin: 0; 12 | overflow: visible !important; 13 | } 14 | 15 | .iconpicker-component{ 16 | padding: 2px; 17 | width: 24px !important; 18 | } 19 | 20 | .iconpicker-search{ 21 | margin-bottom: 10px; 22 | } 23 | 24 | .iconpicker .iconpicker-items, .iconpicker-popover.popover .popover-title { 25 | padding: 7px; 26 | } 27 | 28 | .iconpicker .iconpicker-item { 29 | margin: 0 5px 5px 0; 30 | padding: 5px; 31 | } 32 | 33 | .iconpicker-container 34 | { 35 | border-spacing: 0; 36 | } -------------------------------------------------------------------------------- /lib/adianti/include/tjquerydialog/tjquerydialog.js: -------------------------------------------------------------------------------- 1 | function tjquerydialog_start( id, modal, draggable, resizable, width, height, top, left, zIndex, actions, close_action) { 2 | $( id ).dialog({ 3 | modal: modal, 4 | stack: false, 5 | zIndex: 2000, 6 | draggable: draggable, 7 | resizable: resizable, 8 | height: height, 9 | width: width, 10 | beforeClose: function() { 11 | if (typeof(close_action) == "function") { 12 | close_action(); 13 | return false; 14 | } 15 | return true; 16 | }, 17 | close: function(ev, ui) { 18 | $(this).remove(); 19 | }, 20 | buttons: actions 21 | }); 22 | $( id ).closest('.ui-dialog').css({ zIndex: zIndex }); 23 | $(".ui-widget-overlay").css({ zIndex: 100 }); 24 | 25 | if (top > 0) { 26 | $( id ).closest('.ui-dialog').css({ top: top+'px' }); 27 | } 28 | 29 | if (left > 0) { 30 | $( id ).closest('.ui-dialog').css({ left: left+'px' }); 31 | } 32 | } -------------------------------------------------------------------------------- /lib/adianti/include/tlabel/tlabel.css: -------------------------------------------------------------------------------- 1 | label 2 | { 3 | margin: 0px; 4 | font-weight: normal; 5 | font-size: 10pt; 6 | font-family: Helvetica,Arial,Verdana; 7 | color: #333333; 8 | -moz-user-select : none; 9 | -webkit-user-select : none; 10 | user-select : none; 11 | } -------------------------------------------------------------------------------- /lib/adianti/include/tmenubar/tmenubar.js: -------------------------------------------------------------------------------- 1 | function tmenubar_start() 2 | { 3 | $(document).ready( function() { 4 | $('.dropdown-toggle').dropdown() 5 | }); 6 | } -------------------------------------------------------------------------------- /lib/adianti/include/tmultientry/tmultientry.js: -------------------------------------------------------------------------------- 1 | function tmultientry_start( id, maxsize, width, height, callback) { 2 | var options = { 3 | tags: true, 4 | maximumSelectionLength: maxsize, 5 | width: width, 6 | tokenSeparators: [',', ';'] 7 | }; 8 | 9 | if (typeof callback != 'undefined') { 10 | $('#'+id).on("change", function (e) { 11 | callback(); 12 | }); 13 | } 14 | 15 | var element = $('#'+id).select2(options); 16 | } 17 | -------------------------------------------------------------------------------- /lib/adianti/include/tmultifield/tmultifield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/adianti/include/tmultifield/tmultifield.js -------------------------------------------------------------------------------- /lib/adianti/include/tmultisearch/tmultisearch.css: -------------------------------------------------------------------------------- 1 | .select2-dropdown 2 | { 3 | z-index: 4051; 4 | } 5 | 6 | .select2-dropdown .select2-search__field:focus, .select2-search--inline .select2-search__field:focus 7 | { 8 | border:none !important; 9 | } 10 | 11 | .select2-selection__choice 12 | { 13 | white-space: normal !important; 14 | } -------------------------------------------------------------------------------- /lib/adianti/include/tooltip/tooltip.css: -------------------------------------------------------------------------------- 1 | .tooltip 2 | { 3 | position: absolute; 4 | z-index: 1000000000000; 5 | } 6 | 7 | .tooltip .tooltip-inner 8 | { 9 | color: #000; 10 | background-color: white; 11 | background-repeat: repeat-x; 12 | border: 1px solid black; 13 | padding: 8px; 14 | border:#ccc 1px solid; 15 | -moz-border-radius:3px; 16 | -webkit-border-radius:3px; 17 | border-radius:3px; 18 | -moz-box-shadow: 2px 2px 2px #BFBFBF; 19 | -webkit-box-shadow: 2px 2px 2px #BFBFBF; 20 | box-shadow: 2px 2px 2px #BFBFBF; 21 | max-width: none; 22 | } 23 | 24 | .tooltip.right .tooltip-arrow 25 | { 26 | border-right-color: #3D3D3D; 27 | } -------------------------------------------------------------------------------- /lib/adianti/include/tpagenavigation/tpagenavigation.css: -------------------------------------------------------------------------------- 1 | .tpagenavigation 2 | { 3 | padding-top: 7px; 4 | } 5 | 6 | .tpagenavigation > ul.pagination 7 | { 8 | margin: 0; 9 | } 10 | 11 | .tpagenavigation li.off a 12 | { 13 | color: #c0c0c0; 14 | } 15 | 16 | .tpagenavigation_resume 17 | { 18 | width: 100%; 19 | text-align: center; 20 | color: gray; 21 | padding: 2px; 22 | padding-top: 7px; 23 | } -------------------------------------------------------------------------------- /lib/adianti/include/tradiogroup/tradiogroup.js: -------------------------------------------------------------------------------- 1 | function tradiogroup_enable_field(form_name, field) { 2 | setTimeout(function(){ 3 | $('form[name='+form_name+'] [name='+field+']').removeAttr('disabled'); 4 | $('form[name='+form_name+'] [name='+field+']').parent().removeAttr('disabled'); 5 | },1); 6 | } 7 | 8 | function tradiogroup_disable_field(form_name, field) { 9 | setTimeout(function(){ 10 | $('form[name='+form_name+'] [name='+field+']').attr('disabled', ''); 11 | $('form[name='+form_name+'] [name='+field+']').parent().attr('disabled', ''); 12 | },1); 13 | } 14 | 15 | function tradiogroup_clear_field(form_name, field) { 16 | setTimeout(function(){ $('form[name='+form_name+'] [name='+field+']').attr('checked', false) },1); 17 | } -------------------------------------------------------------------------------- /lib/adianti/include/tscroll/tscroll.css: -------------------------------------------------------------------------------- 1 | .tscroll 2 | { 3 | overflow: auto; 4 | padding: 4px; 5 | } -------------------------------------------------------------------------------- /lib/adianti/include/tseekbutton/tseekbutton.css: -------------------------------------------------------------------------------- 1 | .tseekbutton 2 | { 3 | border-radius: 0 4px 4px 0; 4 | height: 24px; 5 | width: 22px; 6 | padding: 0px !important; 7 | padding-left: 2px !important; 8 | padding-right: 2px !important; 9 | margin: 0px; 10 | margin-left: -2px; 11 | margin-bottom: 0px; 12 | vertical-align:top; 13 | } 14 | 15 | .tseekentry 16 | { 17 | border-radius: 3px 0px 0px 3px; 18 | display:table-cell; 19 | border-right:0; 20 | } 21 | 22 | .tseekentry:focus 23 | { 24 | border-radius: 3px 0px 0px 3px; 25 | } 26 | 27 | .tseekbutton img 28 | { 29 | display: inline-block; 30 | margin-top: 1px; 31 | width: 90%; 32 | vertical-align: text-top; 33 | } 34 | 35 | .tseek-group 36 | { 37 | display:inline-table; 38 | border-spacing:0; 39 | width: 100%; 40 | } -------------------------------------------------------------------------------- /lib/adianti/include/tseekbutton/tseekbutton.js: -------------------------------------------------------------------------------- 1 | function tseekbutton_enable_field(form_name, field) { 2 | try { 3 | $('form[name='+form_name+'] [name='+field+']').attr('disabled', false); 4 | $('form[name='+form_name+'] [name='+field+']').removeClass('tfield_disabled').addClass('tseekentry'); 5 | } catch (e) { 6 | console.log(e); 7 | } 8 | setTimeout(function(){ $('form[name='+form_name+'] [for='+field+']').show() },1); 9 | } 10 | 11 | function tseekbutton_disable_field(form_name, field) { 12 | try { 13 | $('form[name='+form_name+'] [name='+field+']').attr('disabled', true); 14 | $('form[name='+form_name+'] [name='+field+']').addClass('tfield_disabled').removeClass('tseekentry'); 15 | } catch (e) { 16 | console.log(e); 17 | } 18 | setTimeout(function(){ $('form[name='+form_name+'] [for='+field+']').hide() },1); 19 | } -------------------------------------------------------------------------------- /lib/adianti/include/tslider/tslider.js: -------------------------------------------------------------------------------- 1 | function tslider_start(id, value, min, max, step) 2 | { 3 | $( id+'_div' ).slider({ 4 | value: value, 5 | min: min, 6 | max: max, 7 | step: step, 8 | slide: function( event, ui ) { 9 | $( id ).val( ui.value ); 10 | } 11 | }); 12 | } 13 | 14 | function tslider_enable_field(form_name, field) { 15 | setTimeout(function(){ $('form[name='+form_name+'] [name='+field+']').attr('readonly', false) },1); 16 | setTimeout(function(){ $('form[name='+form_name+'] [name='+field+']').next().show() },1); 17 | } 18 | 19 | function tslider_disable_field(form_name, field) { 20 | setTimeout(function(){ $('form[name='+form_name+'] [name='+field+']').attr('readonly', true) },1); 21 | setTimeout(function(){ $('form[name='+form_name+'] [name='+field+']').next().hide() },1); 22 | } -------------------------------------------------------------------------------- /lib/adianti/include/tsortlist/tsortlist.css: -------------------------------------------------------------------------------- 1 | .tsortlist 2 | { 3 | -webkit-box-sizing: content-box !important; 4 | -moz-box-sizing: content-box !important; 5 | box-sizing: content-box !important; 6 | } 7 | 8 | .tsortlist 9 | { 10 | background: #EEEEEE; 11 | align: center; 12 | display: block; 13 | padding:20px; 14 | overflow: auto; 15 | margin: 0px; 16 | scroll: none; 17 | border: 1px solid #ccc; 18 | -webkit-border-radius: 3px 3px 3px 3px; 19 | -moz-border-radius: 3px 3px 3px 3px; 20 | border-radius: 3px 3px 3px 3px; 21 | } 22 | 23 | .tsortlist img 24 | { 25 | padding-right: 5px; 26 | } 27 | 28 | .tsortlist_item 29 | { 30 | cursor: move; 31 | text-align: left; 32 | } -------------------------------------------------------------------------------- /lib/adianti/include/tsourcecode/tsourcecode.css: -------------------------------------------------------------------------------- 1 | .tsourcecode code 2 | { 3 | padding: 0; 4 | font-size: 100%; 5 | color: auto; 6 | border-radius: 0; 7 | } -------------------------------------------------------------------------------- /lib/adianti/include/tspinner/tspinner.css: -------------------------------------------------------------------------------- 1 | .ui-spinner{ 2 | border: 1px solid #a0a0a0; 3 | border-radius: 3px; 4 | height: 24px; 5 | } 6 | .ui-spinner input{ 7 | margin-left: 0px; 8 | margin-right: 15px; 9 | margin-top: 0px; 10 | border: none; 11 | border-right: 1px solid silver; 12 | } -------------------------------------------------------------------------------- /lib/adianti/include/ttreeview/ttreeview.js: -------------------------------------------------------------------------------- 1 | function ttreeview_start( id, collapsed ) 2 | { 3 | $( id ).treeview({ 4 | persist: 'location', 5 | animated: 'fast', 6 | collapsed: collapsed 7 | }); 8 | } -------------------------------------------------------------------------------- /lib/adianti/include/twindow/twindow.css: -------------------------------------------------------------------------------- 1 | .ui-corner-all 2 | { 3 | border-radius:0; 4 | } 5 | 6 | .ui-dialog-title 7 | { 8 | padding-top: 5px; 9 | font-family: 'Open Sans'; 10 | text-shadow: none; 11 | font-size: 12pt; 12 | overflow: visible; 13 | height: 30px; 14 | } 15 | 16 | .ui-dialog .ui-dialog-titlebar-close 17 | { 18 | right: .5em; 19 | } 20 | 21 | .ui-dialog 22 | { 23 | padding: 0; 24 | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 25 | border: 1px solid gray; 26 | background: white; 27 | } 28 | 29 | .ui-dialog-titlebar 30 | { 31 | background-color: #f5f5f5; 32 | float:left; 33 | width: 100%; 34 | height: 40px; 35 | font-weight: normal; 36 | margin-bottom: 3px; 37 | border:0; 38 | border-bottom:1px solid #B3B3B3; 39 | cursor: move; 40 | -ms-user-select: none; 41 | } 42 | -------------------------------------------------------------------------------- /lib/adianti/log/AdiantiLoggerInterface.php: -------------------------------------------------------------------------------- 1 | '; 27 | 28 | // define the LOG content 29 | print "$level: $time - $message" . $eol; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /lib/adianti/log/TLoggerTXT.php: -------------------------------------------------------------------------------- 1 | filename, 'a'); 30 | fwrite($handler, $text); 31 | fclose($handler); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /lib/adianti/registry/AdiantiRegistryInterface.php: -------------------------------------------------------------------------------- 1 | 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ar-tn'] = { 7 | days: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد"], 8 | daysShort: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت", "أحد"], 9 | daysMin: ["ح", "ن", "ث", "ع", "خ", "ج", "س", "ح"], 10 | months: ["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويليه","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"], 11 | monthsShort: ["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويليه","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"], 12 | today: "هذا اليوم", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Arabic translation for bootstrap-datepicker 3 | * Mohammed Alshehri 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ar'] = { 7 | days: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد"], 8 | daysShort: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت", "أحد"], 9 | daysMin: ["ح", "ن", "ث", "ع", "خ", "ج", "س", "ح"], 10 | months: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 11 | monthsShort: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 12 | today: "هذا اليوم", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | ;(function($){ 3 | $.fn.datepicker.dates['az'] = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1 11 | }; 12 | }(jQuery)); 13 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bulgarian translation for bootstrap-datepicker 3 | * Apostol Apostolov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['bg'] = { 7 | days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб"], 9 | daysMin: ["Н", "П", "В", "С", "Ч", "П", "С"], 10 | months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "днес" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.bn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bengali (Bangla) translation for bootstrap-datepicker 3 | * Karim Khan 4 | * Orif N. Jr. 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['bn'] = { 8 | days: ["রবিবার","সোমবার","মঙ্গলবার","বুধবার","বৃহস্পতিবার","শুক্রবার","শনিবার"], 9 | daysShort: ["রবিবার","সোমবার","মঙ্গলবার","বুধবার","বৃহস্পতিবার","শুক্রবার","শনিবার"], 10 | daysMin: ["রবি","সোম","মঙ্গল","বুধ","বৃহস্পতি","শুক্র","শনি"], 11 | months: ["জানুয়ারী","ফেব্রুয়ারি","মার্চ","এপ্রিল","মে","জুন","জুলাই","অগাস্ট","সেপ্টেম্বর","অক্টোবর","নভেম্বর","ডিসেম্বর"], 12 | monthsShort: ["জানুয়ারী","ফেব্রুয়ারি","মার্চ","এপ্রিল","মে","জুন","জুলাই","অগাস্ট","সেপ্টেম্বর","অক্টোবর","নভেম্বর","ডিসেম্বর"], 13 | today: "আজ", 14 | monthsTitle: "মাস", 15 | clear: "পরিষ্কার", 16 | weekStart: 0, 17 | format: "mm/dd/yyyy" 18 | }; 19 | }(jQuery)); 20 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.br.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Breton translation for bootstrap-datepicker 3 | * Gwenn Meynier 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['br'] = { 7 | days: ["Sul", "Lun", "Meurzh", "Merc'her", "Yaou", "Gwener", "Sadorn"], 8 | daysShort: ["Sul", "Lun", "Meu.", "Mer.", "Yao.", "Gwe.", "Sad."], 9 | daysMin: ["Su", "L", "Meu", "Mer", "Y", "G", "Sa"], 10 | months: ["Genver", "C'hwevrer", "Meurzh", "Ebrel", "Mae", "Mezheven", "Gouere", "Eost", "Gwengolo", "Here", "Du", "Kerzu"], 11 | monthsShort: ["Genv.", "C'hw.", "Meur.", "Ebre.", "Mae", "Mezh.", "Goue.", "Eost", "Gwen.", "Here", "Du", "Kerz."], 12 | today: "Hiziv", 13 | monthsTitle: "Miz", 14 | clear: "Dilemel", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.bs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bosnian translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['bs'] = { 6 | days: ["Nedjelja","Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"], 8 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su"], 9 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Juni", "Juli", "August", "Septembar", "Oktobar", "Novembar", "Decembar"], 10 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 11 | today: "Danas", 12 | weekStart: 1, 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation for bootstrap-datepicker 3 | * J. Garcia 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ca'] = { 7 | days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte"], 8 | daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis"], 9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds"], 10 | months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"], 12 | today: "Avui", 13 | monthsTitle: "Mesos", 14 | clear: "Esborrar", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Czech translation for bootstrap-datepicker 3 | * Matěj Koubík 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['cs'] = { 8 | days: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"], 9 | daysShort: ["Ned", "Pon", "Úte", "Stř", "Čtv", "Pát", "Sob"], 10 | daysMin: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So"], 11 | months: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"], 12 | monthsShort: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čnc", "Srp", "Zář", "Říj", "Lis", "Pro"], 13 | today: "Dnes", 14 | clear: "Vymazat", 15 | monthsTitle: "Měsíc", 16 | weekStart: 1, 17 | format: "dd.m.yyyy" 18 | }; 19 | }(jQuery)); 20 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['cy'] = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Danish translation for bootstrap-datepicker 3 | * Christian Pedersen 4 | * Ivan Mylyanyk 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['da'] = { 8 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag"], 9 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør"], 10 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø"], 11 | months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "I Dag", 14 | weekStart: 1, 15 | clear: "Nulstil", 16 | format: "dd/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * German translation for bootstrap-datepicker 3 | * Sam Zurcher 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['de'] = { 7 | days: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"], 8 | daysShort: ["Son", "Mon", "Die", "Mit", "Don", "Fre", "Sam"], 9 | daysMin: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"], 10 | months: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], 11 | monthsShort: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"], 12 | today: "Heute", 13 | monthsTitle: "Monate", 14 | clear: "Löschen", 15 | weekStart: 1, 16 | format: "dd.mm.yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Greek translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['el'] = { 6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο"], 7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ"], 8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα"], 9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"], 10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"], 11 | today: "Σήμερα", 12 | clear: "Καθαρισμός", 13 | weekStart: 1, 14 | format: "d/m/yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.en-AU.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Australian English translation for bootstrap-datepicker 3 | * Steve Chapman 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['en-AU'] = { 7 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 8 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 9 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 10 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Today", 13 | monthsTitle: "Months", 14 | clear: "Clear", 15 | weekStart: 1, 16 | format: "d/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.en-CA.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Canadian English translation for bootstrap-datepicker 3 | * Mike Nacey 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['en-CA'] = { 7 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 8 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 9 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 10 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Today", 13 | monthsTitle: "Months", 14 | clear: "Clear", 15 | weekStart: 0, 16 | format: "yyyy-mm-dd" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.en-GB.js: -------------------------------------------------------------------------------- 1 | /** 2 | * British English translation for bootstrap-datepicker 3 | * Xavier Dutreilh 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['en-GB'] = { 7 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 8 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 9 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 10 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Today", 13 | monthsTitle: "Months", 14 | clear: "Clear", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.en-IE.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Irish English translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['en-IE'] = { 6 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 7 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 8 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 9 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 10 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 11 | today: "Today", 12 | monthsTitle: "Months", 13 | clear: "Clear", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.en-NZ.js: -------------------------------------------------------------------------------- 1 | /** 2 | * New Zealand English translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['en-NZ'] = { 6 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 7 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 8 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 9 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 10 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 11 | today: "Today", 12 | monthsTitle: "Months", 13 | clear: "Clear", 14 | weekStart: 1, 15 | format: "d/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.en-ZA.js: -------------------------------------------------------------------------------- 1 | /** 2 | * South African English translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['en-ZA'] = { 6 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 7 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 8 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 9 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 10 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 11 | today: "Today", 12 | monthsTitle: "Months", 13 | clear: "Clear", 14 | weekStart: 1, 15 | format: "yyyy/mm/d" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.eo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Esperanto translation for bootstrap-datepicker 3 | * Emmanuel Debanne 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['eo'] = { 7 | days: ["dimanĉo", "lundo", "mardo", "merkredo", "ĵaŭdo", "vendredo", "sabato"], 8 | daysShort: ["dim.", "lun.", "mar.", "mer.", "ĵaŭ.", "ven.", "sam."], 9 | daysMin: ["d", "l", "ma", "me", "ĵ", "v", "s"], 10 | months: ["januaro", "februaro", "marto", "aprilo", "majo", "junio", "julio", "aŭgusto", "septembro", "oktobro", "novembro", "decembro"], 11 | monthsShort: ["jan.", "feb.", "mar.", "apr.", "majo", "jun.", "jul.", "aŭg.", "sep.", "okt.", "nov.", "dec."], 12 | today: "Hodiaŭ", 13 | clear: "Nuligi", 14 | weekStart: 1, 15 | format: "yyyy-mm-dd" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Spanish translation for bootstrap-datepicker 3 | * Bruno Bonamin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['es'] = { 7 | days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"], 9 | daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa"], 10 | months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 11 | monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 12 | today: "Hoy", 13 | monthsTitle: "Meses", 14 | clear: "Borrar", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.et.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Estonian translation for bootstrap-datepicker 3 | * Ando Roots 4 | * Fixes by Illimar Tambek < 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['et'] = { 8 | days: ["Pühapäev", "Esmaspäev", "Teisipäev", "Kolmapäev", "Neljapäev", "Reede", "Laupäev"], 9 | daysShort: ["Pühap", "Esmasp", "Teisip", "Kolmap", "Neljap", "Reede", "Laup"], 10 | daysMin: ["P", "E", "T", "K", "N", "R", "L"], 11 | months: ["Jaanuar", "Veebruar", "Märts", "Aprill", "Mai", "Juuni", "Juuli", "August", "September", "Oktoober", "November", "Detsember"], 12 | monthsShort: ["Jaan", "Veebr", "Märts", "Apr", "Mai", "Juuni", "Juuli", "Aug", "Sept", "Okt", "Nov", "Dets"], 13 | today: "Täna", 14 | clear: "Tühjenda", 15 | weekStart: 1, 16 | format: "dd.mm.yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.eu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Basque translation for bootstrap-datepicker 3 | * Arkaitz Etxeberria 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['eu'] = { 7 | days: ['Igandea', 'Astelehena', 'Asteartea', 'Asteazkena', 'Osteguna', 'Ostirala', 'Larunbata'], 8 | daysShort: ['Ig', 'Al', 'Ar', 'Az', 'Og', 'Ol', 'Lr'], 9 | daysMin: ['Ig', 'Al', 'Ar', 'Az', 'Og', 'Ol', 'Lr'], 10 | months: ['Urtarrila', 'Otsaila', 'Martxoa', 'Apirila', 'Maiatza', 'Ekaina', 'Uztaila', 'Abuztua', 'Iraila', 'Urria', 'Azaroa', 'Abendua'], 11 | monthsShort: ['Urt', 'Ots', 'Mar', 'Api', 'Mai', 'Eka', 'Uzt', 'Abu', 'Ira', 'Urr', 'Aza', 'Abe'], 12 | today: "Gaur", 13 | monthsTitle: "Hilabeteak", 14 | clear: "Ezabatu", 15 | weekStart: 1, 16 | format: "yyyy/mm/dd" 17 | }; 18 | }(jQuery)); 19 | 20 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Persian translation for bootstrap-datepicker 3 | * Mostafa Rokooie 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fa'] = { 7 | days: ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنج‌شنبه", "جمعه", "شنبه", "یک‌شنبه"], 8 | daysShort: ["یک", "دو", "سه", "چهار", "پنج", "جمعه", "شنبه", "یک"], 9 | daysMin: ["ی", "د", "س", "چ", "پ", "ج", "ش", "ی"], 10 | months: ["ژانویه", "فوریه", "مارس", "آوریل", "مه", "ژوئن", "ژوئیه", "اوت", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"], 11 | monthsShort: ["ژان", "فور", "مار", "آور", "مه", "ژون", "ژوی", "اوت", "سپت", "اکت", "نوا", "دسا"], 12 | today: "امروز", 13 | clear: "پاک کن", 14 | weekStart: 1, 15 | format: "yyyy/mm/dd" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Finnish translation for bootstrap-datepicker 3 | * Jaakko Salonen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fi'] = { 7 | days: ["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai"], 8 | daysShort: ["sun", "maa", "tii", "kes", "tor", "per", "lau"], 9 | daysMin: ["su", "ma", "ti", "ke", "to", "pe", "la"], 10 | months: ["tammikuu", "helmikuu", "maaliskuu", "huhtikuu", "toukokuu", "kesäkuu", "heinäkuu", "elokuu", "syyskuu", "lokakuu", "marraskuu", "joulukuu"], 11 | monthsShort: ["tam", "hel", "maa", "huh", "tou", "kes", "hei", "elo", "syy", "lok", "mar", "jou"], 12 | today: "tänään", 13 | clear: "Tyhjennä", 14 | weekStart: 1, 15 | format: "d.m.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.fo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Faroese translation for bootstrap-datepicker 3 | * Theodor Johannesen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fo'] = { 7 | days: ["Sunnudagur", "Mánadagur", "Týsdagur", "Mikudagur", "Hósdagur", "Fríggjadagur", "Leygardagur"], 8 | daysShort: ["Sun", "Mán", "Týs", "Mik", "Hós", "Frí", "Ley"], 9 | daysMin: ["Su", "Má", "Tý", "Mi", "Hó", "Fr", "Le"], 10 | months: ["Januar", "Februar", "Marts", "Apríl", "Mei", "Juni", "Juli", "August", "Septembur", "Oktobur", "Novembur", "Desembur"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 12 | today: "Í Dag", 13 | clear: "Reinsa" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.fr-CH.js: -------------------------------------------------------------------------------- 1 | /** 2 | * French (Switzerland) translation for bootstrap-datepicker 3 | * Christoph Jossi 4 | * Based on 5 | * French translation for bootstrap-datepicker 6 | * Nico Mollet 7 | */ 8 | ;(function($){ 9 | $.fn.datepicker.dates['fr'] = { 10 | days: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"], 11 | daysShort: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam"], 12 | daysMin: ["D", "L", "Ma", "Me", "J", "V", "S"], 13 | months: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"], 14 | monthsShort: ["Jan", "Fév", "Mar", "Avr", "Mai", "Jui", "Jul", "Aou", "Sep", "Oct", "Nov", "Déc"], 15 | today: "Aujourd'hui", 16 | monthsTitle: "Mois", 17 | clear: "Effacer", 18 | weekStart: 1, 19 | format: "dd.mm.yyyy" 20 | }; 21 | }(jQuery)); 22 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * French translation for bootstrap-datepicker 3 | * Nico Mollet 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fr'] = { 7 | days: ["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"], 8 | daysShort: ["dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam."], 9 | daysMin: ["d", "l", "ma", "me", "j", "v", "s"], 10 | months: ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"], 11 | monthsShort: ["janv.", "févr.", "mars", "avril", "mai", "juin", "juil.", "août", "sept.", "oct.", "nov.", "déc."], 12 | today: "Aujourd'hui", 13 | monthsTitle: "Mois", 14 | clear: "Effacer", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.gl.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | $.fn.datepicker.dates['gl'] = { 3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado"], 4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb"], 5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa"], 6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 8 | today: "Hoxe", 9 | clear: "Limpar", 10 | weekStart: 1, 11 | format: "dd/mm/yyyy" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['he'] = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.hi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hindi translation for bootstrap-datepicker 3 | * Visar Uruqi 4 | */ 5 | ; (function($){ 6 | $.fn.datepicker.dates['hi'] = { 7 | days: ["रविवार", "सोमवार", "मंगलवार", "बुधवार", "गुरुवार", "शुक्रवार", "शनिवार"], 8 | daysShort: ["सूर्य", "सोम", "मंगल", "बुध", "गुरु", "शुक्र", "शनि"], 9 | daysMin: ["र", "सो", "मं", "बु", "गु", "शु", "श"], 10 | months: ["जनवरी", "फ़रवरी", "मार्च", "अप्रैल", "मई", "जून", "जुलाई", "अगस्त", "सितम्बर", "अक्टूबर", "नवंबर", "दिसम्बर"], 11 | monthsShort: ["जन", "फ़रवरी", "मार्च", "अप्रैल", "मई", "जून", "जुलाई", "अगस्त", "सितं", "अक्टूबर", "नवं", "दिसम्बर"], 12 | today: "आज", 13 | monthsTitle: "महीने", 14 | clear: "साफ", 15 | weekStart: 1, 16 | format: "dd / mm / yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['hr'] = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hungarian translation for bootstrap-datepicker 3 | * Sotus László 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['hu'] = { 7 | days: ["vasárnap", "hétfő", "kedd", "szerda", "csütörtök", "péntek", "szombat"], 8 | daysShort: ["vas", "hét", "ked", "sze", "csü", "pén", "szo"], 9 | daysMin: ["V", "H", "K", "Sze", "Cs", "P", "Szo"], 10 | months: ["január", "február", "március", "április", "május", "június", "július", "augusztus", "szeptember", "október", "november", "december"], 11 | monthsShort: ["jan", "feb", "már", "ápr", "máj", "jún", "júl", "aug", "sze", "okt", "nov", "dec"], 12 | today: "ma", 13 | weekStart: 1, 14 | clear: "töröl", 15 | titleFormat: "yyyy. MM", 16 | format: "yyyy.mm.dd" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.hy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Armenian translation for bootstrap-datepicker 3 | * Hayk Chamyan 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['hy'] = { 7 | days: ["Կիրակի", "Երկուշաբթի", "Երեքշաբթի", "Չորեքշաբթի", "Հինգշաբթի", "Ուրբաթ", "Շաբաթ"], 8 | daysShort: ["Կիր", "Երկ", "Երե", "Չոր", "Հին", "Ուրբ", "Շաբ"], 9 | daysMin: ["Կի", "Եկ", "Եք", "Չո", "Հի", "Ու", "Շա"], 10 | months: ["Հունվար", "Փետրվար", "Մարտ", "Ապրիլ", "Մայիս", "Հունիս", "Հուլիս", "Օգոստոս", "Սեպտեմբեր", "Հոկտեմբեր", "Նոյեմբեր", "Դեկտեմբեր"], 11 | monthsShort: ["Հնվ", "Փետ", "Մար", "Ապր", "Մայ", "Հուն", "Հուլ", "Օգս", "Սեպ", "Հոկ", "Նոյ", "Դեկ"], 12 | today: "Այսօր", 13 | clear: "Ջնջել", 14 | format: "dd.mm.yyyy", 15 | weekStart: 1, 16 | monthsTitle: 'Ամիսնէր' 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bahasa translation for bootstrap-datepicker 3 | * Azwar Akbar 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['id'] = { 7 | days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu"], 8 | daysShort: ["Mgu", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab"], 9 | daysMin: ["Mg", "Sn", "Sl", "Ra", "Ka", "Ju", "Sa"], 10 | months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ags", "Sep", "Okt", "Nov", "Des"], 12 | today: "Hari Ini", 13 | clear: "Kosongkan" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Icelandic translation for bootstrap-datepicker 3 | * Hinrik Örn Sigurðsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['is'] = { 7 | days: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur"], 8 | daysShort: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau"], 9 | daysMin: ["Su", "Má", "Þr", "Mi", "Fi", "Fö", "La"], 10 | months: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"], 12 | today: "Í Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.it-CH.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Italian (Switzerland) translation for bootstrap-datepicker 3 | * Christoph Jossi 4 | * Based on 5 | * Italian translation for bootstrap-datepicker 6 | * Enrico Rubboli 7 | */ 8 | ;(function($){ 9 | $.fn.datepicker.dates['it'] = { 10 | days: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato"], 11 | daysShort: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"], 12 | daysMin: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa"], 13 | months: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], 14 | monthsShort: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], 15 | today: "Oggi", 16 | clear: "Cancella", 17 | weekStart: 1, 18 | format: "dd.mm.yyyy" 19 | }; 20 | }(jQuery)); 21 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Italian translation for bootstrap-datepicker 3 | * Enrico Rubboli 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['it'] = { 7 | days: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"], 9 | daysMin: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa"], 10 | months: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], 12 | today: "Oggi", 13 | monthsTitle: "Mesi", 14 | clear: "Cancella", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd", 14 | titleFormat: "yyyy年mm月", 15 | clear: "クリア" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.ka.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Georgian translation for bootstrap-datepicker 3 | * Levan Melikishvili 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ka'] = { 7 | days: ["კვირა", "ორშაბათი", "სამშაბათი", "ოთხშაბათი", "ხუთშაბათი", "პარასკევი", "შაბათი"], 8 | daysShort: ["კვი", "ორშ", "სამ", "ოთხ", "ხუთ", "პარ", "შაბ"], 9 | daysMin: ["კვ", "ორ", "სა", "ოთ", "ხუ", "პა", "შა"], 10 | months: ["იანვარი", "თებერვალი", "მარტი", "აპრილი", "მაისი", "ივნისი", "ივლისი", "აგვისტო", "სექტემბერი", "ოქტომბერი", "ნოემბერი", "დეკემბერი"], 11 | monthsShort: ["იან", "თებ", "მარ", "აპრ", "მაი", "ივნ", "ივლ", "აგვ", "სექ", "ოქტ", "ნოე", "დეკ"], 12 | today: "დღეს", 13 | clear: "გასუფთავება", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.kk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Kazakh translation for bootstrap-datepicker 3 | * Yerzhan Tolekov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kk'] = { 7 | days: ["Жексенбі", "Дүйсенбі", "Сейсенбі", "Сәрсенбі", "Бейсенбі", "Жұма", "Сенбі"], 8 | daysShort: ["Жек", "Дүй", "Сей", "Сәр", "Бей", "Жұм", "Сен"], 9 | daysMin: ["Жк", "Дс", "Сс", "Ср", "Бс", "Жм", "Сн"], 10 | months: ["Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан"], 11 | monthsShort: ["Қаң", "Ақп", "Нау", "Сәу", "Мам", "Мау", "Шіл", "Там", "Қыр", "Қаз", "Қар", "Жел"], 12 | today: "Бүгін", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.km.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Khmer translation for bootstrap-datepicker 3 | * This is the Updated Version of: https://github.com/uxsolutions/bootstrap-datepicker/blob/71308d42cce9524284c50c6fac50422d1790ac0f/js/locales/bootstrap-datepicker.kh.js 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['km'] = { 7 | days: ["អាទិត្យ", "ចន្ទ", "អង្គារ", "ពុធ", "ព្រហស្បតិ៍", "សុក្រ", "សៅរ៍"], 8 | daysShort: ["អា.ទិ", "ចន្ទ", "អង្គារ", "ពុធ", "ព្រ.ហ", "សុក្រ", "សៅរ៍"], 9 | daysMin: ["អា.ទិ", "ចន្ទ", "អង្គារ", "ពុធ", "ព្រ.ហ", "សុក្រ", "សៅរ៍"], 10 | months: ["មករា", "កុម្ភះ", "មិនា", "មេសា", "ឧសភា", "មិថុនា", "កក្កដា", "សីហា", "កញ្ញា", "តុលា", "វិច្ឆិកា", "ធ្នូ"], 11 | monthsShort: ["មករា", "កុម្ភះ", "មិនា", "មេសា", "ឧសភា", "មិថុនា", "កក្កដា", "សីហា", "កញ្ញា", "តុលា", "វិច្ឆិកា", "ធ្នូ"], 12 | today: "ថ្ងៃនេះ", 13 | clear: "សំអាត" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * This is a port from https://github.com/moment/moment/blob/develop/src/locale/ko.js 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ko'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 12 | today: "오늘", 13 | clear: "삭제", 14 | format: "yyyy-mm-dd", 15 | titleFormat: "yyyy년mm월", 16 | weekStart: 0 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * Gu Youn 4 | * 5 | * DEPRECATED: This language code 'kr' is deprecated and will be removed in 2.0. 6 | * Korean support is now in a 'ko' translation file to follow the ISO language 7 | * code - http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes 8 | */ 9 | ;(function($){ 10 | $.fn.datepicker.dates['kr'] = { 11 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"], 12 | daysShort: ["일", "월", "화", "수", "목", "금", "토"], 13 | daysMin: ["일", "월", "화", "수", "목", "금", "토"], 14 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 15 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"] 16 | }; 17 | 18 | $.fn.datepicker.deprecated('The language code "kr" is deprecated and will be removed in 2.0. For korean support use "ko" instead.'); 19 | }(jQuery)); 20 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.lt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Lithuanian translation for bootstrap-datepicker 3 | * Šarūnas Gliebus 4 | */ 5 | 6 | ;(function($){ 7 | $.fn.datepicker.dates['lt'] = { 8 | days: ["Sekmadienis", "Pirmadienis", "Antradienis", "Trečiadienis", "Ketvirtadienis", "Penktadienis", "Šeštadienis"], 9 | daysShort: ["S", "Pr", "A", "T", "K", "Pn", "Š"], 10 | daysMin: ["Sk", "Pr", "An", "Tr", "Ke", "Pn", "Št"], 11 | months: ["Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis"], 12 | monthsShort: ["Sau", "Vas", "Kov", "Bal", "Geg", "Bir", "Lie", "Rugp", "Rugs", "Spa", "Lap", "Gru"], 13 | today: "Šiandien", 14 | monthsTitle:"Mėnesiai", 15 | clear:"Išvalyti", 16 | weekStart: 1, 17 | format:"yyyy-mm-dd" 18 | }; 19 | }(jQuery)); 20 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Latvian translation for bootstrap-datepicker 3 | * Artis Avotins 4 | */ 5 | 6 | ;(function($){ 7 | $.fn.datepicker.dates['lv'] = { 8 | days: ["Svētdiena", "Pirmdiena", "Otrdiena", "Trešdiena", "Ceturtdiena", "Piektdiena", "Sestdiena"], 9 | daysShort: ["Sv", "P", "O", "T", "C", "Pk", "S"], 10 | daysMin: ["Sv", "Pr", "Ot", "Tr", "Ce", "Pk", "Se"], 11 | months: ["Janvāris", "Februāris", "Marts", "Aprīlis", "Maijs", "Jūnijs", "Jūlijs", "Augusts", "Septembris", "Oktobris", "Novembris", "Decembris"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jūn", "Jūl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Šodien", 14 | clear: "Nodzēst", 15 | weekStart: 1 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.me.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Montenegrin translation for bootstrap-datepicker 3 | * Miodrag Nikač 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['me'] = { 7 | days: ["Nedjelja","Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"], 9 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas", 13 | weekStart: 1, 14 | clear: "Izbriši", 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.mk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Macedonian translation for bootstrap-datepicker 3 | * Marko Aleksic 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['mk'] = { 7 | days: ["Недела", "Понеделник", "Вторник", "Среда", "Четврток", "Петок", "Сабота"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сре", "Чет", "Пет", "Саб"], 9 | daysMin: ["Не", "По", "Вт", "Ср", "Че", "Пе", "Са"], 10 | months: ["Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Јан", "Фев", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "Денес", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.mn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Mongolian translation for bootstrap-datepicker 3 | * Andrey Torsunov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['mn'] = { 7 | days: ["Ням", "Даваа", "Мягмар", "Лхагва", "Пүрэв", "Баасан", "Бямба"], 8 | daysShort: ["Ням", "Дав", "Мяг", "Лха", "Пүр", "Баа", "Бям"], 9 | daysMin: ["Ня", "Да", "Мя", "Лх", "Пү", "Ба", "Бя"], 10 | months: ["Хулгана", "Үхэр", "Бар", "Туулай", "Луу", "Могой", "Морь", "Хонь", "Бич", "Тахиа", "Нохой", "Гахай"], 11 | monthsShort: ["Хул", "Үхэ", "Бар", "Туу", "Луу", "Мог", "Мор", "Хон", "Бич", "Тах", "Нох", "Гах"], 12 | today: "Өнөөдөр", 13 | clear: "Тодорхой", 14 | format: "yyyy.mm.dd", 15 | weekStart: 1 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ms'] = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini", 13 | clear: "Bersihkan" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian (bokmål) translation for bootstrap-datepicker 3 | * Fredrik Sundmyhr 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nb'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø"], 10 | months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 12 | today: "I Dag", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.nl-BE.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Belgium-Dutch translation for bootstrap-datepicker 3 | * Julien Poulin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl-BE'] = { 7 | days: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"], 8 | daysShort: ["zo", "ma", "di", "wo", "do", "vr", "za"], 9 | daysMin: ["zo", "ma", "di", "wo", "do", "vr", "za"], 10 | months: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"], 11 | monthsShort: ["jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec"], 12 | today: "Vandaag", 13 | monthsTitle: "Maanden", 14 | clear: "Leegmaken", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch translation for bootstrap-datepicker 3 | * Reinier Goltstein 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl'] = { 7 | days: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"], 8 | daysShort: ["zo", "ma", "di", "wo", "do", "vr", "za"], 9 | daysMin: ["zo", "ma", "di", "wo", "do", "vr", "za"], 10 | months: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"], 11 | monthsShort: ["jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec"], 12 | today: "Vandaag", 13 | monthsTitle: "Maanden", 14 | clear: "Wissen", 15 | weekStart: 1, 16 | format: "dd-mm-yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | **/ 4 | ;(function($){ 5 | $.fn.datepicker.dates['no'] = { 6 | days: ['Søndag', 'Mandag', 'Tirsdag', 'Onsdag', 'Torsdag', 'Fredag', 'Lørdag'], 7 | daysShort: ['Søn', 'Man', 'Tir', 'Ons', 'Tor', 'Fre', 'Lør'], 8 | daysMin: ['Sø', 'Ma', 'Ti', 'On', 'To', 'Fr', 'Lø'], 9 | months: ['Januar', 'Februar', 'Mars', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Desember'], 10 | monthsShort: ['Jan', 'Feb', 'Mar', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'], 11 | today: 'I dag', 12 | clear: 'Nullstill', 13 | weekStart: 1, 14 | format: 'dd.mm.yyyy' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.oc.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Occitan translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['oc'] = { 6 | days: ["Dimenge", "Diluns", "Dimars", "Dimècres", "Dijòus", "Divendres", "Dissabte"], 7 | daysShort: ["Dim", "Dil", "Dmr", "Dmc", "Dij", "Div", "Dis"], 8 | daysMin: ["dg", "dl", "dr", "dc", "dj", "dv", "ds"], 9 | months: ["Genièr", "Febrièr", "Març", "Abrial", "Mai", "Junh", "Julhet", "Agost", "Setembre", "Octobre", "Novembre", "Decembre"], 10 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Dec"], 11 | today: "Uèi", 12 | monthsTitle: "Meses", 13 | clear: "Escafar", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.pl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Polish translation for bootstrap-datepicker 3 | * Robert 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pl'] = { 7 | days: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota"], 8 | daysShort: ["Niedz.", "Pon.", "Wt.", "Śr.", "Czw.", "Piąt.", "Sob."], 9 | daysMin: ["Ndz.", "Pn.", "Wt.", "Śr.", "Czw.", "Pt.", "Sob."], 10 | months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"], 11 | monthsShort: ["Sty.", "Lut.", "Mar.", "Kwi.", "Maj", "Cze.", "Lip.", "Sie.", "Wrz.", "Paź.", "Lis.", "Gru."], 12 | today: "Dzisiaj", 13 | weekStart: 1, 14 | clear: "Wyczyść", 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Brazilian translation for bootstrap-datepicker 3 | * Cauan Cabral 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pt-BR'] = { 7 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado"], 8 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb"], 9 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa"], 10 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 11 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 12 | today: "Hoje", 13 | monthsTitle: "Meses", 14 | clear: "Limpar", 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.pt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Portuguese translation for bootstrap-datepicker 3 | * Original code: Cauan Cabral 4 | * Tiago Melo 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['pt'] = { 8 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado"], 9 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb"], 10 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa"], 11 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 12 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 13 | today: "Hoje", 14 | monthsTitle: "Meses", 15 | clear: "Limpar", 16 | format: "dd/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Romanian translation for bootstrap-datepicker 3 | * Cristian Vasile 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ro'] = { 7 | days: ["Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă"], 8 | daysShort: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm"], 9 | daysMin: ["Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ"], 10 | months: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"], 11 | monthsShort: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Astăzi", 13 | clear: "Șterge", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Russian translation for bootstrap-datepicker 3 | * Victor Taranenko 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ru'] = { 7 | days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота"], 8 | daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб"], 9 | daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], 10 | months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"], 11 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 12 | today: "Сегодня", 13 | clear: "Очистить", 14 | format: "dd.mm.yyyy", 15 | weekStart: 1, 16 | monthsTitle: 'Месяцы' 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.si.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sinhala translation for bootstrap-datepicker 3 | * Chanaka Fernando 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['si'] = { 7 | days: ["ඉරිදා", "සඳුදා", "අඟහරුවාදා", "බදාදා", "බ්‍රහස්පතින්දා", "සිකුරාදා", "සෙනසුරාදා"], 8 | daysShort: ["ඉරි", "සඳු", "අඟ", "බදා", "බ්‍රහ", "සිකු", "සෙන"], 9 | daysMin: ["ඉ", "ස", "අ", "බ", "බ්‍ර", "සි", "සෙ"], 10 | months: ["ජනවාරි", "පෙබරවාරි", "මාර්තු", "අප්‍රේල්", "මැයි", "ජුනි", "ජූලි", "අගෝස්තු", "සැප්තැම්බර්", "ඔක්තෝබර්", "නොවැම්බර්", "දෙසැම්බර්"], 11 | monthsShort: ["ජන", "පෙබ", "මාර්", "අප්‍රේ", "මැයි", "ජුනි", "ජූලි", "අගෝ", "සැප්", "ඔක්", "නොවැ", "දෙසැ"], 12 | today: "අද", 13 | monthsTitle: "මාස", 14 | clear: "මකන්න", 15 | weekStart: 0, 16 | format: "yyyy-mm-dd" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovak translation for bootstrap-datepicker 3 | * Marek Lichtner 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates["sk"] = { 8 | days: ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota"], 9 | daysShort: ["Ned", "Pon", "Uto", "Str", "Štv", "Pia", "Sob"], 10 | daysMin: ["Ne", "Po", "Ut", "St", "Št", "Pia", "So"], 11 | months: ["Január", "Február", "Marec", "Apríl", "Máj", "Jún", "Júl", "August", "September", "Október", "November", "December"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Máj", "Jún", "Júl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Dnes", 14 | clear: "Vymazať", 15 | weekStart: 1, 16 | format: "d.m.yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovene translation for bootstrap-datepicker 3 | * Gregor Rudolf 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sl'] = { 7 | days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota"], 8 | daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob"], 9 | daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So"], 10 | months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danes", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Albanian translation for bootstrap-datepicker 3 | * Tomor Pupovci 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sq'] = { 7 | days: ["E Diel", "E Hënë", "E Martē", "E Mërkurë", "E Enjte", "E Premte", "E Shtunë"], 8 | daysShort: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Shtu"], 9 | daysMin: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sht"], 10 | months: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"], 11 | monthsShort: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Korr", "Gu", "Sht", "Tet", "Nën", "Dhjet"], 12 | today: "Sot" 13 | }; 14 | }(jQuery)); 15 | 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.sr-latin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian latin translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sr-latin'] = { 7 | days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub"], 9 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas", 13 | weekStart: 1, 14 | format: "dd.mm.yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.sr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian cyrillic translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sr'] = { 7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота"], 8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб"], 9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су"], 10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], 11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], 12 | today: "Данас", 13 | weekStart: 1, 14 | format: "dd.mm.yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swedish translation for bootstrap-datepicker 3 | * Patrik Ragnarsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sv'] = { 7 | days: ["Söndag", "Måndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "Lördag"], 8 | daysShort: ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör"], 9 | daysMin: ["Sö", "Må", "Ti", "On", "To", "Fr", "Lö"], 10 | months: ["Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Idag", 13 | format: "yyyy-mm-dd", 14 | weekStart: 1, 15 | clear: "Rensa" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.sw.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swahili translation for bootstrap-datepicker 3 | * Edwin Mugendi 4 | * Source: http://scriptsource.org/cms/scripts/page.php?item_id=entry_detail&uid=xnfaqyzcku 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['sw'] = { 8 | days: ["Jumapili", "Jumatatu", "Jumanne", "Jumatano", "Alhamisi", "Ijumaa", "Jumamosi"], 9 | daysShort: ["J2", "J3", "J4", "J5", "Alh", "Ij", "J1"], 10 | daysMin: ["2", "3", "4", "5", "A", "I", "1"], 11 | months: ["Januari", "Februari", "Machi", "Aprili", "Mei", "Juni", "Julai", "Agosti", "Septemba", "Oktoba", "Novemba", "Desemba"], 12 | monthsShort: ["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ago", "Sep", "Okt", "Nov", "Des"], 13 | today: "Leo" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.ta.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Tamil translation for bootstrap-datepicker 3 | * Abubacker Siddik A 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ta'] = { 7 | days: ["ஞாயிறு", "திங்கள்", "செவ்வாய்", "புதன்", "வியாழன்", "வெள்ளி", "சனி"], 8 | daysShort: ["ஞாயி", "திங்", "செவ்", "புத", "வியா", "வெள்", "சனி"], 9 | daysMin: ["ஞா", "தி", "செ", "பு", "வி", "வெ", "ச"], 10 | months: ["ஜனவரி", "பிப்ரவரி", "மார்ச்", "ஏப்ரல்", "மே", "ஜூன்", "ஜூலை", "ஆகஸ்டு", "செப்டம்பர்", "அக்டோபர்", "நவம்பர்", "டிசம்பர்"], 11 | monthsShort: ["ஜன", "பிப்", "மார்", "ஏப்", "மே", "ஜூன்", "ஜூலை", "ஆக", "செப்", "அக்", "நவ", "டிச"], 12 | today: "இன்று", 13 | monthsTitle: "மாதங்கள்", 14 | clear: "நீக்கு", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.tg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Tajik (cyrillic) translation for bootstrap-datepicker 3 | * Bakhtiyor Bahritidinov 4 | * Orif N. Jr. 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['tg'] = { 8 | days: ["Якшанбе", "Душанбе", "Сешанбе", "Чоршанбе", "Панҷшанбе", "Ҷумъа", "Шанбе"], 9 | daysShort: ["Яшб", "Дшб", "Сшб", "Чшб", "Пшб", "Ҷум", "Шнб"], 10 | daysMin: ["Яш", "Дш", "Сш", "Чш", "Пш", "Ҷм", "Шб"], 11 | months: ["Январ", "Феврал", "Март", "Апрел", "Май", "Июн", "Июл", "Август", "Сентябр", "Октябр", "Ноябр", "Декабр"], 12 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 13 | today: "Имрӯз", 14 | monthsTitle: "Моҳҳо", 15 | clear: "Тоза намудан", 16 | weekStart: 1, 17 | format: "dd.mm.yyyy" 18 | }; 19 | }(jQuery)); 20 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation for bootstrap-datepicker 3 | * Suchau Jiraprapot 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['th'] = { 7 | days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"], 8 | daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 9 | daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 10 | months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"], 11 | monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."], 12 | today: "วันนี้" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Turkish translation for bootstrap-datepicker 3 | * Serkan Algur 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['tr'] = { 7 | days: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi"], 8 | daysShort: ["Pz", "Pzt", "Sal", "Çrş", "Prş", "Cu", "Cts"], 9 | daysMin: ["Pz", "Pzt", "Sa", "Çr", "Pr", "Cu", "Ct"], 10 | months: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"], 11 | monthsShort: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"], 12 | today: "Bugün", 13 | clear: "Temizle", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.uk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Ukrainian translation for bootstrap-datepicker 3 | * Igor Polynets 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['uk'] = { 7 | days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятниця", "Субота"], 8 | daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб"], 9 | daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], 10 | months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"], 11 | monthsShort: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], 12 | today: "Сьогодні", 13 | clear: "Очистити", 14 | format: "dd.mm.yyyy", 15 | weekStart: 1 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.uz-cyrl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Uzbek latin translation for bootstrap-datepicker 3 | * Kakhramonov Javlonbek 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['uz-cyrl'] = { 7 | days: ["Якшанба", "Душанба", "Сешанба", "Чоршанба", "Пайшанба", "Жума", "Шанба"], 8 | daysShort: ["Якш", "Ду", "Се", "Чор", "Пай", "Жу", "Ша"], 9 | daysMin: ["Як", "Ду", "Се", "Чо", "Па", "Жу", "Ша"], 10 | months: ["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"], 11 | monthsShort: ["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"], 12 | today: "Бугун", 13 | clear: "Ўчириш", 14 | format: "dd.mm.yyyy", 15 | weekStart: 1, 16 | monthsTitle: 'Ойлар' 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.uz-latn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Uzbek latin translation for bootstrap-datepicker 3 | * Kakhramonov Javlonbek 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['uz-latn'] = { 7 | days: ["Yakshanba", "Dushanba", "Seshanba", "Chorshanba", "Payshanba", "Juma", "Shanba"], 8 | daysShort: ["Yak", "Du", "Se", "Chor", "Pay", "Ju", "Sha"], 9 | daysMin: ["Ya", "Du", "Se", "Cho", "Pa", "Ju", "Sha"], 10 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "Iyun", "Iyul", "Avgust", "Sentabr", "Oktabr", "Noyabr", "Dekabr"], 11 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "Iyn", "Iyl", "Avg", "Sen", "Okt", "Noy", "Dek"], 12 | today: "Bugun", 13 | clear: "O'chirish", 14 | format: "dd.mm.yyyy", 15 | weekStart: 1, 16 | monthsTitle: 'Oylar' 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Vietnamese translation for bootstrap-datepicker 3 | * An Vo 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['vi'] = { 7 | days: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"], 8 | daysShort: ["CN", "Thứ 2", "Thứ 3", "Thứ 4", "Thứ 5", "Thứ 6", "Thứ 7"], 9 | daysMin: ["CN", "T2", "T3", "T4", "T5", "T6", "T7"], 10 | months: ["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"], 11 | monthsShort: ["Th1", "Th2", "Th3", "Th4", "Th5", "Th6", "Th7", "Th8", "Th9", "Th10", "Th11", "Th12"], 12 | today: "Hôm nay", 13 | clear: "Xóa", 14 | format: "dd/mm/yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | clear: "清除", 14 | format: "yyyy年mm月dd日", 15 | titleFormat: "yyyy年mm月", 16 | weekStart: 1 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/bootstrap/js/locales/bootstrap-datepicker.zh-TW.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Traditional Chinese translation for bootstrap-datepicker 3 | * Rung-Sheng Jang 4 | * FrankWu Fix more appropriate use of Traditional Chinese habit 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['zh-TW'] = { 8 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"], 9 | daysShort: ["週日", "週一", "週二", "週三", "週四", "週五", "週六"], 10 | daysMin: ["日", "一", "二", "三", "四", "五", "六"], 11 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 13 | today: "今天", 14 | format: "yyyy年mm月dd日", 15 | weekStart: 1, 16 | clear: "清除" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /lib/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /lib/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /lib/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /lib/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /lib/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /lib/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /lib/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /lib/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /lib/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /lib/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /lib/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /lib/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /lib/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /lib/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /lib/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /lib/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /lib/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /lib/jquery/i18n/jquery.ui.datepicker-bs.js: -------------------------------------------------------------------------------- 1 | /* Bosnian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Kenan Konjo. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['bs'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Juni', 10 | 'Juli','August','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['bs']); 23 | }); -------------------------------------------------------------------------------- /lib/jquery/i18n/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- 1 | /* Hebrew initialisation for the UI Datepicker extension. */ 2 | /* Written by Amir Hardon (ahardon at gmail dot com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['he'] = { 5 | closeText: 'סגור', 6 | prevText: '<הקודם', 7 | nextText: 'הבא>', 8 | currentText: 'היום', 9 | monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', 10 | 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], 11 | monthNamesShort: ['1','2','3','4','5','6', 12 | '7','8','9','10','11','12'], 13 | dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], 14 | dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 15 | dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['he']); 23 | }); 24 | -------------------------------------------------------------------------------- /lib/jquery/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- 1 | /* Japanese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Kentaro SATO (kentaro@ranvis.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ja'] = { 5 | closeText: '閉じる', 6 | prevText: '<前', 7 | nextText: '次>', 8 | currentText: '今日', 9 | monthNames: ['1月','2月','3月','4月','5月','6月', 10 | '7月','8月','9月','10月','11月','12月'], 11 | monthNamesShort: ['1月','2月','3月','4月','5月','6月', 12 | '7月','8月','9月','10月','11月','12月'], 13 | dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'], 14 | dayNamesShort: ['日','月','火','水','木','金','土'], 15 | dayNamesMin: ['日','月','火','水','木','金','土'], 16 | weekHeader: '週', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ja']); 23 | }); -------------------------------------------------------------------------------- /lib/jquery/i18n/jquery.ui.datepicker-sr-SR.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr-SR'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Jun', 10 | 'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Avg','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Sed', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr-SR']); 23 | }); 24 | -------------------------------------------------------------------------------- /lib/jquery/i18n/jquery.ui.datepicker-sr.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr'] = { 5 | closeText: 'Затвори', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Данас', 9 | monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун', 10 | 'Јул','Август','Септембар','Октобар','Новембар','Децембар'], 11 | monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун', 12 | 'Јул','Авг','Сеп','Окт','Нов','Дец'], 13 | dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'], 14 | dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'], 15 | dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'], 16 | weekHeader: 'Сед', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr']); 23 | }); 24 | -------------------------------------------------------------------------------- /lib/jquery/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Cloudream (cloudream@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-CN'] = { 5 | closeText: '关闭', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-CN']); 23 | }); 24 | -------------------------------------------------------------------------------- /lib/jquery/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by SCCY (samuelcychan@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-HK'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-HK']); 23 | }); 24 | -------------------------------------------------------------------------------- /lib/jquery/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Ressol (ressol@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-TW'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-TW']); 23 | }); 24 | -------------------------------------------------------------------------------- /lib/jquery/images/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/buttons.gif -------------------------------------------------------------------------------- /lib/jquery/images/ico_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/ico_folder.png -------------------------------------------------------------------------------- /lib/jquery/images/ico_folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/ico_folder_open.png -------------------------------------------------------------------------------- /lib/jquery/images/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/select2-spinner.gif -------------------------------------------------------------------------------- /lib/jquery/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/select2.png -------------------------------------------------------------------------------- /lib/jquery/images/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/select2x2.png -------------------------------------------------------------------------------- /lib/jquery/images/toolbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/toolbar.gif -------------------------------------------------------------------------------- /lib/jquery/images/treeview-default-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/treeview-default-line.gif -------------------------------------------------------------------------------- /lib/jquery/images/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/treeview-default.gif -------------------------------------------------------------------------------- /lib/jquery/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /lib/jquery/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /lib/jquery/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /lib/jquery/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /lib/jquery/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /lib/jquery/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luiswitz/adianti-framework-docker/653b5ebe33918f0d9da85d8f9c37b110cbc31c67/lib/jquery/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /lib/jquery/jquery-plugins.txt: -------------------------------------------------------------------------------- 1 | lib/jquery/jquery.scrollto.min.js 2 | lib/jquery/jquery.blockUI.min.js 3 | lib/jquery/jquery.editinplace.min.js 4 | lib/jquery/jquery.autocomplete.min.js 5 | lib/jquery/jquery.imask.min.js 6 | lib/jquery/jquery.treeview.min.js 7 | lib/jquery/jquery.dataTables.min.js 8 | lib/jquery/dataTables.responsive.min.js 9 | lib/jquery/select2.js 10 | lib/jquery/moment.min.js 11 | lib/jquery/fullcalendar.js 12 | -------------------------------------------------------------------------------- /lib/jquery/jquery.autocomplete.css: -------------------------------------------------------------------------------- 1 | .autocomplete-suggestions { border: 1px solid #999; background: #FFF; cursor: default; overflow: auto; -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); } 2 | .autocomplete-suggestion { padding: 8px 10px; white-space: nowrap; overflow: hidden; } 3 | .autocomplete-no-suggestion { padding: 2px 5px;} 4 | .autocomplete-selected { background: #F0F0F0; } 5 | .autocomplete-suggestions strong { color: #009dce; } 6 | .autocomplete-group { padding: 2px 5px; } 7 | .autocomplete-group strong { font-size: 16px; color: #000; display: block; border-bottom: 1px solid #000; } 8 | -------------------------------------------------------------------------------- /lib/jquery/select2_locale_pt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); 4 | -------------------------------------------------------------------------------- /lib/math/translationstrategy/TranslationStrategyInterface.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | interface TranslationStrategyInterface 11 | { 12 | public function translate(array $tokens); 13 | } 14 | -------------------------------------------------------------------------------- /phinx.yml: -------------------------------------------------------------------------------- 1 | paths: 2 | migrations: app/database/migrations 3 | seeds: app/database/seeds 4 | 5 | environments: 6 | default_migration_table: phinxlog 7 | default_database: development 8 | production: 9 | adapter: mysql 10 | host: db 11 | name: production_db 12 | user: root 13 | pass: '' 14 | port: 3306 15 | charset: utf8 16 | 17 | development: 18 | adapter: mysql 19 | host: db 20 | name: development_db 21 | user: root 22 | pass: 'root' 23 | port: 3306 24 | charset: utf8 25 | 26 | testing: 27 | adapter: mysql 28 | host: db 29 | name: testing_db 30 | user: root 31 | pass: '' 32 | port: 3306 33 | charset: utf8 34 | 35 | version_order: creation 36 | -------------------------------------------------------------------------------- /tmp/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | --------------------------------------------------------------------------------