├── .htaccess ├── .travis.yml ├── LICENSE.txt ├── README ├── README.md ├── app ├── .htaccess ├── app_controller.php ├── app_controller.php~ ├── app_helper.php ├── app_model.php ├── config │ ├── acl.ini.php │ ├── bootstrap.php │ ├── core.php │ ├── database.php │ ├── routes.php │ └── schema │ │ ├── db_acl.php │ │ ├── db_acl.sql │ │ ├── i18n.php │ │ ├── i18n.sql │ │ ├── sessions.php │ │ └── sessions.sql ├── controllers │ ├── aditivos_controller.php │ ├── components │ │ └── prg.php │ ├── contratantes_controller.php │ ├── contratos_controller.php │ ├── empresas_controller.php │ ├── eventos_controller.php │ ├── garantias_controller.php │ ├── licitacoes_controller.php │ ├── lotes_controller.php │ ├── mapas_controller.php │ ├── modalidades_controller.php │ ├── ocorrencias_controller.php │ ├── pages_controller.php │ ├── pessoas_controller.php │ ├── reajustes_controller.php │ ├── recebimentos_controller.php │ ├── recursos_controller.php │ ├── resultados_controller.php │ ├── situacoes_controller.php │ ├── tipoaditivos_controller.php │ ├── tipoeventos_controller.php │ ├── tipolicitacoes_controller.php │ ├── tipoocorrencias_controller.php │ └── usuarios_controller.php ├── index.php ├── models │ ├── aditivo.php │ ├── behaviors │ │ └── searchable.php │ ├── contratante.php │ ├── contrato.php │ ├── empresa.php │ ├── evento.php │ ├── garantia.php │ ├── licitacao.php │ ├── lote.php │ ├── modalidade.php │ ├── ocorrencia.php │ ├── pessoa.php │ ├── reajuste.php │ ├── recebimento.php │ ├── recurso.php │ ├── resultado.php │ ├── situacao.php │ ├── tipoaditivo.php │ ├── tipoevento.php │ ├── tipolicitacao.php │ ├── tipoocorrencia.php │ └── usuario.php ├── plugins │ └── report_manager │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config │ │ └── bootstrap.php │ │ ├── controllers │ │ ├── report_manager_controller.php │ │ └── reports_controller.php │ │ ├── locale │ │ ├── bra │ │ │ └── LC_MESSAGES │ │ │ │ ├── report_manager.mo │ │ │ │ └── report_manager.po │ │ └── por │ │ │ └── LC_MESSAGES │ │ │ ├── report_manager.mo │ │ │ └── report_manager.po │ │ ├── vendor │ │ └── excel.php │ │ ├── views │ │ ├── elements │ │ │ ├── fields.ctp │ │ │ ├── fields_dnd.ctp │ │ │ ├── fields_dnd_table_close.ctp │ │ │ ├── fields_dnd_table_header.ctp │ │ │ ├── filter.ctp │ │ │ ├── format_float.ctp │ │ │ ├── logical_operator.ctp │ │ │ ├── one_to_many_option.ctp │ │ │ ├── order.ctp │ │ │ ├── order_direction.ctp │ │ │ └── report_style.ctp │ │ ├── layouts │ │ │ └── report.ctp │ │ └── reports │ │ │ ├── index.ctp │ │ │ ├── list_one_to_many_options.ctp │ │ │ ├── list_reports.ctp │ │ │ ├── report_display.ctp │ │ │ ├── report_display_one_to_many.ctp │ │ │ └── wizard.ctp │ │ └── webroot │ │ ├── css │ │ ├── banded.css │ │ ├── casual.css │ │ ├── executive.css │ │ ├── generic.css │ │ ├── ledger.css │ │ ├── presentation.css │ │ ├── report_manager.css │ │ ├── smart_wizard.css │ │ └── smart_wizard_vertical.css │ │ ├── img │ │ ├── add.png │ │ ├── bg.jpg │ │ ├── bg_blue.jpg │ │ ├── bg_brown.jpg │ │ ├── bg_menu_blue.jpg │ │ ├── cake.icon.png │ │ ├── calendar.gif │ │ ├── delete.gif │ │ ├── edit.gif │ │ ├── form_blue.gif │ │ ├── form_brown.gif │ │ ├── jquery-ui │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ ├── jquery.ui.stars.gif │ │ ├── list.gif │ │ ├── resultset_next.png │ │ ├── resultset_previous.png │ │ ├── sort-asc.png │ │ ├── sort-desc.png │ │ ├── test-error-icon.png │ │ ├── test-fail-icon.png │ │ ├── test-pass-icon.png │ │ ├── test-skip-icon.png │ │ └── view.gif │ │ └── js │ │ ├── default.js │ │ ├── index.js │ │ ├── jquery.smartWizard-2.0.js │ │ └── jquery.smartWizard-2.0.min.js ├── tests │ ├── cases │ │ ├── controllers │ │ │ ├── contratantes_controller.test.php │ │ │ ├── empresas_controller.test.php │ │ │ ├── eventos_controller.test.php │ │ │ ├── licitacoes_controller.test.php │ │ │ ├── lotes_controller.test.php │ │ │ ├── modalidades_controller.test.php │ │ │ ├── recebimentos_controller.test.php │ │ │ ├── resultados_controller.test.php │ │ │ ├── tipoeventos_controller.test.php │ │ │ ├── tipolicitacoes_controller.test.php │ │ │ └── usuarios_controller.test.php │ │ └── models │ │ │ ├── contratante.test.php │ │ │ ├── empresa.test.php │ │ │ ├── evento.test.php │ │ │ ├── licitacao.test.php │ │ │ ├── lote.test.php │ │ │ ├── modalidade.test.php │ │ │ ├── resultado.test.php │ │ │ ├── tipoevento.test.php │ │ │ ├── tipolicitacao.test.php │ │ │ └── usuario.test.php │ └── fixtures │ │ ├── contratante_fixture.php │ │ ├── empresa_fixture.php │ │ ├── evento_fixture.php │ │ ├── licitacao_fixture.php │ │ ├── lote_fixture.php │ │ ├── modalidade_fixture.php │ │ ├── resultado_fixture.php │ │ ├── tipoevento_fixture.php │ │ ├── tipolicitacao_fixture.php │ │ └── usuario_fixture.php ├── tmp │ ├── .keep │ ├── cache │ │ ├── models │ │ │ └── .keep │ │ ├── persistent │ │ │ └── .keep │ │ └── views │ │ │ └── .keep │ ├── logs │ │ └── .keep │ ├── reports │ │ ├── Contrato.Recebimento.Contratos_e_Recebimentos.crp │ │ ├── Garantia.Contrato.Contratos_por_tipo_de_garantia.crp │ │ ├── Licitacao.Evento.Licitacoes_e_Eventos.crp │ │ ├── Licitacao.Lote.Licitacoes_e_Lotes.crp │ │ ├── Modalidade.Licitacao.Licitacoes_por_modalidade.crp │ │ ├── Reajuste.Contrato.Contratos_por_tipo_de_reajuste.crp │ │ ├── Tipoaditivo.Aditivo.Aditivos_por_tipo.crp │ │ ├── Tipoevento.Evento.Eventos_por_tipo.crp │ │ ├── Tipolicitacao.Licitacao.Licitacoes_por_tipo.crp │ │ └── Tipoocorrencia.Ocorrencia.Ocorrencias_por_tipo.crp │ └── sessions │ │ └── .keep ├── views │ ├── aditivos │ │ ├── file.ctp │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── contratantes │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── contratos │ │ ├── file.ctp │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── elements │ │ ├── aditivos.ctp │ │ ├── adminfields.ctp │ │ ├── adminfields_td.ctp │ │ ├── alert-box.ctp │ │ ├── bandeira_alerta.ctp │ │ ├── contratos.ctp │ │ ├── dia_da_semana.ctp │ │ ├── email │ │ │ ├── html │ │ │ │ └── default.ctp │ │ │ └── text │ │ │ │ └── default.ctp │ │ ├── empresas.ctp │ │ ├── eventos.ctp │ │ ├── licitacoes.ctp │ │ ├── lotes.ctp │ │ ├── mapa_atrasos.ctp │ │ ├── mapa_contratos.ctp │ │ ├── mapa_eventos.ctp │ │ ├── mapa_recebimentos.ctp │ │ ├── menu_configuracoes.ctp │ │ ├── menu_contratos.ctp │ │ ├── menu_home.ctp │ │ ├── menu_licitacoes.ctp │ │ ├── menu_relatorios.ctp │ │ ├── ocorrencias.ctp │ │ ├── paginator.ctp │ │ ├── recursos.ctp │ │ └── resultados.ctp │ ├── empresas │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── eventos │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── garantias │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── helpers │ │ ├── date_picker.php │ │ └── ex_paginator.php │ ├── layouts │ │ ├── ajax.ctp │ │ ├── default.ctp │ │ ├── email │ │ │ ├── html │ │ │ │ └── default.ctp │ │ │ └── text │ │ │ │ └── default.ctp │ │ ├── flash.ctp │ │ ├── js │ │ │ └── default.ctp │ │ ├── login.ctp │ │ ├── rss │ │ │ └── default.ctp │ │ └── xml │ │ │ └── default.ctp │ ├── licitacoes │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── lotes │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── mapas │ │ └── index.ctp │ ├── modalidades │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── ocorrencias │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── pages │ │ └── home.ctp │ ├── pessoas │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── reajustes │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── recebimentos │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── recursos │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── resultados │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── situacoes │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── tipoaditivos │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── tipoeventos │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── tipolicitacoes │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── tipoocorrencias │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ └── usuarios │ │ ├── form.ctp │ │ ├── index.ctp │ │ ├── login.ctp │ │ ├── senha.ctp │ │ └── view.ctp └── webroot │ ├── .htaccess │ ├── assets │ ├── .DS_Store │ ├── css │ │ ├── .DS_Store │ │ ├── bootstrap.css │ │ ├── salplus.css │ │ ├── style-responsive.css │ │ ├── style.css │ │ ├── table-responsive.css │ │ ├── to-do.css │ │ └── zabuto_calendar.css │ ├── font-awesome │ │ ├── .DS_Store │ │ ├── css │ │ │ ├── .DS_Store │ │ │ └── font-awesome.css │ │ └── fonts │ │ │ ├── .DS_Store │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── fonts │ │ ├── .DS_Store │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── .DS_Store │ │ ├── blog-bg.jpg │ │ ├── checkbox-gray.png │ │ ├── friends │ │ │ ├── .DS_Store │ │ │ ├── fr-01.jpg │ │ │ ├── fr-02.jpg │ │ │ ├── fr-03.jpg │ │ │ ├── fr-04.jpg │ │ │ ├── fr-05.jpg │ │ │ ├── fr-06.jpg │ │ │ ├── fr-07.jpg │ │ │ ├── fr-08.jpg │ │ │ ├── fr-09.jpg │ │ │ ├── fr-10.jpg │ │ │ └── fr-11.jpg │ │ ├── instagram.jpg │ │ ├── login-bg.jpg │ │ ├── lorde.jpg │ │ ├── mask.png │ │ ├── ny.jpg │ │ ├── portfolio │ │ │ ├── .DS_Store │ │ │ ├── port01.jpg │ │ │ ├── port02.jpg │ │ │ ├── port03.jpg │ │ │ ├── port04.jpg │ │ │ ├── port05.jpg │ │ │ └── port06.jpg │ │ ├── product.jpg │ │ ├── product.png │ │ ├── profile-01.jpg │ │ ├── profile-02.jpg │ │ ├── radio-gray.png │ │ ├── ui-danro.jpg │ │ ├── ui-divya.jpg │ │ ├── ui-sam.jpg │ │ ├── ui-sherman.jpg │ │ ├── ui-zac.jpg │ │ ├── weather.jpg │ │ └── zoom.png │ ├── js │ │ ├── .DS_Store │ │ ├── bootstrap-inputmask │ │ │ ├── .DS_Store │ │ │ └── bootstrap-inputmask.min.js │ │ ├── bootstrap-switch.js │ │ ├── bootstrap.min.js │ │ ├── calendar-conf-events.js │ │ ├── chart-master │ │ │ ├── .DS_Store │ │ │ └── Chart.js │ │ ├── chartjs-conf.js │ │ ├── common-scripts.js │ │ ├── easy-pie-chart.js │ │ ├── fancybox │ │ │ ├── .DS_Store │ │ │ ├── jquery.fancybox.css │ │ │ └── jquery.fancybox.js │ │ ├── form-component.js │ │ ├── fullcalendar │ │ │ ├── .DS_Store │ │ │ ├── bootstrap-fullcalendar.css │ │ │ └── fullcalendar.min.js │ │ ├── gritter-conf.js │ │ ├── gritter │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ ├── .DS_Store │ │ │ │ ├── jquery.gritter.css │ │ │ │ └── jquery.gritter0.css │ │ │ ├── images │ │ │ │ ├── .DS_Store │ │ │ │ ├── gritter-light.png │ │ │ │ ├── gritter-long.png │ │ │ │ ├── gritter.png │ │ │ │ └── ie-spacer.gif │ │ │ └── js │ │ │ │ ├── .DS_Store │ │ │ │ └── jquery.gritter.js │ │ ├── jquery-1.8.3.min.js │ │ ├── jquery-easy-pie-chart │ │ │ ├── .DS_Store │ │ │ ├── jquery.easy-pie-chart.css │ │ │ └── jquery.easy-pie-chart.js │ │ ├── jquery-ui-1.9.2.custom.min.js │ │ ├── jquery.backstretch.min.js │ │ ├── jquery.dcjqaccordion.2.7.js │ │ ├── jquery.js │ │ ├── jquery.nicescroll.js │ │ ├── jquery.scrollTo.min.js │ │ ├── jquery.sparkline.js │ │ ├── jquery.tagsinput.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── morris-conf.js │ │ ├── sparkline-chart.js │ │ ├── tasks.js │ │ └── zabuto_calendar.js │ └── lineicons │ │ ├── .DS_Store │ │ ├── fonts │ │ ├── .DS_Store │ │ ├── linecons.eot │ │ ├── linecons.svg │ │ ├── linecons.ttf │ │ └── linecons.woff │ │ ├── index.html │ │ ├── lte-ie7.js │ │ └── style.css │ ├── css.php │ ├── css │ ├── admin.css │ ├── cake.generic.css │ ├── easybox │ │ ├── dark │ │ │ ├── closebtn.png │ │ │ ├── easybox.css │ │ │ ├── easybox.min.css │ │ │ ├── error.png │ │ │ ├── loading.gif │ │ │ ├── nextbtn.png │ │ │ ├── noslidebtn.png │ │ │ ├── prevbtn.png │ │ │ └── slidebtn.png │ │ ├── default │ │ │ ├── closebtn.png │ │ │ ├── easybox.css │ │ │ ├── easybox.min.css │ │ │ ├── error.png │ │ │ ├── loading.gif │ │ │ ├── nextbtn.png │ │ │ ├── noslidebtn.png │ │ │ ├── prevbtn.png │ │ │ └── slidebtn.png │ │ ├── glow │ │ │ ├── closebtn.png │ │ │ ├── easybox.css │ │ │ ├── easybox.min.css │ │ │ ├── error.png │ │ │ ├── loading.gif │ │ │ ├── nextbtn.png │ │ │ ├── noslidebtn.png │ │ │ ├── prevbtn.png │ │ │ └── slidebtn.png │ │ └── modern │ │ │ ├── bg.png │ │ │ ├── controls.png │ │ │ ├── easybox.css │ │ │ ├── easybox.min.css │ │ │ ├── error.png │ │ │ └── loading.gif │ ├── jquery-ui │ │ └── ui-lightness │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui-1.10.2.custom.css │ │ │ └── jquery-ui-1.10.2.custom.min.css │ ├── pagination.css │ └── print.css │ ├── favicon.ico │ ├── img │ ├── add-icon.gif │ ├── aditivos │ │ ├── exemplo-aditivo.jpg │ │ └── sem-documento.png │ ├── arrow.gif │ ├── award_star_gold_3.png │ ├── bg-center-column.jpg │ ├── calendar.png │ ├── chart_organisation.png │ ├── comments.png │ ├── contratos │ │ ├── exemplo-contrato.jpg │ │ └── sem-documento.png │ ├── edit-icon.gif │ ├── error.png │ ├── flag_green.png │ ├── flag_red.png │ ├── flag_yellow.png │ ├── group.png │ ├── hr.gif │ ├── image_new.gif │ ├── info.png │ ├── key.png │ ├── login-icon.gif │ ├── note_new.gif │ ├── page-find.gif │ ├── page_find.gif │ ├── page_text.gif │ ├── save-icon.gif │ ├── sort-asc.png │ ├── sort-desc.png │ ├── success.png │ ├── test-fail-icon.png │ ├── test-pass-icon.png │ ├── warning.png │ └── zoom.png │ ├── index.php │ ├── js │ ├── default.js │ ├── easybox │ │ ├── README.txt │ │ ├── distrib.min.js │ │ ├── easybox.js │ │ ├── easybox.min.js │ │ ├── extras │ │ │ ├── android-market.js │ │ │ ├── android-market.min.js │ │ │ ├── autoactivation.js │ │ │ ├── autoactivation.min.js │ │ │ ├── autoload.js │ │ │ ├── autoload.min.js │ │ │ ├── flickr.js │ │ │ ├── flickr.min.js │ │ │ ├── picasaweb.js │ │ │ └── picasaweb.min.js │ │ ├── handlers.js │ │ ├── handlers.min.js │ │ └── jquery.mousewheel.min.js │ ├── jquery-1.9.1.min.js │ ├── jquery-ui-1.10.1.custom.min.js │ └── jquery-ui │ │ ├── development-bundle │ │ ├── AUTHORS.txt │ │ ├── Gruntfile.js │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── demos │ │ │ ├── datepicker │ │ │ │ ├── alt-field.html │ │ │ │ ├── animation.html │ │ │ │ ├── buttonbar.html │ │ │ │ ├── date-formats.html │ │ │ │ ├── date-range.html │ │ │ │ ├── default.html │ │ │ │ ├── dropdown-month-year.html │ │ │ │ ├── icon-trigger.html │ │ │ │ ├── images │ │ │ │ │ └── calendar.gif │ │ │ │ ├── index.html │ │ │ │ ├── inline.html │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ ├── jquery.ui.datepicker-zh-TW.js │ │ │ │ ├── localization.html │ │ │ │ ├── min-max.html │ │ │ │ ├── multiple-calendars.html │ │ │ │ ├── other-months.html │ │ │ │ └── show-week.html │ │ │ ├── demos.css │ │ │ ├── draggable │ │ │ │ ├── constrain-movement.html │ │ │ │ ├── cursor-style.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── events.html │ │ │ │ ├── handle.html │ │ │ │ ├── index.html │ │ │ │ ├── revert.html │ │ │ │ ├── scroll.html │ │ │ │ ├── snap-to.html │ │ │ │ ├── sortable.html │ │ │ │ └── visual-feedback.html │ │ │ ├── droppable │ │ │ │ ├── accepted-elements.html │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ ├── index.html │ │ │ │ ├── photo-manager.html │ │ │ │ ├── propagation.html │ │ │ │ ├── revert.html │ │ │ │ ├── shopping-cart.html │ │ │ │ └── visual-feedback.html │ │ │ ├── images │ │ │ │ ├── calendar.gif │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ ├── demo-config-on.gif │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ ├── icon-docs-info.gif │ │ │ │ └── pbar-ani.gif │ │ │ └── widget │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ ├── docs │ │ │ ├── datepicker.html │ │ │ ├── draggable.html │ │ │ ├── droppable.html │ │ │ ├── jQuery.widget.html │ │ │ └── mouse.html │ │ ├── external │ │ │ ├── globalize.culture.de-DE.js │ │ │ ├── globalize.culture.ja-JP.js │ │ │ ├── globalize.js │ │ │ ├── jquery.mousewheel.js │ │ │ ├── jshint.js │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ ├── jquery-1.9.1.js │ │ ├── package.json │ │ ├── themes │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── minified │ │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ │ └── jquery.ui.theme.min.css │ │ │ └── ui-lightness │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ └── jquery.ui.theme.min.css │ │ ├── ui.core.jquery.json │ │ ├── ui.datepicker.jquery.json │ │ ├── ui.draggable.jquery.json │ │ ├── ui.droppable.jquery.json │ │ ├── ui.mouse.jquery.json │ │ ├── ui.widget.jquery.json │ │ └── ui │ │ │ ├── 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-be.js │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ ├── jquery.ui.datepicker-cy-GB.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-CA.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-hi.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-ka.js │ │ │ ├── jquery.ui.datepicker-kk.js │ │ │ ├── jquery.ui.datepicker-km.js │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ ├── jquery.ui.datepicker-ky.js │ │ │ ├── jquery.ui.datepicker-lb.js │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ ├── jquery.ui.datepicker-mk.js │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ ├── jquery.ui.datepicker-nb.js │ │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ ├── jquery.ui.datepicker-nn.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-tj.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 │ │ │ ├── jquery-ui.custom.js │ │ │ ├── jquery.ui.core.js │ │ │ ├── jquery.ui.datepicker.js │ │ │ ├── jquery.ui.draggable.js │ │ │ ├── jquery.ui.droppable.js │ │ │ ├── jquery.ui.mouse.js │ │ │ ├── jquery.ui.widget.js │ │ │ └── minified │ │ │ ├── i18n │ │ │ ├── jquery-ui-i18n.min.js │ │ │ ├── jquery.ui.datepicker-af.min.js │ │ │ ├── jquery.ui.datepicker-ar-DZ.min.js │ │ │ ├── jquery.ui.datepicker-ar.min.js │ │ │ ├── jquery.ui.datepicker-az.min.js │ │ │ ├── jquery.ui.datepicker-be.min.js │ │ │ ├── jquery.ui.datepicker-bg.min.js │ │ │ ├── jquery.ui.datepicker-bs.min.js │ │ │ ├── jquery.ui.datepicker-ca.min.js │ │ │ ├── jquery.ui.datepicker-cs.min.js │ │ │ ├── jquery.ui.datepicker-cy-GB.min.js │ │ │ ├── jquery.ui.datepicker-da.min.js │ │ │ ├── jquery.ui.datepicker-de.min.js │ │ │ ├── jquery.ui.datepicker-el.min.js │ │ │ ├── jquery.ui.datepicker-en-AU.min.js │ │ │ ├── jquery.ui.datepicker-en-GB.min.js │ │ │ ├── jquery.ui.datepicker-en-NZ.min.js │ │ │ ├── jquery.ui.datepicker-eo.min.js │ │ │ ├── jquery.ui.datepicker-es.min.js │ │ │ ├── jquery.ui.datepicker-et.min.js │ │ │ ├── jquery.ui.datepicker-eu.min.js │ │ │ ├── jquery.ui.datepicker-fa.min.js │ │ │ ├── jquery.ui.datepicker-fi.min.js │ │ │ ├── jquery.ui.datepicker-fo.min.js │ │ │ ├── jquery.ui.datepicker-fr-CA.min.js │ │ │ ├── jquery.ui.datepicker-fr-CH.min.js │ │ │ ├── jquery.ui.datepicker-fr.min.js │ │ │ ├── jquery.ui.datepicker-gl.min.js │ │ │ ├── jquery.ui.datepicker-he.min.js │ │ │ ├── jquery.ui.datepicker-hi.min.js │ │ │ ├── jquery.ui.datepicker-hr.min.js │ │ │ ├── jquery.ui.datepicker-hu.min.js │ │ │ ├── jquery.ui.datepicker-hy.min.js │ │ │ ├── jquery.ui.datepicker-id.min.js │ │ │ ├── jquery.ui.datepicker-is.min.js │ │ │ ├── jquery.ui.datepicker-it.min.js │ │ │ ├── jquery.ui.datepicker-ja.min.js │ │ │ ├── jquery.ui.datepicker-ka.min.js │ │ │ ├── jquery.ui.datepicker-kk.min.js │ │ │ ├── jquery.ui.datepicker-km.min.js │ │ │ ├── jquery.ui.datepicker-ko.min.js │ │ │ ├── jquery.ui.datepicker-ky.min.js │ │ │ ├── jquery.ui.datepicker-lb.min.js │ │ │ ├── jquery.ui.datepicker-lt.min.js │ │ │ ├── jquery.ui.datepicker-lv.min.js │ │ │ ├── jquery.ui.datepicker-mk.min.js │ │ │ ├── jquery.ui.datepicker-ml.min.js │ │ │ ├── jquery.ui.datepicker-ms.min.js │ │ │ ├── jquery.ui.datepicker-nb.min.js │ │ │ ├── jquery.ui.datepicker-nl-BE.min.js │ │ │ ├── jquery.ui.datepicker-nl.min.js │ │ │ ├── jquery.ui.datepicker-nn.min.js │ │ │ ├── jquery.ui.datepicker-no.min.js │ │ │ ├── jquery.ui.datepicker-pl.min.js │ │ │ ├── jquery.ui.datepicker-pt-BR.min.js │ │ │ ├── jquery.ui.datepicker-pt.min.js │ │ │ ├── jquery.ui.datepicker-rm.min.js │ │ │ ├── jquery.ui.datepicker-ro.min.js │ │ │ ├── jquery.ui.datepicker-ru.min.js │ │ │ ├── jquery.ui.datepicker-sk.min.js │ │ │ ├── jquery.ui.datepicker-sl.min.js │ │ │ ├── jquery.ui.datepicker-sq.min.js │ │ │ ├── jquery.ui.datepicker-sr-SR.min.js │ │ │ ├── jquery.ui.datepicker-sr.min.js │ │ │ ├── jquery.ui.datepicker-sv.min.js │ │ │ ├── jquery.ui.datepicker-ta.min.js │ │ │ ├── jquery.ui.datepicker-th.min.js │ │ │ ├── jquery.ui.datepicker-tj.min.js │ │ │ ├── jquery.ui.datepicker-tr.min.js │ │ │ ├── jquery.ui.datepicker-uk.min.js │ │ │ ├── jquery.ui.datepicker-vi.min.js │ │ │ ├── jquery.ui.datepicker-zh-CN.min.js │ │ │ ├── jquery.ui.datepicker-zh-HK.min.js │ │ │ └── jquery.ui.datepicker-zh-TW.min.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.ui.core.min.js │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ ├── jquery.ui.draggable.min.js │ │ │ ├── jquery.ui.droppable.min.js │ │ │ ├── jquery.ui.mouse.min.js │ │ │ └── jquery.ui.widget.min.js │ │ ├── index.html │ │ └── js │ │ ├── jquery-1.9.1.js │ │ ├── jquery-ui-1.10.2.custom.js │ │ ├── jquery-ui-1.10.2.custom.min.js │ │ └── jquery.ui.datepicker-pt.js │ └── test.php ├── cake ├── LICENSE.txt ├── VERSION.txt ├── basics.php ├── bootstrap.php ├── config │ ├── config.php │ ├── paths.php │ └── unicode │ │ └── casefolding │ │ ├── 0080_00ff.php │ │ ├── 0100_017f.php │ │ ├── 0180_024F.php │ │ ├── 0250_02af.php │ │ ├── 0370_03ff.php │ │ ├── 0400_04ff.php │ │ ├── 0500_052f.php │ │ ├── 0530_058f.php │ │ ├── 1e00_1eff.php │ │ ├── 1f00_1fff.php │ │ ├── 2100_214f.php │ │ ├── 2150_218f.php │ │ ├── 2460_24ff.php │ │ ├── 2c00_2c5f.php │ │ ├── 2c60_2c7f.php │ │ ├── 2c80_2cff.php │ │ └── ff00_ffef.php ├── console │ ├── cake │ ├── cake.bat │ ├── cake.php │ ├── error.php │ ├── libs │ │ ├── acl.php │ │ ├── api.php │ │ ├── bake.php │ │ ├── console.php │ │ ├── i18n.php │ │ ├── schema.php │ │ ├── shell.php │ │ ├── tasks │ │ │ ├── bake.php │ │ │ ├── controller.php │ │ │ ├── db_config.php │ │ │ ├── extract.php │ │ │ ├── fixture.php │ │ │ ├── model.php │ │ │ ├── plugin.php │ │ │ ├── project.php │ │ │ ├── template.php │ │ │ ├── test.php │ │ │ └── view.php │ │ └── testsuite.php │ └── templates │ │ ├── default │ │ ├── actions │ │ │ └── controller_actions.ctp │ │ ├── classes │ │ │ ├── controller.ctp │ │ │ ├── fixture.ctp │ │ │ ├── model.ctp │ │ │ └── test.ctp │ │ └── views │ │ │ ├── form.ctp │ │ │ ├── home.ctp │ │ │ ├── index.ctp │ │ │ └── view.ctp │ │ └── skel │ │ ├── .htaccess │ │ ├── app_controller.php │ │ ├── app_helper.php │ │ ├── app_model.php │ │ ├── config │ │ ├── acl.ini.php │ │ ├── bootstrap.php │ │ ├── core.php │ │ ├── database.php.default │ │ ├── routes.php │ │ └── schema │ │ │ ├── db_acl.php │ │ │ ├── db_acl.sql │ │ │ ├── i18n.php │ │ │ ├── i18n.sql │ │ │ ├── sessions.php │ │ │ └── sessions.sql │ │ ├── controllers │ │ ├── components │ │ │ └── empty │ │ └── pages_controller.php │ │ ├── index.php │ │ ├── libs │ │ └── empty │ │ ├── locale │ │ └── eng │ │ │ └── LC_MESSAGES │ │ │ └── empty │ │ ├── models │ │ ├── behaviors │ │ │ └── empty │ │ └── datasources │ │ │ └── empty │ │ ├── plugins │ │ └── empty │ │ ├── tests │ │ ├── cases │ │ │ ├── behaviors │ │ │ │ └── empty │ │ │ ├── components │ │ │ │ └── empty │ │ │ ├── controllers │ │ │ │ └── empty │ │ │ ├── datasources │ │ │ │ └── empty │ │ │ ├── helpers │ │ │ │ └── empty │ │ │ ├── models │ │ │ │ └── empty │ │ │ └── shells │ │ │ │ └── empty │ │ ├── fixtures │ │ │ └── empty │ │ └── groups │ │ │ └── empty │ │ ├── tmp │ │ ├── cache │ │ │ ├── models │ │ │ │ └── empty │ │ │ ├── persistent │ │ │ │ └── empty │ │ │ └── views │ │ │ │ └── empty │ │ ├── logs │ │ │ └── empty │ │ ├── sessions │ │ │ └── empty │ │ └── tests │ │ │ └── empty │ │ ├── vendors │ │ └── shells │ │ │ └── tasks │ │ │ └── empty │ │ ├── views │ │ ├── elements │ │ │ ├── email │ │ │ │ ├── html │ │ │ │ │ └── default.ctp │ │ │ │ └── text │ │ │ │ │ └── default.ctp │ │ │ └── empty │ │ ├── errors │ │ │ └── empty │ │ ├── helpers │ │ │ └── empty │ │ ├── layouts │ │ │ ├── ajax.ctp │ │ │ ├── default.ctp │ │ │ ├── email │ │ │ │ ├── html │ │ │ │ │ └── default.ctp │ │ │ │ └── text │ │ │ │ │ └── default.ctp │ │ │ ├── flash.ctp │ │ │ ├── js │ │ │ │ └── default.ctp │ │ │ ├── rss │ │ │ │ └── default.ctp │ │ │ └── xml │ │ │ │ └── default.ctp │ │ ├── pages │ │ │ └── empty │ │ └── scaffolds │ │ │ └── empty │ │ └── webroot │ │ ├── .htaccess │ │ ├── css.php │ │ ├── css │ │ └── cake.generic.css │ │ ├── favicon.ico │ │ ├── img │ │ ├── cake.icon.png │ │ ├── cake.power.gif │ │ ├── test-error-icon.png │ │ ├── test-fail-icon.png │ │ ├── test-pass-icon.png │ │ └── test-skip-icon.png │ │ ├── index.php │ │ ├── js │ │ └── empty │ │ └── test.php ├── dispatcher.php ├── libs │ ├── cache.php │ ├── cache │ │ ├── apc.php │ │ ├── file.php │ │ ├── memcache.php │ │ └── xcache.php │ ├── cake_log.php │ ├── cake_session.php │ ├── cake_socket.php │ ├── class_registry.php │ ├── configure.php │ ├── controller │ │ ├── app_controller.php │ │ ├── component.php │ │ ├── components │ │ │ ├── acl.php │ │ │ ├── auth.php │ │ │ ├── cookie.php │ │ │ ├── email.php │ │ │ ├── request_handler.php │ │ │ ├── security.php │ │ │ └── session.php │ │ ├── controller.php │ │ ├── pages_controller.php │ │ └── scaffold.php │ ├── debugger.php │ ├── error.php │ ├── file.php │ ├── folder.php │ ├── http_socket.php │ ├── i18n.php │ ├── inflector.php │ ├── l10n.php │ ├── log │ │ └── file_log.php │ ├── magic_db.php │ ├── model │ │ ├── app_model.php │ │ ├── behaviors │ │ │ ├── acl.php │ │ │ ├── containable.php │ │ │ ├── translate.php │ │ │ └── tree.php │ │ ├── cake_schema.php │ │ ├── connection_manager.php │ │ ├── datasources │ │ │ ├── datasource.php │ │ │ ├── dbo │ │ │ │ ├── dbo_mssql.php │ │ │ │ ├── dbo_mysql.php │ │ │ │ ├── dbo_mysqli.php │ │ │ │ ├── dbo_oracle.php │ │ │ │ ├── dbo_postgres.php │ │ │ │ └── dbo_sqlite.php │ │ │ └── dbo_source.php │ │ ├── db_acl.php │ │ ├── model.php │ │ └── model_behavior.php │ ├── multibyte.php │ ├── object.php │ ├── overloadable.php │ ├── overloadable_php4.php │ ├── overloadable_php5.php │ ├── router.php │ ├── sanitize.php │ ├── security.php │ ├── set.php │ ├── string.php │ ├── validation.php │ ├── view │ │ ├── elements │ │ │ ├── email │ │ │ │ ├── html │ │ │ │ │ └── default.ctp │ │ │ │ └── text │ │ │ │ │ └── default.ctp │ │ │ └── sql_dump.ctp │ │ ├── errors │ │ │ ├── error404.ctp │ │ │ ├── error500.ctp │ │ │ ├── missing_action.ctp │ │ │ ├── missing_behavior_class.ctp │ │ │ ├── missing_behavior_file.ctp │ │ │ ├── missing_component_class.ctp │ │ │ ├── missing_component_file.ctp │ │ │ ├── missing_connection.ctp │ │ │ ├── missing_controller.ctp │ │ │ ├── missing_helper_class.ctp │ │ │ ├── missing_helper_file.ctp │ │ │ ├── missing_layout.ctp │ │ │ ├── missing_model.ctp │ │ │ ├── missing_scaffolddb.ctp │ │ │ ├── missing_table.ctp │ │ │ ├── missing_view.ctp │ │ │ ├── private_action.ctp │ │ │ └── scaffold_error.ctp │ │ ├── helper.php │ │ ├── helpers │ │ │ ├── ajax.php │ │ │ ├── app_helper.php │ │ │ ├── cache.php │ │ │ ├── form.php │ │ │ ├── html.php │ │ │ ├── javascript.php │ │ │ ├── jquery_engine.php │ │ │ ├── js.php │ │ │ ├── mootools_engine.php │ │ │ ├── number.php │ │ │ ├── paginator.php │ │ │ ├── prototype_engine.php │ │ │ ├── rss.php │ │ │ ├── session.php │ │ │ ├── text.php │ │ │ ├── time.php │ │ │ └── xml.php │ │ ├── layouts │ │ │ ├── ajax.ctp │ │ │ ├── default.ctp │ │ │ ├── email │ │ │ │ ├── html │ │ │ │ │ └── default.ctp │ │ │ │ └── text │ │ │ │ │ └── default.ctp │ │ │ ├── flash.ctp │ │ │ ├── js │ │ │ │ └── default.ctp │ │ │ ├── rss │ │ │ │ └── default.ctp │ │ │ └── xml │ │ │ │ └── default.ctp │ │ ├── media.php │ │ ├── pages │ │ │ └── home.ctp │ │ ├── scaffolds │ │ │ ├── edit.ctp │ │ │ ├── index.ctp │ │ │ └── view.ctp │ │ ├── theme.php │ │ └── view.php │ └── xml.php └── tests │ ├── cases │ ├── basics.test.php │ ├── console │ │ ├── cake.test.php │ │ └── libs │ │ │ ├── acl.test.php │ │ │ ├── api.test.php │ │ │ ├── bake.test.php │ │ │ ├── schema.test.php │ │ │ ├── shell.test.php │ │ │ └── tasks │ │ │ ├── controller.test.php │ │ │ ├── db_config.test.php │ │ │ ├── extract.test.php │ │ │ ├── fixture.test.php │ │ │ ├── model.test.php │ │ │ ├── plugin.test.php │ │ │ ├── project.test.php │ │ │ ├── template.test.php │ │ │ ├── test.test.php │ │ │ └── view.test.php │ ├── dispatcher.test.php │ └── libs │ │ ├── cache.test.php │ │ ├── cache │ │ ├── apc.test.php │ │ ├── file.test.php │ │ ├── memcache.test.php │ │ └── xcache.test.php │ │ ├── cake_log.test.php │ │ ├── cake_session.test.php │ │ ├── cake_socket.test.php │ │ ├── cake_test_case.test.php │ │ ├── cake_test_fixture.test.php │ │ ├── class_registry.test.php │ │ ├── code_coverage_manager.test.php │ │ ├── configure.test.php │ │ ├── controller │ │ ├── component.test.php │ │ ├── components │ │ │ ├── acl.test.php │ │ │ ├── auth.test.php │ │ │ ├── cookie.test.php │ │ │ ├── email.test.php │ │ │ ├── request_handler.test.php │ │ │ ├── security.test.php │ │ │ └── session.test.php │ │ ├── controller.test.php │ │ ├── controller_merge_vars.test.php │ │ ├── pages_controller.test.php │ │ └── scaffold.test.php │ │ ├── debugger.test.php │ │ ├── error.test.php │ │ ├── file.test.php │ │ ├── folder.test.php │ │ ├── http_socket.test.php │ │ ├── i18n.test.php │ │ ├── inflector.test.php │ │ ├── l10n.test.php │ │ ├── log │ │ └── file_log.test.php │ │ ├── magic_db.test.php │ │ ├── model │ │ ├── behaviors │ │ │ ├── acl.test.php │ │ │ ├── containable.test.php │ │ │ ├── translate.test.php │ │ │ └── tree.test.php │ │ ├── cake_schema.test.php │ │ ├── connection_manager.test.php │ │ ├── datasources │ │ │ ├── dbo │ │ │ │ ├── dbo_mssql.test.php │ │ │ │ ├── dbo_mysql.test.php │ │ │ │ ├── dbo_mysqli.test.php │ │ │ │ ├── dbo_oracle.test.php │ │ │ │ ├── dbo_postgres.test.php │ │ │ │ └── dbo_sqlite.test.php │ │ │ └── dbo_source.test.php │ │ ├── db_acl.test.php │ │ ├── model.test.php │ │ ├── model_behavior.test.php │ │ ├── model_delete.test.php │ │ ├── model_integration.test.php │ │ ├── model_read.test.php │ │ ├── model_validation.test.php │ │ ├── model_write.test.php │ │ └── models.php │ │ ├── multibyte.test.php │ │ ├── object.test.php │ │ ├── overloadable.test.php │ │ ├── router.test.php │ │ ├── sanitize.test.php │ │ ├── security.test.php │ │ ├── set.test.php │ │ ├── string.test.php │ │ ├── test_manager.test.php │ │ ├── validation.test.php │ │ ├── view │ │ ├── helper.test.php │ │ ├── helpers │ │ │ ├── ajax.test.php │ │ │ ├── cache.test.php │ │ │ ├── form.test.php │ │ │ ├── html.test.php │ │ │ ├── javascript.test.php │ │ │ ├── jquery_engine.test.php │ │ │ ├── js.test.php │ │ │ ├── mootools_engine.test.php │ │ │ ├── number.test.php │ │ │ ├── paginator.test.php │ │ │ ├── prototype_engine.test.php │ │ │ ├── rss.test.php │ │ │ ├── session.test.php │ │ │ ├── text.test.php │ │ │ ├── time.test.php │ │ │ └── xml.test.php │ │ ├── media.test.php │ │ ├── theme.test.php │ │ └── view.test.php │ │ └── xml.test.php │ ├── fixtures │ ├── account_fixture.php │ ├── aco_action_fixture.php │ ├── aco_fixture.php │ ├── aco_two_fixture.php │ ├── ad_fixture.php │ ├── advertisement_fixture.php │ ├── after_tree_fixture.php │ ├── another_article_fixture.php │ ├── apple_fixture.php │ ├── aro_fixture.php │ ├── aro_two_fixture.php │ ├── aros_aco_fixture.php │ ├── aros_aco_two_fixture.php │ ├── article_featured_fixture.php │ ├── article_featureds_tags_fixture.php │ ├── article_fixture.php │ ├── articles_tag_fixture.php │ ├── attachment_fixture.php │ ├── auth_user_custom_field_fixture.php │ ├── auth_user_fixture.php │ ├── author_fixture.php │ ├── basket_fixture.php │ ├── bid_fixture.php │ ├── bidding_fixture.php │ ├── bidding_message_fixture.php │ ├── binary_test_fixture.php │ ├── book_fixture.php │ ├── cache_test_model_fixture.php │ ├── callback_fixture.php │ ├── campaign_fixture.php │ ├── category_fixture.php │ ├── category_thread_fixture.php │ ├── cd_fixture.php │ ├── comment_fixture.php │ ├── content_account_fixture.php │ ├── content_fixture.php │ ├── counter_cache_post_fixture.php │ ├── counter_cache_post_nonstandard_primary_key_fixture.php │ ├── counter_cache_user_fixture.php │ ├── counter_cache_user_nonstandard_primary_key_fixture.php │ ├── data_test_fixture.php │ ├── datatype_fixture.php │ ├── dependency_fixture.php │ ├── device_fixture.php │ ├── device_type_category_fixture.php │ ├── device_type_fixture.php │ ├── document_directory_fixture.php │ ├── document_fixture.php │ ├── exterior_type_category_fixture.php │ ├── feature_set_fixture.php │ ├── featured_fixture.php │ ├── film_file_fixture.php │ ├── flag_tree_fixture.php │ ├── fruit_fixture.php │ ├── fruits_uuid_tag_fixture.php │ ├── group_update_all_fixture.php │ ├── home_fixture.php │ ├── image_fixture.php │ ├── item_fixture.php │ ├── items_portfolio_fixture.php │ ├── join_a_b_fixture.php │ ├── join_a_c_fixture.php │ ├── join_a_fixture.php │ ├── join_b_fixture.php │ ├── join_c_fixture.php │ ├── join_thing_fixture.php │ ├── message_fixture.php │ ├── my_categories_my_products_fixture.php │ ├── my_categories_my_users_fixture.php │ ├── my_category_fixture.php │ ├── my_product_fixture.php │ ├── my_user_fixture.php │ ├── node_fixture.php │ ├── number_tree_fixture.php │ ├── number_tree_two_fixture.php │ ├── numeric_article_fixture.php │ ├── overall_favorite_fixture.php │ ├── person_fixture.php │ ├── portfolio_fixture.php │ ├── post_fixture.php │ ├── posts_tag_fixture.php │ ├── prefix_test_fixture.php │ ├── primary_model_fixture.php │ ├── product_fixture.php │ ├── product_update_all_fixture.php │ ├── project_fixture.php │ ├── sample_fixture.php │ ├── secondary_model_fixture.php │ ├── session_fixture.php │ ├── something_else_fixture.php │ ├── something_fixture.php │ ├── stories_tag_fixture.php │ ├── story_fixture.php │ ├── syfile_fixture.php │ ├── tag_fixture.php │ ├── test_plugin_article_fixture.php │ ├── test_plugin_comment_fixture.php │ ├── the_paper_monkies_fixture.php │ ├── thread_fixture.php │ ├── translate_article_fixture.php │ ├── translate_fixture.php │ ├── translate_table_fixture.php │ ├── translate_with_prefix_fixture.php │ ├── translated_article_fixture.php │ ├── translated_item_fixture.php │ ├── unconventional_tree_fixture.php │ ├── underscore_field_fixture.php │ ├── user_fixture.php │ ├── uuid_fixture.php │ ├── uuid_tag_fixture.php │ ├── uuid_tree_fixture.php │ ├── uuiditem_fixture.php │ ├── uuiditems_uuidportfolio_fixture.php │ ├── uuiditems_uuidportfolio_numericid_fixture.php │ └── uuidportfolio_fixture.php │ ├── groups │ ├── acl.group.php │ ├── bake.group.php │ ├── behaviors.group.php │ ├── cache.group.php │ ├── components.group.php │ ├── configure.group.php │ ├── console.group.php │ ├── controller.group.php │ ├── database.group.php │ ├── helpers.group.php │ ├── i18n.group.php │ ├── javascript.group.php │ ├── lib.group.php │ ├── model.group.php │ ├── no_cross_contamination.group.php │ ├── routing_system.group.php │ ├── socket.group.php │ ├── test_suite.group.php │ ├── view.group.php │ └── xml.group.php │ ├── lib │ ├── cake_test_case.php │ ├── cake_test_fixture.php │ ├── cake_test_model.php │ ├── cake_test_suite_dispatcher.php │ ├── cake_web_test_case.php │ ├── code_coverage_manager.php │ ├── reporter │ │ ├── cake_base_reporter.php │ │ ├── cake_cli_reporter.php │ │ ├── cake_html_reporter.php │ │ └── cake_text_reporter.php │ ├── templates │ │ ├── footer.php │ │ ├── header.php │ │ ├── menu.php │ │ ├── simpletest.php │ │ └── xdebug.php │ └── test_manager.php │ └── test_app │ ├── config │ └── acl.ini.php │ ├── controllers │ ├── components │ │ └── empty │ ├── tests_apps_controller.php │ └── tests_apps_posts_controller.php │ ├── libs │ ├── cache │ │ └── test_app_cache.php │ ├── library.php │ └── log │ │ └── test_app_log.php │ ├── locale │ ├── cache_test_po │ │ └── LC_MESSAGES │ │ │ ├── default.po │ │ │ ├── dom1.po │ │ │ └── dom2.po │ ├── ja_jp │ │ └── LC_TIME │ ├── po │ │ ├── LC_MESSAGES │ │ │ └── default.po │ │ ├── LC_MONETARY │ │ │ └── default.po │ │ └── LC_TIME │ ├── rule_0_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_0_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_10_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_10_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_11_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_11_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_12_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_12_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_13_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_13_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_14_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_14_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_1_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_1_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_2_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_2_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_3_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_3_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_4_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_4_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_5_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_5_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_6_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_6_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_7_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_7_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_8_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_8_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_9_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_9_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ └── time_test │ │ └── LC_TIME │ ├── models │ ├── behaviors │ │ ├── empty │ │ ├── persister_one_behavior.php │ │ └── persister_two_behavior.php │ ├── comment.php │ ├── datasources │ │ ├── test │ │ │ └── test_local_driver.php │ │ ├── test2_other_source.php │ │ └── test2_source.php │ ├── persister_one.php │ ├── persister_two.php │ └── post.php │ ├── plugins │ ├── plugin_js │ │ └── webroot │ │ │ └── js │ │ │ ├── one │ │ │ └── plugin_one.js │ │ │ └── plugin_js.js │ ├── test_plugin │ │ ├── config │ │ │ ├── load.php │ │ │ ├── more.load.php │ │ │ └── schema │ │ │ │ └── schema.php │ │ ├── controllers │ │ │ ├── components │ │ │ │ ├── other_component.php │ │ │ │ ├── plugins_component.php │ │ │ │ ├── test_plugin_component.php │ │ │ │ └── test_plugin_other_component.php │ │ │ ├── test_plugin_controller.php │ │ │ └── tests_controller.php │ │ ├── libs │ │ │ ├── cache │ │ │ │ └── test_plugin_cache.php │ │ │ ├── log │ │ │ │ └── test_plugin_log.php │ │ │ └── test_plugin_library.php │ │ ├── locale │ │ │ └── po │ │ │ │ ├── LC_MESSAGES │ │ │ │ └── test_plugin.po │ │ │ │ └── LC_MONETARY │ │ │ │ └── test_plugin.po │ │ ├── models │ │ │ ├── behaviors │ │ │ │ ├── test_plugin_persister_one.php │ │ │ │ └── test_plugin_persister_two.php │ │ │ ├── datasources │ │ │ │ ├── dbo │ │ │ │ │ └── dbo_dummy.php │ │ │ │ ├── test │ │ │ │ │ └── test_driver.php │ │ │ │ ├── test_other_source.php │ │ │ │ └── test_source.php │ │ │ ├── test_plugin_auth_user.php │ │ │ ├── test_plugin_authors.php │ │ │ ├── test_plugin_comment.php │ │ │ └── test_plugin_post.php │ │ ├── test_plugin_app_controller.php │ │ ├── test_plugin_app_model.php │ │ ├── vendors │ │ │ ├── sample │ │ │ │ └── sample_plugin.php │ │ │ ├── shells │ │ │ │ ├── example.php │ │ │ │ ├── tasks │ │ │ │ │ └── empty │ │ │ │ └── templates │ │ │ │ │ └── empty │ │ │ └── welcome.php │ │ ├── views │ │ │ ├── elements │ │ │ │ ├── plugin_element.ctp │ │ │ │ └── test_plugin_element.ctp │ │ │ ├── helpers │ │ │ │ ├── other_helper.php │ │ │ │ ├── plugged_helper.php │ │ │ │ └── test_plugin_app.php │ │ │ ├── layouts │ │ │ │ └── default.ctp │ │ │ └── tests │ │ │ │ ├── index.ctp │ │ │ │ └── scaffold.edit.ctp │ │ └── webroot │ │ │ ├── css │ │ │ ├── test_plugin_asset.css │ │ │ ├── theme_one.htc │ │ │ └── unknown.extension │ │ │ ├── flash │ │ │ └── plugin_test.swf │ │ │ ├── img │ │ │ └── cake.icon.gif │ │ │ ├── js │ │ │ └── test_plugin │ │ │ │ └── test.js │ │ │ ├── pdfs │ │ │ └── plugin_test.pdf │ │ │ └── root.js │ └── test_plugin_two │ │ └── vendors │ │ └── shells │ │ ├── example.php │ │ ├── tasks │ │ └── empty │ │ ├── templates │ │ └── empty │ │ └── welcome.php │ ├── tmp │ └── dir_map │ ├── vendors │ ├── Test │ │ ├── MyTest.php │ │ └── hello.php │ ├── css │ │ └── test_asset.css │ ├── img │ │ ├── test.jpg │ │ └── test_2.JPG │ ├── sample │ │ └── configure_test_vendor_sample.php │ ├── shells │ │ ├── sample.php │ │ ├── tasks │ │ │ └── empty │ │ └── templates │ │ │ └── test │ │ │ └── classes │ │ │ └── test_object.ctp │ ├── somename │ │ └── some.name.php │ └── welcome.php │ ├── views │ ├── elements │ │ ├── email │ │ │ ├── html │ │ │ │ ├── custom.ctp │ │ │ │ ├── default.ctp │ │ │ │ └── nested_element.ctp │ │ │ └── text │ │ │ │ ├── custom.ctp │ │ │ │ ├── default.ctp │ │ │ │ └── wide.ctp │ │ ├── empty │ │ ├── html_call.ctp │ │ ├── nocache │ │ │ ├── contains_nocache.ctp │ │ │ ├── plain.ctp │ │ │ ├── sub1.ctp │ │ │ └── sub2.ctp │ │ ├── session_helper.ctp │ │ ├── test_element.ctp │ │ ├── test_element.xml │ │ └── type_check.ctp │ ├── errors │ │ └── empty │ ├── helpers │ │ ├── banana.php │ │ └── empty │ ├── layouts │ │ ├── ajax.ctp │ │ ├── ajax2.ctp │ │ ├── cache_empty_sections.ctp │ │ ├── cache_layout.ctp │ │ ├── default.ctp │ │ ├── email │ │ │ ├── html │ │ │ │ ├── default.ctp │ │ │ │ └── thin.ctp │ │ │ └── text │ │ │ │ └── default.ctp │ │ ├── flash.ctp │ │ ├── js │ │ │ └── default.ctp │ │ ├── multi_cache.ctp │ │ ├── rss │ │ │ └── default.ctp │ │ └── xml │ │ │ └── default.ctp │ ├── pages │ │ ├── empty │ │ ├── extract.ctp │ │ └── home.ctp │ ├── posts │ │ ├── cache_empty_sections.ctp │ │ ├── cache_form.ctp │ │ ├── helper_overwrite.ctp │ │ ├── index.ctp │ │ ├── multiple_nocache.ctp │ │ ├── nocache_multiple_element.ctp │ │ ├── scaffold.edit.ctp │ │ ├── sequencial_nocache.ctp │ │ └── test_nocache_tags.ctp │ ├── scaffolds │ │ └── empty │ ├── tests_apps │ │ └── index.ctp │ └── themed │ │ └── test_theme │ │ ├── elements │ │ └── test_element.ctp │ │ ├── layouts │ │ └── default.ctp │ │ ├── plugins │ │ └── test_plugin │ │ │ ├── layouts │ │ │ └── plugin_default.ctp │ │ │ └── tests │ │ │ └── index.ctp │ │ ├── posts │ │ ├── index.ctp │ │ └── scaffold.index.ctp │ │ └── webroot │ │ ├── css │ │ ├── test_asset.css │ │ └── theme_webroot.css │ │ ├── flash │ │ └── theme_test.swf │ │ ├── img │ │ ├── cake.power.gif │ │ └── test.jpg │ │ ├── js │ │ ├── one │ │ │ └── theme_one.js │ │ └── theme.js │ │ └── pdfs │ │ └── theme_test.pdf │ └── webroot │ └── theme │ └── test_theme │ ├── css │ ├── theme_webroot.css │ └── webroot_test.css │ └── img │ ├── cake.power.gif │ └── test.jpg ├── index.php ├── plugins └── empty ├── salplus-database-update.sql ├── salplus-database.sql └── vendors └── shells ├── tasks └── empty └── templates └── empty /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ app/webroot/ [L] 4 | RewriteRule (.*) app/webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | notifications: 3 | email:false 4 | branches: 5 | only: master -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ webroot/ [L] 4 | RewriteRule (.*) webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /app/config/schema/sessions.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright 2005-2011, Cake Software Foundation, Inc. 4 | # 1785 E. Sahara Avenue, Suite 490-204 5 | # Las Vegas, Nevada 89104 6 | # 7 | # Licensed under The MIT License 8 | # Redistributions of files must retain the above copyright notice. 9 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 10 | 11 | CREATE TABLE cake_sessions ( 12 | id varchar(255) NOT NULL default '', 13 | data text, 14 | expires int(11) default NULL, 15 | PRIMARY KEY (id) 16 | ); -------------------------------------------------------------------------------- /app/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/plugins/report_manager/views/elements/fields_dnd_table_header.ctp: -------------------------------------------------------------------------------- 1 | 2 |

