├── README.md ├── Screenshot 2017-09-21 08.53.14.png ├── Screenshot 2017-09-21 08.53.54.png ├── Screenshot 2017-09-21 08.54.07.png ├── The Grocery Store Brazil ├── .htaccess ├── application │ ├── .htaccess │ ├── cache │ │ ├── .htaccess │ │ └── index.html │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── email.php │ │ ├── foreign_chars.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── memcached.php │ │ ├── migration.php │ │ ├── mimes.php │ │ ├── pagination.php │ │ ├── profiler.php │ │ ├── routes.php │ │ ├── smileys.php │ │ └── user_agents.php │ ├── controllers │ │ ├── Cadastro.php │ │ ├── Carrinho.php │ │ ├── Categorias.php │ │ ├── Home.php │ │ ├── Produtos.php │ │ ├── Welcome.php │ │ ├── administracao │ │ │ ├── Categorias.php │ │ │ ├── Clientes.php │ │ │ ├── Home.php │ │ │ ├── Pedidos.php │ │ │ ├── Produtos.php │ │ │ ├── Transportadoras.php │ │ │ └── Usuarios.php │ │ └── index.html │ ├── core │ │ └── index.html │ ├── helpers │ │ ├── funcoes_helper.php │ │ └── index.html │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ ├── arabic │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── azerbaijani │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── bulgarian │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── catalan │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── czech │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── dutch │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── english │ │ │ └── index.html │ │ ├── filipino │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── french │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── german │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── gujarati │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── hindi │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── hungarian │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── index.html │ │ ├── indonesian │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── italian │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── japanese │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── khmer │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── korean │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── norwegian │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── persian │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── polish │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── portuguese-brazilian │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── portuguese │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── romanian │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── russian │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── simplified-chinese │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── spanish │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── swedish │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── tamil │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── thai │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── traditional-chinese │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── turkish │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── ukrainian │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── urdu │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ └── vietnamese │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ ├── libraries │ │ └── index.html │ ├── logs │ │ └── index.html │ ├── models │ │ ├── Categorias_model.php │ │ ├── Clientes_model.php │ │ ├── Pedidos_model.php │ │ ├── Produtos_model.php │ │ ├── Transportadoras_model.php │ │ ├── Usuarios_model.php │ │ └── index.html │ ├── third_party │ │ └── index.html │ └── views │ │ ├── administracao │ │ ├── alterar_categoria.php │ │ ├── alterar_cliente.php │ │ ├── alterar_produto.php │ │ ├── alterar_usuario.php │ │ ├── categorias.php │ │ ├── clientes.php │ │ ├── detalhes_cliente.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── home.php │ │ ├── html_footer.php │ │ ├── html_header.php │ │ ├── login.php │ │ ├── pedido.php │ │ ├── pedidos.php │ │ ├── permissoes.php │ │ ├── produtos.php │ │ ├── sem_permissao.php │ │ ├── transportadoras.php │ │ └── usuarios.php │ │ ├── alterar_cadastro.php │ │ ├── busca.php │ │ ├── cadastro_enviado.php │ │ ├── cadastro_liberado.php │ │ ├── carrinho-formulario-pagamento.php │ │ ├── carrinho.php │ │ ├── categoria.php │ │ ├── categorias.php │ │ ├── emails │ │ ├── atualizacao_pedido.php │ │ ├── confirmar_cadastro.php │ │ ├── novo_pedido.php │ │ └── recuperar_senha.php │ │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ ├── html │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ └── index.html │ │ ├── footer.php │ │ ├── form_recupera_login.php │ │ ├── header.php │ │ ├── home.php │ │ ├── html-footer.php │ │ ├── html-header.php │ │ ├── index.html │ │ ├── login.php │ │ ├── meus_pedidos.php │ │ ├── novo_cadastro.php │ │ ├── produto.php │ │ ├── retorno_boleto.php │ │ ├── retorno_cartao.php │ │ └── senha_enviada.php ├── assets │ ├── bower_components │ │ ├── bootstrap-social │ │ │ ├── .bower.json │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── bootstrap-social.css │ │ │ ├── bootstrap-social.less │ │ │ ├── bootstrap-social.scss │ │ │ └── bower.json │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── grunt │ │ │ │ ├── .jshintrc │ │ │ │ ├── bs-commonjs-generator.js │ │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ │ ├── bs-lessdoc-parser.js │ │ │ │ ├── bs-raw-files-generator.js │ │ │ │ ├── configBridge.json │ │ │ │ └── sauce_browsers.yml │ │ │ ├── js │ │ │ │ ├── .jscsrc │ │ │ │ ├── .jshintrc │ │ │ │ ├── affix.js │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── transition.js │ │ │ ├── less │ │ │ │ ├── .csscomb.json │ │ │ │ ├── .csslintrc │ │ │ │ ├── alerts.less │ │ │ │ ├── badges.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── grid.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── jumbotron.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── mixins │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── background-variant.less │ │ │ │ │ ├── border-radius.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── center-block.less │ │ │ │ │ ├── clearfix.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── gradients.less │ │ │ │ │ ├── grid-framework.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── hide-text.less │ │ │ │ │ ├── image.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ ├── opacity.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ ├── resize.less │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ ├── size.less │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ ├── table-row.less │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ └── vendor-prefixes.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── normalize.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── popovers.less │ │ │ │ ├── print.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── responsive-embed.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── tables.less │ │ │ │ ├── theme.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ ├── package.js │ │ │ └── package.json │ │ ├── datatables-plugins │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── average().js │ │ │ │ ├── column().title().js │ │ │ │ ├── columns().order().js │ │ │ │ ├── fnAddDataAndDisplay.js │ │ │ │ ├── fnAddTr.js │ │ │ │ ├── fnColumnIndexToVisible.js │ │ │ │ ├── fnDataUpdate.js │ │ │ │ ├── fnDisplayRow.js │ │ │ │ ├── fnDisplayStart.js │ │ │ │ ├── fnFakeRowspan.js │ │ │ │ ├── fnFilterAll.js │ │ │ │ ├── fnFilterClear.js │ │ │ │ ├── fnFilterOnReturn.js │ │ │ │ ├── fnFindCellRowIndexes.js │ │ │ │ ├── fnFindCellRowNodes.js │ │ │ │ ├── fnGetAdjacentTr.js │ │ │ │ ├── fnGetColumnData.js │ │ │ │ ├── fnGetColumnIndex.js │ │ │ │ ├── fnGetHiddenNodes.js │ │ │ │ ├── fnGetTd.js │ │ │ │ ├── fnGetTds.js │ │ │ │ ├── fnLengthChange.js │ │ │ │ ├── fnMultiFilter.js │ │ │ │ ├── fnPagingInfo.js │ │ │ │ ├── fnProcessingIndicator.js │ │ │ │ ├── fnReloadAjax.js │ │ │ │ ├── fnSetFilteringDelay.js │ │ │ │ ├── fnSortNeutral.js │ │ │ │ ├── fnStandingRedraw.js │ │ │ │ ├── fnVisibleToColumnIndex.js │ │ │ │ ├── index.html │ │ │ │ ├── page.jumpToData().js │ │ │ │ └── sum().js │ │ │ ├── features │ │ │ │ ├── alphabetSearch │ │ │ │ │ ├── dataTables.alphabetSearch.css │ │ │ │ │ ├── dataTables.alphabetSearch.js │ │ │ │ │ └── dataTables.alphabetSearch.min.js │ │ │ │ ├── lengthLinks │ │ │ │ │ ├── dataTables.lengthLinks.css │ │ │ │ │ ├── dataTables.lengthLinks.js │ │ │ │ │ └── dataTables.lengthLinks.min.js │ │ │ │ └── searchHighlight │ │ │ │ │ ├── dataTables.searchHighlight.css │ │ │ │ │ ├── dataTables.searchHighlight.js │ │ │ │ │ └── dataTables.searchHighlight.min.js │ │ │ ├── filtering │ │ │ │ ├── index.html │ │ │ │ ├── row-based │ │ │ │ │ ├── TableTools.ShowSelectedOnly.js │ │ │ │ │ ├── range_dates.js │ │ │ │ │ └── range_numbers.js │ │ │ │ └── type-based │ │ │ │ │ ├── accent-neutralise.js │ │ │ │ │ ├── html.js │ │ │ │ │ └── phoneNumber.js │ │ │ ├── i18n │ │ │ │ ├── Afrikaans.lang │ │ │ │ ├── Albanian.lang │ │ │ │ ├── Arabic.lang │ │ │ │ ├── Azerbaijan.lang │ │ │ │ ├── Bangla.lang │ │ │ │ ├── Belarusian.lang │ │ │ │ ├── Bulgarian.lang │ │ │ │ ├── Catalan.lang │ │ │ │ ├── Chinese-traditional.lang │ │ │ │ ├── Chinese.lang │ │ │ │ ├── Croatian.lang │ │ │ │ ├── Czech.lang │ │ │ │ ├── Danish.lang │ │ │ │ ├── Dutch.lang │ │ │ │ ├── English.lang │ │ │ │ ├── Estonian.lang │ │ │ │ ├── Filipino.lang │ │ │ │ ├── Finnish.lang │ │ │ │ ├── French.lang │ │ │ │ ├── Galician.lang │ │ │ │ ├── Georgian.lang │ │ │ │ ├── German.lang │ │ │ │ ├── Greek.lang │ │ │ │ ├── Gujarati.lang │ │ │ │ ├── Hebrew.lang │ │ │ │ ├── Hindi.lang │ │ │ │ ├── Hungarian.lang │ │ │ │ ├── Icelandic.lang │ │ │ │ ├── Indonesian-Alternative.lang │ │ │ │ ├── Indonesian.lang │ │ │ │ ├── Irish.lang │ │ │ │ ├── Italian.lang │ │ │ │ ├── Japanese.lang │ │ │ │ ├── Korean.lang │ │ │ │ ├── Latvian.lang │ │ │ │ ├── Lithuanian.lang │ │ │ │ ├── Macedonian.lang │ │ │ │ ├── Malay.lang │ │ │ │ ├── Norwegian.lang │ │ │ │ ├── Persian.lang │ │ │ │ ├── Polish.lang │ │ │ │ ├── Portuguese-Brasil.lang │ │ │ │ ├── Portuguese.lang │ │ │ │ ├── Romanian.lang │ │ │ │ ├── Russian.lang │ │ │ │ ├── Serbian.lang │ │ │ │ ├── Slovak.lang │ │ │ │ ├── Slovenian.lang │ │ │ │ ├── Spanish.lang │ │ │ │ ├── Swahili.lang │ │ │ │ ├── Swedish.lang │ │ │ │ ├── Tamil.lang │ │ │ │ ├── Thai.lang │ │ │ │ ├── Turkish.lang │ │ │ │ ├── Ukranian.lang │ │ │ │ ├── Urdu.lang │ │ │ │ ├── Uzbek.lang │ │ │ │ ├── Vietnamese.lang │ │ │ │ └── index.html │ │ │ ├── integration │ │ │ │ ├── bootstrap │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ │ └── dataTables.bootstrap.js │ │ │ │ │ ├── 2 │ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── 3 │ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ │ └── index.html │ │ │ │ │ └── images │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── font-awesome │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── dataTables.fontAwesome.css │ │ │ │ │ ├── datatables.html │ │ │ │ │ └── foundation.html │ │ │ │ ├── foundation │ │ │ │ │ ├── dataTables.foundation.css │ │ │ │ │ ├── dataTables.foundation.js │ │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ │ ├── images │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ │ └── index.html │ │ │ │ └── jqueryui │ │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ │ ├── dataTables.jqueryui.scss │ │ │ │ │ └── index.html │ │ │ ├── make.sh │ │ │ ├── pagination │ │ │ │ ├── ellipses.js │ │ │ │ ├── extjs.js │ │ │ │ ├── four_button.js │ │ │ │ ├── index.html │ │ │ │ ├── input.js │ │ │ │ ├── jPaginator │ │ │ │ │ └── dataTables.jPaginator.js │ │ │ │ ├── scrolling.js │ │ │ │ └── select.js │ │ │ ├── sorting │ │ │ │ ├── .DS_Store │ │ │ │ ├── alt-string.js │ │ │ │ ├── anti-the.js │ │ │ │ ├── chinese-string.js │ │ │ │ ├── currency.js │ │ │ │ ├── custom-data-source │ │ │ │ │ ├── dom-checkbox.js │ │ │ │ │ ├── dom-select.js │ │ │ │ │ └── dom-text.js │ │ │ │ ├── date-dd-MMM-yyyy.js │ │ │ │ ├── date-de.js │ │ │ │ ├── date-eu.js │ │ │ │ ├── date-euro.js │ │ │ │ ├── date-uk.js │ │ │ │ ├── datetime-moment.js │ │ │ │ ├── datetime-us.js │ │ │ │ ├── enum.js │ │ │ │ ├── file-size.js │ │ │ │ ├── formatted-numbers.js │ │ │ │ ├── index.html │ │ │ │ ├── ip-address.js │ │ │ │ ├── monthYear.js │ │ │ │ ├── natural.js │ │ │ │ ├── num-html.js │ │ │ │ ├── numeric-comma.js │ │ │ │ ├── percent.js │ │ │ │ ├── persian.js │ │ │ │ ├── scientific.js │ │ │ │ ├── signed-num.js │ │ │ │ ├── stringMonthYear.js │ │ │ │ ├── time.js │ │ │ │ ├── title-numeric.js │ │ │ │ ├── title-string.js │ │ │ │ └── turkish-string.js │ │ │ └── type-detection │ │ │ │ ├── currency.js │ │ │ │ ├── date-uk.js │ │ │ │ ├── file-size.js │ │ │ │ ├── formatted-num.js │ │ │ │ ├── index.html │ │ │ │ ├── ip-address.js │ │ │ │ ├── num-html.js │ │ │ │ └── numeric-comma.js │ │ ├── datatables-responsive │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ ├── dataTables.responsive.css │ │ │ │ └── dataTables.responsive.scss │ │ │ ├── docs │ │ │ │ ├── api │ │ │ │ │ ├── responsive.index().xml │ │ │ │ │ ├── responsive.rebuild().xml │ │ │ │ │ └── responsive.recalc().xml │ │ │ │ └── option │ │ │ │ │ ├── responsive.breakpoints.xml │ │ │ │ │ ├── responsive.details.renderer.xml │ │ │ │ │ ├── responsive.details.target.xml │ │ │ │ │ ├── responsive.details.type.xml │ │ │ │ │ ├── responsive.details.xml │ │ │ │ │ └── responsive.xml │ │ │ ├── examples │ │ │ │ ├── .DS_Store │ │ │ │ ├── child-rows │ │ │ │ │ ├── column-control.xml │ │ │ │ │ ├── custom-renderer.xml │ │ │ │ │ ├── disable-child-rows.xml │ │ │ │ │ ├── index.xml │ │ │ │ │ ├── right-column.xml │ │ │ │ │ └── whole-row-control.xml │ │ │ │ ├── display-control │ │ │ │ │ ├── auto.xml │ │ │ │ │ ├── classes.xml │ │ │ │ │ ├── fixedHeader.xml │ │ │ │ │ ├── index.xml │ │ │ │ │ └── init-classes.xml │ │ │ │ ├── index.xml │ │ │ │ ├── initialisation │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── ajax.xml │ │ │ │ │ ├── className.xml │ │ │ │ │ ├── default.xml │ │ │ │ │ ├── index.xml │ │ │ │ │ ├── new.xml │ │ │ │ │ └── option.xml │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.xml │ │ │ │ │ ├── compact.xml │ │ │ │ │ ├── foundation.xml │ │ │ │ │ ├── index.xml │ │ │ │ │ └── scrolling.xml │ │ │ ├── js │ │ │ │ └── dataTables.responsive.js │ │ │ └── make.sh │ │ ├── datatables │ │ │ ├── .bower.json │ │ │ ├── Contributing.md │ │ │ ├── Readme.md │ │ │ ├── bower.json │ │ │ ├── license.txt │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ │ ├── images │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── favicon.ico │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ │ └── js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.js │ │ ├── flot.tooltip │ │ │ ├── .bower.json │ │ │ ├── bower.json │ │ │ └── js │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.tooltip.js │ │ │ │ ├── jquery.flot.tooltip.min.js │ │ │ │ └── jquery.flot.tooltip.source.js │ │ ├── flot │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── API.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FAQ.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── NEWS.md │ │ │ ├── PLUGINS.md │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── examples │ │ │ │ ├── ajax │ │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ │ └── index.html │ │ │ │ ├── annotating │ │ │ │ │ └── index.html │ │ │ │ ├── axes-interacting │ │ │ │ │ └── index.html │ │ │ │ ├── axes-multiple │ │ │ │ │ └── index.html │ │ │ │ ├── axes-time-zones │ │ │ │ │ ├── date.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── tz │ │ │ │ │ │ ├── africa │ │ │ │ │ │ ├── antarctica │ │ │ │ │ │ ├── asia │ │ │ │ │ │ ├── australasia │ │ │ │ │ │ ├── backward │ │ │ │ │ │ ├── etcetera │ │ │ │ │ │ ├── europe │ │ │ │ │ │ ├── factory │ │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ │ ├── leapseconds │ │ │ │ │ │ ├── northamerica │ │ │ │ │ │ ├── pacificnew │ │ │ │ │ │ ├── solar87 │ │ │ │ │ │ ├── solar88 │ │ │ │ │ │ ├── solar89 │ │ │ │ │ │ ├── southamerica │ │ │ │ │ │ ├── systemv │ │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ │ └── zone.tab │ │ │ │ ├── axes-time │ │ │ │ │ └── index.html │ │ │ │ ├── background.png │ │ │ │ ├── basic-options │ │ │ │ │ └── index.html │ │ │ │ ├── basic-usage │ │ │ │ │ └── index.html │ │ │ │ ├── canvas │ │ │ │ │ └── index.html │ │ │ │ ├── categories │ │ │ │ │ └── index.html │ │ │ │ ├── examples.css │ │ │ │ ├── image │ │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── interacting │ │ │ │ │ └── index.html │ │ │ │ ├── navigate │ │ │ │ │ ├── arrow-down.gif │ │ │ │ │ ├── arrow-left.gif │ │ │ │ │ ├── arrow-right.gif │ │ │ │ │ ├── arrow-up.gif │ │ │ │ │ └── index.html │ │ │ │ ├── percentiles │ │ │ │ │ └── index.html │ │ │ │ ├── realtime │ │ │ │ │ └── index.html │ │ │ │ ├── resize │ │ │ │ │ └── index.html │ │ │ │ ├── selection │ │ │ │ │ └── index.html │ │ │ │ ├── series-errorbars │ │ │ │ │ └── index.html │ │ │ │ ├── series-pie │ │ │ │ │ └── index.html │ │ │ │ ├── series-toggle │ │ │ │ │ └── index.html │ │ │ │ ├── series-types │ │ │ │ │ └── index.html │ │ │ │ ├── shared │ │ │ │ │ └── jquery-ui │ │ │ │ │ │ └── jquery-ui.min.css │ │ │ │ ├── stacking │ │ │ │ │ └── index.html │ │ │ │ ├── symbols │ │ │ │ │ └── index.html │ │ │ │ ├── threshold │ │ │ │ │ └── index.html │ │ │ │ ├── tracking │ │ │ │ │ └── index.html │ │ │ │ ├── visitors │ │ │ │ │ └── index.html │ │ │ │ └── zooming │ │ │ │ │ └── index.html │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── flot.jquery.json │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.flot.canvas.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.errorbars.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.threshold.js │ │ │ ├── jquery.flot.time.js │ │ │ ├── jquery.js │ │ │ └── package.json │ │ ├── font-awesome │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── extras.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── spinning.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _spinning.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── holderjs │ │ │ ├── .bower.json │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── gulpfile.js │ │ │ ├── holder.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── augment.js │ │ │ │ ├── holder.js │ │ │ │ ├── ondomready.js │ │ │ │ └── polyfills.js │ │ │ └── test │ │ │ │ ├── .gitignore │ │ │ │ ├── image.jpg │ │ │ │ └── index.html │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ └── src │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.js │ │ │ │ ├── parseJSON.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ ├── var │ │ │ │ │ ├── nonce.js │ │ │ │ │ └── rquery.js │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── attributes │ │ │ │ ├── attr.js │ │ │ │ ├── classes.js │ │ │ │ ├── prop.js │ │ │ │ ├── support.js │ │ │ │ └── val.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── core │ │ │ │ ├── access.js │ │ │ │ ├── init.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready.js │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── css.js │ │ │ │ ├── css │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── defaultDisplay.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── support.js │ │ │ │ ├── swap.js │ │ │ │ └── var │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── getStyles.js │ │ │ │ │ ├── isHidden.js │ │ │ │ │ ├── rmargin.js │ │ │ │ │ └── rnumnonpx.js │ │ │ │ ├── data.js │ │ │ │ ├── data │ │ │ │ ├── Data.js │ │ │ │ ├── accepts.js │ │ │ │ └── var │ │ │ │ │ ├── data_priv.js │ │ │ │ │ └── data_user.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ └── animatedSelector.js │ │ │ │ ├── event.js │ │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ └── support.js │ │ │ │ ├── exports │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ │ ├── intro.js │ │ │ │ ├── jquery.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ └── rcheckableType.js │ │ │ │ ├── offset.js │ │ │ │ ├── outro.js │ │ │ │ ├── queue.js │ │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ │ ├── selector-native.js │ │ │ │ ├── selector-sizzle.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── sizzle │ │ │ │ └── dist │ │ │ │ │ ├── sizzle.js │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ └── sizzle.min.map │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ └── rneedsContext.js │ │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── strundefined.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ │ └── wrap.js │ │ ├── metisMenu │ │ │ ├── .bower.json │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── metisMenu.css │ │ │ │ ├── metisMenu.js │ │ │ │ ├── metisMenu.min.css │ │ │ │ └── metisMenu.min.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── metisMenu.css │ │ │ │ └── metisMenu.js │ │ ├── mocha │ │ │ ├── .bower.json │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── bower.json │ │ │ ├── media │ │ │ │ └── logo.svg │ │ │ ├── mocha.css │ │ │ └── mocha.js │ │ ├── morrisjs │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gruntfile.js │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── bower.travis.json │ │ │ ├── examples │ │ │ │ ├── _template.html │ │ │ │ ├── area-as-line.html │ │ │ │ ├── area.html │ │ │ │ ├── bar-colors.html │ │ │ │ ├── bar-no-axes.html │ │ │ │ ├── bar.html │ │ │ │ ├── days.html │ │ │ │ ├── decimal-custom-hover.html │ │ │ │ ├── diagonal-xlabels-bar.html │ │ │ │ ├── diagonal-xlabels.html │ │ │ │ ├── donut-colors.html │ │ │ │ ├── donut-formatter.html │ │ │ │ ├── donut.html │ │ │ │ ├── dst.html │ │ │ │ ├── events.html │ │ │ │ ├── goals.html │ │ │ │ ├── lib │ │ │ │ │ ├── example.css │ │ │ │ │ └── example.js │ │ │ │ ├── months-no-smooth.html │ │ │ │ ├── negative.html │ │ │ │ ├── no-grid.html │ │ │ │ ├── non-continuous.html │ │ │ │ ├── non-date.html │ │ │ │ ├── quarters.html │ │ │ │ ├── resize.html │ │ │ │ ├── stacked_bars.html │ │ │ │ ├── timestamps.html │ │ │ │ ├── updating.html │ │ │ │ ├── weeks.html │ │ │ │ └── years.html │ │ │ ├── less │ │ │ │ └── morris.core.less │ │ │ ├── lib │ │ │ │ ├── morris.area.coffee │ │ │ │ ├── morris.bar.coffee │ │ │ │ ├── morris.coffee │ │ │ │ ├── morris.donut.coffee │ │ │ │ ├── morris.grid.coffee │ │ │ │ ├── morris.hover.coffee │ │ │ │ └── morris.line.coffee │ │ │ ├── morris.css │ │ │ ├── morris.js │ │ │ ├── morris.min.js │ │ │ ├── package.json │ │ │ └── spec │ │ │ │ ├── lib │ │ │ │ ├── area │ │ │ │ │ └── area_spec.coffee │ │ │ │ ├── bar │ │ │ │ │ ├── bar_spec.coffee │ │ │ │ │ └── colours.coffee │ │ │ │ ├── commas_spec.coffee │ │ │ │ ├── donut │ │ │ │ │ └── donut_spec.coffee │ │ │ │ ├── grid │ │ │ │ │ ├── auto_grid_lines_spec.coffee │ │ │ │ │ ├── set_data_spec.coffee │ │ │ │ │ └── y_label_format_spec.coffee │ │ │ │ ├── hover_spec.coffee │ │ │ │ ├── label_series_spec.coffee │ │ │ │ ├── line │ │ │ │ │ └── line_spec.coffee │ │ │ │ ├── pad_spec.coffee │ │ │ │ └── parse_time_spec.coffee │ │ │ │ ├── specs.html │ │ │ │ ├── support │ │ │ │ └── placeholder.coffee │ │ │ │ └── viz │ │ │ │ ├── examples.js │ │ │ │ ├── exemplary │ │ │ │ ├── area0.png │ │ │ │ ├── bar0.png │ │ │ │ ├── line0.png │ │ │ │ └── stacked_bar0.png │ │ │ │ ├── run.sh │ │ │ │ ├── test.html │ │ │ │ └── visual_specs.js │ │ └── raphael │ │ │ ├── .bower.json │ │ │ ├── bower.json │ │ │ ├── dev │ │ │ ├── amdDev.js │ │ │ ├── index.js │ │ │ └── require.js │ │ │ ├── license.txt │ │ │ ├── raphael-min.js │ │ │ └── raphael.js │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── estilos.css │ │ └── sb-admin-2.css │ ├── img │ │ ├── categorias │ │ │ ├── 1679091c5a880faf6fb5e6087eb1b2dc.jpg │ │ │ ├── a87ff679a2f3e71d9181a67b7542122c.jpg │ │ │ ├── c4ca4238a0b923820dcc509a6f75849b.jpg │ │ │ ├── c81e728d9d4c2f636f067f89cc14862c.jpg │ │ │ ├── categoria-sem-foto.png │ │ │ ├── e4da3b7fbbce2345d7772b0674a318d5.jpg │ │ │ └── eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── produto-sem-foto.png │ │ └── produtos │ │ │ ├── 1679091c5a880faf6fb5e6087eb1b2dc.jpg │ │ │ ├── 1f0e3dad99908345f7439f8ffabdffc4.jpg │ │ │ ├── 1ff1de774005f8da13f42943881c655f.jpg │ │ │ ├── 37693cfc748049e45d87b8c7d8b9aacd.jpg │ │ │ ├── 3c59dc048e8850243be8079a5c74d079.jpg │ │ │ ├── 45c48cce2e2d7fbdea1afc51c7c6ad26.jpg │ │ │ ├── 6512bd43d9caa6e02c990b0a82652dca.jpg │ │ │ ├── 6f4922f45568161a8cdf4ad2299f6d23.jpg │ │ │ ├── 70efdf2ec9b086079795c442636b55fb.jpg │ │ │ ├── 8f14e45fceea167a5a36dedd4bea2543.jpg │ │ │ ├── 98f13708210194c475687be6106a3b84.jpg │ │ │ ├── 9bf31c7ff062936a96d3c8bd1f8f2ff3.jpg │ │ │ ├── a87ff679a2f3e71d9181a67b7542122c.jpg │ │ │ ├── aab3238922bcc25a6f606eb525ffdc56.jpg │ │ │ ├── b6d767d2f8ed5d21a44b0e5886680cb9.jpg │ │ │ ├── c20ad4d76fe97759aa27a0c99bff6710.jpg │ │ │ ├── c4ca4238a0b923820dcc509a6f75849b.jpg │ │ │ ├── c51ce410c124a10e0db5e4b97fc2af39.jpg │ │ │ ├── c74d97b01eae257e44aa9d5bade97baf.jpg │ │ │ ├── c81e728d9d4c2f636f067f89cc14862c.jpg │ │ │ ├── c9f0f895fb98ab9159f51fd0297e236d.jpg │ │ │ ├── corned-beef.jpg │ │ │ ├── d3d9446802a44259755d38e6d163e820.jpg │ │ │ ├── e4da3b7fbbce2345d7772b0674a318d5.jpg │ │ │ ├── e5a7_canned_unicorn_meat.jpg │ │ │ └── eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── funcoes.js │ │ ├── jquery-2.1.3.min.js │ │ ├── jquery.mask.js │ │ ├── morris-data.js │ │ └── sb-admin-2.js ├── captcha │ └── 1434449898.5561.jpg ├── contributing.md ├── database.sql ├── fonts │ └── texb.ttf ├── index.php ├── license.txt ├── locaweb-gateway-php-master │ ├── LICENSE │ ├── LocawebGateway.php │ ├── LocawebGatewayConfig.inc.php │ ├── LocawebGatewayPayment.php │ ├── LocawebGatewayProcessor.php │ ├── LocawebGatewayRequest.php │ ├── README.md │ ├── SimpleRestClient.php │ ├── builds │ │ └── LocawebGateway-0.1.1.tgz │ ├── example │ │ ├── chamadas_diretas.php │ │ ├── formulario.html │ │ └── formulario.php │ ├── package.xml │ ├── run_specs.sh │ └── specs │ │ ├── LocawebGatewayPaymentSpec.php │ │ ├── LocawebGatewayProcessorSpec.php │ │ ├── LocawebGatewayRequestSpec.php │ │ └── LocawebGatewaySpec.php ├── readme.rst ├── system │ ├── .htaccess │ ├── core │ │ ├── Benchmark.php │ │ ├── CodeIgniter.php │ │ ├── Common.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Exceptions.php │ │ ├── Hooks.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Log.php │ │ ├── Model.php │ │ ├── Output.php │ │ ├── Router.php │ │ ├── Security.php │ │ ├── URI.php │ │ ├── Utf8.php │ │ ├── compat │ │ │ ├── hash.php │ │ │ ├── index.html │ │ │ ├── mbstring.php │ │ │ ├── password.php │ │ │ └── standard.php │ │ └── index.html │ ├── database │ │ ├── DB.php │ │ ├── DB_cache.php │ │ ├── DB_driver.php │ │ ├── DB_forge.php │ │ ├── DB_query_builder.php │ │ ├── DB_result.php │ │ ├── DB_utility.php │ │ ├── drivers │ │ │ ├── cubrid │ │ │ │ ├── cubrid_driver.php │ │ │ │ ├── cubrid_forge.php │ │ │ │ ├── cubrid_result.php │ │ │ │ ├── cubrid_utility.php │ │ │ │ └── index.html │ │ │ ├── ibase │ │ │ │ ├── ibase_driver.php │ │ │ │ ├── ibase_forge.php │ │ │ │ ├── ibase_result.php │ │ │ │ ├── ibase_utility.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── mssql │ │ │ │ ├── index.html │ │ │ │ ├── mssql_driver.php │ │ │ │ ├── mssql_forge.php │ │ │ │ ├── mssql_result.php │ │ │ │ └── mssql_utility.php │ │ │ ├── mysql │ │ │ │ ├── index.html │ │ │ │ ├── mysql_driver.php │ │ │ │ ├── mysql_forge.php │ │ │ │ ├── mysql_result.php │ │ │ │ └── mysql_utility.php │ │ │ ├── mysqli │ │ │ │ ├── index.html │ │ │ │ ├── mysqli_driver.php │ │ │ │ ├── mysqli_forge.php │ │ │ │ ├── mysqli_result.php │ │ │ │ └── mysqli_utility.php │ │ │ ├── oci8 │ │ │ │ ├── index.html │ │ │ │ ├── oci8_driver.php │ │ │ │ ├── oci8_forge.php │ │ │ │ ├── oci8_result.php │ │ │ │ └── oci8_utility.php │ │ │ ├── odbc │ │ │ │ ├── index.html │ │ │ │ ├── odbc_driver.php │ │ │ │ ├── odbc_forge.php │ │ │ │ ├── odbc_result.php │ │ │ │ └── odbc_utility.php │ │ │ ├── pdo │ │ │ │ ├── index.html │ │ │ │ ├── pdo_driver.php │ │ │ │ ├── pdo_forge.php │ │ │ │ ├── pdo_result.php │ │ │ │ ├── pdo_utility.php │ │ │ │ └── subdrivers │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ │ └── pdo_sqlsrv_forge.php │ │ │ ├── postgre │ │ │ │ ├── index.html │ │ │ │ ├── postgre_driver.php │ │ │ │ ├── postgre_forge.php │ │ │ │ ├── postgre_result.php │ │ │ │ └── postgre_utility.php │ │ │ ├── sqlite │ │ │ │ ├── index.html │ │ │ │ ├── sqlite_driver.php │ │ │ │ ├── sqlite_forge.php │ │ │ │ ├── sqlite_result.php │ │ │ │ └── sqlite_utility.php │ │ │ ├── sqlite3 │ │ │ │ ├── index.html │ │ │ │ ├── sqlite3_driver.php │ │ │ │ ├── sqlite3_forge.php │ │ │ │ ├── sqlite3_result.php │ │ │ │ └── sqlite3_utility.php │ │ │ └── sqlsrv │ │ │ │ ├── index.html │ │ │ │ ├── sqlsrv_driver.php │ │ │ │ ├── sqlsrv_forge.php │ │ │ │ ├── sqlsrv_result.php │ │ │ │ └── sqlsrv_utility.php │ │ └── index.html │ ├── fonts │ │ ├── index.html │ │ └── texb.ttf │ ├── helpers │ │ ├── array_helper.php │ │ ├── captcha_helper.php │ │ ├── cookie_helper.php │ │ ├── date_helper.php │ │ ├── directory_helper.php │ │ ├── download_helper.php │ │ ├── email_helper.php │ │ ├── file_helper.php │ │ ├── form_helper.php │ │ ├── html_helper.php │ │ ├── index.html │ │ ├── inflector_helper.php │ │ ├── language_helper.php │ │ ├── number_helper.php │ │ ├── path_helper.php │ │ ├── security_helper.php │ │ ├── smiley_helper.php │ │ ├── string_helper.php │ │ ├── text_helper.php │ │ ├── typography_helper.php │ │ ├── url_helper.php │ │ └── xml_helper.php │ ├── index.html │ ├── language │ │ ├── english │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ └── index.html │ └── libraries │ │ ├── Cache │ │ ├── Cache.php │ │ ├── drivers │ │ │ ├── Cache_apc.php │ │ │ ├── Cache_dummy.php │ │ │ ├── Cache_file.php │ │ │ ├── Cache_memcached.php │ │ │ ├── Cache_redis.php │ │ │ ├── Cache_wincache.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Calendar.php │ │ ├── Cart.php │ │ ├── Driver.php │ │ ├── Email.php │ │ ├── Encrypt.php │ │ ├── Encryption.php │ │ ├── Form_validation.php │ │ ├── Ftp.php │ │ ├── Image_lib.php │ │ ├── Javascript.php │ │ ├── Javascript │ │ ├── Jquery.php │ │ └── index.html │ │ ├── Migration.php │ │ ├── Pagination.php │ │ ├── Parser.php │ │ ├── Profiler.php │ │ ├── Session │ │ ├── Session.php │ │ ├── SessionHandlerInterface.php │ │ ├── Session_driver.php │ │ ├── drivers │ │ │ ├── Session_database_driver.php │ │ │ ├── Session_files_driver.php │ │ │ ├── Session_memcached_driver.php │ │ │ ├── Session_redis_driver.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Table.php │ │ ├── Trackback.php │ │ ├── Typography.php │ │ ├── Unit_test.php │ │ ├── Upload.php │ │ ├── User_agent.php │ │ ├── Xmlrpc.php │ │ ├── Xmlrpcs.php │ │ ├── Zip.php │ │ └── index.html └── user_guide │ ├── DCO.html │ ├── _downloads │ └── ELDocs.tmbundle.zip │ ├── _images │ ├── appflowchart.gif │ └── smile.gif │ ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── ci-icon.ico │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── css │ │ ├── badge_only.css │ │ └── theme.css │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── jquery.js │ ├── js │ │ ├── oldtheme.js │ │ └── theme.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js │ ├── changelog.html │ ├── contributing │ └── index.html │ ├── database │ ├── caching.html │ ├── call_function.html │ ├── configuration.html │ ├── connecting.html │ ├── db_driver_reference.html │ ├── examples.html │ ├── forge.html │ ├── helpers.html │ ├── index.html │ ├── metadata.html │ ├── queries.html │ ├── query_builder.html │ ├── results.html │ ├── transactions.html │ └── utilities.html │ ├── documentation │ └── index.html │ ├── general │ ├── alternative_php.html │ ├── ancillary_classes.html │ ├── autoloader.html │ ├── caching.html │ ├── cli.html │ ├── common_functions.html │ ├── compatibility_functions.html │ ├── controllers.html │ ├── core_classes.html │ ├── creating_drivers.html │ ├── creating_libraries.html │ ├── credits.html │ ├── drivers.html │ ├── environments.html │ ├── errors.html │ ├── helpers.html │ ├── hooks.html │ ├── index.html │ ├── libraries.html │ ├── managing_apps.html │ ├── models.html │ ├── profiling.html │ ├── requirements.html │ ├── reserved_names.html │ ├── routing.html │ ├── security.html │ ├── styleguide.html │ ├── urls.html │ ├── views.html │ └── welcome.html │ ├── genindex.html │ ├── helpers │ ├── array_helper.html │ ├── captcha_helper.html │ ├── cookie_helper.html │ ├── date_helper.html │ ├── directory_helper.html │ ├── download_helper.html │ ├── email_helper.html │ ├── file_helper.html │ ├── form_helper.html │ ├── html_helper.html │ ├── index.html │ ├── inflector_helper.html │ ├── language_helper.html │ ├── number_helper.html │ ├── path_helper.html │ ├── security_helper.html │ ├── smiley_helper.html │ ├── string_helper.html │ ├── text_helper.html │ ├── typography_helper.html │ ├── url_helper.html │ └── xml_helper.html │ ├── index.html │ ├── installation │ ├── downloads.html │ ├── index.html │ ├── troubleshooting.html │ ├── upgrade_120.html │ ├── upgrade_130.html │ ├── upgrade_131.html │ ├── upgrade_132.html │ ├── upgrade_133.html │ ├── upgrade_140.html │ ├── upgrade_141.html │ ├── upgrade_150.html │ ├── upgrade_152.html │ ├── upgrade_153.html │ ├── upgrade_154.html │ ├── upgrade_160.html │ ├── upgrade_161.html │ ├── upgrade_162.html │ ├── upgrade_163.html │ ├── upgrade_170.html │ ├── upgrade_171.html │ ├── upgrade_172.html │ ├── upgrade_200.html │ ├── upgrade_201.html │ ├── upgrade_202.html │ ├── upgrade_203.html │ ├── upgrade_210.html │ ├── upgrade_211.html │ ├── upgrade_212.html │ ├── upgrade_213.html │ ├── upgrade_214.html │ ├── upgrade_220.html │ ├── upgrade_221.html │ ├── upgrade_300.html │ ├── upgrade_b11.html │ └── upgrading.html │ ├── libraries │ ├── benchmark.html │ ├── caching.html │ ├── calendar.html │ ├── cart.html │ ├── config.html │ ├── email.html │ ├── encrypt.html │ ├── encryption.html │ ├── file_uploading.html │ ├── form_validation.html │ ├── ftp.html │ ├── image_lib.html │ ├── index.html │ ├── input.html │ ├── javascript.html │ ├── language.html │ ├── loader.html │ ├── migration.html │ ├── output.html │ ├── pagination.html │ ├── parser.html │ ├── security.html │ ├── sessions.html │ ├── table.html │ ├── trackback.html │ ├── typography.html │ ├── unit_testing.html │ ├── uri.html │ ├── user_agent.html │ ├── xmlrpc.html │ └── zip.html │ ├── license.html │ ├── objects.inv │ ├── overview │ ├── appflow.html │ ├── at_a_glance.html │ ├── features.html │ ├── getting_started.html │ ├── goals.html │ ├── index.html │ └── mvc.html │ ├── search.html │ ├── searchindex.js │ └── tutorial │ ├── conclusion.html │ ├── create_news_items.html │ ├── index.html │ ├── news_section.html │ └── static_pages.html ├── produto-sem-foto.zip ├── secao2.2.5.sql ├── secao4.2.6.sql ├── secao4.2.8.sql ├── sql-2.2.5.zip ├── sql-4.2.2.zip ├── sql-4.2.6.zip ├── sql-4.2.8.zip ├── sql-4.3.1.zip └── sql-4.3.2.sql.zip /Screenshot 2017-09-21 08.53.14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/Screenshot 2017-09-21 08.53.14.png -------------------------------------------------------------------------------- /Screenshot 2017-09-21 08.53.54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/Screenshot 2017-09-21 08.53.54.png -------------------------------------------------------------------------------- /Screenshot 2017-09-21 08.54.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/Screenshot 2017-09-21 08.54.07.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteCond $1 !^(index\.php|hcl|images|css|js|flash|repositorio|robots\.txt) 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteCond %{REQUEST_FILENAME} !-d 6 | RewriteRule ^(.*)$ index.php?$1 [L] 7 | 8 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/config/email.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/config/profiler.php: -------------------------------------------------------------------------------- 1 | load->view('home'); 13 | } 14 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/arabic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/arabic/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/azerbaijani/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/bulgarian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/catalan/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/czech/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/dutch/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/filipino/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/filipino/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/french/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/german/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/gujarati/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/hindi/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/hungarian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/indonesian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/indonesian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/italian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/japanese/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/khmer/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/korean/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/norwegian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/persian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/polish/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/portuguese-brazilian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/portuguese/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/romanian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/russian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/simplified-chinese/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/spanish/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/swedish/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/tamil/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/thai/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/traditional-chinese/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/turkish/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/ukrainian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/urdu/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/vietnamese/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/administracao/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/administracao/home.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Bem vindo ao painel de administração

