├── addons ├── stripe-3.x │ ├── .hgignore │ ├── .hg │ │ ├── store │ │ │ ├── undo │ │ │ ├── phaseroots │ │ │ ├── undo.phaseroots │ │ │ ├── 00changelog.i │ │ │ ├── 00manifest.i │ │ │ └── data │ │ │ │ ├── ~2ehgignore.i │ │ │ │ ├── manifest.php.i │ │ │ │ ├── views │ │ │ │ ├── stripe.php.i │ │ │ │ └── admin │ │ │ │ │ └── stripe__form.php.i │ │ │ │ ├── stripe │ │ │ │ ├── manifest.php.i │ │ │ │ ├── views │ │ │ │ │ ├── stripe.php.i │ │ │ │ │ └── admin │ │ │ │ │ │ └── stripe__form.php.i │ │ │ │ ├── assets │ │ │ │ │ ├── img │ │ │ │ │ │ └── icons.svg.i │ │ │ │ │ └── js │ │ │ │ │ │ └── jquery.payment.js.i │ │ │ │ ├── controllers │ │ │ │ │ ├── _stripe.php.i │ │ │ │ │ └── _admin_stripe.php.i │ │ │ │ ├── libraries │ │ │ │ │ ├── data │ │ │ │ │ │ ├── test.png.i │ │ │ │ │ │ ├── ca-certificates.crt.d │ │ │ │ │ │ └── ca-certificates.crt.i │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── _card.php.i │ │ │ │ │ │ ├── _event.php.i │ │ │ │ │ │ ├── _plan.php.i │ │ │ │ │ │ ├── _token.php.i │ │ │ │ │ │ ├── _account.php.i │ │ │ │ │ │ ├── _balance.php.i │ │ │ │ │ │ ├── _charge.php.i │ │ │ │ │ │ ├── _coupon.php.i │ │ │ │ │ │ ├── _customer.php.i │ │ │ │ │ │ ├── _invoice.php.i │ │ │ │ │ │ ├── _object.php.i │ │ │ │ │ │ ├── _refund.php.i │ │ │ │ │ │ ├── _stripe.php.i │ │ │ │ │ │ ├── _transfer.php.i │ │ │ │ │ │ ├── _collection.php.i │ │ │ │ │ │ ├── _error │ │ │ │ │ │ │ ├── _api.php.i │ │ │ │ │ │ │ ├── _base.php.i │ │ │ │ │ │ │ ├── _card.php.i │ │ │ │ │ │ │ ├── _rate_limit.php.i │ │ │ │ │ │ │ ├── _api_connection.php.i │ │ │ │ │ │ │ ├── _authentication.php.i │ │ │ │ │ │ │ └── _invalid_request.php.i │ │ │ │ │ │ ├── _recipient.php.i │ │ │ │ │ │ ├── _util │ │ │ │ │ │ │ ├── _set.php.i │ │ │ │ │ │ │ ├── _util.php.i │ │ │ │ │ │ │ └── _request_options.php.i │ │ │ │ │ │ ├── _api_requestor.php.i │ │ │ │ │ │ ├── _api_resource.php.i │ │ │ │ │ │ ├── _bank_account.php.i │ │ │ │ │ │ ├── _file_upload.php.i │ │ │ │ │ │ ├── _invoice_item.php.i │ │ │ │ │ │ ├── _subscription.php.i │ │ │ │ │ │ ├── _alipay_account.php.i │ │ │ │ │ │ ├── _application_fee.php.i │ │ │ │ │ │ ├── _attached_object.php.i │ │ │ │ │ │ ├── _bitcoin_receiver.php.i │ │ │ │ │ │ ├── _external_account.php.i │ │ │ │ │ │ ├── _transfer_reversal.php.i │ │ │ │ │ │ ├── _balance_transaction.php.i │ │ │ │ │ │ ├── _bitcoin_transaction.php.i │ │ │ │ │ │ ├── _application_fee_refund.php.i │ │ │ │ │ │ ├── _singleton_api_resource.php.i │ │ │ │ │ │ └── _http_client │ │ │ │ │ │ │ ├── _curl_client.php.i │ │ │ │ │ │ │ └── _client_interface.php.i │ │ │ │ │ └── _stripe__lib.php.i │ │ │ │ └── language │ │ │ │ │ └── english │ │ │ │ │ └── stripe__lang.php.i │ │ │ │ ├── assets │ │ │ │ ├── img │ │ │ │ │ └── icons.svg.i │ │ │ │ └── js │ │ │ │ │ └── jquery.payment.js.i │ │ │ │ ├── controllers │ │ │ │ ├── _stripe.php.i │ │ │ │ └── _admin_stripe.php.i │ │ │ │ ├── libraries │ │ │ │ ├── data │ │ │ │ │ ├── test.png.i │ │ │ │ │ ├── ca-certificates.crt.d │ │ │ │ │ └── ca-certificates.crt.i │ │ │ │ ├── lib │ │ │ │ │ ├── _card.php.i │ │ │ │ │ ├── _event.php.i │ │ │ │ │ ├── _plan.php.i │ │ │ │ │ ├── _token.php.i │ │ │ │ │ ├── _account.php.i │ │ │ │ │ ├── _balance.php.i │ │ │ │ │ ├── _charge.php.i │ │ │ │ │ ├── _coupon.php.i │ │ │ │ │ ├── _invoice.php.i │ │ │ │ │ ├── _object.php.i │ │ │ │ │ ├── _refund.php.i │ │ │ │ │ ├── _stripe.php.i │ │ │ │ │ ├── _collection.php.i │ │ │ │ │ ├── _customer.php.i │ │ │ │ │ ├── _error │ │ │ │ │ │ ├── _api.php.i │ │ │ │ │ │ ├── _base.php.i │ │ │ │ │ │ ├── _card.php.i │ │ │ │ │ │ ├── _rate_limit.php.i │ │ │ │ │ │ ├── _api_connection.php.i │ │ │ │ │ │ ├── _authentication.php.i │ │ │ │ │ │ └── _invalid_request.php.i │ │ │ │ │ ├── _recipient.php.i │ │ │ │ │ ├── _transfer.php.i │ │ │ │ │ ├── _util │ │ │ │ │ │ ├── _set.php.i │ │ │ │ │ │ ├── _util.php.i │ │ │ │ │ │ └── _request_options.php.i │ │ │ │ │ ├── _api_resource.php.i │ │ │ │ │ ├── _bank_account.php.i │ │ │ │ │ ├── _file_upload.php.i │ │ │ │ │ ├── _invoice_item.php.i │ │ │ │ │ ├── _subscription.php.i │ │ │ │ │ ├── _alipay_account.php.i │ │ │ │ │ ├── _api_requestor.php.i │ │ │ │ │ ├── _application_fee.php.i │ │ │ │ │ ├── _attached_object.php.i │ │ │ │ │ ├── _bitcoin_receiver.php.i │ │ │ │ │ ├── _external_account.php.i │ │ │ │ │ ├── _transfer_reversal.php.i │ │ │ │ │ ├── _balance_transaction.php.i │ │ │ │ │ ├── _bitcoin_transaction.php.i │ │ │ │ │ ├── _application_fee_refund.php.i │ │ │ │ │ ├── _singleton_api_resource.php.i │ │ │ │ │ └── _http_client │ │ │ │ │ │ ├── _curl_client.php.i │ │ │ │ │ │ └── _client_interface.php.i │ │ │ │ └── _stripe__lib.php.i │ │ │ │ └── language │ │ │ │ └── english │ │ │ │ └── stripe__lang.php.i │ │ ├── undo.bookmarks │ │ ├── branch │ │ ├── undo.branch │ │ ├── last-message.txt │ │ ├── undo.desc │ │ ├── requires │ │ ├── cache │ │ │ ├── tags │ │ │ └── branch2-served │ │ ├── 00changelog.i │ │ ├── dirstate │ │ ├── undo.dirstate │ │ └── sourcetreeconfig │ └── stripe │ │ └── libraries │ │ ├── lib │ │ ├── Error │ │ │ ├── Api.php │ │ │ ├── ApiConnection.php │ │ │ ├── Authentication.php │ │ │ └── RateLimit.php │ │ ├── Card.php │ │ ├── AlipayAccount.php │ │ ├── BankAccount.php │ │ ├── BitcoinTransaction.php │ │ └── Balance.php │ │ └── data │ │ └── test.png ├── flat_rate │ ├── language │ │ └── english │ │ │ └── flat_rate_lang.php │ └── manifest.php ├── cod │ └── language │ │ └── english │ │ └── cod_lang.php ├── authorize.net │ └── libraries │ │ └── src │ │ └── Message │ │ ├── AIMPurchaseRequest.php │ │ ├── SIMPurchaseRequest.php │ │ ├── DPMCompleteResponse.php │ │ └── DPMPurchaseRequest.php ├── paypal_pro │ └── libraries │ │ ├── tests │ │ └── Mock │ │ │ ├── ExpressVoidFailure.txt │ │ │ ├── ExpressVoidSuccess.txt │ │ │ ├── ExpressPurchaseSuccess.txt │ │ │ ├── ProPurchaseSuccess.txt │ │ │ └── ExpressCompletePurchaseFailure.txt │ │ └── src │ │ └── Message │ │ └── ProPurchaseRequest.php ├── twocheckout_api │ └── libraries │ │ └── Twocheckout │ │ ├── Api │ │ └── TwocheckoutError.php │ │ └── TwocheckoutMessage.php └── table_rate │ └── manifest.php ├── install ├── .htaccess └── installer │ ├── .htaccess │ ├── views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ └── index.html │ │ ├── index.html │ │ └── html │ │ │ └── index.html │ └── index.html │ ├── index.html │ ├── config │ └── index.html │ ├── models │ └── index.html │ ├── controllers │ └── index.html │ ├── language │ ├── index.html │ └── english │ │ └── index.html │ └── libraries │ └── index.html ├── uploads ├── digital_products │ ├── .htaccess │ └── index.html ├── index.html ├── images │ ├── index.html │ ├── full │ │ └── index.html │ ├── medium │ │ └── index.html │ ├── small │ │ └── index.html │ └── thumbnails │ │ └── index.html └── wysiwyg │ └── index.html ├── application ├── modules │ ├── tax │ │ └── language │ │ │ └── english │ │ │ └── tax_lang.php │ ├── cart │ │ └── language │ │ │ └── english │ │ │ └── cart_lang.php │ ├── checkout │ │ ├── language │ │ │ └── english │ │ │ │ └── checkout_lang.php │ │ └── views │ │ │ └── emptyCart.php │ ├── payments │ │ ├── language │ │ │ └── english │ │ │ │ └── payments_lang.php │ │ └── manifest.php │ ├── search │ │ ├── language │ │ │ └── english │ │ │ │ └── search_lang.php │ │ ├── views │ │ │ └── search_error.php │ │ └── manifest.php │ ├── shipping │ │ ├── language │ │ │ └── english │ │ │ │ └── shipping_lang.php │ │ └── manifest.php │ ├── wysiwyg │ │ ├── language │ │ │ └── english │ │ │ │ └── wysiwyg_lang.php │ │ └── manifest.php │ ├── addresses │ │ └── language │ │ │ └── english │ │ │ └── addresses_lang.php │ ├── my_account │ │ ├── language │ │ │ └── english │ │ │ │ └── my_account_lang.php │ │ └── manifest.php │ ├── sitemap │ │ ├── views │ │ │ └── admin │ │ │ │ ├── sitemap_xml_foot.php │ │ │ │ ├── sitemap_xml_head.php │ │ │ │ ├── product_xml.php │ │ │ │ ├── category_xml.php │ │ │ │ └── page_xml.php │ │ └── language │ │ │ └── english │ │ │ └── sitemap_lang.php │ ├── products │ │ └── views │ │ │ └── admin │ │ │ └── iframe │ │ │ └── footer.php │ ├── pages │ │ └── views │ │ │ ├── 404.php │ │ │ └── page.php │ ├── dashboard │ │ └── manifest.php │ ├── users │ │ └── manifest.php │ ├── reports │ │ └── manifest.php │ ├── customers │ │ └── views │ │ │ └── admin │ │ │ └── customer_subscriber_list.php │ └── coupons │ │ └── manifest.php ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ └── index.html │ │ ├── index.html │ │ └── html │ │ │ └── index.html │ ├── index.html │ └── admin │ │ └── footer.php ├── index.html ├── config │ └── index.html ├── core │ ├── index.html │ └── Controller.php ├── helpers │ ├── index.html │ └── MY_form_helper.php ├── hooks │ └── index.html ├── language │ └── index.html ├── logs │ └── index.html ├── models │ └── index.html ├── controllers │ └── index.html ├── libraries │ ├── index.html │ └── MY_Form_validation.php └── third_party │ └── index.html ├── vendor ├── guzzle │ └── guzzle │ │ ├── docs │ │ ├── _templates │ │ │ ├── leftbar.html │ │ │ └── nav_links.html │ │ ├── requirements.txt │ │ ├── _static │ │ │ ├── logo.png │ │ │ └── guzzle-icon.png │ │ ├── index.rst │ │ └── plugins │ │ │ └── plugins-list.rst.inc │ │ ├── tests │ │ └── Guzzle │ │ │ └── Tests │ │ │ ├── TestData │ │ │ ├── FileBody.txt │ │ │ ├── mock_response │ │ │ ├── description │ │ │ │ ├── bar.json │ │ │ │ ├── recursive.json │ │ │ │ ├── baz.json │ │ │ │ └── foo.json │ │ │ ├── test_service2.json │ │ │ └── services │ │ │ │ └── json2.json │ │ │ ├── Mock │ │ │ ├── MockSubject.php │ │ │ ├── ExceptionMock.php │ │ │ └── MockMulti.php │ │ │ └── Service │ │ │ └── Mock │ │ │ └── Command │ │ │ └── Sub │ │ │ └── Sub.php │ │ ├── src │ │ └── Guzzle │ │ │ ├── Common │ │ │ ├── Exception │ │ │ │ ├── GuzzleException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── UnexpectedValueException.php │ │ │ └── ToArrayInterface.php │ │ │ ├── Http │ │ │ └── Exception │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ ├── ClientErrorResponseException.php │ │ │ │ ├── CouldNotRewindStreamException.php │ │ │ │ ├── ServerErrorResponseException.php │ │ │ │ └── HttpException.php │ │ │ ├── Service │ │ │ └── Exception │ │ │ │ ├── ServiceNotFoundException.php │ │ │ │ ├── CommandException.php │ │ │ │ ├── ServiceBuilderException.php │ │ │ │ ├── DescriptionBuilderException.php │ │ │ │ └── ResponseClassException.php │ │ │ ├── Plugin │ │ │ ├── ErrorResponse │ │ │ │ └── Exception │ │ │ │ │ └── ErrorResponseException.php │ │ │ ├── Cookie │ │ │ │ └── Exception │ │ │ │ │ └── InvalidCookieException.php │ │ │ └── Cache │ │ │ │ └── CacheKeyProviderInterface.php │ │ │ ├── Log │ │ │ └── AbstractLogAdapter.php │ │ │ └── Batch │ │ │ └── BatchTransferInterface.php │ │ └── .travis.yml ├── swiftmailer │ └── swiftmailer │ │ ├── VERSION │ │ ├── tests │ │ ├── _samples │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ ├── textfile.zip │ │ │ │ └── swiftmailer.png │ │ │ ├── smime │ │ │ │ └── CA.srl │ │ │ └── dkim │ │ │ │ └── dkim.test.pub │ │ ├── StreamCollector.php │ │ ├── fixtures │ │ │ └── EsmtpTransportFixture.php │ │ ├── acceptance │ │ │ └── Swift │ │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ │ └── EmbeddedFileAcceptanceTest.php │ │ └── unit │ │ │ └── Swift │ │ │ └── Mime │ │ │ └── SimpleMimeEntityTest.php │ │ ├── .gitignore │ │ ├── doc │ │ ├── uml │ │ │ ├── Mime.graffle │ │ │ ├── Encoders.graffle │ │ │ └── Transports.graffle │ │ └── index.rst │ │ ├── .gitattributes │ │ └── lib │ │ └── dependency_maps │ │ └── message_deps.php ├── symfony │ ├── http-foundation │ │ ├── Tests │ │ │ └── File │ │ │ │ └── Fixtures │ │ │ │ ├── directory │ │ │ │ └── .empty │ │ │ │ ├── .unknownextension │ │ │ │ ├── other-file.example │ │ │ │ ├── test │ │ │ │ └── test.gif │ │ └── .gitignore │ └── event-dispatcher │ │ └── .gitignore ├── mikey179 │ └── vfsStream │ │ ├── .gitignore │ │ ├── src │ │ └── test │ │ │ └── resources │ │ │ └── filesystemcopy │ │ │ ├── emptyFolder │ │ │ └── .gitignore │ │ │ └── withSubfolders │ │ │ ├── aFile.txt │ │ │ ├── subfolder2 │ │ │ └── .gitignore │ │ │ └── subfolder1 │ │ │ └── file1.txt │ │ ├── examples │ │ └── bootstrap.php │ │ ├── readme.md │ │ ├── .travis.yml │ │ ├── composer.json │ │ └── phpdoc.dist.xml ├── twig │ └── twig │ │ ├── test │ │ ├── Twig │ │ │ └── Tests │ │ │ │ ├── Loader │ │ │ │ └── Fixtures │ │ │ │ │ ├── normal │ │ │ │ │ └── index.html │ │ │ │ │ ├── named │ │ │ │ │ └── index.html │ │ │ │ │ ├── normal_bis │ │ │ │ │ └── index.html │ │ │ │ │ ├── normal_ter │ │ │ │ │ └── index.html │ │ │ │ │ ├── named_bis │ │ │ │ │ └── index.html │ │ │ │ │ ├── named_ter │ │ │ │ │ └── index.html │ │ │ │ │ ├── normal_final │ │ │ │ │ └── index.html │ │ │ │ │ ├── named_final │ │ │ │ │ └── index.html │ │ │ │ │ ├── named_quater │ │ │ │ │ └── named_absolute.html │ │ │ │ │ ├── inheritance │ │ │ │ │ ├── parent.html.twig │ │ │ │ │ ├── spare_parent.html.twig │ │ │ │ │ ├── array_inheritance_empty_parent.html.twig │ │ │ │ │ ├── array_inheritance_null_parent.html.twig │ │ │ │ │ ├── array_inheritance_valid_parent.html.twig │ │ │ │ │ └── array_inheritance_nonexistent_parent.html.twig │ │ │ │ │ └── themes │ │ │ │ │ ├── theme2 │ │ │ │ │ └── blocks.html.twig │ │ │ │ │ └── theme1 │ │ │ │ │ └── blocks.html.twig │ │ │ │ ├── Fixtures │ │ │ │ ├── errors │ │ │ │ │ ├── base.html │ │ │ │ │ └── index.html │ │ │ │ ├── tags │ │ │ │ │ ├── special_chars.test │ │ │ │ │ ├── raw │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ └── mixed_usage_with_raw.test │ │ │ │ │ ├── verbatim │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ └── mixed_usage_with_raw.test │ │ │ │ │ ├── block │ │ │ │ │ │ ├── special_chars.test │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ └── block_unique_name.test │ │ │ │ │ ├── set │ │ │ │ │ │ ├── capture-empty.test │ │ │ │ │ │ ├── capture.test │ │ │ │ │ │ ├── expression.test │ │ │ │ │ │ └── basic.test │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── json_encode.test │ │ │ │ │ │ ├── multiple.test │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ ├── with_for_tag.test │ │ │ │ │ │ └── nested.test │ │ │ │ │ ├── use │ │ │ │ │ │ ├── deep_empty.test │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ └── aliases.test │ │ │ │ │ ├── include │ │ │ │ │ │ ├── missing.test │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ ├── templates_as_array.test │ │ │ │ │ │ ├── template_instance.test │ │ │ │ │ │ ├── expression.test │ │ │ │ │ │ ├── with_variables.test │ │ │ │ │ │ └── ignore_missing.test │ │ │ │ │ ├── inheritance │ │ │ │ │ │ ├── empty.test │ │ │ │ │ │ ├── parent_in_a_block.test │ │ │ │ │ │ ├── extends_as_array.test │ │ │ │ │ │ ├── extends_as_array_with_empty_name.test │ │ │ │ │ │ ├── extends_as_array_with_null_name.test │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ ├── dynamic.test │ │ │ │ │ │ ├── parent_without_extends.test │ │ │ │ │ │ ├── parent.test │ │ │ │ │ │ ├── parent_without_extends_but_traits.test │ │ │ │ │ │ ├── parent_change.test │ │ │ │ │ │ ├── nested_blocks_parent_only.test │ │ │ │ │ │ ├── template_instance.test │ │ │ │ │ │ ├── multiple.test │ │ │ │ │ │ └── nested_inheritance.test │ │ │ │ │ ├── for │ │ │ │ │ │ ├── keys.test │ │ │ │ │ │ ├── values.test │ │ │ │ │ │ ├── keys_and_values.test │ │ │ │ │ │ ├── loop_context_local.test │ │ │ │ │ │ ├── loop_not_defined_cond.test │ │ │ │ │ │ ├── loop_not_defined.test │ │ │ │ │ │ ├── condition.test │ │ │ │ │ │ ├── context.test │ │ │ │ │ │ ├── inner_variables.test │ │ │ │ │ │ └── nested_else.test │ │ │ │ │ ├── autoescape │ │ │ │ │ │ ├── double_escaping.test │ │ │ │ │ │ ├── raw.test │ │ │ │ │ │ └── blocks.test │ │ │ │ │ ├── macro │ │ │ │ │ │ ├── special_chars.test │ │ │ │ │ │ ├── super_globals.test │ │ │ │ │ │ ├── global.test │ │ │ │ │ │ └── endmacro_name.test │ │ │ │ │ ├── spaceless │ │ │ │ │ │ └── simple.test │ │ │ │ │ ├── sandbox │ │ │ │ │ │ ├── not_valid1.test │ │ │ │ │ │ └── not_valid2.test │ │ │ │ │ ├── from.test │ │ │ │ │ ├── if │ │ │ │ │ │ ├── expression.test │ │ │ │ │ │ └── basic.test │ │ │ │ │ └── embed │ │ │ │ │ │ └── error_line.test │ │ │ │ ├── filters │ │ │ │ │ ├── special_chars.test │ │ │ │ │ ├── escape.test │ │ │ │ │ ├── escape_non_supported_charset.test │ │ │ │ │ ├── format.test │ │ │ │ │ ├── dynamic_filter.test │ │ │ │ │ ├── replace.test │ │ │ │ │ ├── sort.test │ │ │ │ │ ├── escape_html_attr.test │ │ │ │ │ ├── join.test │ │ │ │ │ ├── length_utf8.test │ │ │ │ │ ├── json_encode.test │ │ │ │ │ ├── last.test │ │ │ │ │ ├── convert_encoding.test │ │ │ │ │ ├── length.test │ │ │ │ │ ├── first.test │ │ │ │ │ ├── trim.test │ │ │ │ │ ├── round.test │ │ │ │ │ ├── date_default_format.test │ │ │ │ │ ├── force_escape.test │ │ │ │ │ ├── number_format.test │ │ │ │ │ └── date_modify.test │ │ │ │ ├── functions │ │ │ │ │ ├── special_chars.test │ │ │ │ │ ├── range.test │ │ │ │ │ ├── dynamic_function.test │ │ │ │ │ ├── include │ │ │ │ │ │ ├── missing.test │ │ │ │ │ │ ├── autoescaping.test │ │ │ │ │ │ ├── assignment.test │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ ├── template_instance.test │ │ │ │ │ │ ├── templates_as_array.test │ │ │ │ │ │ ├── expression.test │ │ │ │ │ │ ├── with_variables.test │ │ │ │ │ │ ├── sandbox.test │ │ │ │ │ │ └── ignore_missing.test │ │ │ │ │ ├── max.test │ │ │ │ │ ├── min.test │ │ │ │ │ ├── source.test │ │ │ │ │ ├── constant.test │ │ │ │ │ ├── block.test │ │ │ │ │ ├── dump.test │ │ │ │ │ ├── cycle.test │ │ │ │ │ └── date_namedargs.test │ │ │ │ ├── expressions │ │ │ │ │ ├── grouping.test │ │ │ │ │ ├── ternary_operator_noelse.test │ │ │ │ │ ├── ternary_operator_nothen.test │ │ │ │ │ ├── unary_precedence.test │ │ │ │ │ ├── unary.test │ │ │ │ │ ├── strings.test │ │ │ │ │ ├── negative_numbers.test │ │ │ │ │ ├── bitwise.test │ │ │ │ │ ├── matches.test │ │ │ │ │ ├── two_word_operators_as_variables.test │ │ │ │ │ ├── array_call.test │ │ │ │ │ ├── literals.test │ │ │ │ │ ├── operators_as_variables.test │ │ │ │ │ ├── comparison.test │ │ │ │ │ ├── divisibleby.test │ │ │ │ │ └── postfix.test │ │ │ │ ├── regression │ │ │ │ │ ├── empty_token.test │ │ │ │ │ ├── strings_like_numbers.test │ │ │ │ │ └── multi_word_tests.test │ │ │ │ ├── tests │ │ │ │ │ ├── odd.test │ │ │ │ │ └── even.test │ │ │ │ ├── exceptions │ │ │ │ │ ├── undefined_parent.test │ │ │ │ │ ├── undefined_trait.test │ │ │ │ │ ├── multiline_tag_with_undefined_variable.test │ │ │ │ │ ├── multiline_function_with_undefined_variable.test │ │ │ │ │ ├── syntax_error_in_reused_template.test │ │ │ │ │ ├── multiline_function_with_unknown_argument.test │ │ │ │ │ ├── multiline_array_with_undefined_variable_again.test │ │ │ │ │ └── unclosed_tag.test │ │ │ │ └── macros │ │ │ │ │ ├── reserved_variables.test │ │ │ │ │ ├── with_filters.test │ │ │ │ │ ├── default_values.test │ │ │ │ │ └── nested_calls.test │ │ │ │ └── Node │ │ │ │ └── Expression │ │ │ │ └── PHP53 │ │ │ │ ├── TestInclude.php │ │ │ │ ├── FilterInclude.php │ │ │ │ └── FunctionInclude.php │ │ └── bootstrap.php │ │ ├── .gitignore │ │ ├── ext │ │ └── twig │ │ │ ├── config.w32 │ │ │ └── config.m4 │ │ ├── doc │ │ ├── filters │ │ │ ├── lower.rst │ │ │ ├── upper.rst │ │ │ ├── length.rst │ │ │ ├── keys.rst │ │ │ ├── capitalize.rst │ │ │ ├── title.rst │ │ │ ├── abs.rst │ │ │ ├── sort.rst │ │ │ └── striptags.rst │ │ ├── tests │ │ │ ├── odd.rst │ │ │ ├── even.rst │ │ │ ├── index.rst │ │ │ ├── null.rst │ │ │ ├── empty.rst │ │ │ └── divisibleby.rst │ │ ├── tags │ │ │ ├── do.rst │ │ │ ├── from.rst │ │ │ ├── index.rst │ │ │ └── flush.rst │ │ ├── functions │ │ │ ├── index.rst │ │ │ └── block.rst │ │ └── index.rst │ │ ├── .editorconfig │ │ └── lib │ │ └── Twig │ │ └── Node │ │ └── Body.php ├── omnipay │ └── common │ │ ├── .gitignore │ │ ├── src │ │ └── Omnipay │ │ │ └── Common │ │ │ └── Exception │ │ │ ├── OmnipayException.php │ │ │ ├── RuntimeException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── InvalidRequestException.php │ │ │ └── InvalidCreditCardException.php │ │ └── tests │ │ ├── bootstrap.php │ │ └── Omnipay │ │ └── Common │ │ ├── Exception │ │ ├── RuntimeExceptionTest.php │ │ ├── BadMethodCallExceptionTest.php │ │ ├── InvalidRequestExceptionTest.php │ │ └── InvalidCreditCardExceptionTest.php │ │ └── PaymentMethodTest.php ├── altorouter │ └── altorouter │ │ ├── .travis.yml │ │ └── examples │ │ └── basic │ │ └── .htaccess ├── autoload.php └── composer │ ├── autoload_files.php │ └── autoload_psr4.php ├── docs ├── favicon.png └── grey-cart.png ├── assets ├── img │ ├── file.png │ ├── logo.png │ ├── folder.png │ ├── login-logo.png │ ├── file-browser.png │ ├── media-loader.gif │ ├── driven-by-gocart.png │ ├── storing_animation.gif │ ├── driven-by-gocart-dark.png │ ├── glyphicons-halflings.png │ ├── ui-icons_2e83ff_256x240.png │ ├── ui-icons_333333_256x240.png │ ├── ui-icons_cd0a0a_256x240.png │ ├── glyphicons-halflings-white.png │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── ui-bg_flat_65_f2f2f2_40x100.png │ ├── ui-bg_flat_75_eeeeee_40x100.png │ ├── ui-bg_flat_75_f2f2f2_40x100.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ └── ui-bg_inset-soft_95_fef1ec_1x100.png ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── font.old │ ├── fontawesome.eot │ ├── fontawesome.ttf │ └── fontawesome.woff ├── css │ └── file-browser.css └── js │ └── pickadate │ └── translations │ ├── zh_CN.js │ ├── zh_TW.js │ ├── ko_KR.js │ └── ja_JP.js ├── system ├── fonts │ ├── texb.ttf │ └── index.html ├── .htaccess ├── index.html ├── core │ ├── index.html │ └── compat │ │ └── index.html ├── database │ ├── index.html │ └── drivers │ │ ├── index.html │ │ ├── cubrid │ │ └── index.html │ │ ├── ibase │ │ └── index.html │ │ ├── mssql │ │ └── index.html │ │ ├── mysql │ │ └── index.html │ │ ├── mysqli │ │ └── index.html │ │ ├── oci8 │ │ └── index.html │ │ ├── odbc │ │ └── index.html │ │ ├── pdo │ │ ├── index.html │ │ └── subdrivers │ │ │ └── index.html │ │ ├── sqlite │ │ └── index.html │ │ ├── sqlsrv │ │ └── index.html │ │ ├── postgre │ │ └── index.html │ │ └── sqlite3 │ │ └── index.html ├── helpers │ └── index.html ├── language │ ├── index.html │ └── english │ │ └── index.html └── libraries │ ├── index.html │ ├── Cache │ ├── index.html │ └── drivers │ │ └── index.html │ ├── Session │ ├── index.html │ └── drivers │ │ └── index.html │ └── Javascript │ └── index.html ├── themes └── default │ ├── assets │ ├── font │ │ ├── gumbo.eot │ │ ├── gumbo.ttf │ │ └── gumbo.woff │ └── img │ │ ├── favicon.png │ │ ├── ajax-loader.gif │ │ └── no_picture.png │ └── views │ ├── index.html │ └── homepage_fallback.php ├── .htaccess ├── composer.json └── .gitignore /addons/stripe-3.x/.hgignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/undo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/phaseroots: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/undo.bookmarks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/branch: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/undo.branch: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /install/.htaccess: -------------------------------------------------------------------------------- 1 | php_flag opcache.enable Off -------------------------------------------------------------------------------- /uploads/digital_products/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/last-message.txt: -------------------------------------------------------------------------------- 1 | Folder commit -------------------------------------------------------------------------------- /application/modules/tax/language/english/tax_lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/_templates/leftbar.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/undo.desc: -------------------------------------------------------------------------------- 1 | 2 2 | push-phase-sync 3 | -------------------------------------------------------------------------------- /application/modules/cart/language/english/cart_lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/VERSION: -------------------------------------------------------------------------------- 1 | Swift-5.4.1 2 | -------------------------------------------------------------------------------- /application/modules/checkout/language/english/checkout_lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/payments/language/english/payments_lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/search/language/english/search_lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/shipping/language/english/shipping_lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/wysiwyg/language/english/wysiwyg_lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/FileBody.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/addresses/language/english/addresses_lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/my_account/language/english/my_account_lang.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/File/Fixtures/directory/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /nbproject 3 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/File/Fixtures/.unknownextension: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/File/Fixtures/other-file.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/sitemap/views/admin/sitemap_xml_foot.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal/index.html: -------------------------------------------------------------------------------- 1 | path 2 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/requires: -------------------------------------------------------------------------------- 1 | dotencode 2 | fncache 3 | revlogv1 4 | store 5 | -------------------------------------------------------------------------------- /application/modules/products/views/admin/iframe/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/src/test/resources/filesystemcopy/emptyFolder/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named/index.html: -------------------------------------------------------------------------------- 1 | named path 2 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/cache/tags: -------------------------------------------------------------------------------- 1 | 1 0a570ce321ec8d1aa7e91ea38426e97edcac3969 2 | 3 | -------------------------------------------------------------------------------- /assets/img/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/file.png -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/logo.png -------------------------------------------------------------------------------- /docs/grey-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/docs/grey-cart.png -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/src/test/resources/filesystemcopy/withSubfolders/aFile.txt: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_bis/index.html: -------------------------------------------------------------------------------- 1 | path (bis) 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_ter/index.html: -------------------------------------------------------------------------------- 1 | path (ter) 2 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/00changelog.i: -------------------------------------------------------------------------------- 1 |  dummy changelog to prevent using the old repo layout -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/undo.phaseroots: -------------------------------------------------------------------------------- 1 | 1 0a570ce321ec8d1aa7e91ea38426e97edcac3969 2 | -------------------------------------------------------------------------------- /assets/img/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/folder.png -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | Sphinx>=1.2b1 2 | guzzle_sphinx_theme>=0.5.0 3 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_bis/index.html: -------------------------------------------------------------------------------- 1 | named path (bis) 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_ter/index.html: -------------------------------------------------------------------------------- 1 | named path (ter) 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_final/index.html: -------------------------------------------------------------------------------- 1 | path (final) 2 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/src/test/resources/filesystemcopy/withSubfolders/subfolder2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/errors/base.html: -------------------------------------------------------------------------------- 1 | {% block content %}{% endblock %} 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_final/index.html: -------------------------------------------------------------------------------- 1 | named path (final) 2 | -------------------------------------------------------------------------------- /assets/img/login-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/login-logo.png -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/src/test/resources/filesystemcopy/withSubfolders/subfolder1/file1.txt: -------------------------------------------------------------------------------- 1 | foobar -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/img/file-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/file-browser.png -------------------------------------------------------------------------------- /assets/img/media-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/media-loader.gif -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_quater/named_absolute.html: -------------------------------------------------------------------------------- 1 | named path (quater) 2 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/dirstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/dirstate -------------------------------------------------------------------------------- /assets/font.old/fontawesome.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/font.old/fontawesome.eot -------------------------------------------------------------------------------- /assets/font.old/fontawesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/font.old/fontawesome.ttf -------------------------------------------------------------------------------- /assets/img/driven-by-gocart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/driven-by-gocart.png -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/mock_response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Content-Length: 0 3 | 4 | -------------------------------------------------------------------------------- /assets/font.old/fontawesome.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/font.old/fontawesome.woff -------------------------------------------------------------------------------- /assets/img/storing_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/storing_animation.gif -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description/bar.json: -------------------------------------------------------------------------------- 1 | { 2 | "includes": ["foo.json"] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/twig/twig/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /composer.lock 3 | /ext/twig/autom4te.cache/ 4 | /phpunit.xml 5 | /vendor 6 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/parent.html.twig: -------------------------------------------------------------------------------- 1 | {% block body %}VALID{% endblock %} 2 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/undo.dirstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/undo.dirstate -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/img/driven-by-gocart-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/driven-by-gocart-dark.png -------------------------------------------------------------------------------- /assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /themes/default/assets/font/gumbo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/themes/default/assets/font/gumbo.eot -------------------------------------------------------------------------------- /themes/default/assets/font/gumbo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/themes/default/assets/font/gumbo.ttf -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description/recursive.json: -------------------------------------------------------------------------------- 1 | { 2 | "includes": ["foo.json"] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/examples/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/search/views/search_error.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/img/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /assets/img/ui-icons_333333_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/ui-icons_333333_256x240.png -------------------------------------------------------------------------------- /assets/img/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /themes/default/assets/font/gumbo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/themes/default/assets/font/gumbo.woff -------------------------------------------------------------------------------- /themes/default/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/themes/default/assets/img/favicon.png -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description/baz.json: -------------------------------------------------------------------------------- 1 | { 2 | "includes": ["foo.json", "bar.json"] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.gitignore: -------------------------------------------------------------------------------- 1 | /tests/acceptance.conf.php 2 | /tests/smoke.conf.php 3 | /build/* 4 | /vendor/ 5 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/00changelog.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/00changelog.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/00manifest.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/00manifest.i -------------------------------------------------------------------------------- /assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /assets/img/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /themes/default/assets/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/themes/default/assets/img/ajax-loader.gif -------------------------------------------------------------------------------- /themes/default/assets/img/no_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/themes/default/assets/img/no_picture.png -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/spare_parent.html.twig: -------------------------------------------------------------------------------- 1 | {% block body %}SPARE PARENT{% endblock %} 2 | -------------------------------------------------------------------------------- /assets/img/ui-bg_flat_65_f2f2f2_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/ui-bg_flat_65_f2f2f2_40x100.png -------------------------------------------------------------------------------- /assets/img/ui-bg_flat_75_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/ui-bg_flat_75_eeeeee_40x100.png -------------------------------------------------------------------------------- /assets/img/ui-bg_flat_75_f2f2f2_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/ui-bg_flat_75_f2f2f2_40x100.png -------------------------------------------------------------------------------- /assets/img/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /assets/img/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/vendor/guzzle/guzzle/docs/_static/logo.png -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/~2ehgignore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/~2ehgignore.i -------------------------------------------------------------------------------- /addons/stripe-3.x/stripe/libraries/lib/Error/Api.php: -------------------------------------------------------------------------------- 1 | 2 |

404 The page you are looking for could not be found!

3 | -------------------------------------------------------------------------------- /assets/css/file-browser.css: -------------------------------------------------------------------------------- 1 | body .redactor_toolbar li a.redactor_btn_file-browser { 2 | background: url('../img/file-browser.png') no-repeat; 3 | } -------------------------------------------------------------------------------- /assets/img/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/assets/img/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /vendor/altorouter/altorouter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - 5.3 4 | - 5.4 5 | - 5.5 6 | 7 | script: phpunit --coverage-text ./ 8 | -------------------------------------------------------------------------------- /vendor/altorouter/altorouter/examples/basic/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteRule . index.php [L] 4 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/_static/guzzle-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/vendor/guzzle/guzzle/docs/_static/guzzle-icon.png -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/views/stripe.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/views/stripe.php.i -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/uml/Mime.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/vendor/swiftmailer/swiftmailer/doc/uml/Mime.graffle -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/manifest.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/manifest.php.i -------------------------------------------------------------------------------- /application/modules/search/manifest.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/uml/Encoders.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/vendor/swiftmailer/swiftmailer/doc/uml/Encoders.graffle -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/File/Fixtures/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/vendor/symfony/http-foundation/Tests/File/Fixtures/test -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/controllers/_stripe.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/controllers/_stripe.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/data/test.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/data/test.png.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_card.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_card.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_event.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_event.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_plan.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_plan.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_token.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_token.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/views/stripe.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/views/stripe.php.i -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/uml/Transports.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/vendor/swiftmailer/swiftmailer/doc/uml/Transports.graffle -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/File/Fixtures/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/vendor/symfony/http-foundation/Tests/File/Fixtures/test.gif -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/_stripe__lib.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/_stripe__lib.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_account.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_account.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_balance.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_balance.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_charge.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_charge.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_coupon.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_coupon.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_invoice.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_invoice.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_object.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_object.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_refund.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_refund.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_stripe.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_stripe.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/stripe/libraries/lib/BitcoinTransaction.php: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /install/installer/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/assets/js/jquery.payment.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/assets/js/jquery.payment.js.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/controllers/_admin_stripe.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/controllers/_admin_stripe.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_collection.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_collection.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_customer.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_customer.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_api.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_api.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_recipient.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_recipient.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_transfer.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_transfer.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_util/_set.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_util/_set.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_util/_util.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_util/_util.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/assets/img/icons.svg.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/assets/img/icons.svg.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/views/admin/stripe__form.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/views/admin/stripe__form.php.i -------------------------------------------------------------------------------- /uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_api_resource.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_api_resource.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_bank_account.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_bank_account.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_base.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_base.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_card.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_card.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_file_upload.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_file_upload.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_invoice_item.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_invoice_item.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_subscription.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_subscription.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/controllers/_stripe.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/controllers/_stripe.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/data/test.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/data/test.png.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_card.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_card.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_event.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_event.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_plan.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_plan.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_token.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_token.php.i -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/index.rst: -------------------------------------------------------------------------------- 1 | .. title:: Guzzle | PHP HTTP client and framework for consuming RESTful web services 2 | .. toctree:: 3 | :hidden: 4 | 5 | docs.rst 6 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/special_chars.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "§" custom tag 3 | --TEMPLATE-- 4 | {% § %} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | § 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme2/blocks.html.twig: -------------------------------------------------------------------------------- 1 | {% use '@default_theme/blocks.html.twig' %} 2 | 3 | {% block b2 %}block from theme 2{% endblock %} 4 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/language/english/stripe__lang.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/language/english/stripe__lang.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/data/ca-certificates.crt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/data/ca-certificates.crt.d -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/data/ca-certificates.crt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/data/ca-certificates.crt.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_alipay_account.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_alipay_account.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_api_requestor.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_api_requestor.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_application_fee.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_application_fee.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_attached_object.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_attached_object.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/assets/js/jquery.payment.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/assets/js/jquery.payment.js.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/_stripe__lib.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/_stripe__lib.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_account.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_account.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_balance.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_balance.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_charge.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_charge.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_coupon.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_coupon.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_customer.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_customer.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_invoice.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_invoice.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_object.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_object.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_refund.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_refund.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_stripe.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_stripe.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_transfer.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_transfer.php.i -------------------------------------------------------------------------------- /uploads/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /uploads/wysiwyg/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/test_service2.json: -------------------------------------------------------------------------------- 1 | { 2 | "operations": { 3 | "abstract": { 4 | "uri": "/abstract" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme1/blocks.html.twig: -------------------------------------------------------------------------------- 1 | {% block b1 %}block from theme 1{% endblock %} 2 | 3 | {% block b2 %}block from theme 1{% endblock %} 4 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_bitcoin_receiver.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_bitcoin_receiver.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_rate_limit.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_rate_limit.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_external_account.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_external_account.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_transfer_reversal.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_transfer_reversal.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/controllers/_admin_stripe.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/controllers/_admin_stripe.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_collection.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_collection.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_error/_api.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_error/_api.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_recipient.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_recipient.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_util/_set.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_util/_set.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_util/_util.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_util/_util.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/views/admin/stripe__form.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/views/admin/stripe__form.php.i -------------------------------------------------------------------------------- /themes/default/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /uploads/images/full/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /uploads/images/medium/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /uploads/images/small/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock/MockSubject.php: -------------------------------------------------------------------------------- 1 | There is no default homepage selected. Please Login and set one on the GoCart Configuration page. -------------------------------------------------------------------------------- /uploads/digital_products/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /uploads/images/thumbnails/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/special_chars.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "§" custom filter 3 | --TEMPLATE-- 4 | {{ 'foo'|§ }} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | §foo§ 9 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_application_fee_refund.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_application_fee_refund.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_api_connection.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_api_connection.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_authentication.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_authentication.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_invalid_request.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_error/_invalid_request.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_singleton_api_resource.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_singleton_api_resource.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_util/_request_options.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_util/_request_options.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/language/english/stripe__lang.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/language/english/stripe__lang.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/data/ca-certificates.crt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/data/ca-certificates.crt.d -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/data/ca-certificates.crt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/data/ca-certificates.crt.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_alipay_account.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_alipay_account.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_application_fee.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_application_fee.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_attached_object.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_attached_object.php.i -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php: -------------------------------------------------------------------------------- 1 | "|e }} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | foo <br /> 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_null_parent.html.twig: -------------------------------------------------------------------------------- 1 | {% extends [null,'parent.html.twig'] %} 2 | 3 | {% block body %}{{ parent() }} Child{% endblock %} 4 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_balance_transaction.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_balance_transaction.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_bitcoin_transaction.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_bitcoin_transaction.php.i -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | addTest(new Twig_SimpleTest('anonymous', function () {})); 5 | 6 | return $env; 7 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/libraries/lib/_http_client/_client_interface.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/libraries/lib/_http_client/_client_interface.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_application_fee_refund.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_application_fee_refund.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_error/_api_connection.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_error/_api_connection.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_error/_authentication.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_error/_authentication.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_error/_invalid_request.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_error/_invalid_request.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_singleton_api_resource.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_singleton_api_resource.php.i -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_util/_request_options.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_util/_request_options.php.i -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/ext/twig/config.w32: -------------------------------------------------------------------------------- 1 | // vim:ft=javascript 2 | 3 | ARG_ENABLE("twig", "Twig support", "no"); 4 | 5 | if (PHP_TWIG != "no") { 6 | AC_DEFINE('HAVE_TWIG', 1); 7 | EXTENSION('twig', 'twig.c'); 8 | } 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/errors/index.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% block content %} 3 | {{ foo.bar }} 4 | {% endblock %} 5 | {% block foo %} 6 | {{ foo.bar }} 7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/grouping.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig supports grouping of expressions 3 | --TEMPLATE-- 4 | {{ (2 + 2) / 2 }} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | 2 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/FilterInclude.php: -------------------------------------------------------------------------------- 1 | addFilter(new Twig_SimpleFilter('anonymous', function () {})); 5 | 6 | return $env; 7 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/sourcetreeconfig: -------------------------------------------------------------------------------- 1 | autorefresh=1 2 | savedIncoming=0 3 | lastUsedView=0 4 | savedOutgoing=0 5 | disablerecursiveoperations=0 6 | autorefreshremotes=1 7 | lastCheckedRemotes=2015-08-03 19:52:50 +0000 8 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_http_client/_curl_client.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_http_client/_curl_client.php.i -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/dashboard/manifest.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/raw/basic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "raw" tag 3 | --TEMPLATE-- 4 | {% raw %} 5 | {{ foo }} 6 | {% endraw %} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | {{ foo }} 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/FunctionInclude.php: -------------------------------------------------------------------------------- 1 | addFunction(new Twig_SimpleFunction('anonymous', function () {})); 5 | 6 | return $env; 7 | -------------------------------------------------------------------------------- /application/modules/my_account/manifest.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/range.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "range" function 3 | --TEMPLATE-- 4 | {{ range(low=0+1, high=10+0, step=2)|join(',') }} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | 1,3,5,7,9 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_valid_parent.html.twig: -------------------------------------------------------------------------------- 1 | {% extends ['parent.html.twig','spare_parent.html.twig'] %} 2 | 3 | {% block body %}{{ parent() }} Child{% endblock %} 4 | -------------------------------------------------------------------------------- /addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_http_client/_client_interface.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocart/GoCart3/HEAD/addons/stripe-3.x/.hg/store/data/stripe/libraries/lib/_http_client/_client_interface.php.i -------------------------------------------------------------------------------- /application/helpers/MY_form_helper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/installer/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 'foo') 7 | --EXPECT-- 8 | foo0foo 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tests/odd.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "odd" test 3 | --TEMPLATE-- 4 | {{ 1 is odd ? 'ok' : 'ko' }} 5 | {{ 2 is odd ? 'ko' : 'ok' }} 6 | --DATA-- 7 | return array() 8 | --EXPECT-- 9 | ok 10 | ok -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_nonexistent_parent.html.twig: -------------------------------------------------------------------------------- 1 | {% extends ['nonexistent.html.twig','parent.html.twig'] %} 2 | 3 | {% block body %}{{ parent() }} Child{% endblock %} 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | "|e }} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | 愛していますか? <br /> 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/format.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "format" filter 3 | --TEMPLATE-- 4 | {{ string|format(foo, 3) }} 5 | --DATA-- 6 | return array('string' => '%s/%d', 'foo' => 'bar') 7 | --EXPECT-- 8 | bar/3 9 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php: -------------------------------------------------------------------------------- 1 | ` 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/verbatim/basic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "verbatim" tag 3 | --TEMPLATE-- 4 | {% verbatim %} 5 | {{ foo }} 6 | {% endverbatim %} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | {{ foo }} 11 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/readme.md: -------------------------------------------------------------------------------- 1 | For more information have a look in the [wiki](https://github.com/mikey179/vfsStream/wiki). 2 | 3 | [![Build Status](https://secure.travis-ci.org/mikey179/vfsStream.png)](http://travis-ci.org/mikey179/vfsStream) -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.crt -crlf 2 | *.key -crlf 3 | *.srl -crlf 4 | *.pub -crlf 5 | *.priv -crlf 6 | *.txt -crlf 7 | 8 | # ignore /notes in the git-generated distributed .zip archive 9 | /notes export-ignore 10 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/tests/even.rst: -------------------------------------------------------------------------------- 1 | ``even`` 2 | ======== 3 | 4 | ``even`` returns ``true`` if the given number is even: 5 | 6 | .. code-block:: jinja 7 | 8 | {{ var is even }} 9 | 10 | .. seealso:: :doc:`odd<../tests/odd>` 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/block/special_chars.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "§" special chars in a block name 3 | --TEMPLATE-- 4 | {% block § %} 5 | § 6 | {% endblock § %} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | § 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/dynamic_filter.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | dynamic filter 3 | --TEMPLATE-- 4 | {{ 'bar'|foo_path }} 5 | {{ 'bar'|a_foo_b_bar }} 6 | --DATA-- 7 | return array() 8 | --EXPECT-- 9 | foo/bar 10 | a/b/bar 11 | -------------------------------------------------------------------------------- /addons/cod/language/english/cod_lang.php: -------------------------------------------------------------------------------- 1 | content .= $arg; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/tests/index.rst: -------------------------------------------------------------------------------- 1 | Tests 2 | ===== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | constant 8 | defined 9 | divisibleby 10 | empty 11 | even 12 | iterable 13 | null 14 | odd 15 | sameas 16 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/set/capture-empty.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "set" tag block empty capture 3 | --TEMPLATE-- 4 | {% set foo %}{% endset %} 5 | 6 | {% if foo %}FAIL{% endif %} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | -------------------------------------------------------------------------------- /application/modules/pages/views/page.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | content))->display(); 9 | ?> -------------------------------------------------------------------------------- /application/modules/wysiwyg/manifest.php: -------------------------------------------------------------------------------- 1 | o
o{% endset %} 5 | 6 | {{ foo }} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | f
o
o 11 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock/ExceptionMock.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php: -------------------------------------------------------------------------------- 1 | multiHandle; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/ext/twig/config.m4: -------------------------------------------------------------------------------- 1 | dnl config.m4 for extension twig 2 | 3 | PHP_ARG_ENABLE(twig, whether to enable twig support, 4 | [ --enable-twig Enable twig support]) 5 | 6 | if test "$PHP_TWIG" != "no"; then 7 | PHP_NEW_EXTENSION(twig, twig.c, $ext_shared) 8 | fi 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/regression/strings_like_numbers.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig does not confuse strings with integers in getAttribute() 3 | --TEMPLATE-- 4 | {{ hash['2e2'] }} 5 | --DATA-- 6 | return array('hash' => array('2e2' => 'works')) 7 | --EXPECT-- 8 | works 9 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php: -------------------------------------------------------------------------------- 1 | array(4, 1), 'array2' => array('foo', 'bar')) 8 | --EXPECT-- 9 | 14 10 | barfoo 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/missing.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" function 3 | --TEMPLATE-- 4 | {{ include("foo.twig") }} 5 | --DATA-- 6 | return array(); 7 | --EXCEPTION-- 8 | Twig_Error_Loader: Template "foo.twig" is not defined in "index.twig" at line 2. 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/basic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "use" tag 3 | --TEMPLATE-- 4 | {% use "blocks.twig" %} 5 | 6 | {{ block('content') }} 7 | --TEMPLATE(blocks.twig)-- 8 | {% block content 'foo' %} 9 | --DATA-- 10 | return array() 11 | --EXPECT-- 12 | foo 13 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | 'VAR') 9 | --EXPECT-- 10 | Var 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/keys.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "for" tag can iterate over keys 3 | --TEMPLATE-- 4 | {% for key in items|keys %} 5 | * {{ key }} 6 | {% endfor %} 7 | --DATA-- 8 | return array('items' => array('a', 'b')) 9 | --EXPECT-- 10 | * 0 11 | * 1 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/basic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" tag 3 | --TEMPLATE-- 4 | FOO 5 | {% include "foo.twig" %} 6 | 7 | BAR 8 | --TEMPLATE(foo.twig)-- 9 | FOOBAR 10 | --DATA-- 11 | return array() 12 | --EXPECT-- 13 | FOO 14 | 15 | FOOBAR 16 | BAR 17 | -------------------------------------------------------------------------------- /application/libraries/MY_Form_validation.php: -------------------------------------------------------------------------------- 1 | _error_array; 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /application/modules/sitemap/language/english/sitemap_lang.php: -------------------------------------------------------------------------------- 1 | Test

7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 |

Test

11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/values.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "for" tag iterates over item values 3 | --TEMPLATE-- 4 | {% for item in items %} 5 | * {{ item }} 6 | {% endfor %} 7 | --DATA-- 8 | return array('items' => array('a', 'b')) 9 | --EXPECT-- 10 | * a 11 | * b 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_in_a_block.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "extends" tag 3 | --TEMPLATE-- 4 | {% block content %} 5 | {% extends "foo.twig" %} 6 | {% endblock %} 7 | --EXCEPTION-- 8 | Twig_Error_Syntax: Cannot extend from a block in "index.twig" at line 3 9 | -------------------------------------------------------------------------------- /application/modules/sitemap/views/admin/product_xml.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | slug);?> 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/filters/length.rst: -------------------------------------------------------------------------------- 1 | ``length`` 2 | ========== 3 | 4 | The ``length`` filter returns the number of items of a sequence or mapping, or 5 | the length of a string: 6 | 7 | .. code-block:: jinja 8 | 9 | {% if users|length > 10 %} 10 | ... 11 | {% endif %} 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/undefined_parent.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Exception for an undefined parent 3 | --TEMPLATE-- 4 | {% extends 'foo.html' %} 5 | 6 | {% set foo = "foo" %} 7 | --EXCEPTION-- 8 | Twig_Error_Loader: Template "foo.html" is not defined in "index.twig" at line 2. 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/unary_precedence.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig unary operators precedence 3 | --TEMPLATE-- 4 | {{ -1 - 1 }} 5 | {{ -1 - -1 }} 6 | {{ -1 * -1 }} 7 | {{ 4 / -1 * 5 }} 8 | --DATA-- 9 | return array() 10 | --EXPECT-- 11 | -2 12 | 0 13 | 1 14 | -20 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/escape_html_attr.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "escape" filter does not escape with the html strategy when using the html_attr strategy 3 | --TEMPLATE-- 4 | {{ '
'|escape('html_attr') }} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | <br /> 9 | -------------------------------------------------------------------------------- /addons/authorize.net/libraries/src/Message/AIMPurchaseRequest.php: -------------------------------------------------------------------------------- 1 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/filters/keys.rst: -------------------------------------------------------------------------------- 1 | ``keys`` 2 | ======== 3 | 4 | The ``keys`` filter returns the keys of an array. It is useful when you want to 5 | iterate over the keys of an array: 6 | 7 | .. code-block:: jinja 8 | 9 | {% for key in array|keys %} 10 | ... 11 | {% endfor %} 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/unary.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig supports unary operators (not, -, +) 3 | --TEMPLATE-- 4 | {{ not 1 }}/{{ not 0 }} 5 | {{ +1 + 1 }}/{{ -1 - 1 }} 6 | {{ not (false or true) }} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | /1 11 | 2/-2 12 | 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/max.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "max" function 3 | --TEMPLATE-- 4 | {{ max([2, 1, 3, 5, 4]) }} 5 | {{ max(2, 1, 3, 5, 4) }} 6 | {{ max({2:"two", 1:"one", 3:"three", 5:"five", 4:"for"}) }} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | 5 11 | 5 12 | two 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/aliases.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "use" tag 3 | --TEMPLATE-- 4 | {% use "blocks.twig" with content as foo %} 5 | 6 | {{ block('foo') }} 7 | --TEMPLATE(blocks.twig)-- 8 | {% block content 'foo' %} 9 | --DATA-- 10 | return array() 11 | --EXPECT-- 12 | foo 13 | -------------------------------------------------------------------------------- /addons/authorize.net/libraries/src/Message/DPMCompleteResponse.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | slug);?> 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/assignment.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" function 3 | --TEMPLATE-- 4 | {% set tmp = include("foo.twig") %} 5 | 6 | FOO{{ tmp }}BAR 7 | --TEMPLATE(foo.twig)-- 8 | FOOBAR 9 | --DATA-- 10 | return array() 11 | --EXPECT-- 12 | FOO 13 | FOOBARBAR 14 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/basic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" function 3 | --TEMPLATE-- 4 | FOO 5 | {{ include("foo.twig") }} 6 | 7 | BAR 8 | --TEMPLATE(foo.twig)-- 9 | FOOBAR 10 | --DATA-- 11 | return array() 12 | --EXPECT-- 13 | FOO 14 | 15 | FOOBAR 16 | 17 | BAR 18 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/min.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "min" function 3 | --TEMPLATE-- 4 | {{ min(2, 1, 3, 5, 4) }} 5 | {{ min([2, 1, 3, 5, 4]) }} 6 | {{ min({2:"two", 1:"one", 3:"three", 5:"five", 4:"for"}) }} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | 1 11 | 1 12 | five 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/double_escaping.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "autoescape" tag does not double-escape 3 | --TEMPLATE-- 4 | {% autoescape 'html' %} 5 | {{ var|escape }} 6 | {% endautoescape %} 7 | --DATA-- 8 | return array('var' => '
') 9 | --EXPECT-- 10 | <br /> 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/raw.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "autoescape" tag does not escape when raw is used as a filter 3 | --TEMPLATE-- 4 | {% autoescape 'html' %} 5 | {{ var|raw }} 6 | {% endautoescape %} 7 | --DATA-- 8 | return array('var' => '
') 9 | --EXPECT-- 10 |
11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/basic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "filter" tag applies a filter on its children 3 | --TEMPLATE-- 4 | {% filter upper %} 5 | Some text with a {{ var }} 6 | {% endfilter %} 7 | --DATA-- 8 | return array('var' => 'var') 9 | --EXPECT-- 10 | SOME TEXT WITH A VAR 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/extends_as_array.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "extends" tag 3 | --TEMPLATE-- 4 | {% extends ["foo.twig", "bar.twig"] %} 5 | --TEMPLATE(bar.twig)-- 6 | {% block content %} 7 | foo 8 | {% endblock %} 9 | --DATA-- 10 | return array() 11 | --EXPECT-- 12 | foo 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/source.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "source" function 3 | --TEMPLATE-- 4 | FOO 5 | {{ source("foo.twig") }} 6 | 7 | BAR 8 | --TEMPLATE(foo.twig)-- 9 | {{ foo }}
10 | --DATA-- 11 | return array() 12 | --EXPECT-- 13 | FOO 14 | 15 | {{ foo }}
16 | 17 | BAR 18 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/templates_as_array.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" tag 3 | --TEMPLATE-- 4 | {% include ["foo.twig", "bar.twig"] %} 5 | {% include ["bar.twig", "foo.twig"] %} 6 | --TEMPLATE(foo.twig)-- 7 | foo 8 | --DATA-- 9 | return array() 10 | --EXPECT-- 11 | foo 12 | foo 13 | -------------------------------------------------------------------------------- /application/modules/users/manifest.php: -------------------------------------------------------------------------------- 1 | 'BAR'); 8 | --EXPECT-- 9 | foo foo BAR baz baz 10 | foo BARBAR baz 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/template_instance.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" tag accepts Twig_Template instance 3 | --TEMPLATE-- 4 | {% include foo %} FOO 5 | --TEMPLATE(foo.twig)-- 6 | BAR 7 | --DATA-- 8 | return array('foo' => $twig->loadTemplate('foo.twig')) 9 | --EXPECT-- 10 | BAR FOO 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/extends_as_array_with_empty_name.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "extends" tag 3 | --TEMPLATE-- 4 | {% extends ["", "bar.twig"] %} 5 | --TEMPLATE(bar.twig)-- 6 | {% block content %} 7 | foo 8 | {% endblock %} 9 | --DATA-- 10 | return array() 11 | --EXPECT-- 12 | foo 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/extends_as_array_with_null_name.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "extends" tag 3 | --TEMPLATE-- 4 | {% extends [null, "bar.twig"] %} 5 | --TEMPLATE(bar.twig)-- 6 | {% block content %} 7 | foo 8 | {% endblock %} 9 | --DATA-- 10 | return array() 11 | --EXPECT-- 12 | foo 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/special_chars.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "§" as a macro name 3 | --TEMPLATE-- 4 | {% import _self as macros %} 5 | 6 | {{ macros.§('foo') }} 7 | 8 | {% macro §(foo) %} 9 | §{{ foo }}§ 10 | {% endmacro %} 11 | --DATA-- 12 | return array() 13 | --EXPECT-- 14 | §foo§ 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/raw/mixed_usage_with_raw.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "raw" tag 3 | --TEMPLATE-- 4 | {% raw %} 5 | {{ foo }} 6 | {% endverbatim %} 7 | --DATA-- 8 | return array() 9 | --EXCEPTION-- 10 | Twig_Error_Syntax: Unexpected end of file: Unclosed "raw" block in "index.twig" at line 2 11 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/index.rst: -------------------------------------------------------------------------------- 1 | Swiftmailer 2 | =========== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | introduction 8 | overview 9 | installing 10 | help-resources 11 | including-the-files 12 | messages 13 | headers 14 | sending 15 | plugins 16 | japanese 17 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/filters/capitalize.rst: -------------------------------------------------------------------------------- 1 | ``capitalize`` 2 | ============== 3 | 4 | The ``capitalize`` filter capitalizes a value. The first character will be 5 | uppercase, all others lowercase: 6 | 7 | .. code-block:: jinja 8 | 9 | {{ 'my first car'|capitalize }} 10 | 11 | {# outputs 'My first car' #} 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/tests/empty.rst: -------------------------------------------------------------------------------- 1 | ``empty`` 2 | ========= 3 | 4 | ``empty`` checks if a variable is empty: 5 | 6 | .. code-block:: jinja 7 | 8 | {# evaluates to true if the foo variable is null, false, an empty array, or the empty string #} 9 | {% if foo is empty %} 10 | ... 11 | {% endif %} 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/macros/reserved_variables.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | macro 3 | --TEMPLATE-- 4 | {% from _self import test %} 5 | 6 | {% macro test(this) -%} 7 | {{ this }} 8 | {%- endmacro %} 9 | 10 | {{ test(this) }} 11 | --DATA-- 12 | return array('this' => 'foo'); 13 | --EXPECT-- 14 | foo 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/regression/multi_word_tests.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig allows multi-word tests without a custom node class 3 | --TEMPLATE-- 4 | {{ 'foo' is multi word ? 'yes' : 'no' }} 5 | {{ 'foo bar' is multi word ? 'yes' : 'no' }} 6 | --DATA-- 7 | return array() 8 | --EXPECT-- 9 | no 10 | yes 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/block/basic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "block" tag 3 | --TEMPLATE-- 4 | {% block title1 %}FOO{% endblock %} 5 | {% block title2 foo|lower %} 6 | --TEMPLATE(foo.twig)-- 7 | {% block content %}{% endblock %} 8 | --DATA-- 9 | return array('foo' => 'bar') 10 | --EXPECT-- 11 | FOObar 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/tags/do.rst: -------------------------------------------------------------------------------- 1 | ``do`` 2 | ====== 3 | 4 | .. versionadded:: 1.5 5 | The ``do`` tag was added in Twig 1.5. 6 | 7 | The ``do`` tag works exactly like the regular variable expression (``{{ ... 8 | }}``) just that it doesn't print anything: 9 | 10 | .. code-block:: jinja 11 | 12 | {% do 1 + 2 %} 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/template_instance.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" function accepts Twig_Template instance 3 | --TEMPLATE-- 4 | {{ include(foo) }} FOO 5 | --TEMPLATE(foo.twig)-- 6 | BAR 7 | --DATA-- 8 | return array('foo' => $twig->loadTemplate('foo.twig')) 9 | --EXPECT-- 10 | BAR FOO 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/templates_as_array.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" function 3 | --TEMPLATE-- 4 | {{ include(["foo.twig", "bar.twig"]) }} 5 | {{- include(["bar.twig", "foo.twig"]) }} 6 | --TEMPLATE(foo.twig)-- 7 | foo 8 | --DATA-- 9 | return array() 10 | --EXPECT-- 11 | foo 12 | foo 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/keys_and_values.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "for" tag can iterate over keys and values 3 | --TEMPLATE-- 4 | {% for key, item in items %} 5 | * {{ key }}/{{ item }} 6 | {% endfor %} 7 | --DATA-- 8 | return array('items' => array('a', 'b')) 9 | --EXPECT-- 10 | * 0/a 11 | * 1/b 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/basic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "extends" tag 3 | --TEMPLATE-- 4 | {% extends "foo.twig" %} 5 | 6 | {% block content %} 7 | FOO 8 | {% endblock %} 9 | --TEMPLATE(foo.twig)-- 10 | {% block content %}{% endblock %} 11 | --DATA-- 12 | return array() 13 | --EXPECT-- 14 | FOO 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tests/even.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "even" test 3 | --TEMPLATE-- 4 | {{ 1 is even ? 'ko' : 'ok' }} 5 | {{ 2 is even ? 'ok' : 'ko' }} 6 | {{ 1 is not even ? 'ok' : 'ko' }} 7 | {{ 2 is not even ? 'ko' : 'ok' }} 8 | --DATA-- 9 | return array() 10 | --EXPECT-- 11 | ok 12 | ok 13 | ok 14 | ok 15 | -------------------------------------------------------------------------------- /addons/authorize.net/libraries/src/Message/DPMPurchaseRequest.php: -------------------------------------------------------------------------------- 1 | ` names into the current 5 | namespace. The tag is documented in detail in the documentation for the 6 | :doc:`import<../tags/import>` tag. 7 | 8 | .. seealso:: :doc:`macro<../tags/macro>`, :doc:`import<../tags/import>` 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/loop_context_local.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "for" tag adds a loop variable to the context locally 3 | --TEMPLATE-- 4 | {% for item in items %} 5 | {% endfor %} 6 | {% if loop is not defined %}WORKS{% endif %} 7 | --DATA-- 8 | return array('items' => array()) 9 | --EXPECT-- 10 | WORKS 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/super_globals.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Super globals as macro arguments 3 | --TEMPLATE-- 4 | {% import _self as macros %} 5 | 6 | {{ macros.foo('foo') }} 7 | 8 | {% macro foo(GET) %} 9 | {{ GET }} 10 | {% endmacro %} 11 | --DATA-- 12 | return array() 13 | --EXPECT-- 14 | foo 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/verbatim/mixed_usage_with_raw.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "verbatim" tag 3 | --TEMPLATE-- 4 | {% verbatim %} 5 | {{ foo }} 6 | {% endraw %} 7 | --DATA-- 8 | return array() 9 | --EXCEPTION-- 10 | Twig_Error_Syntax: Unexpected end of file: Unclosed "verbatim" block in "index.twig" at line 2 11 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/services/json2.json: -------------------------------------------------------------------------------- 1 | { 2 | "services": { 3 | "foo": { 4 | "class": "Guzzle\\Tests\\Service\\Mock\\MockClient", 5 | "extends": "abstract", 6 | "params": { 7 | "baz": "bar" 8 | } 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mikey179/vfsStream", 3 | "type": "library", 4 | "homepage": "http://vfs.bovigo.org/", 5 | "license": "BSD", 6 | "require": { 7 | "php": ">=5.3.0" 8 | }, 9 | "autoload": { 10 | "psr-0": { "org\\bovigo\\vfs": "src/main/php" } 11 | } 12 | } -------------------------------------------------------------------------------- /vendor/twig/twig/.editorconfig: -------------------------------------------------------------------------------- 1 | ; top-most EditorConfig file 2 | root = true 3 | 4 | ; Unix-style newlines 5 | [*] 6 | end_of_line = LF 7 | 8 | [*.php] 9 | indent_style = space 10 | indent_size = 4 11 | 12 | [*.test] 13 | indent_style = space 14 | indent_size = 4 15 | 16 | [*.rst] 17 | indent_style = space 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/negative_numbers.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig manages negative numbers correctly 3 | --TEMPLATE-- 4 | {{ -1 }} 5 | {{ - 1 }} 6 | {{ 5 - 1 }} 7 | {{ 5-1 }} 8 | {{ 5 + -1 }} 9 | {{ 5 + - 1 }} 10 | --DATA-- 11 | return array() 12 | --EXPECT-- 13 | -1 14 | -1 15 | 4 16 | 4 17 | 4 18 | 4 19 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/spaceless/simple.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "spaceless" tag removes whites between HTML tags 3 | --TEMPLATE-- 4 | {% spaceless %} 5 | 6 |
foo
7 | 8 | {% endspaceless %} 9 | --DATA-- 10 | return array() 11 | --EXPECT-- 12 |
foo
13 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/filters/title.rst: -------------------------------------------------------------------------------- 1 | ``title`` 2 | ========= 3 | 4 | The ``title`` filter returns a titlecased version of the value. Words will 5 | start with uppercase letters, all remaining characters are lowercase: 6 | 7 | .. code-block:: jinja 8 | 9 | {{ 'my first car'|title }} 10 | 11 | {# outputs 'My First Car' #} 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/bitwise.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig supports bitwise operations 3 | --TEMPLATE-- 4 | {{ 1 b-and 5 }} 5 | {{ 1 b-or 5 }} 6 | {{ 1 b-xor 5 }} 7 | {{ (1 and 0 b-or 0) is same as(1 and (0 b-or 0)) ? 'ok' : 'ko' }} 8 | --DATA-- 9 | return array() 10 | --EXPECT-- 11 | 1 12 | 5 13 | 4 14 | ok 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/matches.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig supports the "matches" operator 3 | --TEMPLATE-- 4 | {{ 'foo' matches '/o/' ? 'OK' : 'KO' }} 5 | {{ 'foo' matches '/^fo/' ? 'OK' : 'KO' }} 6 | {{ 'foo' matches '/O/i' ? 'OK' : 'KO' }} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | OK 11 | OK 12 | OK 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/join.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "join" filter 3 | --TEMPLATE-- 4 | {{ ["foo", "bar"]|join(', ') }} 5 | {{ foo|join(', ') }} 6 | {{ bar|join(', ') }} 7 | --DATA-- 8 | return array('foo' => new TwigTestFoo(), 'bar' => new ArrayObject(array(3, 4))) 9 | --EXPECT-- 10 | foo, bar 11 | 1, 2 12 | 3, 4 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/length_utf8.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "length" filter 3 | --CONDITION-- 4 | function_exists('mb_get_info') 5 | --TEMPLATE-- 6 | {{ string|length }} 7 | {{ markup|length }} 8 | --DATA-- 9 | return array('string' => 'été', 'markup' => new Twig_Markup('foo', 'UTF-8')) 10 | --EXPECT-- 11 | 3 12 | 3 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/with_for_tag.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "filter" tag applies the filter on "for" tags 3 | --TEMPLATE-- 4 | {% filter upper %} 5 | {% for item in items %} 6 | {{ item }} 7 | {% endfor %} 8 | {% endfilter %} 9 | --DATA-- 10 | return array('items' => array('a', 'b')) 11 | --EXPECT-- 12 | A 13 | B 14 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/dynamic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "extends" tag 3 | --TEMPLATE-- 4 | {% extends foo %} 5 | 6 | {% block content %} 7 | FOO 8 | {% endblock %} 9 | --TEMPLATE(foo.twig)-- 10 | {% block content %}{% endblock %} 11 | --DATA-- 12 | return array('foo' => 'foo.twig') 13 | --EXPECT-- 14 | FOO 15 | -------------------------------------------------------------------------------- /vendor/omnipay/common/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | add('Omnipay', __DIR__); 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/functions/index.rst: -------------------------------------------------------------------------------- 1 | Functions 2 | ========= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | attribute 8 | block 9 | constant 10 | cycle 11 | date 12 | dump 13 | include 14 | max 15 | min 16 | parent 17 | random 18 | range 19 | source 20 | template_from_string 21 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_without_extends.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "parent" tag 3 | --TEMPLATE-- 4 | {% block content %} 5 | {{ parent() }} 6 | {% endblock %} 7 | --EXCEPTION-- 8 | Twig_Error_Syntax: Calling "parent" on a template that does not extend nor "use" another template is forbidden in "index.twig" at line 3 9 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/dkim/dkim.test.pub: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDZeUdi1RKnm9cRYNn6E24xxrRT 3 | ouh3Va8JOEHQ5SB018lvbjwH2lW5mZ/I0kh/dHsTN0zcN0VE62WIbnLreMk/af/4 4 | Pg1i93+c9TmfXmoropsmdLosw0tjq50jGbBqtHZNJYAokP/u3uUuRw8g0V/O4zlQ 5 | 3GlO/PDH7xDQzekl9wIDAQAB 6 | -----END PUBLIC KEY----- 7 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/index.rst: -------------------------------------------------------------------------------- 1 | Twig 2 | ==== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | intro 8 | installation 9 | templates 10 | api 11 | advanced 12 | internals 13 | deprecated 14 | recipes 15 | coding_standards 16 | tags/index 17 | filters/index 18 | functions/index 19 | tests/index 20 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/json_encode.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "json_encode" filter 3 | --TEMPLATE-- 4 | {{ "foo"|json_encode|raw }} 5 | {{ foo|json_encode|raw }} 6 | {{ [foo, "foo"]|json_encode|raw }} 7 | --DATA-- 8 | return array('foo' => new Twig_Markup('foo', 'UTF-8')) 9 | --EXPECT-- 10 | "foo" 11 | "foo" 12 | ["foo","foo"] 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/constant.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "constant" function 3 | --TEMPLATE-- 4 | {{ constant('DATE_W3C') == expect ? 'true' : 'false' }} 5 | {{ constant('ARRAY_AS_PROPS', object) }} 6 | --DATA-- 7 | return array('expect' => DATE_W3C, 'object' => new ArrayObject(array('hi'))); 8 | --EXPECT-- 9 | true 10 | 2 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/macros/with_filters.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | macro with a filter 3 | --TEMPLATE-- 4 | {% import _self as test %} 5 | 6 | {% macro test() %} 7 | {% filter escape %}foo
{% endfilter %} 8 | {% endmacro %} 9 | 10 | {{ test.test() }} 11 | --DATA-- 12 | return array(); 13 | --EXPECT-- 14 | foo<br /> 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/blocks.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "autoescape" tag applies escaping on embedded blocks 3 | --TEMPLATE-- 4 | {% autoescape 'html' %} 5 | {% block foo %} 6 | {{ var }} 7 | {% endblock %} 8 | {% endautoescape %} 9 | --DATA-- 10 | return array('var' => '
') 11 | --EXPECT-- 12 | <br /> 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/expression.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" tag allows expressions for the template to include 3 | --TEMPLATE-- 4 | FOO 5 | {% include foo %} 6 | 7 | BAR 8 | --TEMPLATE(foo.twig)-- 9 | FOOBAR 10 | --DATA-- 11 | return array('foo' => 'foo.twig') 12 | --EXPECT-- 13 | FOO 14 | 15 | FOOBAR 16 | BAR 17 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "extends" tag 3 | --TEMPLATE-- 4 | {% extends "foo.twig" %} 5 | 6 | {% block content %}{{ parent() }}FOO{{ parent() }}{% endblock %} 7 | --TEMPLATE(foo.twig)-- 8 | {% block content %}BAR{% endblock %} 9 | --DATA-- 10 | return array() 11 | --EXPECT-- 12 | BARFOOBAR 13 | -------------------------------------------------------------------------------- /application/modules/sitemap/views/admin/page_xml.php: -------------------------------------------------------------------------------- 1 | 2 | parent_id != -1 && !empty($page->url)):?> 3 | 4 | slug);?> 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/omnipay/common/src/Omnipay/Common/Exception/InvalidRequestException.php: -------------------------------------------------------------------------------- 1 | 'foo.twig') 12 | --EXPECT-- 13 | FOO 14 | 15 | FOOBAR 16 | 17 | BAR 18 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/block/block_unique_name.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "block" tag 3 | --TEMPLATE-- 4 | {% block content %} 5 | {% block content %} 6 | {% endblock %} 7 | {% endblock %} 8 | --DATA-- 9 | return array() 10 | --EXCEPTION-- 11 | Twig_Error_Syntax: The block 'content' has already been defined line 2 in "index.twig" at line 3 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/with_variables.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" tag accept variables 3 | --TEMPLATE-- 4 | {% include "foo.twig" with {'foo': 'bar'} %} 5 | {% include "foo.twig" with vars %} 6 | --TEMPLATE(foo.twig)-- 7 | {{ foo }} 8 | --DATA-- 9 | return array('vars' => array('foo' => 'bar')) 10 | --EXPECT-- 11 | bar 12 | bar 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_without_extends_but_traits.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "parent" tag 3 | --TEMPLATE-- 4 | {% use 'foo.twig' %} 5 | 6 | {% block content %} 7 | {{ parent() }} 8 | {% endblock %} 9 | --TEMPLATE(foo.twig)-- 10 | {% block content %}BAR{% endblock %} 11 | --DATA-- 12 | return array() 13 | --EXPECT-- 14 | BAR 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/sandbox/not_valid1.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | sandbox tag 3 | --TEMPLATE-- 4 | {%- sandbox %} 5 | {%- include "foo.twig" %} 6 | a 7 | {%- endsandbox %} 8 | --TEMPLATE(foo.twig)-- 9 | foo 10 | --EXCEPTION-- 11 | Twig_Error_Syntax: Only "include" tags are allowed within a "sandbox" section in "index.twig" at line 4 12 | -------------------------------------------------------------------------------- /vendor/omnipay/common/src/Omnipay/Common/Exception/InvalidCreditCardException.php: -------------------------------------------------------------------------------- 1 | 'bar', 'items' => array('foo' => 'bar', 'bar' => 'foo')) 10 | --EXPECT-- 11 | bar 12 | bar 13 | foo 14 | bar 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/with_variables.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" function accept variables 3 | --TEMPLATE-- 4 | {{ include("foo.twig", {'foo': 'bar'}) }} 5 | {{- include("foo.twig", vars) }} 6 | --TEMPLATE(foo.twig)-- 7 | {{ foo }} 8 | --DATA-- 9 | return array('vars' => array('foo' => 'bar')) 10 | --EXPECT-- 11 | bar 12 | bar 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/loop_not_defined_cond.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "for" tag 3 | --TEMPLATE-- 4 | {% for i, item in items if loop.last > 0 %} 5 | {% endfor %} 6 | --DATA-- 7 | return array('items' => array('a', 'b')) 8 | --EXCEPTION-- 9 | Twig_Error_Syntax: The "loop" variable cannot be used in a looping condition in "index.twig" at line 2 10 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/from.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | global variables 3 | --TEMPLATE-- 4 | {% include "included.twig" %} 5 | {% from "included.twig" import foobar %} 6 | {{ foobar() }} 7 | --TEMPLATE(included.twig)-- 8 | {% macro foobar() %} 9 | called foobar 10 | {% endmacro %} 11 | --DATA-- 12 | return array(); 13 | --EXPECT-- 14 | called foobar 15 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/_templates/nav_links.html: -------------------------------------------------------------------------------- 1 |
  • Docs
  • 2 |
  • API
  • 3 |
  • GitHub
  • 4 |
  • Forum
  • 5 |
  • IRC
  • 6 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php: -------------------------------------------------------------------------------- 1 | 12 | {% endmacro %} 13 | 14 | {{ macros.foo(macros.bar()) }} 15 | --DATA-- 16 | return array(); 17 | --EXPECT-- 18 |
    19 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/global.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "macro" tag 3 | --TEMPLATE-- 4 | {% from 'forms.twig' import foo %} 5 | 6 | {{ foo('foo') }} 7 | {{ foo() }} 8 | --TEMPLATE(forms.twig)-- 9 | {% macro foo(name) %}{{ name|default('foo') }}{{ global }}{% endmacro %} 10 | --DATA-- 11 | return array() 12 | --EXPECT-- 13 | fooglobal 14 | fooglobal 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/set/basic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "set" tag 3 | --TEMPLATE-- 4 | {% set foo = 'foo' %} 5 | {% set bar = 'foo
    ' %} 6 | 7 | {{ foo }} 8 | {{ bar }} 9 | 10 | {% set foo, bar = 'foo', 'bar' %} 11 | 12 | {{ foo }}{{ bar }} 13 | --DATA-- 14 | return array() 15 | --EXPECT-- 16 | foo 17 | foo<br /> 18 | 19 | 20 | foobar 21 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/plugins/plugins-list.rst.inc: -------------------------------------------------------------------------------- 1 | * :doc:`/plugins/async-plugin` 2 | * :doc:`/plugins/backoff-plugin` 3 | * :doc:`/plugins/cache-plugin` 4 | * :doc:`/plugins/cookie-plugin` 5 | * :doc:`/plugins/history-plugin` 6 | * :doc:`/plugins/log-plugin` 7 | * :doc:`/plugins/md5-validator-plugin` 8 | * :doc:`/plugins/mock-plugin` 9 | * :doc:`/plugins/oauth-plugin` 10 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/literals.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig supports literals 3 | --TEMPLATE-- 4 | 1 {{ true }} 5 | 2 {{ TRUE }} 6 | 3 {{ false }} 7 | 4 {{ FALSE }} 8 | 5 {{ none }} 9 | 6 {{ NONE }} 10 | 7 {{ null }} 11 | 8 {{ NULL }} 12 | --DATA-- 13 | return array() 14 | --EXPECT-- 15 | 1 1 16 | 2 1 17 | 3 18 | 4 19 | 5 20 | 6 21 | 7 22 | 8 23 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/last.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "last" filter 3 | --TEMPLATE-- 4 | {{ [1, 2, 3, 4]|last }} 5 | {{ {a: 1, b: 2, c: 3, d: 4}|last }} 6 | {{ '1234'|last }} 7 | {{ arr|last }} 8 | {{ 'Ä€é'|last }} 9 | {{ ''|last }} 10 | --DATA-- 11 | return array('arr' => new ArrayObject(array(1, 2, 3, 4))) 12 | --EXPECT-- 13 | 4 14 | 4 15 | 4 16 | 4 17 | é 18 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/ignore_missing.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" tag 3 | --TEMPLATE-- 4 | {% include ["foo.twig", "bar.twig"] ignore missing %} 5 | {% include "foo.twig" ignore missing %} 6 | {% include "foo.twig" ignore missing with {} %} 7 | {% include "foo.twig" ignore missing with {} only %} 8 | --DATA-- 9 | return array() 10 | --EXPECT-- 11 | -------------------------------------------------------------------------------- /addons/stripe-3.x/stripe/libraries/lib/Balance.php: -------------------------------------------------------------------------------- 1 | helper('form'); 12 | \CI::load()->library('breadcrumbs'); 13 | 14 | $this->views = View::getInstance(); 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /vendor/twig/twig/doc/filters/sort.rst: -------------------------------------------------------------------------------- 1 | ``sort`` 2 | ======== 3 | 4 | The ``sort`` filter sorts an array: 5 | 6 | .. code-block:: jinja 7 | 8 | {% for user in users|sort %} 9 | ... 10 | {% endfor %} 11 | 12 | .. note:: 13 | 14 | Internally, Twig uses the PHP `asort`_ function to maintain index 15 | association. 16 | 17 | .. _`asort`: http://php.net/asort 18 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/convert_encoding.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "convert_encoding" filter 3 | --CONDITION-- 4 | function_exists('iconv') || function_exists('mb_convert_encoding') 5 | --TEMPLATE-- 6 | {{ "愛していますか?"|convert_encoding('ISO-2022-JP', 'UTF-8')|convert_encoding('UTF-8', 'ISO-2022-JP') }} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | 愛していますか? 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/length.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "length" filter 3 | --TEMPLATE-- 4 | {{ array|length }} 5 | {{ string|length }} 6 | {{ number|length }} 7 | {{ markup|length }} 8 | --DATA-- 9 | return array('array' => array(1, 4), 'string' => 'foo', 'number' => 1000, 'markup' => new Twig_Markup('foo', 'UTF-8')) 10 | --EXPECT-- 11 | 2 12 | 3 13 | 4 14 | 3 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/nested.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "filter" tags can be nested at will 3 | --TEMPLATE-- 4 | {% filter lower|title %} 5 | {{ var }} 6 | {% filter upper %} 7 | {{ var }} 8 | {% endfilter %} 9 | {{ var }} 10 | {% endfilter %} 11 | --DATA-- 12 | return array('var' => 'var') 13 | --EXPECT-- 14 | Var 15 | Var 16 | Var 17 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_change.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "extends" tag 3 | --TEMPLATE-- 4 | {% extends foo ? 'foo.twig' : 'bar.twig' %} 5 | --TEMPLATE(foo.twig)-- 6 | FOO 7 | --TEMPLATE(bar.twig)-- 8 | BAR 9 | --DATA-- 10 | return array('foo' => true) 11 | --EXPECT-- 12 | FOO 13 | --DATA-- 14 | return array('foo' => false) 15 | --EXPECT-- 16 | BAR 17 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/bootstrap.php: -------------------------------------------------------------------------------- 1 | new ArrayObject(array(1, 2, 3, 4))) 12 | --EXPECT-- 13 | 1 14 | 1 15 | 1 16 | 1 17 | Ä 18 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/loop_not_defined.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "for" tag 3 | --TEMPLATE-- 4 | {% for i, item in items if i > 0 %} 5 | {{ loop.last }} 6 | {% endfor %} 7 | --DATA-- 8 | return array('items' => array('a', 'b')) 9 | --EXCEPTION-- 10 | Twig_Error_Syntax: The "loop.last" variable is not defined when looping with a condition in "index.twig" at line 3 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/endmacro_name.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "macro" tag supports name for endmacro 3 | --TEMPLATE-- 4 | {% import _self as macros %} 5 | 6 | {{ macros.foo() }} 7 | {{ macros.bar() }} 8 | 9 | {% macro foo() %}foo{% endmacro %} 10 | {% macro bar() %}bar{% endmacro bar %} 11 | --DATA-- 12 | return array() 13 | --EXPECT-- 14 | foo 15 | bar 16 | 17 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/filters/striptags.rst: -------------------------------------------------------------------------------- 1 | ``striptags`` 2 | ============= 3 | 4 | The ``striptags`` filter strips SGML/XML tags and replace adjacent whitespace 5 | by one space: 6 | 7 | .. code-block:: jinja 8 | 9 | {{ some_html|striptags }} 10 | 11 | .. note:: 12 | 13 | Internally, Twig uses the PHP `strip_tags`_ function. 14 | 15 | .. _`strip_tags`: http://php.net/strip_tags 16 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/condition.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "for" tag takes a condition 3 | --TEMPLATE-- 4 | {% for i in 1..5 if i is odd -%} 5 | {{ loop.index }}.{{ i }}{{ foo.bar }} 6 | {% endfor %} 7 | --DATA-- 8 | return array('foo' => array('bar' => 'X')) 9 | --CONFIG-- 10 | return array('strict_variables' => false) 11 | --EXPECT-- 12 | 1.1X 13 | 2.3X 14 | 3.5X 15 | -------------------------------------------------------------------------------- /assets/js/pickadate/translations/zh_CN.js: -------------------------------------------------------------------------------- 1 | jQuery.extend(jQuery.fn.pickadate.defaults,{monthsFull:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["一","二","三","四","五","六","七","八","九","十","十一","十二"],weekdaysFull:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],weekdaysShort:["日","一","二","三","四","五","六"],today:"今日",clear:"删",firstDay:1,format:"yyyy 年 mm 月 dd 日",formatSubmit:"yyyy/mm/dd"}); -------------------------------------------------------------------------------- /assets/js/pickadate/translations/zh_TW.js: -------------------------------------------------------------------------------- 1 | jQuery.extend(jQuery.fn.pickadate.defaults,{monthsFull:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["一","二","三","四","五","六","七","八","九","十","十一","十二"],weekdaysFull:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],weekdaysShort:["日","一","二","三","四","五","六"],today:"今天",clear:"清除",firstDay:1,format:"yyyy 年 mm 月 dd 日",formatSubmit:"yyyy/mm/dd"}); -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "description" : "GoCart", 3 | "name" : "gocart/GoCart", 4 | "require": { 5 | "php": ">=5.4", 6 | "altorouter/altorouter": "1.1.0", 7 | "swiftmailer/swiftmailer": "@stable", 8 | "twig/twig": "~1.0", 9 | "omnipay/common": "^2.3" 10 | }, 11 | "require-dev": { 12 | "mikey179/vfsStream": "1.1.*" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/sandbox.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" tag sandboxed 3 | --TEMPLATE-- 4 | {{ include("foo.twig", sandboxed = true) }} 5 | --TEMPLATE(foo.twig)-- 6 | 7 | 8 | {{ foo|e }} 9 | {{ foo|e }} 10 | --DATA-- 11 | return array() 12 | --EXCEPTION-- 13 | Twig_Sandbox_SecurityNotAllowedFilterError: Filter "e" is not allowed in "foo.twig" at line 4. 14 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/operators_as_variables.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig allows to use named operators as variable names 3 | --TEMPLATE-- 4 | {% for match in matches %} 5 | {{- match }} 6 | {% endfor %} 7 | {{ in }} 8 | {{ is }} 9 | --DATA-- 10 | return array('matches' => array(1, 2, 3), 'in' => 'in', 'is' => 'is') 11 | --EXPECT-- 12 | 1 13 | 2 14 | 3 15 | in 16 | is 17 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/nested_blocks_parent_only.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "block" tag 3 | --TEMPLATE-- 4 | {% block content %} 5 | CONTENT 6 | {%- block subcontent -%} 7 | SUBCONTENT 8 | {%- endblock -%} 9 | ENDCONTENT 10 | {% endblock %} 11 | --TEMPLATE(foo.twig)-- 12 | --DATA-- 13 | return array() 14 | --EXPECT-- 15 | CONTENTSUBCONTENTENDCONTENT 16 | -------------------------------------------------------------------------------- /application/modules/customers/views/admin/customer_subscriber_list.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/symfony/http-foundation'), 10 | 'Symfony\\Component\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher'), 11 | ); 12 | -------------------------------------------------------------------------------- /addons/paypal_pro/libraries/src/Message/ProPurchaseRequest.php: -------------------------------------------------------------------------------- 1 | log; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/tests/divisibleby.rst: -------------------------------------------------------------------------------- 1 | ``divisible by`` 2 | ================ 3 | 4 | .. versionadded:: 1.14.2 5 | The ``divisible by`` test was added in Twig 1.14.2 as an alias for 6 | ``divisibleby``. 7 | 8 | ``divisible by`` checks if a variable is divisible by a number: 9 | 10 | .. code-block:: jinja 11 | 12 | {% if loop.index is divisible by(3) %} 13 | ... 14 | {% endif %} 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/comparison.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig supports comparison operators (==, !=, <, >, >=, <=) 3 | --TEMPLATE-- 4 | {{ 1 > 2 }}/{{ 1 > 1 }}/{{ 1 >= 2 }}/{{ 1 >= 1 }} 5 | {{ 1 < 2 }}/{{ 1 < 1 }}/{{ 1 <= 2 }}/{{ 1 <= 1 }} 6 | {{ 1 == 1 }}/{{ 1 == 2 }} 7 | {{ 1 != 1 }}/{{ 1 != 2 }} 8 | --DATA-- 9 | return array() 10 | --EXPECT-- 11 | ///1 12 | 1//1/1 13 | 1/ 14 | /1 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/trim.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "trim" filter 3 | --TEMPLATE-- 4 | {{ " I like Twig. "|trim }} 5 | {{ text|trim }} 6 | {{ " foo/"|trim("/") }} 7 | --DATA-- 8 | return array('text' => " If you have some HTML it will be escaped. ") 9 | --EXPECT-- 10 | I like Twig. 11 | If you have some <strong>HTML</strong> it will be escaped. 12 | foo 13 | -------------------------------------------------------------------------------- /addons/twocheckout_api/libraries/Twocheckout/Api/TwocheckoutError.php: -------------------------------------------------------------------------------- 1 | code}]: {$this->message}\n"; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /addons/twocheckout_api/libraries/Twocheckout/TwocheckoutMessage.php: -------------------------------------------------------------------------------- 1 | assertSame('Oops', $exception->getMessage()); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php: -------------------------------------------------------------------------------- 1 | $twig->loadTemplate('foo.twig')) 13 | --EXPECT-- 14 | BARFOO 15 | -------------------------------------------------------------------------------- /addons/flat_rate/manifest.php: -------------------------------------------------------------------------------- 1 | 'Flat Rate', 'key'=>'flat-rate', 'class'=>'FlatRate']; -------------------------------------------------------------------------------- /application/modules/coupons/manifest.php: -------------------------------------------------------------------------------- 1 | getExtension('core')->setDateFormat('Y-m-d', '%d days %h hours'); 9 | return array( 10 | 'date1' => mktime(13, 45, 0, 10, 4, 2010), 11 | ) 12 | --EXPECT-- 13 | 2010-10-04 14 | 04/10/2010 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/context.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "for" tag keeps the context safe 3 | --TEMPLATE-- 4 | {% for item in items %} 5 | {% for item in items %} 6 | * {{ item }} 7 | {% endfor %} 8 | * {{ item }} 9 | {% endfor %} 10 | --DATA-- 11 | return array('items' => array('a', 'b')) 12 | --EXPECT-- 13 | * a 14 | * b 15 | * a 16 | * a 17 | * b 18 | * b 19 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/phpdoc.dist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | vfsStream API Doc 4 | 5 | docs/api 6 | org\bovigo\vfs 7 | 8 | 9 | docs/api 10 | 11 | 12 | src/main/php 13 | 14 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleMimeEntityTest.php: -------------------------------------------------------------------------------- 1 | 'Table Rate', 'key'=>'table-rate', 'class'=>'TableRate']; -------------------------------------------------------------------------------- /vendor/omnipay/common/tests/Omnipay/Common/Exception/BadMethodCallExceptionTest.php: -------------------------------------------------------------------------------- 1 | assertSame('Oops', $exception->getMessage()); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php: -------------------------------------------------------------------------------- 1 | 6 | {% endset %} 7 | 8 | {{ foo|e('html') -}} 9 | {{ foo|e('js') }} 10 | {% autoescape true %} 11 | {{ foo }} 12 | {% endautoescape %} 13 | --DATA-- 14 | return array() 15 | --EXPECT-- 16 | foo<br /> 17 | \x20\x20\x20\x20foo\x3Cbr\x20\x2F\x3E\x0A 18 | foo
    19 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/dump.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "dump" function 3 | --CONDITION-- 4 | !extension_loaded('xdebug') 5 | --TEMPLATE-- 6 | {{ dump('foo') }} 7 | {{ dump('foo', 'bar') }} 8 | --DATA-- 9 | return array('foo' => 'foo', 'bar' => 'bar') 10 | --CONFIG-- 11 | return array('debug' => true, 'autoescape' => false); 12 | --EXPECT-- 13 | string(3) "foo" 14 | 15 | string(3) "foo" 16 | string(3) "bar" 17 | -------------------------------------------------------------------------------- /application/views/admin/footer.php: -------------------------------------------------------------------------------- 1 |
    2 |
    Driven By GoCartGoCart
    3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/omnipay/common/tests/Omnipay/Common/Exception/InvalidRequestExceptionTest.php: -------------------------------------------------------------------------------- 1 | assertSame('Oops', $exception->getMessage()); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/postfix.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Twig parses postfix expressions 3 | --TEMPLATE-- 4 | {% import _self as macros %} 5 | 6 | {% macro foo() %}foo{% endmacro %} 7 | 8 | {{ 'a' }} 9 | {{ 'a'|upper }} 10 | {{ ('a')|upper }} 11 | {{ -1|upper }} 12 | {{ macros.foo() }} 13 | {{ (macros).foo() }} 14 | --DATA-- 15 | return array(); 16 | --EXPECT-- 17 | a 18 | A 19 | A 20 | -1 21 | foo 22 | foo 23 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/cycle.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "cycle" function 3 | --TEMPLATE-- 4 | {% for i in 0..6 %} 5 | {{ cycle(array1, i) }}-{{ cycle(array2, i) }} 6 | {% endfor %} 7 | --DATA-- 8 | return array('array1' => array('odd', 'even'), 'array2' => array('apple', 'orange', 'citrus')) 9 | --EXPECT-- 10 | odd-apple 11 | even-orange 12 | odd-citrus 13 | even-apple 14 | odd-orange 15 | even-citrus 16 | odd-apple 17 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/inner_variables.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "for" tag does not reset inner variables 3 | --TEMPLATE-- 4 | {% for i in 1..2 %} 5 | {% for j in 0..2 %} 6 | {{k}}{% set k = k+1 %} {{ loop.parent.loop.index }} 7 | {% endfor %} 8 | {% endfor %} 9 | --DATA-- 10 | return array('k' => 0) 11 | --EXPECT-- 12 | 0 1 13 | 1 1 14 | 2 1 15 | 3 2 16 | 4 2 17 | 5 2 18 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/if/expression.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "if" takes an expression as a test 3 | --TEMPLATE-- 4 | {% if a < 2 %} 5 | A1 6 | {% elseif a > 10 %} 7 | A2 8 | {% else %} 9 | A3 10 | {% endif %} 11 | --DATA-- 12 | return array('a' => 1) 13 | --EXPECT-- 14 | A1 15 | --DATA-- 16 | return array('a' => 12) 17 | --EXPECT-- 18 | A2 19 | --DATA-- 20 | return array('a' => 7) 21 | --EXPECT-- 22 | A3 23 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/sandbox/not_valid2.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | sandbox tag 3 | --TEMPLATE-- 4 | {%- sandbox %} 5 | {%- include "foo.twig" %} 6 | 7 | {% if 1 %} 8 | {%- include "foo.twig" %} 9 | {% endif %} 10 | {%- endsandbox %} 11 | --TEMPLATE(foo.twig)-- 12 | foo 13 | --EXCEPTION-- 14 | Twig_Error_Syntax: Only "include" tags are allowed within a "sandbox" section in "index.twig" at line 5 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/multiline_function_with_unknown_argument.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Exception for multiline function with unknown argument 3 | --TEMPLATE-- 4 | {{ include('foo', 5 | with_context=True, 6 | invalid=False 7 | ) }} 8 | --EXCEPTION-- 9 | Twig_Error_Syntax: Unknown argument "invalid" for function "include(template, variables, with_context, ignore_missing, sandboxed)" in "index.twig" at line 4. 10 | -------------------------------------------------------------------------------- /addons/paypal_pro/libraries/tests/Mock/ExpressCompletePurchaseFailure.txt: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Date: Wed, 20 Feb 2013 13:55:50 GMT 3 | Server: Apache 4 | Content-Length: 214 5 | Connection: close 6 | Content-Type: text/plain; charset=utf-8 7 | 8 | TIMESTAMP=2013%2d02%2d20T13%3a55%3a50Z&CORRELATIONID=73310039452e7&ACK=Failure&VERSION=85%2e0&BUILD=5060305&L_ERRORCODE0=10410&L_SHORTMESSAGE0=Invalid%20token&L_LONGMESSAGE0=Invalid%20token%2e&L_SEVERITYCODE0=Error -------------------------------------------------------------------------------- /vendor/omnipay/common/tests/Omnipay/Common/Exception/InvalidCreditCardExceptionTest.php: -------------------------------------------------------------------------------- 1 | assertSame('Oops', $exception->getMessage()); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/nested_else.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "for" tag can use an "else" clause 3 | --TEMPLATE-- 4 | {% for item in items %} 5 | {% for item in items1 %} 6 | * {{ item }} 7 | {% else %} 8 | no {{ item }} 9 | {% endfor %} 10 | {% else %} 11 | no item1 12 | {% endfor %} 13 | --DATA-- 14 | return array('items' => array('a', 'b'), 'items1' => array()) 15 | --EXPECT-- 16 | no a 17 | no b 18 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/if/basic.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "if" creates a condition 3 | --TEMPLATE-- 4 | {% if a is defined %} 5 | {{ a }} 6 | {% elseif b is defined %} 7 | {{ b }} 8 | {% else %} 9 | NOTHING 10 | {% endif %} 11 | --DATA-- 12 | return array('a' => 'a') 13 | --EXPECT-- 14 | a 15 | --DATA-- 16 | return array('b' => 'b') 17 | --EXPECT-- 18 | b 19 | --DATA-- 20 | return array() 21 | --EXPECT-- 22 | NOTHING 23 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/number_format.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "number_format" filter 3 | --TEMPLATE-- 4 | {{ 20|number_format }} 5 | {{ 20.25|number_format }} 6 | {{ 20.25|number_format(2) }} 7 | {{ 20.25|number_format(2, ',') }} 8 | {{ 1020.25|number_format(2, ',') }} 9 | {{ 1020.25|number_format(2, ',', '.') }} 10 | --DATA-- 11 | return array(); 12 | --EXPECT-- 13 | 20 14 | 20 15 | 20.25 16 | 20,25 17 | 1,020,25 18 | 1.020,25 19 | -------------------------------------------------------------------------------- /vendor/omnipay/common/tests/Omnipay/Common/PaymentMethodTest.php: -------------------------------------------------------------------------------- 1 | assertSame('99', $method->getId()); 14 | $this->assertSame('Acme Corp', $method->getName()); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/twig/twig/lib/Twig/Node/Body.php: -------------------------------------------------------------------------------- 1 | 16 | */ 17 | class Twig_Node_Body extends Twig_Node 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/ignore_missing.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "include" function 3 | --TEMPLATE-- 4 | {{ include(["foo.twig", "bar.twig"], ignore_missing = true) }} 5 | {{ include("foo.twig", ignore_missing = true) }} 6 | {{ include("foo.twig", ignore_missing = true, variables = {}) }} 7 | {{ include("foo.twig", ignore_missing = true, variables = {}, with_context = true) }} 8 | --DATA-- 9 | return array() 10 | --EXPECT-- 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/error_line.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "embed" tag 3 | --TEMPLATE(index.twig)-- 4 | FOO 5 | {% embed "foo.twig" %} 6 | {% block c1 %} 7 | {{ nothing }} 8 | {% endblock %} 9 | {% endembed %} 10 | BAR 11 | --TEMPLATE(foo.twig)-- 12 | {% block c1 %}{% endblock %} 13 | --DATA-- 14 | return array() 15 | --EXCEPTION-- 16 | Twig_Error_Runtime: Variable "nothing" does not exist in "index.twig" at line 5 17 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/multiple.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "extends" tag 3 | --TEMPLATE-- 4 | {% extends "layout.twig" %}{% block content %}{{ parent() }}index {% endblock %} 5 | --TEMPLATE(layout.twig)-- 6 | {% extends "base.twig" %}{% block content %}{{ parent() }}layout {% endblock %} 7 | --TEMPLATE(base.twig)-- 8 | {% block content %}base {% endblock %} 9 | --DATA-- 10 | return array() 11 | --EXPECT-- 12 | base layout index 13 | -------------------------------------------------------------------------------- /vendor/twig/twig/doc/functions/block.rst: -------------------------------------------------------------------------------- 1 | ``block`` 2 | ========= 3 | 4 | When a template uses inheritance and if you want to print a block multiple 5 | times, use the ``block`` function: 6 | 7 | .. code-block:: jinja 8 | 9 | {% block title %}{% endblock %} 10 | 11 |

    {{ block('title') }}

    12 | 13 | {% block body %}{% endblock %} 14 | 15 | .. seealso:: :doc:`extends<../tags/extends>`, :doc:`parent<../functions/parent>` 16 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/multiline_array_with_undefined_variable_again.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Exception for multiline array with undefined variable 3 | --TEMPLATE-- 4 | {% set foo = { 5 | foo: 'foo', 6 | bar: 'bar', 7 | 8 | 9 | foobar: foobar, 10 | 11 | 12 | 13 | foo2: foo2, 14 | } %} 15 | --DATA-- 16 | return array() 17 | --EXCEPTION-- 18 | Twig_Error_Runtime: Variable "foobar" does not exist in "index.twig" at line 7 19 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/functions/date_namedargs.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "date" function 3 | --TEMPLATE-- 4 | {{ date(date, "America/New_York")|date('d/m/Y H:i:s P', false) }} 5 | {{ date(timezone="America/New_York", date=date)|date('d/m/Y H:i:s P', false) }} 6 | --DATA-- 7 | date_default_timezone_set('UTC'); 8 | return array('date' => mktime(13, 45, 0, 10, 4, 2010)) 9 | --EXPECT-- 10 | 04/10/2010 09:45:00 -04:00 11 | 04/10/2010 09:45:00 -04:00 12 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/nested_inheritance.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "extends" tag 3 | --TEMPLATE-- 4 | {% extends "layout.twig" %} 5 | {% block inside %}INSIDE{% endblock inside %} 6 | --TEMPLATE(layout.twig)-- 7 | {% extends "base.twig" %} 8 | {% block body %} 9 | {% block inside '' %} 10 | {% endblock body %} 11 | --TEMPLATE(base.twig)-- 12 | {% block body '' %} 13 | --DATA-- 14 | return array() 15 | --EXPECT-- 16 | INSIDE 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | 3 | application/cache/* 4 | !application/cache/index.html 5 | !application/cache/.htaccess 6 | 7 | application/logs/* 8 | !application/logs/index.html 9 | !application/logs/.htaccess 10 | 11 | application/config/database.php 12 | application/config/manifest.php 13 | 14 | # OS generated files # 15 | ###################### 16 | .DS_Store 17 | .DS_Store? 18 | ._* 19 | .Spotlight-V100 20 | .Trashes 21 | Icon? 22 | ehthumbs.db 23 | Thumbs.db 24 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/unclosed_tag.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Exception for an unclosed tag 3 | --TEMPLATE-- 4 | {% block foo %} 5 | {% if foo %} 6 | 7 | 8 | 9 | 10 | {% for i in fo %} 11 | 12 | 13 | 14 | {% endfor %} 15 | 16 | 17 | 18 | {% endblock %} 19 | --EXCEPTION-- 20 | Twig_Error_Syntax: Unexpected tag name "endblock" (expecting closing tag for the "if" tag defined near line 4) in "index.twig" at line 16 21 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/filters/date_modify.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "date_modify" filter 3 | --TEMPLATE-- 4 | {{ date1|date_modify('-1day')|date('Y-m-d H:i:s') }} 5 | {{ date2|date_modify('-1day')|date('Y-m-d H:i:s') }} 6 | --DATA-- 7 | date_default_timezone_set('UTC'); 8 | return array( 9 | 'date1' => '2010-10-04 13:45', 10 | 'date2' => new DateTime('2010-10-04 13:45'), 11 | ) 12 | --EXPECT-- 13 | 2010-10-03 13:45:00 14 | 2010-10-03 13:45:00 15 | --------------------------------------------------------------------------------