3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/plugins/report_manager/views/elements/format_float.ctp: -------------------------------------------------------------------------------- 1 | 2 | Number->format($f,array( 3 | 'places' => 2, 4 | 'before' => '', 5 | 'escape' => false, 6 | 'decimals' => '.', 7 | 'thousands' => ',') 8 | )); ?>  -------------------------------------------------------------------------------- /app/plugins/report_manager/views/elements/logical_operator.ctp: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | 'AND', 8 | 'OR'=>'OR' 9 | ); 10 | echo ''; 11 | echo ''; 14 | echo ''; 15 | ?> 16 |
'; 12 | echo $this->Form->input('Report.Logical',array('type'=>'select','options'=>$logicalOptions,'label'=>false,'class'=>'form-control')); 13 | echo '
17 | -------------------------------------------------------------------------------- /app/plugins/report_manager/views/elements/one_to_many_option.ctp: -------------------------------------------------------------------------------- 1 | 2 | Form->input('Report.OneToManyOption',array('type'=>'hidden','value'=>$oneToManyOption)); ?> 3 | -------------------------------------------------------------------------------- /app/plugins/report_manager/views/elements/order_direction.ctp: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 'ASC', 8 | 'DESC'=>'DESC' 9 | ); 10 | echo ''; 11 | echo ''; 14 | echo ''; 15 | ?> 16 |
'; 12 | echo $this->Form->input('Report.OrderDirection',array('type'=>'select','options'=>$directionOptions,'label'=>false,'class'=>'form-control')); 13 | echo '
17 |
-------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/add.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/bg.jpg -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/bg_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/bg_blue.jpg -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/bg_brown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/bg_brown.jpg -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/bg_menu_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/bg_menu_blue.jpg -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/cake.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/cake.icon.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/calendar.gif -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/delete.gif -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/edit.gif -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/form_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/form_blue.gif -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/form_brown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/form_brown.gif -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery-ui/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/jquery.ui.stars.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/jquery.ui.stars.gif -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/list.gif -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/resultset_next.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/resultset_previous.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/sort-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/sort-asc.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/sort-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/sort-desc.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/test-error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/test-error-icon.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/test-fail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/test-fail-icon.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/test-pass-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/test-pass-icon.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/test-skip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/test-skip-icon.png -------------------------------------------------------------------------------- /app/plugins/report_manager/webroot/img/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/plugins/report_manager/webroot/img/view.gif -------------------------------------------------------------------------------- /app/tests/cases/controllers/lotes_controller.test.php: -------------------------------------------------------------------------------- 1 | redirectUrl = $url; 10 | } 11 | } 12 | 13 | class LotesControllerTestCase extends CakeTestCase { 14 | var $fixtures = array('app.lote', 'app.licitacao', 'app.modalidade', 'app.tipolicitacao', 'app.usuario', 'app.contratante', 'app.evento', 'app.tipoevento', 'app.empresa', 'app.resultado'); 15 | 16 | function startTest() { 17 | $this->Lotes =& new TestLotesController(); 18 | $this->Lotes->constructClasses(); 19 | } 20 | 21 | function endTest() { 22 | unset($this->Lotes); 23 | ClassRegistry::flush(); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/tests/cases/models/contratante.test.php: -------------------------------------------------------------------------------- 1 | Contratante =& ClassRegistry::init('Contratante'); 10 | } 11 | 12 | function endTest() { 13 | unset($this->Contratante); 14 | ClassRegistry::flush(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/tests/cases/models/empresa.test.php: -------------------------------------------------------------------------------- 1 | Empresa =& ClassRegistry::init('Empresa'); 10 | } 11 | 12 | function endTest() { 13 | unset($this->Empresa); 14 | ClassRegistry::flush(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/tests/cases/models/evento.test.php: -------------------------------------------------------------------------------- 1 | Evento =& ClassRegistry::init('Evento'); 10 | } 11 | 12 | function endTest() { 13 | unset($this->Evento); 14 | ClassRegistry::flush(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/tests/cases/models/licitacao.test.php: -------------------------------------------------------------------------------- 1 | Licitacao =& ClassRegistry::init('Licitacao'); 10 | } 11 | 12 | function endTest() { 13 | unset($this->Licitacao); 14 | ClassRegistry::flush(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/tests/cases/models/lote.test.php: -------------------------------------------------------------------------------- 1 | Lote =& ClassRegistry::init('Lote'); 10 | } 11 | 12 | function endTest() { 13 | unset($this->Lote); 14 | ClassRegistry::flush(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/tests/cases/models/modalidade.test.php: -------------------------------------------------------------------------------- 1 | Modalidade =& ClassRegistry::init('Modalidade'); 10 | } 11 | 12 | function endTest() { 13 | unset($this->Modalidade); 14 | ClassRegistry::flush(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/tests/cases/models/resultado.test.php: -------------------------------------------------------------------------------- 1 | Resultado =& ClassRegistry::init('Resultado'); 10 | } 11 | 12 | function endTest() { 13 | unset($this->Resultado); 14 | ClassRegistry::flush(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/tests/cases/models/tipoevento.test.php: -------------------------------------------------------------------------------- 1 | Tipoevento =& ClassRegistry::init('Tipoevento'); 10 | } 11 | 12 | function endTest() { 13 | unset($this->Tipoevento); 14 | ClassRegistry::flush(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/tests/cases/models/tipolicitacao.test.php: -------------------------------------------------------------------------------- 1 | Tipolicitacao =& ClassRegistry::init('Tipolicitacao'); 10 | } 11 | 12 | function endTest() { 13 | unset($this->Tipolicitacao); 14 | ClassRegistry::flush(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/tests/cases/models/usuario.test.php: -------------------------------------------------------------------------------- 1 | Usuario =& ClassRegistry::init('Usuario'); 10 | } 11 | 12 | function endTest() { 13 | unset($this->Usuario); 14 | ClassRegistry::flush(); 15 | } 16 | 17 | function testCheckPassword() { 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /app/tmp/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/tmp/.keep -------------------------------------------------------------------------------- /app/tmp/cache/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/tmp/cache/models/.keep -------------------------------------------------------------------------------- /app/tmp/cache/persistent/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/tmp/cache/persistent/.keep -------------------------------------------------------------------------------- /app/tmp/cache/views/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/tmp/cache/views/.keep -------------------------------------------------------------------------------- /app/tmp/logs/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/tmp/logs/.keep -------------------------------------------------------------------------------- /app/tmp/sessions/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/tmp/sessions/.keep -------------------------------------------------------------------------------- /app/views/elements/alert-box.ctp: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | × 5 |
-------------------------------------------------------------------------------- /app/views/elements/bandeira_alerta.ctp: -------------------------------------------------------------------------------- 1 | Html->image('flag_red.png'); 4 | if ( $dias_restantes > 15 && $dias_restantes <= 30 ) 5 | echo $this->Html->image('flag_yellow.png'); 6 | if ( $dias_restantes > 30 ) 7 | echo $this->Html->image('flag_green.png'); 8 | ?> -------------------------------------------------------------------------------- /app/views/elements/dia_da_semana.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/elements/email/text/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /app/views/elements/menu_configuracoes.ctp: -------------------------------------------------------------------------------- 1 | 8 |

Menu

9 | 14 | 15 | -------------------------------------------------------------------------------- /app/views/elements/menu_home.ctp: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /app/views/elements/menu_relatorios.ctp: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /app/views/helpers/ex_paginator.php: -------------------------------------------------------------------------------- 1 | sortKey(); 18 | $sortDir = $this->sortDir(); 19 | 20 | // add $sortDir class if current column is sort column 21 | if ($sortKey == $key && $key !== null) { 22 | 23 | $options['class'] = $sortDir; 24 | 25 | } 26 | 27 | return parent::sort($title, $key, $options); 28 | 29 | } 30 | 31 | } -------------------------------------------------------------------------------- /app/views/layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /app/views/layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/views/layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | header(); 3 | 4 | if (!isset($channel)) { 5 | $channel = array(); 6 | } 7 | if (!isset($channel['title'])) { 8 | $channel['title'] = $title_for_layout; 9 | } 10 | 11 | echo $rss->document( 12 | $rss->channel( 13 | array(), $channel, $content_for_layout 14 | ) 15 | ); 16 | 17 | ?> -------------------------------------------------------------------------------- /app/views/layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | header(); ?> 2 | -------------------------------------------------------------------------------- /app/views/mapas/index.ctp: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /app/webroot/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] 6 | -------------------------------------------------------------------------------- /app/webroot/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/css/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/font-awesome/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/font-awesome/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/font-awesome/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/font-awesome/css/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/font-awesome/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/font-awesome/fonts/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/webroot/assets/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/webroot/assets/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/webroot/assets/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/webroot/assets/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/fonts/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/webroot/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/webroot/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/webroot/assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/img/blog-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/blog-bg.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/checkbox-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/checkbox-gray.png -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-01.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-02.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-03.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-04.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-05.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-06.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-07.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-08.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-09.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-10.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/friends/fr-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/friends/fr-11.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/instagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/instagram.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/login-bg.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/lorde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/lorde.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/mask.png -------------------------------------------------------------------------------- /app/webroot/assets/img/ny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/ny.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/portfolio/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/portfolio/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/img/portfolio/port01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/portfolio/port01.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/portfolio/port02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/portfolio/port02.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/portfolio/port03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/portfolio/port03.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/portfolio/port04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/portfolio/port04.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/portfolio/port05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/portfolio/port05.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/portfolio/port06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/portfolio/port06.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/product.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/product.png -------------------------------------------------------------------------------- /app/webroot/assets/img/profile-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/profile-01.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/profile-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/profile-02.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/radio-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/radio-gray.png -------------------------------------------------------------------------------- /app/webroot/assets/img/ui-danro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/ui-danro.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/ui-divya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/ui-divya.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/ui-sam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/ui-sam.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/ui-sherman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/ui-sherman.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/ui-zac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/ui-zac.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/weather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/weather.jpg -------------------------------------------------------------------------------- /app/webroot/assets/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/img/zoom.png -------------------------------------------------------------------------------- /app/webroot/assets/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/js/bootstrap-inputmask/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/bootstrap-inputmask/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/js/chart-master/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/chart-master/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/js/fancybox/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/fancybox/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/js/fullcalendar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/fullcalendar/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/js/gritter/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/gritter/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/js/gritter/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/gritter/css/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/js/gritter/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/gritter/images/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/js/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /app/webroot/assets/js/gritter/images/gritter-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/gritter/images/gritter-long.png -------------------------------------------------------------------------------- /app/webroot/assets/js/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/gritter/images/gritter.png -------------------------------------------------------------------------------- /app/webroot/assets/js/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /app/webroot/assets/js/gritter/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/gritter/js/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/js/jquery-easy-pie-chart/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/js/jquery-easy-pie-chart/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/js/jquery-easy-pie-chart/jquery.easy-pie-chart.css: -------------------------------------------------------------------------------- 1 | .easyPieChart { 2 | position: relative; 3 | text-align: center; 4 | } 5 | 6 | .easyPieChart canvas { 7 | position: absolute; 8 | top: 0; 9 | left: 0; 10 | } 11 | -------------------------------------------------------------------------------- /app/webroot/assets/js/tasks.js: -------------------------------------------------------------------------------- 1 | var TaskList = function () { 2 | 3 | return { 4 | 5 | initTaskWidget: function () { 6 | $('input.list-child').change(function() { 7 | if ($(this).is(':checked')) { 8 | $(this).parents('li').addClass("task-done"); 9 | } else { 10 | $(this).parents('li').removeClass("task-done"); 11 | } 12 | }); 13 | } 14 | 15 | }; 16 | 17 | }(); -------------------------------------------------------------------------------- /app/webroot/assets/lineicons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/lineicons/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/lineicons/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/lineicons/fonts/.DS_Store -------------------------------------------------------------------------------- /app/webroot/assets/lineicons/fonts/linecons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/lineicons/fonts/linecons.eot -------------------------------------------------------------------------------- /app/webroot/assets/lineicons/fonts/linecons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/lineicons/fonts/linecons.ttf -------------------------------------------------------------------------------- /app/webroot/assets/lineicons/fonts/linecons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/assets/lineicons/fonts/linecons.woff -------------------------------------------------------------------------------- /app/webroot/css/easybox/dark/closebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/dark/closebtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/dark/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/dark/error.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/dark/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/dark/loading.gif -------------------------------------------------------------------------------- /app/webroot/css/easybox/dark/nextbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/dark/nextbtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/dark/noslidebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/dark/noslidebtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/dark/prevbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/dark/prevbtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/dark/slidebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/dark/slidebtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/default/closebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/default/closebtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/default/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/default/error.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/default/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/default/loading.gif -------------------------------------------------------------------------------- /app/webroot/css/easybox/default/nextbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/default/nextbtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/default/noslidebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/default/noslidebtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/default/prevbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/default/prevbtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/default/slidebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/default/slidebtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/glow/closebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/glow/closebtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/glow/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/glow/error.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/glow/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/glow/loading.gif -------------------------------------------------------------------------------- /app/webroot/css/easybox/glow/nextbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/glow/nextbtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/glow/noslidebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/glow/noslidebtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/glow/prevbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/glow/prevbtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/glow/slidebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/glow/slidebtn.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/modern/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/modern/bg.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/modern/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/modern/controls.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/modern/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/modern/error.png -------------------------------------------------------------------------------- /app/webroot/css/easybox/modern/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/easybox/modern/loading.gif -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/animated-overlay.gif -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /app/webroot/css/jquery-ui/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/css/jquery-ui/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /app/webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/favicon.ico -------------------------------------------------------------------------------- /app/webroot/img/add-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/add-icon.gif -------------------------------------------------------------------------------- /app/webroot/img/aditivos/exemplo-aditivo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/aditivos/exemplo-aditivo.jpg -------------------------------------------------------------------------------- /app/webroot/img/aditivos/sem-documento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/aditivos/sem-documento.png -------------------------------------------------------------------------------- /app/webroot/img/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/arrow.gif -------------------------------------------------------------------------------- /app/webroot/img/award_star_gold_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/award_star_gold_3.png -------------------------------------------------------------------------------- /app/webroot/img/bg-center-column.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/bg-center-column.jpg -------------------------------------------------------------------------------- /app/webroot/img/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/calendar.png -------------------------------------------------------------------------------- /app/webroot/img/chart_organisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/chart_organisation.png -------------------------------------------------------------------------------- /app/webroot/img/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/comments.png -------------------------------------------------------------------------------- /app/webroot/img/contratos/exemplo-contrato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/contratos/exemplo-contrato.jpg -------------------------------------------------------------------------------- /app/webroot/img/contratos/sem-documento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/contratos/sem-documento.png -------------------------------------------------------------------------------- /app/webroot/img/edit-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/edit-icon.gif -------------------------------------------------------------------------------- /app/webroot/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/error.png -------------------------------------------------------------------------------- /app/webroot/img/flag_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/flag_green.png -------------------------------------------------------------------------------- /app/webroot/img/flag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/flag_red.png -------------------------------------------------------------------------------- /app/webroot/img/flag_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/flag_yellow.png -------------------------------------------------------------------------------- /app/webroot/img/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/group.png -------------------------------------------------------------------------------- /app/webroot/img/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/hr.gif -------------------------------------------------------------------------------- /app/webroot/img/image_new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/image_new.gif -------------------------------------------------------------------------------- /app/webroot/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/info.png -------------------------------------------------------------------------------- /app/webroot/img/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/key.png -------------------------------------------------------------------------------- /app/webroot/img/login-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/login-icon.gif -------------------------------------------------------------------------------- /app/webroot/img/note_new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/note_new.gif -------------------------------------------------------------------------------- /app/webroot/img/page-find.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/page-find.gif -------------------------------------------------------------------------------- /app/webroot/img/page_find.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/page_find.gif -------------------------------------------------------------------------------- /app/webroot/img/page_text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/page_text.gif -------------------------------------------------------------------------------- /app/webroot/img/save-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/save-icon.gif -------------------------------------------------------------------------------- /app/webroot/img/sort-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/sort-asc.png -------------------------------------------------------------------------------- /app/webroot/img/sort-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/sort-desc.png -------------------------------------------------------------------------------- /app/webroot/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/success.png -------------------------------------------------------------------------------- /app/webroot/img/test-fail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/test-fail-icon.png -------------------------------------------------------------------------------- /app/webroot/img/test-pass-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/test-pass-icon.png -------------------------------------------------------------------------------- /app/webroot/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/warning.png -------------------------------------------------------------------------------- /app/webroot/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/img/zoom.png -------------------------------------------------------------------------------- /app/webroot/js/default.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $( ".datepicker" ).datepicker({ 3 | showOn: "button", 4 | buttonImage: firstLevel+"/img/calendar.png", 5 | buttonImageOnly: true, 6 | dateFormat: "dd/mm/yy" 7 | }); 8 | }); -------------------------------------------------------------------------------- /app/webroot/js/easybox/extras/android-market.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | Easybox v1.3 - Lightweight easy to use lightbox clone for jQuery 3 | Based on Slimbox2 by Christophe Beyls 4 | */ 5 | /android|iphone|ipod|series60|symbian|windows ce|blackberry|msie 6/i.test(navigator.userAgent)||jQuery(function(b){b("a[href^='market://']").easybox({/* custom options here */},function(a){return["http://chart.apis.google.com/chart?chs=400x400&cht=qr&chl="+encodeURIComponent(a.href.replace(/\/\?/,"?")),a.title+"
Scan this barcode with your Android phone."]})}); 6 | -------------------------------------------------------------------------------- /app/webroot/js/easybox/extras/autoactivation.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | Easybox v1.3 - Lightweight easy to use lightbox clone for jQuery 3 | Based on Slimbox2 by Christophe Beyls 4 | */ 5 | /android|iphone|ipod|series60|symbian|windows ce|blackberry|msie 6/i.test(navigator.userAgent)||jQuery(function(b){b("a[href]").filter(function(){return/\.(jpg|png|gif)$/i.test(this.href)}).easybox({/* custom options here */},null,function(a){return this==a||this.parentNode&&this.parentNode==a.parentNode})}); 6 | -------------------------------------------------------------------------------- /app/webroot/js/easybox/extras/autoload.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | Easybox v1.3 - Lightweight easy to use lightbox clone for jQuery 3 | Based on Slimbox2 by Christophe Beyls 4 | */ 5 | /android|iphone|ipod|series60|symbian|windows ce|blackberry|msie 6/i.test(navigator.userAgent)||jQuery(function(a){a("a.lightbox").easybox({/* custom options here */},null,function(a){return this==a||-1!=this.className.indexOf("lightbox")&&this.hasAttribute("data-group")&&this.getAttribute("data-group")==a.getAttribute("data-group")},function(b){var c={};if(a("#easyOptions").length){var f=a.parseJSON(a("#easyOptions").html()),d=b.getAttribute("data-group");a.each(f,function(e,b){if("global"==e||"string"==typeof d&&e==d)c= 6 | a.extend(c,b)})}return c})}); 7 | -------------------------------------------------------------------------------- /app/webroot/js/easybox/extras/flickr.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | Easybox v1.3 - Lightweight easy to use lightbox clone for jQuery 3 | Based on Slimbox2 by Christophe Beyls 4 | */ 5 | /android|iphone|ipod|series60|symbian|windows ce|blackberry|msie 6/i.test(navigator.userAgent)||jQuery(function(b){b("a[href^='http://www.flickr.com/photos/'] > img:first-child[src]").parent().easybox({},function(a){return{url:a.firstChild.src.replace(/_[mts]\.(\w+)$/,".$1"),caption:(a.title||a.firstChild.alt)+'
Flickr page'}})}); 6 | -------------------------------------------------------------------------------- /app/webroot/js/easybox/extras/picasaweb.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | Easybox v1.3 - Lightweight easy to use lightbox clone for jQuery 3 | Based on Slimbox2 by Christophe Beyls 4 | */ 5 | /android|iphone|ipod|series60|symbian|windows ce|blackberry|msie 6/i.test(navigator.userAgent)||jQuery(function(b){b("a[href^='http://picasaweb.google.'] > img:first-child[src]").parent().easybox({},function(a){return{url:a.firstChild.src.replace(/\/s\d+(?:\-c)?\/([^\/]+)$/,"/s512/$1"),caption:(a.title||a.firstChild.alt)+'
Picasa Web Albums page'}})}); 6 | -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/demos.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 62.5%; 3 | font-family: "Trebuchet MS", "Arial", "Helvetica", "Verdana", "sans-serif"; 4 | } 5 | 6 | table { 7 | font-size: 1em; 8 | } 9 | 10 | .demo-description { 11 | clear: both; 12 | padding: 12px; 13 | font-size: 1.3em; 14 | line-height: 1.4em; 15 | } 16 | 17 | .ui-draggable, .ui-droppable { 18 | background-position: top; 19 | } 20 | -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Droppable Demos 6 | 7 | 8 | 9 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/demos/widget/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Widget Demo 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.10.2 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/animated-overlay.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.10.2 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/animated-overlay.gif -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/app/webroot/js/jquery-ui/development-bundle/themes/ui-lightness/minified/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(t){t.datepicker.regional.ar={closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.ar)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(t){t.datepicker.regional.az={closeText:"Bağla",prevText:"<Geri",nextText:"İrəli>",currentText:"Bugün",monthNames:["Yanvar","Fevral","Mart","Aprel","May","İyun","İyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],monthNamesShort:["Yan","Fev","Mar","Apr","May","İyun","İyul","Avq","Sen","Okt","Noy","Dek"],dayNames:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə"],dayNamesShort:["B","Be","Ça","Ç","Ca","C","Ş"],dayNamesMin:["B","B","Ç","С","Ç","C","Ş"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.az)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(t){t.datepicker.regional.bs={closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novembar","Decembar"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.bs)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(t){t.datepicker.regional.ca={closeText:"Tanca",prevText:"Anterior",nextText:"Següent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.ca)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(t){t.datepicker.regional.cs={closeText:"Zavřít",prevText:"<Dříve",nextText:"Později>",currentText:"Nyní",monthNames:["leden","únor","březen","duben","květen","červen","červenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","úno","bře","dub","kvě","čer","čvc","srp","zář","říj","lis","pro"],dayNames:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],dayNamesShort:["ne","po","út","st","čt","pá","so"],dayNamesMin:["ne","po","út","st","čt","pá","so"],weekHeader:"Týd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.cs)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(t){t.datepicker.regional.da={closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.da)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(t){t.datepicker.regional.de={closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.de)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(t){t.datepicker.regional.eo={closeText:"Fermi",prevText:"<Anta",nextText:"Sekv>",currentText:"Nuna",monthNames:["Januaro","Februaro","Marto","Aprilo","Majo","Junio","Julio","Aŭgusto","Septembro","Oktobro","Novembro","Decembro"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aŭg","Sep","Okt","Nov","Dec"],dayNames:["Dimanĉo","Lundo","Mardo","Merkredo","Ĵaŭdo","Vendredo","Sabato"],dayNamesShort:["Dim","Lun","Mar","Mer","Ĵaŭ","Ven","Sab"],dayNamesMin:["Di","Lu","Ma","Me","Ĵa","Ve","Sa"],weekHeader:"Sb",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.eo)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(t){t.datepicker.regional.es={closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],monthNamesShort:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],dayNames:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"],dayNamesShort:["Dom","Lun","Mar","Mié","Juv","Vie","Sáb"],dayNamesMin:["Do","Lu","Ma","Mi","Ju","Vi","Sá"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.es)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(t){t.datepicker.regional.fa={closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امروز",monthNames:["فروردين","ارديبهشت","خرداد","تير","مرداد","شهريور","مهر","آبان","آذر","دی","بهمن","اسفند"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ی","د","س","چ","پ","ج","ش"],dayNamesMin:["ی","د","س","چ","پ","ج","ش"],weekHeader:"هف",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.fa)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.gl={closeText:"Pechar",prevText:"<Ant",nextText:"Seg>",currentText:"Hoxe",monthNames:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthNamesShort:["Xan","Feb","Mar","Abr","Mai","Xuñ","Xul","Ago","Set","Out","Nov","Dec"],dayNames:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],dayNamesShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],dayNamesMin:["Do","Lu","Ma","Mé","Xo","Ve","Sá"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.gl)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.he={closeText:"סגור",prevText:"<הקודם",nextText:"הבא>",currentText:"היום",monthNames:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","אפר","מאי","יוני","יולי","אוג","ספט","אוק","נוב","דצמ"],dayNames:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],dayNamesMin:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.he)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.hi={closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून","जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मई","जून","जूलाई","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],dayNamesMin:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.hi)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.hu={closeText:"bezár",prevText:"vissza",nextText:"előre",currentText:"ma",monthNames:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthNamesShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],dayNamesShort:["Vas","Hét","Ked","Sze","Csü","Pén","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"Hét",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.hu)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.id={closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.id)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.ja={closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayNames:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},e.datepicker.setDefaults(e.datepicker.regional.ja)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.km={closeText:"ធ្វើ​រួច",prevText:"មុន",nextText:"បន្ទាប់",currentText:"ថ្ងៃ​នេះ",monthNames:["មករា","កុម្ភៈ","មីនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthNamesShort:["មករា","កុម្ភៈ","មីនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],dayNames:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍"],dayNamesShort:["អា","ច","អ","ពុ","ព្រហ","សុ","សៅ"],dayNamesMin:["អា","ច","អ","ពុ","ព្រហ","សុ","សៅ"],weekHeader:"សប្ដាហ៍",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.km)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.ko={closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"오늘",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],weekHeader:"Wk",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"년"},e.datepicker.setDefaults(e.datepicker.regional.ko)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.ky={closeText:"Жабуу",prevText:"<Мур",nextText:"Кий>",currentText:"Бүгүн",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["жекшемби","дүйшөмбү","шейшемби","шаршемби","бейшемби","жума","ишемби"],dayNamesShort:["жек","дүй","шей","шар","бей","жум","ише"],dayNamesMin:["Жк","Дш","Шш","Шр","Бш","Жм","Иш"],weekHeader:"Жум",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ky)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.lb={closeText:"Fäerdeg",prevText:"Zréck",nextText:"Weider",currentText:"Haut",monthNames:["Januar","Februar","Mäerz","Abrëll","Mee","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mäe","Abr","Mee","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonndeg","Méindeg","Dënschdeg","Mëttwoch","Donneschdeg","Freideg","Samschdeg"],dayNamesShort:["Son","Méi","Dën","Mët","Don","Fre","Sam"],dayNamesMin:["So","Mé","Dë","Më","Do","Fr","Sa"],weekHeader:"W",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.lb)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.mk={closeText:"Затвори",prevText:"<",nextText:">",currentText:"Денес",monthNames:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],dayNames:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],dayNamesShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Са"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.mk)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.ms={closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ms)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.nb={closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.nb)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.nl={closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.nl)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.nn={closeText:"Lukk",prevText:"«Førre",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["sun","mån","tys","ons","tor","fre","lau"],dayNames:["sundag","måndag","tysdag","onsdag","torsdag","fredag","laurdag"],dayNamesMin:["su","må","ty","on","to","fr","la"],weekHeader:"Veke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.nn)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.no={closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.no)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.sq={closeText:"mbylle",prevText:"<mbrapa",nextText:"Përpara>",currentText:"sot",monthNames:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthNamesShort:["Jan","Shk","Mar","Pri","Maj","Qer","Kor","Gus","Sht","Tet","Nën","Dhj"],dayNames:["E Diel","E Hënë","E Martë","E Mërkurë","E Enjte","E Premte","E Shtune"],dayNamesShort:["Di","Hë","Ma","Më","En","Pr","Sh"],dayNamesMin:["Di","Hë","Ma","Më","En","Pr","Sh"],weekHeader:"Ja",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.sq)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.sr={closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.sr)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.sv={closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","Må","Ti","On","To","Fr","Lö"],weekHeader:"Ve",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.sv)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.tj={closeText:"Идома",prevText:"<Қафо",nextText:"Пеш>",currentText:"Имрӯз",monthNames:["Январ","Феврал","Март","Апрел","Май","Июн","Июл","Август","Сентябр","Октябр","Ноябр","Декабр"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["якшанбе","душанбе","сешанбе","чоршанбе","панҷшанбе","ҷумъа","шанбе"],dayNamesShort:["якш","душ","сеш","чор","пан","ҷум","шан"],dayNamesMin:["Як","Дш","Сш","Чш","Пш","Ҷм","Шн"],weekHeader:"Хф",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.tj)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional.tr={closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugün",monthNames:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.tr)}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional["zh-CN"]={closeText:"关闭",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},e.datepicker.setDefaults(e.datepicker.regional["zh-CN"])}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional["zh-HK"]={closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"dd-mm-yy",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},e.datepicker.setDefaults(e.datepicker.regional["zh-HK"])}); -------------------------------------------------------------------------------- /app/webroot/js/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.10.2 - 2013-03-22 2 | * http://jqueryui.com 3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ 4 | jQuery(function(e){e.datepicker.regional["zh-TW"]={closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},e.datepicker.setDefaults(e.datepicker.regional["zh-TW"])}); -------------------------------------------------------------------------------- /cake/config/config.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ webroot/ [L] 4 | RewriteRule (.*) webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /cake/console/templates/skel/config/schema/sessions.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright 2005-2012, Cake Software Foundation, Inc. 4 | # 1785 E. Sahara Avenue, Suite 490-204 5 | # Las Vegas, Nevada 89104 6 | # 7 | # Licensed under The MIT License 8 | # Redistributions of files must retain the above copyright notice. 9 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 10 | 11 | CREATE TABLE cake_sessions ( 12 | id varchar(255) NOT NULL default '', 13 | data text, 14 | expires int(11) default NULL, 15 | PRIMARY KEY (id) 16 | ); -------------------------------------------------------------------------------- /cake/console/templates/skel/controllers/components/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/controllers/components/empty -------------------------------------------------------------------------------- /cake/console/templates/skel/index.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/elements/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/views/elements/empty -------------------------------------------------------------------------------- /cake/console/templates/skel/views/errors/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/views/errors/empty -------------------------------------------------------------------------------- /cake/console/templates/skel/views/helpers/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/views/helpers/empty -------------------------------------------------------------------------------- /cake/console/templates/skel/views/layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | header(); 3 | 4 | if (!isset($channel)) { 5 | $channel = array(); 6 | } 7 | if (!isset($channel['title'])) { 8 | $channel['title'] = $title_for_layout; 9 | } 10 | 11 | echo $rss->document( 12 | $rss->channel( 13 | array(), $channel, $content_for_layout 14 | ) 15 | ); 16 | 17 | ?> -------------------------------------------------------------------------------- /cake/console/templates/skel/views/layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | header(); ?> 2 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/pages/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/views/pages/empty -------------------------------------------------------------------------------- /cake/console/templates/skel/views/scaffolds/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/views/scaffolds/empty -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] 6 | -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/webroot/favicon.ico -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/cake.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/webroot/img/cake.icon.png -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/test-error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/webroot/img/test-error-icon.png -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/test-fail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/webroot/img/test-fail-icon.png -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/test-pass-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/webroot/img/test-pass-icon.png -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/test-skip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/webroot/img/test-skip-icon.png -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/js/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/console/templates/skel/webroot/js/empty -------------------------------------------------------------------------------- /cake/libs/view/elements/email/text/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /cake/libs/view/layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /cake/libs/view/layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cake/libs/view/layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | Rss->header(); 3 | 4 | if (!isset($channel)) { 5 | $channel = array(); 6 | } 7 | if (!isset($channel['title'])) { 8 | $channel['title'] = $title_for_layout; 9 | } 10 | 11 | echo $this->Rss->document( 12 | $this->Rss->channel( 13 | array(), $channel, $content_for_layout 14 | ) 15 | ); 16 | ?> -------------------------------------------------------------------------------- /cake/libs/view/layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | Xml->header(); ?> 2 | -------------------------------------------------------------------------------- /cake/tests/test_app/controllers/components/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/controllers/components/empty -------------------------------------------------------------------------------- /cake/tests/test_app/libs/library.php: -------------------------------------------------------------------------------- 1 | 8 | * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) 9 | * 10 | * Licensed under The Open Group Test Suite License 11 | * Redistributions of files must retain the above copyright notice. 12 | * 13 | * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) 14 | * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests 15 | * @package cake 16 | * @subpackage cake.tests.cases.libs 17 | * @since CakePHP(tm) v 1.3 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class Library {} 21 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/cache_test_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "default.foo" 2 | msgstr "Default Foo" 3 | 4 | msgid "default.bar" 5 | msgstr "Default Bar" 6 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/cache_test_po/LC_MESSAGES/dom1.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "Test Domain 1" 3 | 4 | msgid "dom1.foo" 5 | msgstr "Dom 1 Foo" 6 | 7 | msgid "dom1.bar" 8 | msgstr "Dom 1 Bar" 9 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/cache_test_po/LC_MESSAGES/dom2.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "Test Domain" 3 | 4 | msgid "dom2.foo" 5 | msgstr "Dom 2 Foo" 6 | 7 | msgid "dom2.bar" 8 | msgstr "Dom 2 Bar" 9 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/po/LC_MONETARY/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | msgid "" 15 | msgstr "header" 16 | 17 | msgid "Plural Rule 1" 18 | msgstr "Monetary Po (translated)" -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=1; plural=0;\n" 12 | "X-Poedit-Language: Single Form Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 0 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends with any # (from core translated)" 21 | 22 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=1; plural=0;\n" 12 | "X-Poedit-Language: Single Form Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 0 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends with any # (translated)" 21 | 22 | #~ msgid "Plural-Forms 1" 23 | #~ msgstr "Plural-Forms 0" 24 | 25 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_14_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 14 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends in 1 (translated)" 21 | msgstr[1] "%d ends in 2 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_1_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 1 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d = 1 (from core translated)" 21 | msgstr[1] "%d = 0 or > 1 (from core translated)" 22 | 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_2_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n>1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 2 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d = 0 or 1 (from core translated)" 21 | msgstr[1] "%d > 1 (from core translated)" 22 | 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/models/behaviors/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/models/behaviors/empty -------------------------------------------------------------------------------- /cake/tests/test_app/models/comment.php: -------------------------------------------------------------------------------- 1 | \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Monetary Plural Rule 1 (from plugin)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "Monetary %d = 1 (from plugin)" 21 | msgstr[1] "Monetary %d = 0 or > 1 (from plugin)" 22 | 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/models/datasources/dbo/dbo_dummy.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/views/elements/test_plugin_element.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/views/helpers/test_plugin_app.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/email/html/nested_element.ctp: -------------------------------------------------------------------------------- 1 | Before the element. 2 | element('html_call'); ?> 3 | After the element. -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/email/text/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/views/elements/empty -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/html_call.ctp: -------------------------------------------------------------------------------- 1 | Html->link('Test', 'http://example.com'); 3 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/nocache/contains_nocache.ctp: -------------------------------------------------------------------------------- 1 |

Cache Me

2 | 3 |

F. In Element With No Cache Tags

4 | log('6. In element with no cache tags') ?> 5 |
6 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/nocache/plain.ctp: -------------------------------------------------------------------------------- 1 |

Cache Me

2 |

B. In Plain Element

3 | log('2. in plain element') ?> 4 | 5 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/nocache/sub1.ctp: -------------------------------------------------------------------------------- 1 | element('nocache/sub2'); ?> 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/nocache/sub2.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/session_helper.ctp: -------------------------------------------------------------------------------- 1 |
2 |

3 |

4 |

5 |
-------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/test_element.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/test_element.xml: -------------------------------------------------------------------------------- 1 |

test element

2 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/type_check.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/errors/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/views/errors/empty -------------------------------------------------------------------------------- /cake/tests/test_app/views/helpers/banana.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/cache_empty_sections.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <?php echo $title_for_layout; ?> 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | header(); 3 | 4 | if (!isset($channel)) { 5 | $channel = array(); 6 | } 7 | if (!isset($channel['title'])) { 8 | $channel['title'] = $title_for_layout; 9 | } 10 | 11 | echo $rss->document( 12 | $rss->channel( 13 | array(), $channel, $content_for_layout 14 | ) 15 | ); 16 | 17 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | header(); ?> 2 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/pages/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/views/pages/empty -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/cache_empty_sections.ctp: -------------------------------------------------------------------------------- 1 | View Content 2 | 3 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/cache_form.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | create('User');?> 4 |
5 | 6 | input('username'); 8 | echo $form->input('email'); 9 | echo $form->input('password'); 10 | ?> 11 |
12 | end('Submit');?> 13 |
14 |
-------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/helper_overwrite.ctp: -------------------------------------------------------------------------------- 1 | Html->link('Test link', '#'); 4 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/multiple_nocache.ctp: -------------------------------------------------------------------------------- 1 | --view start-- 2 | 3 | 4 | 5 | 6 | this view has 3 nocache blocks 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | --view end-- -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/nocache_multiple_element.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | element('nocache/sub1'); ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/scaffold.edit.ctp: -------------------------------------------------------------------------------- 1 | test_app posts add/edit scaffold view -------------------------------------------------------------------------------- /cake/tests/test_app/views/scaffolds/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/views/scaffolds/empty -------------------------------------------------------------------------------- /cake/tests/test_app/views/tests_apps/index.ctp: -------------------------------------------------------------------------------- 1 | This is the TestsAppsController index view -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/elements/test_element.ctp: -------------------------------------------------------------------------------- 1 | Hi, I'm the test element. -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/layouts/default.ctp: -------------------------------------------------------------------------------- 1 | default test_theme layout -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/plugins/test_plugin/layouts/plugin_default.ctp: -------------------------------------------------------------------------------- 1 | test_plugin test_plugin_theme default layout -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/plugins/test_plugin/tests/index.ctp: -------------------------------------------------------------------------------- 1 | test plugin index theme view -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index themed view -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/posts/scaffold.index.ctp: -------------------------------------------------------------------------------- 1 | I'm a themed scaffold file. -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/css/test_asset.css: -------------------------------------------------------------------------------- 1 | this is the test asset css file -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/css/theme_webroot.css: -------------------------------------------------------------------------------- 1 | theme webroot css file -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/flash/theme_test.swf: -------------------------------------------------------------------------------- 1 | this is just a test to load swf file from the theme. -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/views/themed/test_theme/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/views/themed/test_theme/webroot/img/test.jpg -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/js/one/theme_one.js: -------------------------------------------------------------------------------- 1 | nested theme js file -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/js/theme.js: -------------------------------------------------------------------------------- 1 | root theme js file -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/pdfs/theme_test.pdf: -------------------------------------------------------------------------------- 1 | this is just a test to load pdf file from the theme. -------------------------------------------------------------------------------- /cake/tests/test_app/webroot/theme/test_theme/css/theme_webroot.css: -------------------------------------------------------------------------------- 1 | override the theme webroot css file -------------------------------------------------------------------------------- /cake/tests/test_app/webroot/theme/test_theme/css/webroot_test.css: -------------------------------------------------------------------------------- 1 | this is the webroot test asset css file -------------------------------------------------------------------------------- /cake/tests/test_app/webroot/theme/test_theme/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/webroot/theme/test_theme/img/cake.power.gif -------------------------------------------------------------------------------- /cake/tests/test_app/webroot/theme/test_theme/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/cake/tests/test_app/webroot/theme/test_theme/img/test.jpg -------------------------------------------------------------------------------- /plugins/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/plugins/empty -------------------------------------------------------------------------------- /vendors/shells/tasks/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/vendors/shells/tasks/empty -------------------------------------------------------------------------------- /vendors/shells/templates/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdias/sal-plus/acf309635705bcac5f9598f54c11780ce62c074d/vendors/shells/templates/empty --------------------------------------------------------------------------------