6 |
7 |
8 |
9 |
-------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/administracao/html_footer.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/administracao/sem_permissao.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 13 |
14 |
15 |
-------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/cadastro_enviado.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Seja bem vindo a nossa loja.

4 |

Dados de cadastro recebidos.

5 |
6 |
7 |

Seu cadastro foi efetuado com sucesso.
8 | Você receberá um e-mail para ativação da sua conta.
9 | Caso não receba a mensagem em alguns minutos cheque também a pasta SPAM da sua conta de email.
10 | Muito obrigado por cadastrar.

11 |
12 |
-------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/cadastro_liberado.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Cadastro confirmado.

4 |

Você já está apto para fazer compras.

5 |
6 |
7 |

Seu cadastro foi confirmado com sucesso.
8 | Você já pode fazer compras.
9 | Ver os produtos da loja.

10 |
11 |
-------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/emails/confirmar_cadastro.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | The Grocery Store Brazil. 6 | 7 | 8 |

The Grocery Store Brazil.

9 |

Confirmação de cadastro.

10 |

Olá: .
Muito obrigado por se cadastrar em nosso website.

11 |

Para concluir seu cadastro e liberar sua conta para compras clique no link abaixo.

12 |

">Confimar cadastro no website!

13 |

Seja bem vindo, e boas compras!
The Grocery Store Brazil.

14 | 15 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/emails/recuperar_senha.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | The Grocery Store Brazil. 6 | 7 | 8 |

The Grocery Store Brazil.

9 |

Recuperação de cadastro.

10 |

Olá: .

11 |

Você solicitou a senha de acesso ao website.

12 |

Sua senha é:

13 |

Seja bem vindo de volta, e boas compras!
The Grocery Store Brazil.

14 | 15 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/footer.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/html-footer.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/views/senha_enviada.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Seja bem vindo de volta a nossa loja.

4 |

A sua senha foi encaminhada com sucesso.

5 |
6 |
7 |

Sua senha foi encaminhada com sucesso.
8 | Caso não receba a mensagem em alguns minutos cheque também a pasta SPAM da sua conta de email.
9 | Muito obrigado por se cadastrar.

10 |
11 |
-------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap-social/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-social", 3 | "main": "bootstrap-social.css", 4 | "licence": "MIT", 5 | "ignore": [ 6 | "assets", 7 | "index.html", 8 | "LICENCE" 9 | ], 10 | "dependencies": { 11 | "bootstrap": "~3", 12 | "font-awesome": "~4.2" 13 | }, 14 | "homepage": "https://github.com/lipis/bootstrap-social", 15 | "version": "4.8.0", 16 | "_release": "4.8.0", 17 | "_resolution": { 18 | "type": "version", 19 | "tag": "4.8.0", 20 | "commit": "918fc55c3c938377a7618ec0f115846e50d4b883" 21 | }, 22 | "_source": "git://github.com/lipis/bootstrap-social.git", 23 | "_target": "~4.8.0", 24 | "_originalSource": "bootstrap-social", 25 | "_direct": true 26 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap-social/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | indent_style = space 7 | indent_size = 2 8 | end_of_line = lf 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap-social/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dev 3 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap-social/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-social", 3 | "main": "bootstrap-social.css", 4 | "licence": "MIT", 5 | "ignore": [ 6 | "assets", 7 | "index.html", 8 | "LICENCE" 9 | ], 10 | "dependencies": { 11 | "bootstrap": "~3", 12 | "font-awesome": "~4.2" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../js/.jshintrc", 3 | "asi" : false, 4 | "browser" : false, 5 | "es3" : false, 6 | "node" : true 7 | } 8 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi" : true, 3 | "browser" : true, 4 | "eqeqeq" : false, 5 | "eqnull" : true, 6 | "es3" : true, 7 | "expr" : true, 8 | "jquery" : true, 9 | "latedef" : true, 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true 15 | } 16 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false 19 | } 20 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover { 6 | background-color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (will be removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a& { 9 | color: @color; 10 | 11 | .list-group-item-heading { 12 | color: inherit; 13 | } 14 | 15 | &:hover, 16 | &:focus { 17 | color: @color; 18 | background-color: darken(@background, 5%); 19 | } 20 | &.active, 21 | &.active:hover, 22 | &.active:focus { 23 | color: #fff; 24 | background-color: @color; 25 | border-color: @color; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | } 10 | &:first-child { 11 | > a, 12 | > span { 13 | .border-left-radius(@border-radius); 14 | } 15 | } 16 | &:last-child { 17 | > a, 18 | > span { 19 | .border-right-radius(@border-radius); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover { 6 | color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/bootstrap/less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datatables-plugins", 3 | "homepage": "https://github.com/DataTables/Plugins", 4 | "version": "1.0.1", 5 | "_release": "1.0.1", 6 | "_resolution": { 7 | "type": "version", 8 | "tag": "1.0.1", 9 | "commit": "a94e328df63c79af43123b99ada5ff88d601a31d" 10 | }, 11 | "_source": "git://github.com/DataTables/Plugins.git", 12 | "_target": "~1.0.1", 13 | "_originalSource": "datatables-plugins", 14 | "_direct": true 15 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/api/column().title().js: -------------------------------------------------------------------------------- 1 | /** 2 | * This plug-in will read the text from the header cell of a column, returning 3 | * that value. 4 | * 5 | * @name column().title() 6 | * @summary Get the title of a column 7 | * @author Alejandro Navarro 8 | * @requires DataTables 1.10+ 9 | * 10 | * @returns {String} Column title 11 | * 12 | * @example 13 | * // Read the title text of column index 3 14 | * var table = $('#example').DataTable(); 15 | * table.column( 3 ).title(); 16 | */ 17 | 18 | $.fn.dataTable.Api.register( 'column().title()', function () { 19 | var colheader = this.header(); 20 | return $(colheader).text().trim(); 21 | } ); -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/features/lengthLinks/dataTables.lengthLinks.css: -------------------------------------------------------------------------------- 1 | 2 | div.dataTables_length a.active { 3 | color: black; 4 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/features/searchHighlight/dataTables.searchHighlight.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.dataTable span.highlight { 4 | background-color: #FFFF88; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/features/searchHighlight/dataTables.searchHighlight.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | SearchHighlight for DataTables v1.0.1 3 | 2014 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(f,c,b){b(c).on("init.dt.dth",function(c,d){var a=new b.fn.dataTable.Api(d),e=b(a.table().body());if(b(a.table().node()).hasClass("searchHighlight")||d.oInit.searchHighlight||b.fn.dataTable.defaults.searchHighlight)a.on("draw.dt.dth column-visibility.dt.dth",function(){e.unhighlight();a.rows({filter:"applied"}).data().length&&e.highlight(a.search().split(" "))}).on("destroy",function(){a.off("draw.dt.dth column-visibility.dt.dth")})})})(window,document,jQuery); 6 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/i18n/Arabic.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Arabic translation 3 | * @name Arabic 4 | * @anchor Arabic 5 | * @author Ossama Khayat 6 | */ 7 | 8 | { 9 | "sProcessing": "جاري التحميل...", 10 | "sLengthMenu": "أظهر مُدخلات _MENU_", 11 | "sZeroRecords": "لم يُعثر على أية سجلات", 12 | "sInfo": "إظهار _START_ إلى _END_ من أصل _TOTAL_ مُدخل", 13 | "sInfoEmpty": "يعرض 0 إلى 0 من أصل 0 سجلّ", 14 | "sInfoFiltered": "(منتقاة من مجموع _MAX_ مُدخل)", 15 | "sInfoPostFix": "", 16 | "sSearch": "ابحث:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "الأول", 20 | "sPrevious": "السابق", 21 | "sNext": "التالي", 22 | "sLast": "الأخير" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/i18n/Catalan.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation 3 | * @name Catalan 4 | * @anchor Catalan 5 | * @author Sergi 6 | */ 7 | 8 | { 9 | "sProcessing": "Processant...", 10 | "sLengthMenu": "Mostra _MENU_ registres", 11 | "sZeroRecords": "No s'han trobat registres.", 12 | "sInfo": "Mostrant de _START_ a _END_ de _TOTAL_ registres", 13 | "sInfoEmpty": "Mostrant de 0 a 0 de 0 registres", 14 | "sInfoFiltered": "(filtrat de _MAX_ total registres)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Filtrar:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Primer", 20 | "sPrevious": "Anterior", 21 | "sNext": "Següent", 22 | "sLast": "Últim" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/i18n/Chinese-traditional.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Chinese (traditional) translation 3 | * @name Chinese (traditional) 4 | * @anchor Chinese (traditional) 5 | * @author GimmeRank Affiliate 6 | */ 7 | 8 | { 9 | "sProcessing":   "處理中...", 10 | "sLengthMenu":   "顯示 _MENU_ 項結果", 11 | "sZeroRecords":  "沒有匹配結果", 12 | "sInfo":         "顯示第 _START_ 至 _END_ 項結果,共 _TOTAL_ 項", 13 | "sInfoEmpty":    "顯示第 0 至 0 項結果,共 0 項", 14 | "sInfoFiltered": "(從 _MAX_ 項結果過濾)", 15 | "sInfoPostFix":  "", 16 | "sSearch":       "搜索:", 17 | "sUrl":          "", 18 | "oPaginate": { 19 | "sFirst":    "首頁", 20 | "sPrevious": "上頁", 21 | "sNext":     "下頁", 22 | "sLast":     "尾頁" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/i18n/Japanese.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation 3 | * @name Japanese 4 | * @anchor Japanese 5 | * @author yusuke 6 | */ 7 | 8 | { 9 | "sProcessing": "処理中...", 10 | "sLengthMenu": "_MENU_ 件表示", 11 | "sZeroRecords": "データはありません。", 12 | "sInfo": " _TOTAL_ 件中 _START_ から _END_ まで表示", 13 | "sInfoEmpty": " 0 件中 0 から 0 まで表示", 14 | "sInfoFiltered": "(全 _MAX_ 件より抽出)", 15 | "sInfoPostFix": "", 16 | "sSearch": "検索:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "先頭", 20 | "sPrevious": "前", 21 | "sNext": "次", 22 | "sLast": "最終" 23 | } 24 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/i18n/Persian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Persian translation 3 | * @name Persian 4 | * @anchor Persian 5 | * @author Ehsan Chavoshi 6 | */ 7 | 8 | { 9 | "sProcessing": "درحال پردازش...", 10 | "sLengthMenu": "نمایش محتویات _MENU_", 11 | "sZeroRecords": "موردی یافت نشد", 12 | "sInfo": "نمایش _START_ تا _END_ از مجموع _TOTAL_ مورد", 13 | "sInfoEmpty": "تهی", 14 | "sInfoFiltered": "(فیلتر شده از مجموع _MAX_ مورد)", 15 | "sInfoPostFix": "", 16 | "sSearch": "جستجو:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "ابتدا", 20 | "sPrevious": "قبلی", 21 | "sNext": "بعدی", 22 | "sLast": "انتها" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/i18n/Thai.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation 3 | * @name Thai 4 | * @anchor Thai 5 | * @author Thanva Thonglor 6 | */ 7 | 8 | { 9 | "sProcessing": "กำลังดำเนินการ...", 10 | "sLengthMenu": "แสดง_MENU_ แถว", 11 | "sZeroRecords": "ไม่พบข้อมูล", 12 | "sInfo": "แสดง _START_ ถึง _END_ จาก _TOTAL_ แถว", 13 | "sInfoEmpty": "แสดง 0 ถึง 0 จาก 0 แถว", 14 | "sInfoFiltered": "(กรองข้อมูล _MAX_ ทุกแถว)", 15 | "sInfoPostFix": "", 16 | "sSearch": "ค้นหา:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "เิริ่มต้น", 20 | "sPrevious": "ก่อนหน้า", 21 | "sNext": "ถัดไป", 22 | "sLast": "สุดท้าย" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/i18n/Turkish.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Turkish translation 3 | * @name Turkish 4 | * @anchor Turkish 5 | * @author Umit Gorkem 6 | */ 7 | 8 | { 9 | "sProcessing": "İşleniyor...", 10 | "sLengthMenu": "Sayfada _MENU_ Kayıt Göster", 11 | "sZeroRecords": "Eşleşen Kayıt Bulunmadı", 12 | "sInfo": " _TOTAL_ Kayıttan _START_ - _END_ Arası Kayıtlar", 13 | "sInfoEmpty": "Kayıt Yok", 14 | "sInfoFiltered": "( _MAX_ Kayıt İçerisinden Bulunan)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Bul:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "İlk", 20 | "sPrevious": "Önceki", 21 | "sNext": "Sonraki", 22 | "sLast": "Son" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/i18n/Vietnamese.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Vietnamese translation 3 | * @name Vietnamese 4 | * @anchor Vietnamese 5 | * @author Trinh Phuoc Thai 6 | */ 7 | 8 | { 9 | "sProcessing": "Đang xử lý...", 10 | "sLengthMenu": "Xem _MENU_ mục", 11 | "sZeroRecords": "Không tìm thấy dòng nào phù hợp", 12 | "sInfo": "Đang xem _START_ đến _END_ trong tổng số _TOTAL_ mục", 13 | "sInfoEmpty": "Đang xem 0 đến 0 trong tổng số 0 mục", 14 | "sInfoFiltered": "(được lọc từ _MAX_ mục)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Tìm:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Đầu", 20 | "sPrevious": "Trước", 21 | "sNext": "Tiếp", 22 | "sLast": "Cuối" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/1/dataTables.bootstrap.css: -------------------------------------------------------------------------------- 1 | div.dataTables_length label { 2 | width: 460px; 3 | float: left; 4 | text-align: left; 5 | } 6 | 7 | div.dataTables_length select { 8 | width: 75px; 9 | } 10 | 11 | div.dataTables_filter label { 12 | float: right; 13 | width: 460px; 14 | } 15 | 16 | div.dataTables_info { 17 | padding-top: 8px; 18 | } 19 | 20 | div.dataTables_paginate { 21 | float: right; 22 | margin: 0; 23 | } 24 | 25 | table { 26 | margin: 1em 0; 27 | clear: both; 28 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/images/sort_asc.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/images/sort_both.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/images/sort_desc.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/bootstrap/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/foundation/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/foundation/images/sort_asc.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/foundation/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/foundation/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/foundation/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/foundation/images/sort_both.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/foundation/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/foundation/images/sort_desc.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/foundation/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/integration/foundation/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/sorting/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-plugins/sorting/.DS_Store -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/sorting/custom-data-source/dom-checkbox.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Read information from a column of checkboxes (input elements with type 3 | * checkbox) and return an array to use as a basis for sorting. 4 | * 5 | * @summary Sort based on the checked state of checkboxes in a column 6 | * @name Checkbox data source 7 | * @author [Allan Jardine](http://sprymedia.co.uk) 8 | */ 9 | 10 | $.fn.dataTable.ext.order['dom-checkbox'] = function ( settings, col ) 11 | { 12 | return this.api().column( col, {order:'index'} ).nodes().map( function ( td, i ) { 13 | return $('input', td).prop('checked') ? '1' : '0'; 14 | } ); 15 | }; 16 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/sorting/custom-data-source/dom-select.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Read information from a column of select (drop down) menus and return an 3 | * array to use as a basis for sorting. 4 | * 5 | * @summary Sort based on the value of the `dt-tag select` options in a column 6 | * @name Select menu data source 7 | * @requires DataTables 1.10+ 8 | * @author [Allan Jardine](http://sprymedia.co.uk) 9 | */ 10 | 11 | $.fn.dataTable.ext.order['dom-select'] = function ( settings, col ) 12 | { 13 | return this.api().column( col, {order:'index'} ).nodes().map( function ( td, i ) { 14 | return $('select', td).val(); 15 | } ); 16 | }; 17 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/sorting/custom-data-source/dom-text.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Read information from a column of input (type text) elements and return an 3 | * array to use as a basis for sorting. 4 | * 5 | * @summary Sorting based on the values of `dt-tag input` elements in a column. 6 | * @name Input element data source 7 | * @requires DataTables 1.10+ 8 | * @author [Allan Jardine](http://sprymedia.co.uk) 9 | */ 10 | 11 | $.fn.dataTable.ext.order['dom-text'] = function ( settings, col ) 12 | { 13 | return this.api().column( col, {order:'index'} ).nodes().map( function ( td, i ) { 14 | return $('input', td).val(); 15 | } ); 16 | }; 17 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/type-detection/date-uk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically detect British (`dd/mm/yyyy`) date types. Goes with the UK 3 | * date sorting plug-in. 4 | * 5 | * @name Date (`dd/mm/yyyy`) 6 | * @summary Detect data which is in the date format `dd/mm/yyyy` 7 | * @author Andy McMaster 8 | */ 9 | 10 | jQuery.fn.dataTableExt.aTypes.unshift( 11 | function ( sData ) 12 | { 13 | if (sData !== null && sData.match(/^(0[1-9]|[12][0-9]|3[01])\/(0[1-9]|1[012])\/(19|20|21)\d\d$/)) 14 | { 15 | return 'date-uk'; 16 | } 17 | return null; 18 | } 19 | ); 20 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-plugins/type-detection/ip-address.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically detect IP addresses in dot notation. Goes perfectly with the 3 | * IP address sorting function. 4 | * 5 | * @name IP address detection 6 | * @summary Detect data which is in IP address notation 7 | * @author Brad Wasson 8 | */ 9 | 10 | jQuery.fn.dataTableExt.aTypes.unshift( 11 | function ( sData ) 12 | { 13 | if (/^\d{1,3}[\.]\d{1,3}[\.]\d{1,3}[\.]\d{1,3}$/.test(sData)) { 14 | return 'ip-address'; 15 | } 16 | return null; 17 | } 18 | ); 19 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-responsive/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datatables-responsive", 3 | "version": "1.0.5", 4 | "main": [ 5 | "js/dataTables.responsive.js", 6 | "css/dataTables.responsive.css" 7 | ], 8 | "dependencies": { 9 | "jquery": ">=1.7.0", 10 | "datatables": ">=1.10.1" 11 | }, 12 | "homepage": "https://github.com/DataTables/Responsive", 13 | "_release": "1.0.5", 14 | "_resolution": { 15 | "type": "version", 16 | "tag": "1.0.5", 17 | "commit": "2c66f3b8b2dd04b83443c2695f8845285876e8e1" 18 | }, 19 | "_source": "git://github.com/DataTables/Responsive.git", 20 | "_target": "~1.0.3", 21 | "_originalSource": "datatables-responsive" 22 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-responsive/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-responsive/Readme.md -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-responsive/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datatables-responsive", 3 | "version": "1.0.5", 4 | "main": [ 5 | "js/dataTables.responsive.js", 6 | "css/dataTables.responsive.css" 7 | ], 8 | "dependencies": { 9 | "jquery": ">=1.7.0", 10 | "datatables": ">=1.10.1" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-responsive/examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-responsive/examples/.DS_Store -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-responsive/examples/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Responsive DataTables 5 | 6 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-responsive/examples/initialisation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables-responsive/examples/initialisation/.DS_Store -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-responsive/examples/initialisation/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Initialisation 5 | 6 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-responsive/examples/styling/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Styling 5 | 6 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables-responsive/make.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | OUT_DIR=$1 4 | DEBUG=$2 5 | 6 | # Change into script's own dir 7 | cd $(dirname $0) 8 | 9 | DT_SRC=$(dirname $(dirname $(pwd))) 10 | DT_BUILT="${DT_SRC}/built/DataTables" 11 | . $DT_SRC/build/include.sh 12 | 13 | # Copy CSS 14 | scss_compile css/dataTables.responsive.scss 15 | rsync -r css $OUT_DIR 16 | 17 | # Copy images 18 | #rsync -r images $OUT_DIR 19 | 20 | # Copy JS 21 | rsync -r js $OUT_DIR 22 | js_compress $OUT_DIR/js/dataTables.responsive.js 23 | 24 | # Copy and build examples 25 | rsync -r examples $OUT_DIR 26 | examples_process $OUT_DIR/examples 27 | 28 | # Readme and license 29 | cp Readme.md $OUT_DIR 30 | cp License.txt $OUT_DIR 31 | 32 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables/media/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables/media/images/Sorting icons.psd -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables/media/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables/media/images/favicon.ico -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables/media/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables/media/images/sort_asc.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables/media/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables/media/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables/media/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables/media/images/sort_both.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables/media/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables/media/images/sort_desc.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/datatables/media/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/datatables/media/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot.tooltip/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flot.tooltip", 3 | "version": "0.8.4", 4 | "main": "js/jquery.flot.tooltip.js", 5 | "ignore": [ 6 | ".gitignore", 7 | "Gruntfile.js", 8 | "README.md", 9 | "package.json", 10 | "examples", 11 | "js/old" 12 | ], 13 | "homepage": "https://github.com/krzysu/flot.tooltip", 14 | "_release": "0.8.4", 15 | "_resolution": { 16 | "type": "version", 17 | "tag": "0.8.4", 18 | "commit": "312a7570f6dfeff00d9c0ce6f6263160b84ee652" 19 | }, 20 | "_source": "git://github.com/krzysu/flot.tooltip.git", 21 | "_target": "~0.8.4", 22 | "_originalSource": "flot.tooltip", 23 | "_direct": true 24 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot.tooltip/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flot.tooltip", 3 | "version": "0.7.1", 4 | "main": "js/jquery.flot.tooltip.js", 5 | "ignore": [ 6 | ".gitignore", 7 | "Gruntfile.js", 8 | "README.md", 9 | "package.json", 10 | "examples", 11 | "js/old" 12 | ] 13 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flot", 3 | "version": "0.8.3", 4 | "main": "jquery.flot.js", 5 | "dependencies": { 6 | "jquery": ">= 1.2.6" 7 | }, 8 | "homepage": "https://github.com/flot/flot", 9 | "_release": "0.8.3", 10 | "_resolution": { 11 | "type": "version", 12 | "tag": "v0.8.3", 13 | "commit": "453b017cc5acfd75e252b93e8635f57f4196d45d" 14 | }, 15 | "_source": "git://github.com/flot/flot.git", 16 | "_target": "~0.8.3", 17 | "_originalSource": "flot", 18 | "_direct": true 19 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/.gitignore: -------------------------------------------------------------------------------- 1 | *.min.js 2 | !excanvas.min.js 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for generating minified files 2 | 3 | .PHONY: all 4 | 5 | # we cheat and process all .js files instead of an exhaustive list 6 | all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js))) 7 | 8 | %.min.js: %.js 9 | yui-compressor $< -o $@ 10 | 11 | test: 12 | ./node_modules/.bin/jshint *jquery.flot.js 13 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flot", 3 | "version": "0.8.3", 4 | "main": "jquery.flot.js", 5 | "dependencies": { 6 | "jquery": ">= 1.2.6" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/examples/ajax/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9]] 4 | } 5 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/examples/ajax/data-eu-gdp-growth-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2]] 4 | } 5 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/examples/ajax/data-eu-gdp-growth-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5]] 4 | } 5 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/examples/ajax/data-eu-gdp-growth-4.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1]] 4 | } 5 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/examples/ajax/data-eu-gdp-growth-5.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/examples/ajax/data-eu-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/examples/ajax/data-japan-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Japan", 3 | "data": [[1999, -0.1], [2000, 2.9], [2001, 0.2], [2002, 0.3], [2003, 1.4], [2004, 2.7], [2005, 1.9], [2006, 2.0], [2007, 2.3], [2008, -0.7]] 4 | } 5 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/examples/ajax/data-usa-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "USA", 3 | "data": [[1999, 4.4], [2000, 3.7], [2001, 0.8], [2002, 1.6], [2003, 2.5], [2004, 3.6], [2005, 2.9], [2006, 2.8], [2007, 2.0], [2008, 1.1]] 4 | } 5 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/flot/examples/axes-time-zones/tz/factory: -------------------------------------------------------------------------------- 1 | #
 2 | # This file is in the public domain, so clarified as of
 3 | # 2009-05-17 by Arthur David Olson.
 4 | 
 5 | # For companies who don't want to put time zone specification in
 6 | # their installation procedures.  When users run date, they'll get the message.
 7 | # Also useful for the "comp.sources" version.
 8 | 
 9 | # Zone	NAME	GMTOFF	RULES	FORMAT
10 | Zone	Factory	0	- "Local time zone must be set--see zic manual page"
11 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/flot/examples/axes-time-zones/tz/southamerica:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/flot/examples/axes-time-zones/tz/southamerica


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/flot/examples/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/flot/examples/background.png


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/flot/examples/image/hs-2004-27-a-large-web.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/flot/examples/image/hs-2004-27-a-large-web.jpg


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/flot/examples/navigate/arrow-down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/flot/examples/navigate/arrow-down.gif


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/flot/examples/navigate/arrow-left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/flot/examples/navigate/arrow-left.gif


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/flot/examples/navigate/arrow-right.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/flot/examples/navigate/arrow-right.gif


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/flot/examples/navigate/arrow-up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/flot/examples/navigate/arrow-up.gif


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/flot/package.json:
--------------------------------------------------------------------------------
 1 | {
 2 | 	"name": "Flot",
 3 | 	"version": "0.8.3",
 4 | 	"main": "jquery.flot.js",
 5 | 	"scripts": {
 6 | 		"test": "make test"
 7 | 	},
 8 | 	"devDependencies": {
 9 | 		"jshint": "0.9.1"
10 | 	}
11 | }
12 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/.gitignore:
--------------------------------------------------------------------------------
 1 | *.pyc
 2 | *.egg-info
 3 | *.db
 4 | *.db.old
 5 | *.swp
 6 | *.db-journal
 7 | 
 8 | .coverage
 9 | .DS_Store
10 | .installed.cfg
11 | _gh_pages/*
12 | 
13 | .idea/*
14 | .svn/*
15 | src/website/static/*
16 | src/website/media/*
17 | 
18 | bin
19 | cfcache
20 | develop-eggs
21 | dist
22 | downloads
23 | eggs
24 | parts
25 | tmp
26 | .sass-cache
27 | node_modules
28 | 
29 | src/website/settingslocal.py
30 | stunnel.log
31 | 
32 | .ruby-version
33 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/.npmignore:
--------------------------------------------------------------------------------
 1 | *.pyc
 2 | *.egg-info
 3 | *.db
 4 | *.db.old
 5 | *.swp
 6 | *.db-journal
 7 | 
 8 | .coverage
 9 | .DS_Store
10 | .installed.cfg
11 | _gh_pages/*
12 | 
13 | .idea/*
14 | .svn/*
15 | src/website/static/*
16 | src/website/media/*
17 | 
18 | bin
19 | cfcache
20 | develop-eggs
21 | dist
22 | downloads
23 | eggs
24 | parts
25 | tmp
26 | .sass-cache
27 | node_modules
28 | 
29 | src/website/settingslocal.py
30 | stunnel.log
31 | 
32 | .ruby-version
33 | 
34 | # don't need these in the npm package.
35 | src/
36 | _config.yml
37 | bower.json
38 | component.json
39 | composer.json
40 | CONTRIBUTING.md
41 | Gemfile
42 | Gemfile.lock
43 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/bower.json:
--------------------------------------------------------------------------------
 1 | {
 2 |   "name": "font-awesome",
 3 |   "description": "Font Awesome",
 4 |   "version": "4.2.0",
 5 |   "keywords": [],
 6 |   "homepage": "http://fontawesome.io",
 7 |   "dependencies": {},
 8 |   "devDependencies": {},
 9 |   "license": ["OFL-1.1", "MIT", "CC-BY-3.0"],
10 |   "main": [
11 |     "./css/font-awesome.css",
12 |     "./fonts/*"
13 |   ],
14 |   "ignore": [
15 |     "*/.*",
16 |     "*.json",
17 |     "src",
18 |     "*.yml",
19 |     "Gemfile",
20 |     "Gemfile.lock",
21 |     "*.md"
22 |   ]
23 | }
24 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/font-awesome/fonts/FontAwesome.otf


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/font-awesome/fonts/fontawesome-webfont.eot


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/font-awesome/fonts/fontawesome-webfont.ttf


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/font-awesome/fonts/fontawesome-webfont.woff


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/less/bordered-pulled.less:
--------------------------------------------------------------------------------
 1 | // Bordered & Pulled
 2 | // -------------------------
 3 | 
 4 | .@{fa-css-prefix}-border {
 5 |   padding: .2em .25em .15em;
 6 |   border: solid .08em @fa-border-color;
 7 |   border-radius: .1em;
 8 | }
 9 | 
10 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 | 
13 | .@{fa-css-prefix} {
14 |   &.pull-left { margin-right: .3em; }
15 |   &.pull-right { margin-left: .3em; }
16 | }
17 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/less/core.less:
--------------------------------------------------------------------------------
 1 | // Base Class Definition
 2 | // -------------------------
 3 | 
 4 | .@{fa-css-prefix} {
 5 |   display: inline-block;
 6 |   font: normal normal normal 14px/1 FontAwesome; // shortening font declaration
 7 |   font-size: inherit; // can't have font-size inherit on line above, so need to override
 8 |   text-rendering: auto; // optimizelegibility throws things off #1094
 9 |   -webkit-font-smoothing: antialiased;
10 |   -moz-osx-font-smoothing: grayscale;
11 | }
12 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/less/extras.less:
--------------------------------------------------------------------------------
1 | // Extras
2 | // --------------------------
3 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/less/fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 |   width: (18em / 14);
5 |   text-align: center;
6 | }
7 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/less/font-awesome.less:
--------------------------------------------------------------------------------
 1 | /*!
 2 |  *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 3 |  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 4 |  */
 5 | 
 6 | @import "variables.less";
 7 | @import "mixins.less";
 8 | @import "path.less";
 9 | @import "core.less";
10 | @import "larger.less";
11 | @import "fixed-width.less";
12 | @import "list.less";
13 | @import "bordered-pulled.less";
14 | @import "spinning.less";
15 | @import "rotated-flipped.less";
16 | @import "stacked.less";
17 | @import "icons.less";
18 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/less/larger.less:
--------------------------------------------------------------------------------
 1 | // Icon Sizes
 2 | // -------------------------
 3 | 
 4 | /* makes the font 33% larger relative to the icon container */
 5 | .@{fa-css-prefix}-lg {
 6 |   font-size: (4em / 3);
 7 |   line-height: (3em / 4);
 8 |   vertical-align: -15%;
 9 | }
10 | .@{fa-css-prefix}-2x { font-size: 2em; }
11 | .@{fa-css-prefix}-3x { font-size: 3em; }
12 | .@{fa-css-prefix}-4x { font-size: 4em; }
13 | .@{fa-css-prefix}-5x { font-size: 5em; }
14 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/less/list.less:
--------------------------------------------------------------------------------
 1 | // List Icons
 2 | // -------------------------
 3 | 
 4 | .@{fa-css-prefix}-ul {
 5 |   padding-left: 0;
 6 |   margin-left: @fa-li-width;
 7 |   list-style-type: none;
 8 |   > li { position: relative; }
 9 | }
10 | .@{fa-css-prefix}-li {
11 |   position: absolute;
12 |   left: -@fa-li-width;
13 |   width: @fa-li-width;
14 |   top: (2em / 14);
15 |   text-align: center;
16 |   &.@{fa-css-prefix}-lg {
17 |     left: (-@fa-li-width + (4em / 14));
18 |   }
19 | }
20 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/less/stacked.less:
--------------------------------------------------------------------------------
 1 | // Stacked Icons
 2 | // -------------------------
 3 | 
 4 | .@{fa-css-prefix}-stack {
 5 |   position: relative;
 6 |   display: inline-block;
 7 |   width: 2em;
 8 |   height: 2em;
 9 |   line-height: 2em;
10 |   vertical-align: middle;
11 | }
12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13 |   position: absolute;
14 |   left: 0;
15 |   width: 100%;
16 |   text-align: center;
17 | }
18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; }
21 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/scss/_bordered-pulled.scss:
--------------------------------------------------------------------------------
 1 | // Bordered & Pulled
 2 | // -------------------------
 3 | 
 4 | .#{$fa-css-prefix}-border {
 5 |   padding: .2em .25em .15em;
 6 |   border: solid .08em $fa-border-color;
 7 |   border-radius: .1em;
 8 | }
 9 | 
10 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 | 
13 | .#{$fa-css-prefix} {
14 |   &.pull-left { margin-right: .3em; }
15 |   &.pull-right { margin-left: .3em; }
16 | }
17 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/scss/_core.scss:
--------------------------------------------------------------------------------
 1 | // Base Class Definition
 2 | // -------------------------
 3 | 
 4 | .#{$fa-css-prefix} {
 5 |   display: inline-block;
 6 |   font: normal normal normal 14px/1 FontAwesome; // shortening font declaration
 7 |   font-size: inherit; // can't have font-size inherit on line above, so need to override
 8 |   text-rendering: auto; // optimizelegibility throws things off #1094
 9 |   -webkit-font-smoothing: antialiased;
10 |   -moz-osx-font-smoothing: grayscale;
11 | }
12 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 |   width: (18em / 14);
5 |   text-align: center;
6 | }
7 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/scss/_larger.scss:
--------------------------------------------------------------------------------
 1 | // Icon Sizes
 2 | // -------------------------
 3 | 
 4 | /* makes the font 33% larger relative to the icon container */
 5 | .#{$fa-css-prefix}-lg {
 6 |   font-size: (4em / 3);
 7 |   line-height: (3em / 4);
 8 |   vertical-align: -15%;
 9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/scss/_list.scss:
--------------------------------------------------------------------------------
 1 | // List Icons
 2 | // -------------------------
 3 | 
 4 | .#{$fa-css-prefix}-ul {
 5 |   padding-left: 0;
 6 |   margin-left: $fa-li-width;
 7 |   list-style-type: none;
 8 |   > li { position: relative; }
 9 | }
10 | .#{$fa-css-prefix}-li {
11 |   position: absolute;
12 |   left: -$fa-li-width;
13 |   width: $fa-li-width;
14 |   top: (2em / 14);
15 |   text-align: center;
16 |   &.#{$fa-css-prefix}-lg {
17 |     left: -$fa-li-width + (4em / 14);
18 |   }
19 | }
20 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/scss/_stacked.scss:
--------------------------------------------------------------------------------
 1 | // Stacked Icons
 2 | // -------------------------
 3 | 
 4 | .#{$fa-css-prefix}-stack {
 5 |   position: relative;
 6 |   display: inline-block;
 7 |   width: 2em;
 8 |   height: 2em;
 9 |   line-height: 2em;
10 |   vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 |   position: absolute;
14 |   left: 0;
15 |   width: 100%;
16 |   text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/font-awesome/scss/font-awesome.scss:
--------------------------------------------------------------------------------
 1 | /*!
 2 |  *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 3 |  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 4 |  */
 5 | 
 6 | @import "variables";
 7 | @import "mixins";
 8 | @import "path";
 9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "spinning";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/holderjs/.bower.json:
--------------------------------------------------------------------------------
 1 | {
 2 |   "name": "holderjs",
 3 |   "main": "holder.js",
 4 |   "homepage": "https://github.com/imsky/holder",
 5 |   "version": "2.4.1",
 6 |   "_release": "2.4.1",
 7 |   "_resolution": {
 8 |     "type": "version",
 9 |     "tag": "v2.4.1",
10 |     "commit": "bd2e0be3c5c86afbdef1da092eb72c8ce7d52dce"
11 |   },
12 |   "_source": "git://github.com/imsky/holder.git",
13 |   "_target": "~2.4.1",
14 |   "_originalSource": "holderjs",
15 |   "_direct": true
16 | }


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/holderjs/.gitattributes:
--------------------------------------------------------------------------------
1 | # Automatically normalize line endings for all text-based files
2 | * text=auto
3 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/holderjs/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | todo.md
3 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/holderjs/.jshintrc:
--------------------------------------------------------------------------------
 1 | {
 2 |   "quotmark": true,
 3 |   "boss": true,
 4 |   "eqnull": true,
 5 |   "expr": true,
 6 |   "funcscope": true,
 7 |   "loopfunc": true,
 8 |   "smarttabs": true,
 9 |   "node": true,
10 |   "browser": true
11 | }
12 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/holderjs/bower.json:
--------------------------------------------------------------------------------
1 | {
2 |   "name": "holderjs",
3 |   "main": "holder.js"
4 | }
5 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/holderjs/test/.gitignore:
--------------------------------------------------------------------------------
1 | performance.html
2 | benchmark.js
3 | lodash.js
4 | require.js
5 | test.js
6 | ua-parser.js


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/holderjs/test/image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/holderjs/test/image.jpg


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/bower.json:
--------------------------------------------------------------------------------
 1 | {
 2 |   "name": "jquery",
 3 |   "version": "2.1.3",
 4 |   "main": "dist/jquery.js",
 5 |   "license": "MIT",
 6 |   "ignore": [
 7 |     "**/.*",
 8 |     "build",
 9 |     "speed",
10 |     "test",
11 |     "*.md",
12 |     "AUTHORS.txt",
13 |     "Gruntfile.js",
14 |     "package.json"
15 |   ],
16 |   "devDependencies": {
17 |     "sizzle": "2.1.1-jquery.2.1.2",
18 |     "requirejs": "2.1.10",
19 |     "qunit": "1.14.0",
20 |     "sinon": "1.8.1"
21 |   },
22 |   "keywords": [
23 |     "jquery",
24 |     "javascript",
25 |     "library"
26 |   ]
27 | }
28 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/ajax/parseJSON.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../core"
 3 | ], function( jQuery ) {
 4 | 
 5 | // Support: Android 2.3
 6 | // Workaround failure to string-cast null input
 7 | jQuery.parseJSON = function( data ) {
 8 | 	return JSON.parse( data + "" );
 9 | };
10 | 
11 | return jQuery.parseJSON;
12 | 
13 | });
14 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/ajax/parseXML.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../core"
 3 | ], function( jQuery ) {
 4 | 
 5 | // Cross-browser xml parsing
 6 | jQuery.parseXML = function( data ) {
 7 | 	var xml, tmp;
 8 | 	if ( !data || typeof data !== "string" ) {
 9 | 		return null;
10 | 	}
11 | 
12 | 	// Support: IE9
13 | 	try {
14 | 		tmp = new DOMParser();
15 | 		xml = tmp.parseFromString( data, "text/xml" );
16 | 	} catch ( e ) {
17 | 		xml = undefined;
18 | 	}
19 | 
20 | 	if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
21 | 		jQuery.error( "Invalid XML: " + data );
22 | 	}
23 | 	return xml;
24 | };
25 | 
26 | return jQuery.parseXML;
27 | 
28 | });
29 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/ajax/var/nonce.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"../../core"
3 | ], function( jQuery ) {
4 | 	return jQuery.now();
5 | });
6 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/ajax/var/rquery.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	return (/\?/);
3 | });
4 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/attributes.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"./core",
 3 | 	"./attributes/attr",
 4 | 	"./attributes/prop",
 5 | 	"./attributes/classes",
 6 | 	"./attributes/val"
 7 | ], function( jQuery ) {
 8 | 
 9 | // Return jQuery for attributes-only inclusion
10 | return jQuery;
11 | });
12 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/core/var/rsingleTag.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	// Match a standalone tag
3 | 	return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
4 | });
5 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/css/addGetHookIf.js:
--------------------------------------------------------------------------------
 1 | define(function() {
 2 | 
 3 | function addGetHookIf( conditionFn, hookFn ) {
 4 | 	// Define the hook, we'll check on the first run if it's really needed.
 5 | 	return {
 6 | 		get: function() {
 7 | 			if ( conditionFn() ) {
 8 | 				// Hook not needed (or it's not possible to use it due
 9 | 				// to missing dependency), remove it.
10 | 				delete this.get;
11 | 				return;
12 | 			}
13 | 
14 | 			// Hook needed; redefine it so that the support test is not executed again.
15 | 			return (this.get = hookFn).apply( this, arguments );
16 | 		}
17 | 	};
18 | }
19 | 
20 | return addGetHookIf;
21 | 
22 | });
23 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/css/hiddenVisibleSelectors.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../core",
 3 | 	"../selector"
 4 | ], function( jQuery ) {
 5 | 
 6 | jQuery.expr.filters.hidden = function( elem ) {
 7 | 	// Support: Opera <= 12.12
 8 | 	// Opera reports offsetWidths and offsetHeights less than zero on some elements
 9 | 	return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
10 | };
11 | jQuery.expr.filters.visible = function( elem ) {
12 | 	return !jQuery.expr.filters.hidden( elem );
13 | };
14 | 
15 | });
16 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/css/swap.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../core"
 3 | ], function( jQuery ) {
 4 | 
 5 | // A method for quickly swapping in/out CSS properties to get correct calculations.
 6 | jQuery.swap = function( elem, options, callback, args ) {
 7 | 	var ret, name,
 8 | 		old = {};
 9 | 
10 | 	// Remember the old values, and insert the new ones
11 | 	for ( name in options ) {
12 | 		old[ name ] = elem.style[ name ];
13 | 		elem.style[ name ] = options[ name ];
14 | 	}
15 | 
16 | 	ret = callback.apply( elem, args || [] );
17 | 
18 | 	// Revert the old values
19 | 	for ( name in options ) {
20 | 		elem.style[ name ] = old[ name ];
21 | 	}
22 | 
23 | 	return ret;
24 | };
25 | 
26 | return jQuery.swap;
27 | 
28 | });
29 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/css/var/cssExpand.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	return [ "Top", "Right", "Bottom", "Left" ];
3 | });
4 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/css/var/getStyles.js:
--------------------------------------------------------------------------------
 1 | define(function() {
 2 | 	return function( elem ) {
 3 | 		// Support: IE<=11+, Firefox<=30+ (#15098, #14150)
 4 | 		// IE throws on elements created in popups
 5 | 		// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
 6 | 		if ( elem.ownerDocument.defaultView.opener ) {
 7 | 			return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
 8 | 		}
 9 | 
10 | 		return window.getComputedStyle( elem, null );
11 | 	};
12 | });
13 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/css/var/isHidden.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../../core",
 3 | 	"../../selector"
 4 | 	// css is assumed
 5 | ], function( jQuery ) {
 6 | 
 7 | 	return function( elem, el ) {
 8 | 		// isHidden might be called from jQuery#filter function;
 9 | 		// in that case, element will be second argument
10 | 		elem = el || elem;
11 | 		return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
12 | 	};
13 | });
14 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/css/var/rmargin.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	return (/^margin/);
3 | });
4 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/css/var/rnumnonpx.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"../../var/pnum"
3 | ], function( pnum ) {
4 | 	return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
5 | });
6 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/data/accepts.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../core"
 3 | ], function( jQuery ) {
 4 | 
 5 | /**
 6 |  * Determines whether an object can have data
 7 |  */
 8 | jQuery.acceptData = function( owner ) {
 9 | 	// Accepts only:
10 | 	//  - Node
11 | 	//    - Node.ELEMENT_NODE
12 | 	//    - Node.DOCUMENT_NODE
13 | 	//  - Object
14 | 	//    - Any
15 | 	/* jshint -W018 */
16 | 	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
17 | };
18 | 
19 | return jQuery.acceptData;
20 | });
21 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/data/var/data_priv.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"../Data"
3 | ], function( Data ) {
4 | 	return new Data();
5 | });
6 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/data/var/data_user.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"../Data"
3 | ], function( Data ) {
4 | 	return new Data();
5 | });
6 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/deprecated.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"./core",
 3 | 	"./traversing"
 4 | ], function( jQuery ) {
 5 | 
 6 | // The number of elements contained in the matched element set
 7 | jQuery.fn.size = function() {
 8 | 	return this.length;
 9 | };
10 | 
11 | jQuery.fn.andSelf = jQuery.fn.addBack;
12 | 
13 | });
14 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/effects/animatedSelector.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../core",
 3 | 	"../selector",
 4 | 	"../effects"
 5 | ], function( jQuery ) {
 6 | 
 7 | jQuery.expr.filters.animated = function( elem ) {
 8 | 	return jQuery.grep(jQuery.timers, function( fn ) {
 9 | 		return elem === fn.elem;
10 | 	}).length;
11 | };
12 | 
13 | });
14 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/event/ajax.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../core",
 3 | 	"../event"
 4 | ], function( jQuery ) {
 5 | 
 6 | // Attach a bunch of functions for handling common AJAX events
 7 | jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
 8 | 	jQuery.fn[ type ] = function( fn ) {
 9 | 		return this.on( type, fn );
10 | 	};
11 | });
12 | 
13 | });
14 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/event/support.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../var/support"
 3 | ], function( support ) {
 4 | 
 5 | support.focusinBubbles = "onfocusin" in window;
 6 | 
 7 | return support;
 8 | 
 9 | });
10 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/manipulation/_evalUrl.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../ajax"
 3 | ], function( jQuery ) {
 4 | 
 5 | jQuery._evalUrl = function( url ) {
 6 | 	return jQuery.ajax({
 7 | 		url: url,
 8 | 		type: "GET",
 9 | 		dataType: "script",
10 | 		async: false,
11 | 		global: false,
12 | 		"throws": true
13 | 	});
14 | };
15 | 
16 | return jQuery._evalUrl;
17 | 
18 | });
19 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/manipulation/var/rcheckableType.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	return (/^(?:checkbox|radio)$/i);
3 | });
4 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/outro.js:
--------------------------------------------------------------------------------
1 | }));
2 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/queue/delay.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"../core",
 3 | 	"../queue",
 4 | 	"../effects" // Delay is optional because of this dependency
 5 | ], function( jQuery ) {
 6 | 
 7 | // Based off of the plugin by Clint Helfers, with permission.
 8 | // http://blindsignals.com/index.php/2009/07/jquery-delay/
 9 | jQuery.fn.delay = function( time, type ) {
10 | 	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
11 | 	type = type || "fx";
12 | 
13 | 	return this.queue( type, function( next, hooks ) {
14 | 		var timeout = setTimeout( next, time );
15 | 		hooks.stop = function() {
16 | 			clearTimeout( timeout );
17 | 		};
18 | 	});
19 | };
20 | 
21 | return jQuery.fn.delay;
22 | });
23 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/selector-sizzle.js:
--------------------------------------------------------------------------------
 1 | define([
 2 | 	"./core",
 3 | 	"sizzle"
 4 | ], function( jQuery, Sizzle ) {
 5 | 
 6 | jQuery.find = Sizzle;
 7 | jQuery.expr = Sizzle.selectors;
 8 | jQuery.expr[":"] = jQuery.expr.pseudos;
 9 | jQuery.unique = Sizzle.uniqueSort;
10 | jQuery.text = Sizzle.getText;
11 | jQuery.isXMLDoc = Sizzle.isXML;
12 | jQuery.contains = Sizzle.contains;
13 | 
14 | });
15 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/selector.js:
--------------------------------------------------------------------------------
1 | define([ "./selector-sizzle" ]);
2 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/traversing/var/rneedsContext.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"../../core",
3 | 	"../../selector"
4 | ], function( jQuery ) {
5 | 	return jQuery.expr.match.needsContext;
6 | });
7 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/arr.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	return [];
3 | });
4 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/class2type.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	// [[Class]] -> type pairs
3 | 	return {};
4 | });
5 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/concat.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"./arr"
3 | ], function( arr ) {
4 | 	return arr.concat;
5 | });
6 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/hasOwn.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"./class2type"
3 | ], function( class2type ) {
4 | 	return class2type.hasOwnProperty;
5 | });
6 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/indexOf.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"./arr"
3 | ], function( arr ) {
4 | 	return arr.indexOf;
5 | });
6 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/pnum.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
3 | });
4 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/push.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"./arr"
3 | ], function( arr ) {
4 | 	return arr.push;
5 | });
6 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/rnotwhite.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	return (/\S+/g);
3 | });
4 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/slice.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"./arr"
3 | ], function( arr ) {
4 | 	return arr.slice;
5 | });
6 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/strundefined.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	return typeof undefined;
3 | });
4 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/support.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | 	// All support tests are defined in their respective modules.
3 | 	return {};
4 | });
5 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/jquery/src/var/toString.js:
--------------------------------------------------------------------------------
1 | define([
2 | 	"./class2type"
3 | ], function( class2type ) {
4 | 	return class2type.toString;
5 | });
6 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/mocha/bower.json:
--------------------------------------------------------------------------------
 1 | {
 2 |   "name": "mocha",
 3 |   "version": "1.17.1",
 4 |   "main": "mocha.js",
 5 |   "ignore": [
 6 |     "bin",
 7 |     "editors",
 8 |     "images",
 9 |     "lib",
10 |     "support",
11 |     "test",
12 |     ".gitignore",
13 |     ".npmignore",
14 |     ".travis.yml",
15 |     "component.json",
16 |     "index.js",
17 |     "Makefile",
18 |     "package.json"
19 |   ]
20 | }
21 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/mocha/media/logo.svg:
--------------------------------------------------------------------------------
1 | 
2 | 
3 | 
4 | 
6 | 
7 | mocha
8 | 
9 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/.gitignore:
--------------------------------------------------------------------------------
1 | build/
2 | node_modules/
3 | spec/viz/output/
4 | spec/viz/diff/
5 | bower_components
6 | .idea
7 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/.travis.yml:
--------------------------------------------------------------------------------
 1 | language: node_js
 2 | node_js:
 3 |   - 0.10
 4 | before_script:
 5 |   - "npm install -g grunt-cli"
 6 |   - "npm install"
 7 |   - "cp -f bower.travis.json bower.json"
 8 |   - 'sed -i -e "s/JQUERY/$JQUERY/" bower.json'
 9 |   - 'sed -i -e "s/RAPHAEL/$RAPHAEL/" bower.json'
10 |   - "bower install"
11 | env:
12 |   - JQUERY="~> 1.8.0" RAPHAEL="~> 2.0.0"
13 |   - JQUERY="~> 1.9.0" RAPHAEL="~> 2.0.0"
14 |   - JQUERY="~> 2.0.0" RAPHAEL="~> 2.0.0"
15 |   - JQUERY="~> 2.1.0" RAPHAEL="~> 2.0.0"
16 |   - JQUERY="~> 1.8.0" RAPHAEL="~> 2.1.0"
17 |   - JQUERY="~> 1.9.0" RAPHAEL="~> 2.1.0"
18 |   - JQUERY="~> 2.0.0" RAPHAEL="~> 2.1.0"
19 |   - JQUERY="~> 2.1.0" RAPHAEL="~> 2.1.0"
20 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/bower.json:
--------------------------------------------------------------------------------
 1 | {
 2 |   "name": "morris.js",
 3 |   "version": "0.5.0",
 4 |   "main": [
 5 |     "./morris.js",
 6 |     "./morris.css"
 7 |   ],
 8 |   "dependencies": {
 9 |     "jquery": ">= 2.1.0",
10 |     "raphael": ">= 2.0",
11 |     "mocha": "~1.17.1"
12 |   },
13 |   "devDependencies": {
14 |     "mocha": "~1.17.1",
15 |     "chai": "~1.9.0",
16 |     "chai-jquery": "~1.2.1",
17 |     "sinon": "http://sinonjs.org/releases/sinon-1.8.1.js",
18 |     "sinon-chai": "~2.5.0"
19 |   }
20 | }
21 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/bower.travis.json:
--------------------------------------------------------------------------------
 1 | {
 2 |   "name": "morris.js",
 3 |   "version": "0.5.0",
 4 |   "main": [
 5 |     "./morris.js",
 6 |     "./morris.css"
 7 |   ],
 8 |   "dependencies": {
 9 |     "jquery": "JQUERY",
10 |     "raphael": "RAPHAEL",
11 |     "mocha": "~1.17.1"
12 |   },
13 |   "devDependencies": {
14 |     "mocha": "~1.17.1",
15 |     "chai": "~1.9.0",
16 |     "chai-jquery": "~1.2.1",
17 |     "sinon": "http://sinonjs.org/releases/sinon-1.8.1.js",
18 |     "sinon-chai": "~2.5.0"
19 |   }
20 | }
21 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/examples/lib/example.css:
--------------------------------------------------------------------------------
 1 | body {
 2 |   width: 800px;
 3 |   margin: 0 auto;
 4 | }
 5 | #graph {
 6 |   width: 800px;
 7 |   height: 250px;
 8 |   margin: 20px auto 0 auto;
 9 | }
10 | pre {
11 |   height: 250px;
12 |   overflow: auto;
13 | }
14 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/examples/lib/example.js:
--------------------------------------------------------------------------------
1 | $(function () {
2 |   eval($('#code').text());
3 |   prettyPrint();
4 | });


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/less/morris.core.less:
--------------------------------------------------------------------------------
 1 | .morris-hover {
 2 |   position: absolute;
 3 |   z-index: 1000;
 4 | 
 5 |   &.morris-default-style {
 6 |     border-radius: 10px;
 7 |     padding: 6px;
 8 |     color: #666;
 9 |     background: rgba(255, 255, 255, 0.8);
10 |     border: solid 2px rgba(230, 230, 230, 0.8);
11 | 
12 |     font-family: sans-serif;
13 |     font-size: 12px;
14 |     text-align: center;
15 | 
16 |     .morris-hover-row-label {
17 |       font-weight: bold;
18 |       margin: 0.25em 0;
19 |     }
20 | 
21 |     .morris-hover-point {
22 |       white-space: nowrap;
23 |       margin: 0.1em 0;
24 |     }
25 |   }
26 | 
27 | }
28 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/morris.css:
--------------------------------------------------------------------------------
1 | .morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0}
2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0}
3 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/spec/lib/grid/y_label_format_spec.coffee:
--------------------------------------------------------------------------------
 1 | describe 'Morris.Grid#yLabelFormat', ->
 2 | 
 3 |   it 'should use custom formatter for y labels', ->
 4 |     formatter = (label) ->
 5 |       flabel = parseFloat(label) / 1000
 6 |       "#{flabel.toFixed(1)}k"
 7 |     line = Morris.Line
 8 |       element: 'graph'
 9 |       data: [{x: 1, y: 1500}, {x: 2, y: 2500}]
10 |       xkey: 'x'
11 |       ykeys: ['y']
12 |       labels: ['dontcare']
13 |       preUnits: "$"
14 |       yLabelFormat: formatter
15 |     line.yLabelFormat(1500).should.equal "1.5k"
16 | 


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/spec/lib/pad_spec.coffee:
--------------------------------------------------------------------------------
 1 | describe '#pad', ->
 2 | 
 3 |   it 'should pad numbers', ->
 4 |     Morris.pad2(0).should.equal("00")
 5 |     Morris.pad2(1).should.equal("01")
 6 |     Morris.pad2(2).should.equal("02")
 7 |     Morris.pad2(3).should.equal("03")
 8 |     Morris.pad2(4).should.equal("04")
 9 |     Morris.pad2(5).should.equal("05")
10 |     Morris.pad2(6).should.equal("06")
11 |     Morris.pad2(7).should.equal("07")
12 |     Morris.pad2(8).should.equal("08")
13 |     Morris.pad2(9).should.equal("09")
14 |     Morris.pad2(10).should.equal("10")
15 |     Morris.pad2(12).should.equal("12")
16 |     Morris.pad2(34).should.equal("34")
17 |     Morris.pad2(123).should.equal("123")


--------------------------------------------------------------------------------
/The Grocery Store Brazil/assets/bower_components/morrisjs/spec/support/placeholder.coffee:
--------------------------------------------------------------------------------
1 | beforeEach ->
2 |   placeholder = $('
') 3 | $('#test').append(placeholder) 4 | 5 | afterEach -> 6 | $('#test').empty() 7 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/morrisjs/spec/viz/exemplary/area0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/morrisjs/spec/viz/exemplary/area0.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/morrisjs/spec/viz/exemplary/bar0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/morrisjs/spec/viz/exemplary/bar0.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/morrisjs/spec/viz/exemplary/line0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/morrisjs/spec/viz/exemplary/line0.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/morrisjs/spec/viz/exemplary/stacked_bar0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/bower_components/morrisjs/spec/viz/exemplary/stacked_bar0.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/morrisjs/spec/viz/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # visual_specs.js creates output in output/XXX.png 4 | phantomjs visual_specs.js 5 | 6 | # clear out old diffs 7 | mkdir -p diff 8 | rm -f diff/* 9 | 10 | # generate diffs 11 | PASS=1 12 | for i in exemplary/*.png 13 | do 14 | FN=`basename $i` 15 | perceptualdiff $i output/$FN -output diff/$FN 16 | if [ $? -eq 0 ] 17 | then 18 | echo "OK: $FN" 19 | else 20 | echo "FAIL: $FN" 21 | PASS=0 22 | fi 23 | done 24 | 25 | # pass / fail 26 | if [ $PASS -eq 1 ] 27 | then 28 | echo "Success." 29 | else 30 | echo "Failed." 31 | exit 1 32 | fi 33 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/raphael/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "raphael", 3 | "version": "2.1.4", 4 | "main": "raphael.js", 5 | "ignore": [ 6 | "eve", 7 | "**/.*", 8 | "*.html", 9 | "*.json", 10 | "*.markdown", 11 | "*.md", 12 | "copy.js", 13 | "Gruntfile.js", 14 | "raphael.core.js", 15 | "raphael.svg.js", 16 | "raphael.vml.js", 17 | "reference.js" 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/raphael/dev/amdDev.js: -------------------------------------------------------------------------------- 1 | require(['../raphael'], function(Raphael){ 2 | var paper = Raphael(0, 0, 640, 720, "container"); 3 | //paper.circle(100, 100, 100); //example 4 | 5 | // Work here 6 | }); 7 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/bower_components/raphael/dev/index.js: -------------------------------------------------------------------------------- 1 | var core = require('./raphael.core'); 2 | if(core.svg){ 3 | require('./raphael.svg'); 4 | } 5 | if(core.vml){ 6 | require('./raphael.vml'); 7 | } 8 | module.exports = core; -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/categorias/1679091c5a880faf6fb5e6087eb1b2dc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/categorias/1679091c5a880faf6fb5e6087eb1b2dc.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/categorias/a87ff679a2f3e71d9181a67b7542122c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/categorias/a87ff679a2f3e71d9181a67b7542122c.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/categorias/c4ca4238a0b923820dcc509a6f75849b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/categorias/c4ca4238a0b923820dcc509a6f75849b.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/categorias/c81e728d9d4c2f636f067f89cc14862c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/categorias/c81e728d9d4c2f636f067f89cc14862c.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/categorias/categoria-sem-foto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/categorias/categoria-sem-foto.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/categorias/e4da3b7fbbce2345d7772b0674a318d5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/categorias/e4da3b7fbbce2345d7772b0674a318d5.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/categorias/eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/categorias/eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produto-sem-foto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produto-sem-foto.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/1679091c5a880faf6fb5e6087eb1b2dc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/1679091c5a880faf6fb5e6087eb1b2dc.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/1f0e3dad99908345f7439f8ffabdffc4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/1f0e3dad99908345f7439f8ffabdffc4.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/1ff1de774005f8da13f42943881c655f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/1ff1de774005f8da13f42943881c655f.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/37693cfc748049e45d87b8c7d8b9aacd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/37693cfc748049e45d87b8c7d8b9aacd.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/3c59dc048e8850243be8079a5c74d079.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/3c59dc048e8850243be8079a5c74d079.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/45c48cce2e2d7fbdea1afc51c7c6ad26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/45c48cce2e2d7fbdea1afc51c7c6ad26.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/6512bd43d9caa6e02c990b0a82652dca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/6512bd43d9caa6e02c990b0a82652dca.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/6f4922f45568161a8cdf4ad2299f6d23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/6f4922f45568161a8cdf4ad2299f6d23.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/70efdf2ec9b086079795c442636b55fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/70efdf2ec9b086079795c442636b55fb.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/8f14e45fceea167a5a36dedd4bea2543.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/8f14e45fceea167a5a36dedd4bea2543.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/98f13708210194c475687be6106a3b84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/98f13708210194c475687be6106a3b84.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/9bf31c7ff062936a96d3c8bd1f8f2ff3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/9bf31c7ff062936a96d3c8bd1f8f2ff3.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/a87ff679a2f3e71d9181a67b7542122c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/a87ff679a2f3e71d9181a67b7542122c.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/aab3238922bcc25a6f606eb525ffdc56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/aab3238922bcc25a6f606eb525ffdc56.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/b6d767d2f8ed5d21a44b0e5886680cb9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/b6d767d2f8ed5d21a44b0e5886680cb9.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/c20ad4d76fe97759aa27a0c99bff6710.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/c20ad4d76fe97759aa27a0c99bff6710.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/c4ca4238a0b923820dcc509a6f75849b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/c4ca4238a0b923820dcc509a6f75849b.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/c51ce410c124a10e0db5e4b97fc2af39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/c51ce410c124a10e0db5e4b97fc2af39.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/c74d97b01eae257e44aa9d5bade97baf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/c74d97b01eae257e44aa9d5bade97baf.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/c81e728d9d4c2f636f067f89cc14862c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/c81e728d9d4c2f636f067f89cc14862c.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/c9f0f895fb98ab9159f51fd0297e236d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/c9f0f895fb98ab9159f51fd0297e236d.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/corned-beef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/corned-beef.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/d3d9446802a44259755d38e6d163e820.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/d3d9446802a44259755d38e6d163e820.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/e4da3b7fbbce2345d7772b0674a318d5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/e4da3b7fbbce2345d7772b0674a318d5.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/e5a7_canned_unicorn_meat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/e5a7_canned_unicorn_meat.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/img/produtos/eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/assets/img/produtos/eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/assets/js/funcoes.js: -------------------------------------------------------------------------------- 1 | $("#cep").blur(function() { 2 | 3 | $.getJSON("//viacep.com.br/ws/"+ $("#cep").val() +"/json", function(dados) { 4 | if (!("erro" in dados)) { 5 | $("#rua").val(dados.logradouro); 6 | $("#bairro").val(dados.bairro); 7 | $("#cidade").val(dados.localidade); 8 | $("#estado").val(dados.uf); 9 | } 10 | else { 11 | alert("CEP não encontrado."); 12 | } 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/captcha/1434449898.5561.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/captcha/1434449898.5561.jpg -------------------------------------------------------------------------------- /The Grocery Store Brazil/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/fonts/texb.ttf -------------------------------------------------------------------------------- /The Grocery Store Brazil/locaweb-gateway-php-master/builds/LocawebGateway-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/locaweb-gateway-php-master/builds/LocawebGateway-0.1.1.tgz -------------------------------------------------------------------------------- /The Grocery Store Brazil/locaweb-gateway-php-master/run_specs.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | ls specs/*.php | awk '{print "echo "$1": ;phpspec "$1}' | sh 3 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/system/fonts/texb.ttf -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/comment.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/down.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/file.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/minus.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/plus.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/_static/up.png -------------------------------------------------------------------------------- /The Grocery Store Brazil/user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/The Grocery Store Brazil/user_guide/objects.inv -------------------------------------------------------------------------------- /produto-sem-foto.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/produto-sem-foto.zip -------------------------------------------------------------------------------- /sql-2.2.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/sql-2.2.5.zip -------------------------------------------------------------------------------- /sql-4.2.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/sql-4.2.2.zip -------------------------------------------------------------------------------- /sql-4.2.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/sql-4.2.6.zip -------------------------------------------------------------------------------- /sql-4.2.8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/sql-4.2.8.zip -------------------------------------------------------------------------------- /sql-4.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/sql-4.3.1.zip -------------------------------------------------------------------------------- /sql-4.3.2.sql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/sql-4.3.2.sql.zip --------------------------------------------------------------------------------