├── .dockerignore ├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── merge_request_templates │ └── default.md ├── Dockerfile ├── Gruntfile.js ├── LICENSE ├── apps ├── frontend │ ├── config │ │ ├── app.yml │ │ ├── cache.yml │ │ ├── factories.yml │ │ ├── filters.yml │ │ ├── frontendConfiguration.class.php │ │ ├── routing.yml │ │ ├── security.yml │ │ ├── settings.yml │ │ └── view.yml │ ├── lib │ │ ├── form │ │ │ ├── CampaignAddMemberForm.class.php │ │ │ ├── CampaignBillingForm.class.php │ │ │ ├── CampaignPublicEnableForm.class.php │ │ │ ├── CampaignSwitchesForm.class.php │ │ │ ├── ContactTicketForm.class.php │ │ │ ├── ContactUploadStep1Form.class.php │ │ │ ├── ContactUploadStep2Form.class.php │ │ │ ├── EditCampaignAddressForm.class.php │ │ │ ├── EditCampaignNameForm.class.php │ │ │ ├── EditCampaignPrivacyForm.class.php │ │ │ ├── EditPetitionCounterForm.class.php │ │ │ ├── EditPetitionFollowForm.class.php │ │ │ ├── EditPetitionForm.class.php │ │ │ ├── EditPetitionTargetForm.class.php │ │ │ ├── EditWidgetForm.class.php │ │ │ ├── FilterContactForm.class.php │ │ │ ├── FilterPetitionForm.class.php │ │ │ ├── FilterUserForm.class.php │ │ │ ├── FilterWidgetForm.class.php │ │ │ ├── NewCampaignNameForm.class.php │ │ │ ├── NewPetitionForm.class.php │ │ │ ├── NewWidgetLanuageForm.class.php │ │ │ ├── PetitionFieldsForm.class.php │ │ │ ├── ProfileForm.class.php │ │ │ ├── RegisterForm.class.php │ │ │ ├── ResignDataOfficerForm.class.php │ │ │ ├── SelectCampaignForm.class.php │ │ │ ├── SigningsDownloadForm.class.php │ │ │ ├── StoreForm.class.php │ │ │ ├── TargetListCopyForm.class.php │ │ │ ├── TargetListCopyGlobalForm.class.php │ │ │ ├── TestmailForm.class.php │ │ │ ├── TranslationForm.class.php │ │ │ ├── UnblockForm.class.php │ │ │ ├── WidgetsCopyFollowForm.class.php │ │ │ └── policatFilterForm.class.php │ │ ├── helper │ │ │ └── TemplateHelper.php │ │ ├── myUser.class.php │ │ ├── storage │ │ │ └── policatSessionStorage.class.php │ │ ├── trait │ │ │ └── FormTargetSelectorPreselect.trait.php │ │ └── widget │ │ │ ├── WidgetBootstrapRadio.class.php │ │ │ ├── WidgetChoiceRefresh.class.php │ │ │ └── WidgetFormSelectBootstrapRadio.class.php │ ├── modules │ │ ├── account │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ ├── cache.yml │ │ │ │ ├── security.yml │ │ │ │ └── view.yml │ │ │ └── templates │ │ │ │ ├── _ajaxSignin.php │ │ │ │ ├── _captcha.php │ │ │ │ ├── _forgotten.php │ │ │ │ ├── _membership.php │ │ │ │ ├── _register_thankyou.php │ │ │ │ ├── _unblock.php │ │ │ │ ├── invitationSuccess.php │ │ │ │ ├── profileSuccess.php │ │ │ │ ├── registerSuccess.php │ │ │ │ ├── registerValidationSuccess.php │ │ │ │ └── resetSuccess.php │ │ ├── admin_campaign │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ ├── generator.yml │ │ │ │ └── security.yml │ │ │ └── lib │ │ │ │ ├── admin_campaignGeneratorConfiguration.class.php │ │ │ │ └── admin_campaignGeneratorHelper.class.php │ │ ├── admin_petition │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ ├── generator.yml │ │ │ │ └── security.yml │ │ │ └── lib │ │ │ │ ├── admin_petitionGeneratorConfiguration.class.php │ │ │ │ └── admin_petitionGeneratorHelper.class.php │ │ ├── admin_petition_text │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ ├── generator.yml │ │ │ │ └── security.yml │ │ │ ├── lib │ │ │ │ ├── admin_petition_textGeneratorConfiguration.class.php │ │ │ │ └── admin_petition_textGeneratorHelper.class.php │ │ │ └── templates │ │ │ │ └── _text.php │ │ ├── api_token │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ └── templates │ │ │ │ ├── _data.php │ │ │ │ ├── _form.php │ │ │ │ ├── editSuccess.php │ │ │ │ ├── indexSuccess.php │ │ │ │ └── newSuccess.php │ │ ├── bill │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── _bill.php │ │ │ │ ├── _billpopup.php │ │ │ │ ├── _billpopupuser.php │ │ │ │ └── _new.php │ │ ├── bounce │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ └── templates │ │ │ │ ├── _delete.php │ │ │ │ ├── _list.php │ │ │ │ └── listSuccess.php │ │ ├── country │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── editSuccess.php │ │ │ │ └── indexSuccess.php │ │ ├── d_action │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ ├── security.yml │ │ │ │ └── view.yml │ │ │ └── templates │ │ │ │ ├── _delete.php │ │ │ │ ├── _editFollow.php │ │ │ │ ├── _form.php │ │ │ │ ├── _list.php │ │ │ │ ├── _members.php │ │ │ │ ├── _notice.php │ │ │ │ ├── _spf.php │ │ │ │ ├── _tabs.php │ │ │ │ ├── dataSuccess.php │ │ │ │ ├── editSuccess.php │ │ │ │ ├── indexSuccess.php │ │ │ │ ├── newSuccess.php │ │ │ │ ├── overviewSuccess.php │ │ │ │ ├── todoSuccess.php │ │ │ │ ├── translationEditSuccess.php │ │ │ │ └── translationsSuccess.php │ │ ├── d_campaign │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ ├── security.yml │ │ │ │ └── view.yml │ │ │ └── templates │ │ │ │ ├── _delete.php │ │ │ │ ├── _editAddress.php │ │ │ │ ├── _editName.php │ │ │ │ ├── _editPrivacy.php │ │ │ │ ├── _editPublic.php │ │ │ │ ├── _editSwitches.php │ │ │ │ ├── _hardDelete.php │ │ │ │ ├── _leave.php │ │ │ │ ├── _list.php │ │ │ │ ├── _members.php │ │ │ │ ├── _myCampaigns.php │ │ │ │ ├── _resignDataOfficer.php │ │ │ │ ├── _tabs.php │ │ │ │ ├── _undelete.php │ │ │ │ ├── dataSuccess.php │ │ │ │ ├── editSuccess.php │ │ │ │ ├── listSuccess.php │ │ │ │ ├── privacyLangSuccess.php │ │ │ │ └── privacyListSuccess.php │ │ ├── d_home │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ ├── cache.yml │ │ │ │ ├── security.yml │ │ │ │ └── view.yml │ │ │ └── templates │ │ │ │ ├── _footer.php │ │ │ │ ├── _footerB4.php │ │ │ │ ├── _menu.php │ │ │ │ ├── _menuB4.php │ │ │ │ ├── contactSuccess.php │ │ │ │ ├── imprintSuccess.php │ │ │ │ ├── indexSuccess.php │ │ │ │ ├── pageSuccess.php │ │ │ │ ├── pricingSuccess.php │ │ │ │ └── termsSuccess.php │ │ ├── d_media_files │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ └── templates │ │ │ │ ├── _delete.php │ │ │ │ ├── _list.php │ │ │ │ ├── _rename.php │ │ │ │ └── indexSuccess.php │ │ ├── d_widget │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ ├── security.yml │ │ │ │ └── view.yml │ │ │ └── templates │ │ │ │ ├── _copy.php │ │ │ │ ├── _dataOwnerModal.php │ │ │ │ ├── _form.php │ │ │ │ ├── _list.php │ │ │ │ ├── _view.php │ │ │ │ ├── _widget_link.php │ │ │ │ ├── dataSuccess.php │ │ │ │ ├── editSuccess.php │ │ │ │ ├── indexSuccess.php │ │ │ │ ├── petitionSuccess.php │ │ │ │ └── widgetvalSuccess.php │ │ ├── dashboard │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ ├── security.yml │ │ │ │ └── view.yml │ │ │ └── templates │ │ │ │ ├── _admin_tabs.php │ │ │ │ ├── _alert.php │ │ │ │ ├── _infoModal.php │ │ │ │ ├── _pager.php │ │ │ │ ├── _trending.php │ │ │ │ ├── adminSuccess.php │ │ │ │ ├── indexSuccess.php │ │ │ │ ├── statsSuccess.php │ │ │ │ └── testmailSuccess.php │ │ ├── data │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── _delete.php │ │ │ │ ├── _list.php │ │ │ │ └── _prepare_modal.php │ │ ├── default │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ └── error404Success.php │ │ ├── language │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── editSuccess.php │ │ │ │ └── indexSuccess.php │ │ ├── mailexport │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ └── templates │ │ │ │ ├── _setting.php │ │ │ │ └── settingSuccess.php │ │ ├── mapping │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── _pair_form.php │ │ │ │ ├── _pair_row.php │ │ │ │ ├── _pairs.php │ │ │ │ ├── editSuccess.php │ │ │ │ └── indexSuccess.php │ │ ├── order │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── _cancelSubscription.php │ │ │ │ ├── _delete.php │ │ │ │ ├── _editBilling.php │ │ │ │ ├── _manual_user.php │ │ │ │ ├── _notice.php │ │ │ │ ├── _offer_modal.php │ │ │ │ ├── _offer_pdf.php │ │ │ │ ├── _paid.php │ │ │ │ ├── _sidebar.php │ │ │ │ ├── listSuccess.php │ │ │ │ ├── manualSuccess.php │ │ │ │ ├── newSuccess.php │ │ │ │ └── showSuccess.php │ │ ├── paypal │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ └── pageSuccess.php │ │ ├── pledge │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── _contact.php │ │ │ │ ├── _contactEdit.php │ │ │ │ ├── _contacts.php │ │ │ │ ├── _item_form.php │ │ │ │ ├── _item_row.php │ │ │ │ ├── listSuccess.php │ │ │ │ └── statsSuccess.php │ │ ├── product │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── _delete.php │ │ │ │ ├── editSuccess.php │ │ │ │ └── indexSuccess.php │ │ ├── quota │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── _list.php │ │ │ │ ├── editSuccess.php │ │ │ │ └── listSuccess.php │ │ ├── sfGuardAuth │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ └── view.yml │ │ │ └── templates │ │ │ │ ├── secureSuccess.php │ │ │ │ └── signinSuccess.php │ │ ├── sfGuardGroup │ │ │ └── config │ │ │ │ └── security.yml │ │ ├── sfGuardPermission │ │ │ └── config │ │ │ │ └── security.yml │ │ ├── sfGuardUser │ │ │ └── config │ │ │ │ └── security.yml │ │ ├── store │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ ├── security.yml │ │ │ │ └── view.yml │ │ │ ├── lib │ │ │ │ ├── ValidatorLogo.class.php │ │ │ │ └── WidgetLogo.class.php │ │ │ └── templates │ │ │ │ ├── editSuccess.php │ │ │ │ ├── indexSuccess.php │ │ │ │ └── languageSuccess.php │ │ ├── target │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ ├── security.yml │ │ │ │ └── view.yml │ │ │ └── templates │ │ │ │ ├── _contact.php │ │ │ │ ├── _contacts.php │ │ │ │ ├── _copy.php │ │ │ │ ├── _copy_global.php │ │ │ │ ├── _delete.php │ │ │ │ ├── _delete_meta.php │ │ │ │ ├── _form.php │ │ │ │ ├── _list.php │ │ │ │ ├── _members.php │ │ │ │ ├── _meta.php │ │ │ │ ├── _metas.php │ │ │ │ ├── _truncate.php │ │ │ │ ├── _upload1.php │ │ │ │ ├── _upload2.php │ │ │ │ ├── editSuccess.php │ │ │ │ └── indexSuccess.php │ │ ├── tax │ │ │ ├── actions │ │ │ │ └── actions.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── _delete.php │ │ │ │ ├── _deleteNote.php │ │ │ │ ├── editSuccess.php │ │ │ │ ├── indexSuccess.php │ │ │ │ └── noteEditSuccess.php │ │ ├── ticket │ │ │ ├── actions │ │ │ │ ├── actions.class.php │ │ │ │ └── components.class.php │ │ │ ├── config │ │ │ │ └── security.yml │ │ │ └── templates │ │ │ │ ├── _ticket.php │ │ │ │ └── _todo.php │ │ └── user │ │ │ ├── actions │ │ │ ├── actions.class.php │ │ │ └── components.class.php │ │ │ ├── config │ │ │ ├── security.yml │ │ │ └── view.yml │ │ │ ├── lib │ │ │ └── form │ │ │ │ ├── UserForm.class.php │ │ │ │ ├── UserNewForm.class.php │ │ │ │ └── UserPassword.class.php │ │ │ └── templates │ │ │ ├── _block.php │ │ │ ├── _delete.php │ │ │ ├── _emails.php │ │ │ ├── _list.php │ │ │ ├── _unblock.php │ │ │ ├── editSuccess.php │ │ │ ├── indexSuccess.php │ │ │ └── validationSuccess.php │ └── templates │ │ ├── bootstrap4.php │ │ └── dashboard.php └── widget │ ├── config │ ├── app.yml │ ├── cache.yml │ ├── factories.yml │ ├── filters.yml │ ├── routing.yml │ ├── security.yml │ ├── settings.yml │ ├── view.yml │ └── widgetConfiguration.class.php │ ├── i18n │ ├── ar │ │ └── messages.xml │ ├── bg │ │ └── messages.xml │ ├── bs │ │ └── messages.xml │ ├── ca │ │ └── messages.xml │ ├── cs │ │ └── messages.xml │ ├── da │ │ └── messages.xml │ ├── de │ │ └── messages.xml │ ├── el │ │ └── messages.xml │ ├── en │ │ └── messages.xml │ ├── es │ │ └── messages.xml │ ├── es_LA │ │ └── messages.xml │ ├── es_US │ │ └── messages.xml │ ├── et │ │ └── messages.xml │ ├── eu │ │ └── messages.xml │ ├── fi │ │ └── messages.xml │ ├── fr │ │ └── messages.xml │ ├── fr_CA │ │ └── messages.xml │ ├── gl │ │ └── messages.xml │ ├── hr │ │ └── messages.xml │ ├── hu │ │ └── messages.xml │ ├── id │ │ └── messages.xml │ ├── is │ │ └── messages.xml │ ├── it │ │ └── messages.xml │ ├── ja │ │ └── messages.xml │ ├── ko │ │ └── messages.xml │ ├── lt │ │ └── messages.xml │ ├── lv │ │ └── messages.xml │ ├── mk │ │ └── messages.xml │ ├── mt │ │ └── messages.xml │ ├── nl │ │ └── messages.xml │ ├── no │ │ └── messages.xml │ ├── pl │ │ └── messages.xml │ ├── pt │ │ └── messages.xml │ ├── ro │ │ └── messages.xml │ ├── ru │ │ └── messages.xml │ ├── sh_BA │ │ └── messages.xml │ ├── sk │ │ └── messages.xml │ ├── sl │ │ └── messages.xml │ ├── sq │ │ └── messages.xml │ ├── sr │ │ └── messages.xml │ ├── sr_BA │ │ └── messages.xml │ ├── sr_ME │ │ └── messages.xml │ ├── sv │ │ └── messages.xml │ ├── th │ │ └── messages.xml │ ├── uk │ │ └── messages.xml │ ├── zh │ │ └── messages.xml │ └── zh_HT │ │ └── messages.xml │ ├── lib │ └── myUser.class.php │ ├── modules │ ├── api │ │ ├── actions │ │ │ └── actions.class.php │ │ ├── config │ │ │ └── cache.yml │ │ └── templates │ │ │ ├── _counterbar.php │ │ │ ├── counterbarSuccess.php │ │ │ ├── counterbar_generatorSuccess.php │ │ │ └── docSuccess.php │ ├── api_v2 │ │ ├── actions │ │ │ └── actions.class.php │ │ ├── config │ │ │ └── cache.yml │ │ └── templates │ │ │ └── docSuccess.php │ ├── api_v2_incomming │ │ └── actions │ │ │ └── actions.class.php │ ├── default │ │ ├── actions │ │ │ └── actions.class.php │ │ └── templates │ │ │ ├── defaultLayout.php │ │ │ ├── disabledSuccess.php │ │ │ ├── error404Success.php │ │ │ ├── indexSuccess.php │ │ │ ├── loginSuccess.php │ │ │ ├── moduleSuccess.php │ │ │ └── secureSuccess.php │ ├── facebook │ │ ├── actions │ │ │ └── actions.class.php │ │ └── templates │ │ │ ├── canvasSuccess.php │ │ │ ├── tabSuccess.php │ │ │ ├── tabs_addedSuccess.php │ │ │ └── webpageSuccess.php │ ├── home │ │ ├── actions │ │ │ ├── actions.class.php │ │ │ └── components.class.php │ │ ├── config │ │ │ └── cache.yml │ │ └── templates │ │ │ ├── _footer.php │ │ │ └── feedSuccess.php │ ├── pledge_contact │ │ ├── actions │ │ │ └── actions.class.php │ │ ├── config │ │ │ ├── security.yml │ │ │ └── view.yml │ │ └── templates │ │ │ └── indexSuccess.php │ ├── signers │ │ ├── actions │ │ │ └── actions.class.php │ │ ├── config │ │ │ ├── cache.yml │ │ │ └── view.yml │ │ └── templates │ │ │ └── indexSuccess.php │ └── widget │ │ ├── actions │ │ └── actions.class.php │ │ ├── config │ │ ├── cache.yml │ │ └── view.yml │ │ └── templates │ │ ├── _agreement.php │ │ ├── _json_form.php │ │ ├── _petition.php │ │ ├── deleteSuccess.php │ │ ├── errorSuccess.php │ │ ├── failSuccess.php │ │ ├── landingSuccess.php │ │ ├── pageSuccess.php │ │ ├── signSuccess.php │ │ ├── testSuccess.php │ │ ├── unsubscribeSuccess.php │ │ ├── validateSuccess.php │ │ ├── widgetOuterSuccess.php │ │ └── widgeteditSuccess.php │ └── templates │ ├── _title.php │ ├── clean.php │ ├── facebook.php │ └── layout.php ├── composer.json ├── composer.lock ├── config ├── ProjectConfiguration.class.php ├── app.yml.dist ├── databases.yml.dist ├── doctrine │ └── schema.yml ├── factories.yml.dist ├── properties.ini.dist ├── rsync_exclude.txt ├── settings.yml.dist ├── unavailable.php └── varnish.vcl ├── crontab ├── data ├── fixtures │ ├── 001_roles.yml │ ├── 002_language.yml │ ├── 010_profiles.yml │ └── fixtures.yml ├── privacy_policy │ ├── en.txt │ └── en4.txt └── sql │ ├── fix_sql.sh │ └── schema.sql ├── doc ├── docker-develop.md └── install.txt ├── docker-compose.yml ├── docker ├── config-develop │ ├── app.yml │ ├── databases.yml │ ├── factories.yml │ └── properties.ini ├── data-develop │ └── .gitdir ├── nginx │ └── default.conf └── xhgui │ ├── xhgui.js │ └── xhgui_index_cap.php ├── git-delete-local-merged-branches ├── init ├── lib ├── WidgetFormInputCheckbox.class.php ├── action │ ├── policatActions.class.php │ └── policatComponents.class.php ├── cache │ └── sfViewCacheTagManagerPolicat.class.php ├── filter │ ├── doctrine │ │ ├── ApiTokenOffsetFormFilter.class.php │ │ ├── BaseFormFilterDoctrine.class.php │ │ ├── CampaignFormFilter.class.php │ │ ├── ContactFormFilter.class.php │ │ ├── CountryCollectionFormFilter.class.php │ │ ├── CountryTaxFormFilter.class.php │ │ ├── DownloadFormFilter.class.php │ │ ├── MappingPairFormFilter.class.php │ │ ├── MediaFileFormFilter.class.php │ │ ├── PetitionApiTokenFormFilter.class.php │ │ ├── PetitionContactFormFilter.class.php │ │ ├── PetitionSigningFormFilter.class.php │ │ ├── PledgeFormFilter.class.php │ │ ├── PledgeItemFormFilter.class.php │ │ ├── PledgeTextFormFilter.class.php │ │ ├── TaxNoteFormFilter.class.php │ │ ├── TicketFormFilter.class.php │ │ ├── base │ │ │ ├── BaseApiTokenOffsetFormFilter.class.php │ │ │ ├── BaseCampaignFormFilter.class.php │ │ │ ├── BaseContactFormFilter.class.php │ │ │ ├── BaseCountryCollectionFormFilter.class.php │ │ │ ├── BaseCountryTaxFormFilter.class.php │ │ │ ├── BaseDownloadFormFilter.class.php │ │ │ ├── BaseMappingPairFormFilter.class.php │ │ │ ├── BaseMediaFileFormFilter.class.php │ │ │ ├── BasePetitionApiTokenFormFilter.class.php │ │ │ ├── BasePetitionContactFormFilter.class.php │ │ │ ├── BasePetitionSigningFormFilter.class.php │ │ │ ├── BasePledgeFormFilter.class.php │ │ │ ├── BasePledgeItemFormFilter.class.php │ │ │ ├── BasePledgeTextFormFilter.class.php │ │ │ ├── BaseTaxNoteFormFilter.class.php │ │ │ └── BaseTicketFormFilter.class.php │ │ └── sfDoctrineGuardPlugin │ │ │ ├── base │ │ │ ├── BasesfGuardGroupFormFilter.class.php │ │ │ ├── BasesfGuardPermissionFormFilter.class.php │ │ │ └── BasesfGuardUserFormFilter.class.php │ │ │ ├── sfGuardGroupFormFilter.class.php │ │ │ ├── sfGuardPermissionFormFilter.class.php │ │ │ └── sfGuardUserFormFilter.class.php │ ├── policatFilter.class.php │ └── policatFilterArray.class.php ├── form │ ├── BaseForm.class.php │ ├── CampaignRightsForm.class.php │ ├── DeleteForm.class.php │ ├── MemberRightsForm.class.php │ ├── OrderNewForm.class.php │ ├── WidgetPublicForm.class.php │ ├── doctrine │ │ ├── ApiTokenOffsetForm.class.php │ │ ├── BaseFormDoctrine.class.php │ │ ├── BillForm.class.php │ │ ├── BillItemForm.class.php │ │ ├── CampaignForm.class.php │ │ ├── CampaignStoreForm.class.php │ │ ├── ContactForm.class.php │ │ ├── CountryCollectionForm.class.php │ │ ├── CountryTaxForm.class.php │ │ ├── DefaultTextForm.class.php │ │ ├── DownloadForm.class.php │ │ ├── FacebookTabForm.class.php │ │ ├── LanguageForm.class.php │ │ ├── MailingListForm.class.php │ │ ├── MailingListMetaChoiceForm.class.php │ │ ├── MailingListMetaForm.class.php │ │ ├── MappingForm.class.php │ │ ├── MappingPairForm.class.php │ │ ├── MediaFileForm.class.php │ │ ├── MemberForm.class.php │ │ ├── OfferForm.class.php │ │ ├── OfferItemForm.class.php │ │ ├── OrderForm.class.php │ │ ├── OwnerForm.class.php │ │ ├── PetitionApiTokenForm.class.php │ │ ├── PetitionContactForm.class.php │ │ ├── PetitionForm.class.php │ │ ├── PetitionSigningForm.class.php │ │ ├── PetitionTextForm.class.php │ │ ├── PledgeForm.class.php │ │ ├── PledgeItemForm.class.php │ │ ├── PledgeTextForm.class.php │ │ ├── PrivacyPolicyForm.class.php │ │ ├── ProductForm.class.php │ │ ├── QuotaForm.class.php │ │ ├── TaxNoteForm.class.php │ │ ├── TicketForm.class.php │ │ ├── WidgetForm.class.php │ │ ├── base │ │ │ ├── BaseApiTokenOffsetForm.class.php │ │ │ ├── BaseBillForm.class.php │ │ │ ├── BaseBillItemForm.class.php │ │ │ ├── BaseCampaignForm.class.php │ │ │ ├── BaseCampaignStoreForm.class.php │ │ │ ├── BaseContactForm.class.php │ │ │ ├── BaseCountryCollectionForm.class.php │ │ │ ├── BaseCountryTaxForm.class.php │ │ │ ├── BaseDefaultTextForm.class.php │ │ │ ├── BaseDownloadForm.class.php │ │ │ ├── BaseFacebookTabForm.class.php │ │ │ ├── BaseLanguageForm.class.php │ │ │ ├── BaseMailingListForm.class.php │ │ │ ├── BaseMailingListMetaChoiceForm.class.php │ │ │ ├── BaseMailingListMetaForm.class.php │ │ │ ├── BaseMappingForm.class.php │ │ │ ├── BaseMappingPairForm.class.php │ │ │ ├── BaseMediaFileForm.class.php │ │ │ ├── BaseMemberForm.class.php │ │ │ ├── BaseOfferForm.class.php │ │ │ ├── BaseOfferItemForm.class.php │ │ │ ├── BaseOrderForm.class.php │ │ │ ├── BaseOwnerForm.class.php │ │ │ ├── BasePetitionApiTokenForm.class.php │ │ │ ├── BasePetitionContactForm.class.php │ │ │ ├── BasePetitionForm.class.php │ │ │ ├── BasePetitionSigningForm.class.php │ │ │ ├── BasePetitionTextForm.class.php │ │ │ ├── BasePledgeForm.class.php │ │ │ ├── BasePledgeItemForm.class.php │ │ │ ├── BasePledgeTextForm.class.php │ │ │ ├── BasePrivacyPolicyForm.class.php │ │ │ ├── BaseProductForm.class.php │ │ │ ├── BaseQuotaForm.class.php │ │ │ ├── BaseTaxNoteForm.class.php │ │ │ ├── BaseTicketForm.class.php │ │ │ └── BaseWidgetForm.class.php │ │ └── sfDoctrineGuardPlugin │ │ │ ├── base │ │ │ ├── BasesfGuardGroupForm.class.php │ │ │ ├── BasesfGuardPermissionForm.class.php │ │ │ └── BasesfGuardUserForm.class.php │ │ │ ├── sfGuardGroupForm.class.php │ │ │ ├── sfGuardPermissionForm.class.php │ │ │ └── sfGuardUserForm.class.php │ └── myLoginForm.class.php ├── i18n │ └── sfCultureInfo.class.php ├── mailer │ ├── policatDoctrineSpool.class.php │ └── policatMailer.class.php ├── mailexport │ ├── Mailexport.class.php │ ├── MailexportRapidmail.class.php │ └── MailexportSettingForm.class.php ├── memcacheshim │ ├── LICENSE.txt │ ├── README.md │ ├── memcacheshim.class.php │ ├── memcacheshim.functions.php │ └── memcacheshim.php ├── migration │ └── doctrine │ │ ├── 1271679381_version1.php │ │ ├── 1272442770_version2.php │ │ ├── 1272442771_version3.php │ │ ├── 1272443201_version4.php │ │ ├── 1297335314_version5.php │ │ ├── 1297685645_version6.php │ │ ├── 1297685646_version7.php │ │ ├── 1297847906_version8.php │ │ ├── 1301670691_version9.php │ │ ├── 1301670692_version10.php │ │ ├── 1301989640_version11.php │ │ ├── 1302010255_version12.php │ │ ├── 1302179460_version13.php │ │ ├── 1302179461_version14.php │ │ ├── 1302249528_version15.php │ │ ├── 1302249529_version16.php │ │ ├── 1302273918_version17.php │ │ ├── 1302273919_version18.php │ │ ├── 1302502050_version19.php │ │ ├── 1302502051_version20.php │ │ ├── 1302510213_version21.php │ │ ├── 1302605928_version22.php │ │ ├── 1302605929_version23.php │ │ ├── 1302868854_version24.php │ │ ├── 1303310103_version25.php │ │ ├── 1305622027_version26.php │ │ ├── 1305622028_version27.php │ │ ├── 1305624292_version28.php │ │ ├── 1305723762_version29.php │ │ ├── 1305723763_version30.php │ │ ├── 1306169443_version31.php │ │ ├── 1306169444_version32.php │ │ ├── 1306397236_version33.php │ │ ├── 1306416924_version34.php │ │ ├── 1306416925_version35.php │ │ ├── 1306748206_version36.php │ │ ├── 1306756734_version37.php │ │ ├── 1330512374_version38.php │ │ ├── 1330512375_version39.php │ │ ├── 1330512376_version40.php │ │ ├── 1330596063_version41.php │ │ ├── 1330596064_version42.php │ │ ├── 1331127985_version43.php │ │ ├── 1331127986_version44.php │ │ ├── 1331129989_version45.php │ │ ├── 1331129990_version46.php │ │ ├── 1333456419_version47.php │ │ ├── 1333456420_version48.php │ │ ├── 1335180623_version49.php │ │ ├── 1335268224_version50.php │ │ ├── 1336464772_version51.php │ │ ├── 1336464773_version52.php │ │ ├── 1336466426_version53.php │ │ ├── 1336466427_version54.php │ │ ├── 1336996706_version55.php │ │ ├── 1336996707_version56.php │ │ ├── 1337004540_version57.php │ │ ├── 1337004541_version58.php │ │ ├── 1337180758_version59.php │ │ ├── 1337180759_version60.php │ │ ├── 1337182052_version61.php │ │ ├── 1337696706_version62.php │ │ ├── 1337696707_version63.php │ │ ├── 1337772104_version64.php │ │ ├── 1337772105_version65.php │ │ ├── 1338464584_version66.php │ │ ├── 1339165447_version67.php │ │ ├── 1341834405_version68.php │ │ ├── 1343723871_version69.php │ │ ├── 1366631283_version70.php │ │ ├── 1366631284_version71.php │ │ ├── 1366633484_version72.php │ │ ├── 1366920203_version73.php │ │ ├── 1368703804_version74.php │ │ ├── 1375003249_version75.php │ │ ├── 1377688770_version76.php │ │ ├── 1389783501_version77.php │ │ ├── 1389783502_version78.php │ │ ├── 1393922830_version79.php │ │ ├── 1395395170_version80.php │ │ ├── 1395395171_version81.php │ │ ├── 1395406733_version82.php │ │ ├── 1395406734_version83.php │ │ ├── 1395407825_version84.php │ │ ├── 1395653908_version85.php │ │ ├── 1395671529_version86.php │ │ ├── 1395671530_version87.php │ │ ├── 1395738730_version88.php │ │ ├── 1395826056_version89.php │ │ ├── 1396360276_version90.php │ │ ├── 1396522165_version91.php │ │ ├── 1396534880_version92.php │ │ ├── 1396598553_version93.php │ │ ├── 1397478843_version94.php │ │ ├── 1397642151_version95.php │ │ ├── 1409839539_version96.php │ │ ├── 1409842900_version97.php │ │ ├── 1409842901_version98.php │ │ ├── 1409917827_version99.php │ │ ├── 1410523951_version100.php │ │ ├── 1411651734_version101.php │ │ ├── 1411713804_version102.php │ │ ├── 1411734914_version103.php │ │ ├── 1411734915_version104.php │ │ ├── 1412065223_version105.php │ │ ├── 1413281189_version106.php │ │ ├── 1413294483_version107.php │ │ ├── 1413294484_version108.php │ │ ├── 1413380014_version109.php │ │ ├── 1413529315_version110.php │ │ ├── 1413544467_version111.php │ │ ├── 1413544468_version112.php │ │ ├── 1415016286_version113.php │ │ ├── 1415016287_version114.php │ │ ├── 1415614922_version115.php │ │ ├── 1417003920_version116.php │ │ ├── 1423057699_version117.php │ │ ├── 1423057700_version118.php │ │ ├── 1423137778_version119.php │ │ ├── 1424263375_version120.php │ │ ├── 1427802557_version121.php │ │ ├── 1428405091_version122.php │ │ ├── 1428405092_version123.php │ │ ├── 1428417698_version124.php │ │ ├── 1428417699_version125.php │ │ ├── 1428488375_version126.php │ │ ├── 1428652080_version127.php │ │ ├── 1428652081_version128.php │ │ ├── 1428673484_version129.php │ │ ├── 1428911814_version130.php │ │ ├── 1428918552_version131.php │ │ ├── 1428918553_version132.php │ │ ├── 1429008826_version133.php │ │ ├── 1429008827_version134.php │ │ ├── 1429186655_version135.php │ │ ├── 1429186656_version136.php │ │ ├── 1429267545_version137.php │ │ ├── 1429529780_version138.php │ │ ├── 1429609835_version139.php │ │ ├── 1429609836_version140.php │ │ ├── 1430214223_version141.php │ │ ├── 1430746726_version142.php │ │ ├── 1433329280_version143.php │ │ ├── 1433329281_version144.php │ │ ├── 1433489436_version145.php │ │ ├── 1434612444_version146.php │ │ ├── 1436257528_version147.php │ │ ├── 1436272802_version148.php │ │ ├── 1438324122_version149.php │ │ ├── 1438781855_version150.php │ │ ├── 1438783799_version151.php │ │ ├── 1439191729_version152.php │ │ ├── 1442315894_version153.php │ │ ├── 1442471230_version154.php │ │ ├── 1442483176_version155.php │ │ ├── 1442993030_version156.php │ │ ├── 1444635945_version157.php │ │ ├── 1445410750_version158.php │ │ ├── 1445410751_version159.php │ │ ├── 1445420631_version160.php │ │ ├── 1445421057_version161.php │ │ ├── 1462800074_version162.php │ │ ├── 1462866203_version163.php │ │ ├── 1462866204_version164.php │ │ ├── 1463996712_version165.php │ │ ├── 1464352114_version166.php │ │ ├── 1464773201_version167.php │ │ ├── 1464778949_version168.php │ │ ├── 1464859013_version169.php │ │ ├── 1464937157_version170.php │ │ ├── 1465385339_version171.php │ │ ├── 1465395247_version172.php │ │ ├── 1465547634_version173.php │ │ ├── 1465573421_version174.php │ │ ├── 1465974932_version175.php │ │ ├── 1465980569_version176.php │ │ ├── 1467965885_version177.php │ │ ├── 1467979634_version178.php │ │ ├── 1472111794_version179.php │ │ ├── 1472470355_version180.php │ │ ├── 1472470356_version181.php │ │ ├── 1472476273_version182.php │ │ ├── 1472478180_version183.php │ │ ├── 1472625999_version184.php │ │ ├── 1472729671_version185.php │ │ ├── 1472729672_version186.php │ │ ├── 1472730970_version187.php │ │ ├── 1472730971_version188.php │ │ ├── 1473075179_version189.php │ │ ├── 1473162045_version190.php │ │ ├── 1473335750_version191.php │ │ ├── 1473347504_version192.php │ │ ├── 1473347505_version193.php │ │ ├── 1473778828_version194.php │ │ ├── 1473843327_version195.php │ │ ├── 1473843339_version196.php │ │ ├── 1473843439_version197.php │ │ ├── 1474440049_version198.php │ │ ├── 1487587335_version199.php │ │ ├── 1490952019_version200.php │ │ ├── 1490952020_version201.php │ │ ├── 1490967266_version202.php │ │ ├── 1490967267_version203.php │ │ ├── 1491210490_version204.php │ │ ├── 1491210491_version205.php │ │ ├── 1491213261_version206.php │ │ ├── 1493983520_version207.php │ │ ├── 1498222771_version208.php │ │ ├── 1500980546_version209.php │ │ ├── 1524746845_version210.php │ │ ├── 1526642953_version211.php │ │ ├── 1527076701_version212.php │ │ ├── 1528452560_version213.php │ │ ├── 1532691669_version214.php │ │ ├── 1532691670_version215.php │ │ ├── 1547113509_version216.php │ │ ├── 1547113510_version217.php │ │ ├── 1547461111_version218.php │ │ ├── 1548161235_version219.php │ │ ├── 1550570966_version220.php │ │ ├── 1552569853_version221.php │ │ ├── 1558703607_version222.php │ │ ├── 1558703608_version223.php │ │ ├── 1558703618_version224.php │ │ ├── 1559053875_version225.php │ │ ├── 1559113236_version226.php │ │ ├── 1559116121_version227.php │ │ ├── 1559122550_version228.php │ │ ├── 1562917846_version229.php │ │ ├── 1562928025_version230.php │ │ ├── 1566201763_version231.php │ │ ├── 1566379520_version232.php │ │ ├── 1567583506_version233.php │ │ ├── 1570195866_version234.php │ │ ├── 1570447612_version235.php │ │ ├── 1570447613_version236.php │ │ ├── 1570451144_version237.php │ │ ├── 1571141152_version238.php │ │ ├── 1571228612_version239.php │ │ ├── 1571230590_version240.php │ │ ├── 1575629480_version241.php │ │ ├── 1575637282_version242.php │ │ ├── 1579787570_version243.php │ │ ├── 1579790719_version244.php │ │ ├── 1579854581_version245.php │ │ ├── 1579872788_version246.php │ │ ├── 1581674448_version247.php │ │ ├── 1581682527_version248.php │ │ ├── 1583489921_version249.php │ │ └── 1584713289_version250.php ├── model │ ├── BillInterface.class.php │ └── doctrine │ │ ├── ApiTokenOffset.class.php │ │ ├── ApiTokenOffsetTable.class.php │ │ ├── Bill.class.php │ │ ├── BillItem.class.php │ │ ├── BillItemTable.class.php │ │ ├── BillTable.class.php │ │ ├── Campaign.class.php │ │ ├── CampaignRights.class.php │ │ ├── CampaignRightsTable.class.php │ │ ├── CampaignStore.class.php │ │ ├── CampaignStoreTable.class.php │ │ ├── CampaignTable.class.php │ │ ├── Contact.class.php │ │ ├── ContactMeta.class.php │ │ ├── ContactMetaTable.class.php │ │ ├── ContactTable.class.php │ │ ├── CountryCollection.class.php │ │ ├── CountryCollectionTable.class.php │ │ ├── CountryTax.class.php │ │ ├── CountryTaxTable.class.php │ │ ├── DefaultText.class.php │ │ ├── DefaultTextTable.class.php │ │ ├── DigestEmail.class.php │ │ ├── DigestEmailTable.class.php │ │ ├── Download.class.php │ │ ├── DownloadTable.class.php │ │ ├── FacebookTab.class.php │ │ ├── FacebookTabTable.class.php │ │ ├── Group.class.php │ │ ├── GroupMember.class.php │ │ ├── GroupMemberTable.class.php │ │ ├── GroupPermission.class.php │ │ ├── GroupPermissionTable.class.php │ │ ├── GroupTable.class.php │ │ ├── Invitation.class.php │ │ ├── InvitationCampaign.class.php │ │ ├── InvitationCampaignTable.class.php │ │ ├── InvitationTable.class.php │ │ ├── Language.class.php │ │ ├── LanguageTable.class.php │ │ ├── MailMessage.class.php │ │ ├── MailMessageTable.class.php │ │ ├── MailingList.class.php │ │ ├── MailingListMeta.class.php │ │ ├── MailingListMetaChoice.class.php │ │ ├── MailingListMetaChoiceTable.class.php │ │ ├── MailingListMetaTable.class.php │ │ ├── MailingListTable.class.php │ │ ├── Mapping.class.php │ │ ├── MappingPair.class.php │ │ ├── MappingPairTable.class.php │ │ ├── MappingTable.class.php │ │ ├── MediaFile.class.php │ │ ├── MediaFileTable.class.php │ │ ├── Member.class.php │ │ ├── MemberTable.class.php │ │ ├── MigrationVersion.class.php │ │ ├── MigrationVersionTable.class.php │ │ ├── Offer.class.php │ │ ├── OfferItem.class.php │ │ ├── OfferItemTable.class.php │ │ ├── OfferTable.class.php │ │ ├── Order.class.php │ │ ├── OrderTable.class.php │ │ ├── Owner.class.php │ │ ├── OwnerTable.class.php │ │ ├── Permission.class.php │ │ ├── PermissionTable.class.php │ │ ├── Petition.class.php │ │ ├── PetitionApiToken.class.php │ │ ├── PetitionApiTokenTable.class.php │ │ ├── PetitionContact.class.php │ │ ├── PetitionContactTable.class.php │ │ ├── PetitionRights.class.php │ │ ├── PetitionRightsTable.class.php │ │ ├── PetitionSigning.class.php │ │ ├── PetitionSigningContact.class.php │ │ ├── PetitionSigningContactTable.class.php │ │ ├── PetitionSigningSearch.class.php │ │ ├── PetitionSigningSearchTable.class.php │ │ ├── PetitionSigningTable.class.php │ │ ├── PetitionSigningWave.class.php │ │ ├── PetitionSigningWaveTable.class.php │ │ ├── PetitionTable.class.php │ │ ├── PetitionText.class.php │ │ ├── PetitionTextTable.class.php │ │ ├── Pledge.class.php │ │ ├── PledgeItem.class.php │ │ ├── PledgeItemTable.class.php │ │ ├── PledgeTable.class.php │ │ ├── PledgeText.class.php │ │ ├── PledgeTextTable.class.php │ │ ├── PrivacyPolicy.class.php │ │ ├── PrivacyPolicyTable.class.php │ │ ├── Product.class.php │ │ ├── ProductTable.class.php │ │ ├── QueryCache.class.php │ │ ├── QueryCacheTable.class.php │ │ ├── Quota.class.php │ │ ├── QuotaTable.class.php │ │ ├── Registry.class.php │ │ ├── RegistryTable.class.php │ │ ├── Store.class.php │ │ ├── StoreTable.class.php │ │ ├── TargetListRights.class.php │ │ ├── TargetListRightsTable.class.php │ │ ├── TaxNote.class.php │ │ ├── TaxNoteTable.class.php │ │ ├── Ticket.class.php │ │ ├── TicketTable.class.php │ │ ├── Widget.class.php │ │ ├── WidgetOwner.class.php │ │ ├── WidgetOwnerTable.class.php │ │ ├── WidgetTable.class.php │ │ ├── base │ │ ├── BaseApiTokenOffset.class.php │ │ ├── BaseBill.class.php │ │ ├── BaseBillItem.class.php │ │ ├── BaseCampaign.class.php │ │ ├── BaseCampaignRights.class.php │ │ ├── BaseCampaignStore.class.php │ │ ├── BaseContact.class.php │ │ ├── BaseContactMeta.class.php │ │ ├── BaseCountryCollection.class.php │ │ ├── BaseCountryTax.class.php │ │ ├── BaseDefaultText.class.php │ │ ├── BaseDigestEmail.class.php │ │ ├── BaseDownload.class.php │ │ ├── BaseFacebookTab.class.php │ │ ├── BaseGroup.class.php │ │ ├── BaseGroupMember.class.php │ │ ├── BaseGroupPermission.class.php │ │ ├── BaseInvitation.class.php │ │ ├── BaseInvitationCampaign.class.php │ │ ├── BaseLanguage.class.php │ │ ├── BaseMailMessage.class.php │ │ ├── BaseMailingList.class.php │ │ ├── BaseMailingListMeta.class.php │ │ ├── BaseMailingListMetaChoice.class.php │ │ ├── BaseMapping.class.php │ │ ├── BaseMappingPair.class.php │ │ ├── BaseMediaFile.class.php │ │ ├── BaseMember.class.php │ │ ├── BaseMigrationVersion.class.php │ │ ├── BaseOffer.class.php │ │ ├── BaseOfferItem.class.php │ │ ├── BaseOrder.class.php │ │ ├── BaseOwner.class.php │ │ ├── BasePermission.class.php │ │ ├── BasePetition.class.php │ │ ├── BasePetitionApiToken.class.php │ │ ├── BasePetitionContact.class.php │ │ ├── BasePetitionRights.class.php │ │ ├── BasePetitionSigning.class.php │ │ ├── BasePetitionSigningContact.class.php │ │ ├── BasePetitionSigningSearch.class.php │ │ ├── BasePetitionSigningWave.class.php │ │ ├── BasePetitionText.class.php │ │ ├── BasePledge.class.php │ │ ├── BasePledgeItem.class.php │ │ ├── BasePledgeText.class.php │ │ ├── BasePrivacyPolicy.class.php │ │ ├── BaseProduct.class.php │ │ ├── BaseQueryCache.class.php │ │ ├── BaseQuota.class.php │ │ ├── BaseRegistry.class.php │ │ ├── BaseStore.class.php │ │ ├── BaseTargetListRights.class.php │ │ ├── BaseTaxNote.class.php │ │ ├── BaseTicket.class.php │ │ ├── BaseWidget.class.php │ │ ├── BaseWidgetOwner.class.php │ │ └── BaseWidgetPetition.class.php │ │ ├── myDoctrineRecord.class.php │ │ └── sfDoctrineGuardPlugin │ │ ├── base │ │ ├── BasesfGuardForgotPassword.class.php │ │ ├── BasesfGuardGroup.class.php │ │ ├── BasesfGuardGroupPermission.class.php │ │ ├── BasesfGuardPermission.class.php │ │ ├── BasesfGuardRememberKey.class.php │ │ ├── BasesfGuardUser.class.php │ │ ├── BasesfGuardUserGroup.class.php │ │ └── BasesfGuardUserPermission.class.php │ │ ├── sfGuardForgotPassword.class.php │ │ ├── sfGuardForgotPasswordTable.class.php │ │ ├── sfGuardGroup.class.php │ │ ├── sfGuardGroupPermission.class.php │ │ ├── sfGuardGroupPermissionTable.class.php │ │ ├── sfGuardGroupTable.class.php │ │ ├── sfGuardPermission.class.php │ │ ├── sfGuardPermissionTable.class.php │ │ ├── sfGuardRememberKey.class.php │ │ ├── sfGuardRememberKeyTable.class.php │ │ ├── sfGuardUser.class.php │ │ ├── sfGuardUserGroup.class.php │ │ ├── sfGuardUserGroupTable.class.php │ │ ├── sfGuardUserPermission.class.php │ │ ├── sfGuardUserPermissionTable.class.php │ │ └── sfGuardUserTable.class.php ├── pager │ └── policatPager.class.php ├── routing │ └── policatRouting.class.php ├── task │ ├── geoCronLoopTask.class.php │ ├── geoCronTask.class.php │ ├── mailexportTask.class.php │ ├── migrateJsonSigningsTask.class.php │ ├── openActionsTask.class.php │ ├── openEciFetchCounterTask.class.php │ ├── policatActionScheduleTask.class.php │ ├── policatDeletePendingTask.class.php │ ├── policatEmailHashTask.class.php │ ├── policatEmailHashWorkerTask.class.php │ ├── policatImportsigningsTask.class.php │ ├── policatRecallPendingTask.class.php │ ├── policatSendEmailsTask.class.php │ ├── policatSigningsSearchTask.class.php │ ├── printI18NTask.class.php │ ├── quotaCheckTask.class.php │ ├── sendDigestEmailTask.class.php │ ├── signings24Task.class.php │ └── testMailTask.class.php ├── util │ ├── Ajax.class.php │ ├── Doctrine_Connection_Mysql_Project.class.php │ ├── Util.class.php │ ├── UtilBold.class.php │ ├── UtilCSRF.class.php │ ├── UtilEmailHash.php │ ├── UtilEmailLinks.class.php │ ├── UtilEmailValidation.class.php │ ├── UtilFont.class.php │ ├── UtilHtmlPurifier.class.php │ ├── UtilIdHash.class.php │ ├── UtilLink.class.php │ ├── UtilMail.class.php │ ├── UtilMarkdown.class.php │ ├── UtilOpenActions.class.php │ ├── UtilPolicat.class.php │ ├── UtilPrivacyPolicy.class.php │ ├── UtilRegistry.class.php │ ├── UtilScrambleEmail.php │ ├── UtilSpf.php │ ├── UtilTargetSelectorPreselect.class.php │ ├── UtilThankYouEmail.class.php │ ├── UtilTheme.class.php │ ├── UtilWidget.php │ ├── UtilXhprof.class.php │ └── cssmin.class.php ├── validator │ ├── ValidatedUrlEncodedFile.class.php │ ├── ValidatorCssColor.class.php │ ├── ValidatorEmail.class.php │ ├── ValidatorEmails.class.php │ ├── ValidatorFreeId.class.php │ ├── ValidatorInverseCheckbox.class.php │ ├── ValidatorKeywords.class.php │ ├── ValidatorList.class.php │ ├── ValidatorPassword.class.php │ ├── ValidatorPetitionText.class.php │ ├── ValidatorSchemaPetitionConf.class.php │ ├── ValidatorSchemaRequireOne.class.php │ ├── ValidatorUnchanged.class.php │ ├── ValidatorUniqueEmail.class.php │ ├── ValidatorUniqueMediaFileTitle.class.php │ ├── ValidatorUrl.class.php │ ├── ValidatorUrlEncodedFile.class.php │ ├── ValidatorVat.class.php │ └── ValidatorVerifiedEmails.class.php └── widget │ ├── FormatterRadio.class.php │ ├── WidgetBoolean.class.php │ ├── WidgetFormDoctrineSelectDoubleList.class.php │ ├── WidgetFormI18nChoiceCountry.class.php │ ├── WidgetFormInputFileEditableBootstrap4.class.php │ ├── WidgetFormInputInverseCheckbox.class.php │ ├── WidgetPetitionText.class.php │ ├── sfWidgetCheckboxBootstrap.class.php │ ├── sfWidgetFormSchemaFormatterBootstrap.class.php │ ├── sfWidgetFormSchemaFormatterBootstrapInline.class.php │ ├── sfWidgetFormSchemaFormatterBootstrapSpan.class.php │ ├── sfWidgetFormSchemaFormatterPolicat.class.php │ ├── sfWidgetFormSchemaFormatterPolicatWidget.class.php │ ├── sfWidgetFormSelectPetitionTextHash.class.php │ └── sfWidgetFormSelectProduct.class.php ├── npm ├── package.json ├── plugins ├── sfCacheTaggingPlugin │ ├── LICENSE │ ├── README │ ├── config │ │ ├── app.yml │ │ └── sfCacheTaggingPluginConfiguration.class.php │ └── lib │ │ ├── cache │ │ ├── CacheMetadata.class.php │ │ ├── drivers │ │ │ └── sfSQLitePDOCache.class.php │ │ ├── extended │ │ │ ├── sfAPCTaggingCache.class.php │ │ │ ├── sfEAcceleratorTaggingCache.class.php │ │ │ ├── sfFileTaggingCache.class.php │ │ │ ├── sfMemcacheTaggingCache.class.php │ │ │ ├── sfSQLitePDOTaggingCache.class.php │ │ │ ├── sfSQLiteTaggingCache.class.php │ │ │ └── sfXCacheTaggingCache.class.php │ │ ├── sfNoTaggingCache.class.php │ │ ├── sfTaggingCache.class.php │ │ └── sfTaggingCacheInterface.class.php │ │ ├── doctrine │ │ └── sfCachetaggableDoctrineRecord.class.php │ │ ├── exception │ │ ├── sfCacheDisabledException.class.php │ │ └── sfCacheMissingContextException.class.php │ │ ├── filter │ │ └── AuthParamFilter.class.php │ │ ├── log │ │ ├── sfCacheTagLogger.class.php │ │ ├── sfFileCacheTagLogger.class.php │ │ └── sfNoCacheTagLogger.class.php │ │ ├── request │ │ └── sfCacheTaggingWebRequest.class.php │ │ ├── util │ │ ├── sfCacheTaggingToolkit.class.php │ │ ├── sfCallableArray.class.php │ │ ├── sfContentTagHandler.class.php │ │ ├── sfTagNamespacedParameterHolder.class.php │ │ └── sfViewCacheTagManagerBridge.class.php │ │ ├── vendor │ │ └── Doctrine │ │ │ ├── Cache │ │ │ └── Proxy.php │ │ │ ├── Collection │ │ │ └── Cachetaggable.php │ │ │ ├── Connection │ │ │ └── CachetaggableUnitOfWork.php │ │ │ ├── Query │ │ │ └── Cachetaggable.php │ │ │ └── Template │ │ │ ├── Cachetaggable.php │ │ │ └── Listener │ │ │ └── Cachetaggable.php │ │ └── view │ │ └── sfViewCacheTagManager.class.php ├── sfDoctrineGuardPlugin │ ├── LICENSE │ ├── README │ ├── VERSION │ ├── config │ │ ├── doctrine │ │ │ └── schema.yml │ │ └── sfDoctrineGuardPluginConfiguration.class.php │ ├── data │ │ ├── fixtures │ │ │ └── fixtures.yml.sample │ │ └── tasks │ │ │ └── .sf │ ├── i18n │ │ ├── sf_guard.es.xml │ │ └── sf_guard.fr.xml │ ├── lib │ │ ├── filter │ │ │ └── doctrine │ │ │ │ ├── PluginsfGuardGroupFormFilter.class.php │ │ │ │ ├── PluginsfGuardPermissionFormFilter.class.php │ │ │ │ └── PluginsfGuardUserFormFilter.class.php │ │ ├── form │ │ │ ├── base │ │ │ │ └── BasesfGuardRequestForgotPasswordForm.class.php │ │ │ ├── doctrine │ │ │ │ ├── PluginsfGuardGroupForm.class.php │ │ │ │ ├── PluginsfGuardPermissionForm.class.php │ │ │ │ ├── PluginsfGuardUserForm.class.php │ │ │ │ ├── base │ │ │ │ │ ├── BasesfGuardChangeUserPasswordForm.class.php │ │ │ │ │ ├── BasesfGuardFormSignin.class.php │ │ │ │ │ ├── BasesfGuardRegisterForm.class.php │ │ │ │ │ └── BasesfGuardUserAdminForm.class.php │ │ │ │ ├── sfGuardChangeUserPasswordForm.class.php │ │ │ │ ├── sfGuardFormSignin.class.php │ │ │ │ ├── sfGuardRegisterForm.class.php │ │ │ │ └── sfGuardUserAdminForm.class.php │ │ │ └── sfGuardRequestForgotPasswordForm.class.php │ │ ├── model │ │ │ └── doctrine │ │ │ │ ├── PluginsfGuardForgotPassword.class.php │ │ │ │ ├── PluginsfGuardForgotPasswordTable.class.php │ │ │ │ ├── PluginsfGuardGroup.class.php │ │ │ │ ├── PluginsfGuardGroupPermission.class.php │ │ │ │ ├── PluginsfGuardGroupPermissionTable.class.php │ │ │ │ ├── PluginsfGuardGroupTable.class.php │ │ │ │ ├── PluginsfGuardPermission.class.php │ │ │ │ ├── PluginsfGuardPermissionTable.class.php │ │ │ │ ├── PluginsfGuardRememberKey.class.php │ │ │ │ ├── PluginsfGuardRememberKeyTable.class.php │ │ │ │ ├── PluginsfGuardUser.class.php │ │ │ │ ├── PluginsfGuardUserGroup.class.php │ │ │ │ ├── PluginsfGuardUserGroupTable.class.php │ │ │ │ ├── PluginsfGuardUserPermission.class.php │ │ │ │ ├── PluginsfGuardUserPermissionTable.class.php │ │ │ │ └── PluginsfGuardUserTable.class.php │ │ ├── routing │ │ │ └── sfGuardRouting.class.php │ │ ├── sfGuardBasicSecurityFilter.class.php │ │ ├── sfGuardRememberMeFilter.class.php │ │ ├── task │ │ │ ├── sfGuardAddGroupTask.class.php │ │ │ ├── sfGuardAddPermissionTask.class.php │ │ │ ├── sfGuardChangePasswordTask.class.php │ │ │ ├── sfGuardCreateUserTask.class.php │ │ │ └── sfGuardPromoteSuperAdminTask.class.php │ │ ├── user │ │ │ └── sfGuardSecurityUser.class.php │ │ └── validator │ │ │ └── sfGuardValidatorUser.class.php │ └── modules │ │ ├── sfGuardAuth │ │ ├── actions │ │ │ ├── actions.class.php │ │ │ └── components.class.php │ │ ├── config │ │ │ └── security.yml │ │ ├── lib │ │ │ ├── BasesfGuardAuthActions.class.php │ │ │ └── BasesfGuardAuthComponents.class.php │ │ └── templates │ │ │ ├── _signin_form.php │ │ │ ├── secureSuccess.php │ │ │ └── signinSuccess.php │ │ ├── sfGuardForgotPassword │ │ ├── actions │ │ │ └── actions.class.php │ │ ├── lib │ │ │ └── BasesfGuardForgotPasswordActions.class.php │ │ └── templates │ │ │ ├── _new_password.php │ │ │ ├── _send_request.php │ │ │ ├── changeSuccess.php │ │ │ └── indexSuccess.php │ │ ├── sfGuardGroup │ │ ├── actions │ │ │ └── actions.class.php │ │ ├── config │ │ │ └── generator.yml │ │ └── lib │ │ │ ├── sfGuardGroupGeneratorConfiguration.class.php │ │ │ └── sfGuardGroupGeneratorHelper.class.php │ │ ├── sfGuardPermission │ │ ├── actions │ │ │ └── actions.class.php │ │ ├── config │ │ │ └── generator.yml │ │ └── lib │ │ │ ├── sfGuardPermissionGeneratorConfiguration.class.php │ │ │ └── sfGuardPermissionGeneratorHelper.class.php │ │ ├── sfGuardRegister │ │ ├── actions │ │ │ ├── actions.class.php │ │ │ └── components.class.php │ │ ├── lib │ │ │ ├── BasesfGuardRegisterActions.class.php │ │ │ └── BasesfGuardRegisterComponents.class.php │ │ └── templates │ │ │ ├── _form.php │ │ │ └── indexSuccess.php │ │ └── sfGuardUser │ │ ├── actions │ │ └── actions.class.php │ │ ├── config │ │ └── generator.yml │ │ └── lib │ │ ├── BasesfGuardUserActions.class.php │ │ ├── sfGuardUserGeneratorConfiguration.class.php │ │ └── sfGuardUserGeneratorHelper.class.php └── sfFormExtraPlugin │ ├── LICENSE │ ├── README │ ├── bin │ └── prove.php │ ├── lib │ ├── form │ │ └── sfFormLanguage.class.php │ ├── validator │ │ ├── doctrine │ │ │ └── sfValidatorDoctrineNestedSetLevel.class.php │ │ ├── sfValidatorBlacklist.class.php │ │ ├── sfValidatorDefault.class.php │ │ ├── sfValidatorReCaptcha.class.php │ │ └── sfValidatorSchemaTimeInterval.class.php │ └── widget │ │ ├── sfWidgetFormDoctrineChoiceGrouped.class.php │ │ ├── sfWidgetFormDoctrineJQueryAutocompleter.class.php │ │ ├── sfWidgetFormJQueryAutocompleter.class.php │ │ ├── sfWidgetFormJQueryDate.class.php │ │ ├── sfWidgetFormPropelChoiceGrouped.class.php │ │ ├── sfWidgetFormPropelJQueryAutocompleter.class.php │ │ ├── sfWidgetFormReCaptcha.class.php │ │ ├── sfWidgetFormSelectDoubleList.class.php │ │ ├── sfWidgetFormSelectUSState.class.php │ │ └── sfWidgetFormTextareaTinyMCE.class.php │ ├── test │ ├── bootstrap.php │ ├── form │ │ └── sfFormLanguageTest.php │ ├── validator │ │ ├── sfValidatorBlacklistTest.php │ │ ├── sfValidatorDefaultTest.php │ │ ├── sfValidatorReCaptchaTest.php │ │ └── sfValidatorSchemaTimeIntervalTest.php │ └── widget │ │ └── sfWidgetFormReCaptchaTest.php │ └── web │ ├── css │ └── jquery.autocompleter.css │ ├── images │ ├── indicator.gif │ ├── next.png │ └── previous.png │ └── js │ ├── double_list.js │ └── jquery.autocompleter.js ├── symfony ├── test ├── bootstrap │ ├── functional.php │ └── unit.php └── stresstest │ ├── signing-workflow.jmx │ └── widgets.csv └── web ├── .htaccess ├── css ├── .htaccess ├── FontAwesome │ └── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── screen-reader.less │ │ ├── stacked.less │ │ └── variables.less ├── bootstrap-custom.less ├── bootstrap-mixins-fixed.less ├── bootstrap-responsive-fixed.less ├── bootstrap.sass ├── counterbar.css ├── dashboard.less ├── email.css ├── frontend.less ├── frontend_print.less ├── markdown │ ├── images │ │ ├── bold.png │ │ ├── code.png │ │ ├── h1.png │ │ ├── h2.png │ │ ├── h3.png │ │ ├── h4.png │ │ ├── h5.png │ │ ├── h6.png │ │ ├── italic.png │ │ ├── link.png │ │ ├── list-bullet.png │ │ ├── list-numeric.png │ │ ├── picture.png │ │ ├── preview.png │ │ └── quotes.png │ └── style.css ├── policat_widget.less ├── policat_widget_variables.less └── theme │ ├── classic-modified.less │ ├── flat.less │ ├── light.less │ ├── minimal.less │ ├── sleek-variant-1.less │ └── sleek.less ├── favicon.ico ├── fonts ├── .htaccess ├── FontAwesome │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── OpenSans │ ├── OpenSans-Bold.eot │ ├── OpenSans-Bold.woff │ ├── OpenSans-Regular.eot │ ├── OpenSans-Regular.woff │ └── OpenSans.css └── Roboto │ ├── Roboto-Black-webfont.eot │ ├── Roboto-Black-webfont.woff │ ├── Roboto-Bold-webfont.eot │ ├── Roboto-Bold-webfont.woff │ ├── Roboto-BoldItalic-webfont.eot │ ├── Roboto-BoldItalic-webfont.woff │ ├── Roboto-Italic-webfont.eot │ ├── Roboto-Italic-webfont.woff │ ├── Roboto-Regular-webfont.eot │ ├── Roboto-Regular-webfont.woff │ └── Roboto.css ├── frontend.php ├── frontend_dev.php ├── frontend_stress.php ├── images_static ├── .htaccess ├── bg_button.spr.png ├── bg_footer.png ├── bg_header.png ├── bg_signbox.png ├── bg_twitter_bubble.png ├── charity-32.png ├── charity-64.png ├── clipboard-64.png ├── code-32.png ├── code-64.png ├── email-32.png ├── email-64.png ├── facebook-32.png ├── facebook-64.png ├── googleplus-32.png ├── icon_rss.png ├── line_tab.png ├── logo.png ├── markitup-policat-block.png ├── markitup-policat-link.png ├── markitup-policat-media.png ├── pay-direct-debit.png ├── pay-maestro.png ├── pay-mastercard.png ├── pay-paypal.png ├── pay-visa.png ├── pixel.png ├── pledge.spr.png ├── policat_test_keyvisual.png ├── twitter-32.png ├── twitter-64.png ├── underline1.png ├── whatsapp-32.png └── whatsapp-64.png ├── js ├── .htaccess ├── counterbar_generator.js ├── dashboard.js ├── dashboard_home.js ├── lib │ └── iframeResizer │ │ ├── iframeResizer.contentWindow.min.js │ │ └── iframeResizer.min.js ├── policat.js ├── policat_counterbar.js ├── policat_widget.js ├── policat_widget_outer.js ├── preview.html └── signers.js ├── robots.txt ├── sf ├── sfDoctrinePlugin ├── css │ ├── default.css │ └── global.css └── images │ ├── asc.png │ ├── default.png │ ├── delete.png │ ├── desc.png │ ├── edit.png │ ├── error.png │ ├── first.png │ ├── last.png │ ├── list.png │ ├── new.png │ ├── next.png │ ├── previous.png │ └── tick.png ├── sfFormExtraPlugin ├── css │ └── jquery.autocompleter.css ├── images │ ├── indicator.gif │ ├── next.png │ └── previous.png └── js │ ├── double_list.js │ └── jquery.autocompleter.js ├── widget.php ├── widget_dev.php ├── widget_page.html └── widget_stress.php /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/default.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/LICENSE -------------------------------------------------------------------------------- /apps/frontend/config/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/config/app.yml -------------------------------------------------------------------------------- /apps/frontend/config/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/config/cache.yml -------------------------------------------------------------------------------- /apps/frontend/config/factories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/config/factories.yml -------------------------------------------------------------------------------- /apps/frontend/config/filters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/config/filters.yml -------------------------------------------------------------------------------- /apps/frontend/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/config/routing.yml -------------------------------------------------------------------------------- /apps/frontend/config/security.yml: -------------------------------------------------------------------------------- 1 | default: 2 | is_secure: true 3 | credentials: [[admin, user]] -------------------------------------------------------------------------------- /apps/frontend/config/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/config/settings.yml -------------------------------------------------------------------------------- /apps/frontend/config/view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/config/view.yml -------------------------------------------------------------------------------- /apps/frontend/lib/form/EditPetitionForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/EditPetitionForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/form/EditWidgetForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/EditWidgetForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/form/FilterUserForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/FilterUserForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/form/FilterWidgetForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/FilterWidgetForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/form/NewPetitionForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/NewPetitionForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/form/ProfileForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/ProfileForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/form/RegisterForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/RegisterForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/form/StoreForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/StoreForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/form/TestmailForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/TestmailForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/form/TranslationForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/TranslationForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/form/UnblockForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/form/UnblockForm.class.php -------------------------------------------------------------------------------- /apps/frontend/lib/helper/TemplateHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/helper/TemplateHelper.php -------------------------------------------------------------------------------- /apps/frontend/lib/myUser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/lib/myUser.class.php -------------------------------------------------------------------------------- /apps/frontend/modules/account/config/cache.yml: -------------------------------------------------------------------------------- 1 | _ajaxSignin: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /apps/frontend/modules/account/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/account/config/security.yml -------------------------------------------------------------------------------- /apps/frontend/modules/account/config/view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/account/config/view.yml -------------------------------------------------------------------------------- /apps/frontend/modules/admin_campaign/config/security.yml: -------------------------------------------------------------------------------- 1 | default: 2 | is_secure: true 3 | credentials: system -------------------------------------------------------------------------------- /apps/frontend/modules/admin_petition/config/security.yml: -------------------------------------------------------------------------------- 1 | default: 2 | is_secure: true 3 | credentials: system -------------------------------------------------------------------------------- /apps/frontend/modules/admin_petition_text/config/security.yml: -------------------------------------------------------------------------------- 1 | default: 2 | is_secure: true 3 | credentials: system -------------------------------------------------------------------------------- /apps/frontend/modules/bill/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/bill/config/security.yml -------------------------------------------------------------------------------- /apps/frontend/modules/bill/templates/_bill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/bill/templates/_bill.php -------------------------------------------------------------------------------- /apps/frontend/modules/bill/templates/_new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/bill/templates/_new.php -------------------------------------------------------------------------------- /apps/frontend/modules/bounce/templates/_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/bounce/templates/_list.php -------------------------------------------------------------------------------- /apps/frontend/modules/country/config/security.yml: -------------------------------------------------------------------------------- 1 | default: 2 | is_secure: true 3 | credentials: admin -------------------------------------------------------------------------------- /apps/frontend/modules/d_action/config/security.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/frontend/modules/d_action/config/view.yml: -------------------------------------------------------------------------------- 1 | all: 2 | metas: { title: Action } 3 | -------------------------------------------------------------------------------- /apps/frontend/modules/d_action/templates/_spf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/d_action/templates/_spf.php -------------------------------------------------------------------------------- /apps/frontend/modules/d_campaign/config/view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/d_campaign/config/view.yml -------------------------------------------------------------------------------- /apps/frontend/modules/d_home/config/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/d_home/config/cache.yml -------------------------------------------------------------------------------- /apps/frontend/modules/d_home/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/d_home/config/security.yml -------------------------------------------------------------------------------- /apps/frontend/modules/d_home/config/view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/d_home/config/view.yml -------------------------------------------------------------------------------- /apps/frontend/modules/d_home/templates/_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/d_home/templates/_menu.php -------------------------------------------------------------------------------- /apps/frontend/modules/d_widget/config/security.yml: -------------------------------------------------------------------------------- 1 | widgetval: 2 | is_secure: false -------------------------------------------------------------------------------- /apps/frontend/modules/d_widget/config/view.yml: -------------------------------------------------------------------------------- 1 | all: 2 | metas: { title: Widget } 3 | -------------------------------------------------------------------------------- /apps/frontend/modules/dashboard/config/view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/frontend/modules/dashboard/config/view.yml -------------------------------------------------------------------------------- /apps/frontend/modules/dashboard/templates/adminSuccess.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/widget/modules/facebook/templates/canvasSuccess.php: -------------------------------------------------------------------------------- 1 |

policat.org canvas

2 | -------------------------------------------------------------------------------- /apps/widget/modules/home/config/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/widget/modules/home/config/cache.yml -------------------------------------------------------------------------------- /apps/widget/modules/home/templates/_footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/widget/modules/home/templates/_footer.php -------------------------------------------------------------------------------- /apps/widget/modules/pledge_contact/config/security.yml: -------------------------------------------------------------------------------- 1 | default: 2 | is_secure: false 3 | -------------------------------------------------------------------------------- /apps/widget/modules/signers/config/cache.yml: -------------------------------------------------------------------------------- 1 | index: 2 | enabled: true 3 | lifetime: 60 4 | -------------------------------------------------------------------------------- /apps/widget/modules/signers/config/view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/widget/modules/signers/config/view.yml -------------------------------------------------------------------------------- /apps/widget/modules/widget/config/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/widget/modules/widget/config/cache.yml -------------------------------------------------------------------------------- /apps/widget/modules/widget/config/view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/widget/modules/widget/config/view.yml -------------------------------------------------------------------------------- /apps/widget/modules/widget/templates/testSuccess.php: -------------------------------------------------------------------------------- 1 |

Test

-------------------------------------------------------------------------------- /apps/widget/templates/_title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/widget/templates/_title.php -------------------------------------------------------------------------------- /apps/widget/templates/clean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/widget/templates/clean.php -------------------------------------------------------------------------------- /apps/widget/templates/facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/widget/templates/facebook.php -------------------------------------------------------------------------------- /apps/widget/templates/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/apps/widget/templates/layout.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/composer.lock -------------------------------------------------------------------------------- /config/ProjectConfiguration.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/config/ProjectConfiguration.class.php -------------------------------------------------------------------------------- /config/app.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/config/app.yml.dist -------------------------------------------------------------------------------- /config/databases.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/config/databases.yml.dist -------------------------------------------------------------------------------- /config/doctrine/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/config/doctrine/schema.yml -------------------------------------------------------------------------------- /config/factories.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/config/factories.yml.dist -------------------------------------------------------------------------------- /config/properties.ini.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/config/properties.ini.dist -------------------------------------------------------------------------------- /config/rsync_exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/config/rsync_exclude.txt -------------------------------------------------------------------------------- /config/settings.yml.dist: -------------------------------------------------------------------------------- 1 | # prod: 2 | # logging_enabled: true 3 | -------------------------------------------------------------------------------- /config/unavailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/config/unavailable.php -------------------------------------------------------------------------------- /config/varnish.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/config/varnish.vcl -------------------------------------------------------------------------------- /crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/crontab -------------------------------------------------------------------------------- /data/fixtures/001_roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/data/fixtures/001_roles.yml -------------------------------------------------------------------------------- /data/fixtures/002_language.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/data/fixtures/002_language.yml -------------------------------------------------------------------------------- /data/fixtures/010_profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/data/fixtures/010_profiles.yml -------------------------------------------------------------------------------- /data/fixtures/fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/data/fixtures/fixtures.yml -------------------------------------------------------------------------------- /data/privacy_policy/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/data/privacy_policy/en.txt -------------------------------------------------------------------------------- /data/privacy_policy/en4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/data/privacy_policy/en4.txt -------------------------------------------------------------------------------- /data/sql/fix_sql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/data/sql/fix_sql.sh -------------------------------------------------------------------------------- /data/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/data/sql/schema.sql -------------------------------------------------------------------------------- /doc/docker-develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/doc/docker-develop.md -------------------------------------------------------------------------------- /doc/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/doc/install.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/config-develop/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/docker/config-develop/app.yml -------------------------------------------------------------------------------- /docker/config-develop/databases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/docker/config-develop/databases.yml -------------------------------------------------------------------------------- /docker/config-develop/factories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/docker/config-develop/factories.yml -------------------------------------------------------------------------------- /docker/config-develop/properties.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/docker/config-develop/properties.ini -------------------------------------------------------------------------------- /docker/data-develop/.gitdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/docker/nginx/default.conf -------------------------------------------------------------------------------- /docker/xhgui/xhgui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/docker/xhgui/xhgui.js -------------------------------------------------------------------------------- /docker/xhgui/xhgui_index_cap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/docker/xhgui/xhgui_index_cap.php -------------------------------------------------------------------------------- /git-delete-local-merged-branches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/git-delete-local-merged-branches -------------------------------------------------------------------------------- /init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/init -------------------------------------------------------------------------------- /lib/WidgetFormInputCheckbox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/WidgetFormInputCheckbox.class.php -------------------------------------------------------------------------------- /lib/action/policatActions.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/action/policatActions.class.php -------------------------------------------------------------------------------- /lib/action/policatComponents.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/action/policatComponents.class.php -------------------------------------------------------------------------------- /lib/cache/sfViewCacheTagManagerPolicat.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/cache/sfViewCacheTagManagerPolicat.class.php -------------------------------------------------------------------------------- /lib/filter/doctrine/CampaignFormFilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/filter/doctrine/CampaignFormFilter.class.php -------------------------------------------------------------------------------- /lib/filter/doctrine/ContactFormFilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/filter/doctrine/ContactFormFilter.class.php -------------------------------------------------------------------------------- /lib/filter/doctrine/DownloadFormFilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/filter/doctrine/DownloadFormFilter.class.php -------------------------------------------------------------------------------- /lib/filter/doctrine/MediaFileFormFilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/filter/doctrine/MediaFileFormFilter.class.php -------------------------------------------------------------------------------- /lib/filter/doctrine/PledgeFormFilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/filter/doctrine/PledgeFormFilter.class.php -------------------------------------------------------------------------------- /lib/filter/doctrine/TaxNoteFormFilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/filter/doctrine/TaxNoteFormFilter.class.php -------------------------------------------------------------------------------- /lib/filter/doctrine/TicketFormFilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/filter/doctrine/TicketFormFilter.class.php -------------------------------------------------------------------------------- /lib/filter/policatFilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/filter/policatFilter.class.php -------------------------------------------------------------------------------- /lib/filter/policatFilterArray.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/filter/policatFilterArray.class.php -------------------------------------------------------------------------------- /lib/form/BaseForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/BaseForm.class.php -------------------------------------------------------------------------------- /lib/form/CampaignRightsForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/CampaignRightsForm.class.php -------------------------------------------------------------------------------- /lib/form/DeleteForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/DeleteForm.class.php -------------------------------------------------------------------------------- /lib/form/MemberRightsForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/MemberRightsForm.class.php -------------------------------------------------------------------------------- /lib/form/OrderNewForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/OrderNewForm.class.php -------------------------------------------------------------------------------- /lib/form/WidgetPublicForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/WidgetPublicForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/ApiTokenOffsetForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/ApiTokenOffsetForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/BaseFormDoctrine.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/BaseFormDoctrine.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/BillForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/BillForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/BillItemForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/BillItemForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/CampaignForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/CampaignForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/CampaignStoreForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/CampaignStoreForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/ContactForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/ContactForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/CountryCollectionForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/CountryCollectionForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/CountryTaxForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/CountryTaxForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/DefaultTextForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/DefaultTextForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/DownloadForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/DownloadForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/FacebookTabForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/FacebookTabForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/LanguageForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/LanguageForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/MailingListForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/MailingListForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/MailingListMetaForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/MailingListMetaForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/MappingForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/MappingForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/MappingPairForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/MappingPairForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/MediaFileForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/MediaFileForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/MemberForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/MemberForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/OfferForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/OfferForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/OfferItemForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/OfferItemForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/OrderForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/OrderForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/OwnerForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/OwnerForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/PetitionApiTokenForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/PetitionApiTokenForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/PetitionContactForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/PetitionContactForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/PetitionForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/PetitionForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/PetitionSigningForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/PetitionSigningForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/PetitionTextForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/PetitionTextForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/PledgeForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/PledgeForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/PledgeItemForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/PledgeItemForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/PledgeTextForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/PledgeTextForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/PrivacyPolicyForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/PrivacyPolicyForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/ProductForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/ProductForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/QuotaForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/QuotaForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/TaxNoteForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/TaxNoteForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/TicketForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/TicketForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/WidgetForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/WidgetForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseBillForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseBillForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseBillItemForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseBillItemForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseCampaignForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseCampaignForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseContactForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseContactForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseDownloadForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseDownloadForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseLanguageForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseLanguageForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseMappingForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseMappingForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseMemberForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseMemberForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseOfferForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseOfferForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseOrderForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseOrderForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseOwnerForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseOwnerForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BasePetitionForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BasePetitionForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BasePledgeForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BasePledgeForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseProductForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseProductForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseQuotaForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseQuotaForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseTaxNoteForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseTaxNoteForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseTicketForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseTicketForm.class.php -------------------------------------------------------------------------------- /lib/form/doctrine/base/BaseWidgetForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/doctrine/base/BaseWidgetForm.class.php -------------------------------------------------------------------------------- /lib/form/myLoginForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/form/myLoginForm.class.php -------------------------------------------------------------------------------- /lib/i18n/sfCultureInfo.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/i18n/sfCultureInfo.class.php -------------------------------------------------------------------------------- /lib/mailer/policatDoctrineSpool.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/mailer/policatDoctrineSpool.class.php -------------------------------------------------------------------------------- /lib/mailer/policatMailer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/mailer/policatMailer.class.php -------------------------------------------------------------------------------- /lib/mailexport/Mailexport.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/mailexport/Mailexport.class.php -------------------------------------------------------------------------------- /lib/mailexport/MailexportRapidmail.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/mailexport/MailexportRapidmail.class.php -------------------------------------------------------------------------------- /lib/mailexport/MailexportSettingForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/mailexport/MailexportSettingForm.class.php -------------------------------------------------------------------------------- /lib/memcacheshim/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/memcacheshim/LICENSE.txt -------------------------------------------------------------------------------- /lib/memcacheshim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/memcacheshim/README.md -------------------------------------------------------------------------------- /lib/memcacheshim/memcacheshim.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/memcacheshim/memcacheshim.class.php -------------------------------------------------------------------------------- /lib/memcacheshim/memcacheshim.functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/memcacheshim/memcacheshim.functions.php -------------------------------------------------------------------------------- /lib/memcacheshim/memcacheshim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/memcacheshim/memcacheshim.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1271679381_version1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1271679381_version1.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1272442770_version2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1272442770_version2.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1272442771_version3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1272442771_version3.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1272443201_version4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1272443201_version4.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1297335314_version5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1297335314_version5.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1297685645_version6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1297685645_version6.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1297685646_version7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1297685646_version7.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1297847906_version8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1297847906_version8.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1301670691_version9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1301670691_version9.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1301670692_version10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1301670692_version10.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1301989640_version11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1301989640_version11.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302010255_version12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302010255_version12.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302179460_version13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302179460_version13.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302179461_version14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302179461_version14.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302249528_version15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302249528_version15.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302249529_version16.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302249529_version16.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302273918_version17.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302273918_version17.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302273919_version18.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302273919_version18.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302502050_version19.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302502050_version19.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302502051_version20.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302502051_version20.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302510213_version21.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302510213_version21.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302605928_version22.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302605928_version22.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302605929_version23.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302605929_version23.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1302868854_version24.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1302868854_version24.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1303310103_version25.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1303310103_version25.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1305622027_version26.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1305622027_version26.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1305622028_version27.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1305622028_version27.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1305624292_version28.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1305624292_version28.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1305723762_version29.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1305723762_version29.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1305723763_version30.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1305723763_version30.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1306169443_version31.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1306169443_version31.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1306169444_version32.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1306169444_version32.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1306397236_version33.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1306397236_version33.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1306416924_version34.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1306416924_version34.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1306416925_version35.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1306416925_version35.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1306748206_version36.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1306748206_version36.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1306756734_version37.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1306756734_version37.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1330512374_version38.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1330512374_version38.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1330512375_version39.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1330512375_version39.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1330512376_version40.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1330512376_version40.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1330596063_version41.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1330596063_version41.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1330596064_version42.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1330596064_version42.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1331127985_version43.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1331127985_version43.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1331127986_version44.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1331127986_version44.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1331129989_version45.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1331129989_version45.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1331129990_version46.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1331129990_version46.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1333456419_version47.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1333456419_version47.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1333456420_version48.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1333456420_version48.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1335180623_version49.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1335180623_version49.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1335268224_version50.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1335268224_version50.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1336464772_version51.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1336464772_version51.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1336464773_version52.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1336464773_version52.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1336466426_version53.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1336466426_version53.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1336466427_version54.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1336466427_version54.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1336996706_version55.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1336996706_version55.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1336996707_version56.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1336996707_version56.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1337004540_version57.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1337004540_version57.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1337004541_version58.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1337004541_version58.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1337180758_version59.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1337180758_version59.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1337180759_version60.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1337180759_version60.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1337182052_version61.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1337182052_version61.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1337696706_version62.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1337696706_version62.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1337696707_version63.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1337696707_version63.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1337772104_version64.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1337772104_version64.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1337772105_version65.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1337772105_version65.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1338464584_version66.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1338464584_version66.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1339165447_version67.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1339165447_version67.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1341834405_version68.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1341834405_version68.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1343723871_version69.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1343723871_version69.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1366631283_version70.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1366631283_version70.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1366631284_version71.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1366631284_version71.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1366633484_version72.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1366633484_version72.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1366920203_version73.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1366920203_version73.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1368703804_version74.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1368703804_version74.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1375003249_version75.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1375003249_version75.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1377688770_version76.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1377688770_version76.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1389783501_version77.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1389783501_version77.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1389783502_version78.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1389783502_version78.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1393922830_version79.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1393922830_version79.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1395395170_version80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1395395170_version80.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1395395171_version81.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1395395171_version81.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1395406733_version82.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1395406733_version82.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1395406734_version83.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1395406734_version83.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1395407825_version84.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1395407825_version84.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1395653908_version85.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1395653908_version85.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1395671529_version86.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1395671529_version86.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1395671530_version87.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1395671530_version87.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1395738730_version88.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1395738730_version88.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1395826056_version89.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1395826056_version89.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1396360276_version90.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1396360276_version90.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1396522165_version91.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1396522165_version91.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1396534880_version92.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1396534880_version92.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1396598553_version93.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1396598553_version93.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1397478843_version94.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1397478843_version94.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1397642151_version95.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1397642151_version95.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1409839539_version96.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1409839539_version96.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1409842900_version97.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1409842900_version97.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1409842901_version98.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1409842901_version98.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1409917827_version99.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1409917827_version99.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1410523951_version100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1410523951_version100.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1411651734_version101.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1411651734_version101.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1411713804_version102.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1411713804_version102.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1411734914_version103.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1411734914_version103.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1411734915_version104.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1411734915_version104.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1412065223_version105.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1412065223_version105.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1413281189_version106.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1413281189_version106.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1413294483_version107.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1413294483_version107.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1413294484_version108.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1413294484_version108.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1413380014_version109.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1413380014_version109.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1413529315_version110.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1413529315_version110.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1413544467_version111.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1413544467_version111.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1413544468_version112.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1413544468_version112.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1415016286_version113.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1415016286_version113.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1415016287_version114.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1415016287_version114.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1415614922_version115.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1415614922_version115.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1417003920_version116.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1417003920_version116.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1423057699_version117.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1423057699_version117.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1423057700_version118.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1423057700_version118.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1423137778_version119.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1423137778_version119.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1424263375_version120.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1424263375_version120.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1427802557_version121.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1427802557_version121.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428405091_version122.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428405091_version122.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428405092_version123.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428405092_version123.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428417698_version124.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428417698_version124.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428417699_version125.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428417699_version125.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428488375_version126.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428488375_version126.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428652080_version127.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428652080_version127.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428652081_version128.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428652081_version128.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428673484_version129.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428673484_version129.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428911814_version130.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428911814_version130.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428918552_version131.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428918552_version131.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1428918553_version132.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1428918553_version132.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1429008826_version133.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1429008826_version133.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1429008827_version134.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1429008827_version134.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1429186655_version135.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1429186655_version135.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1429186656_version136.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1429186656_version136.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1429267545_version137.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1429267545_version137.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1429529780_version138.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1429529780_version138.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1429609835_version139.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1429609835_version139.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1429609836_version140.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1429609836_version140.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1430214223_version141.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1430214223_version141.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1430746726_version142.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1430746726_version142.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1433329280_version143.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1433329280_version143.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1433329281_version144.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1433329281_version144.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1433489436_version145.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1433489436_version145.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1434612444_version146.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1434612444_version146.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1436257528_version147.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1436257528_version147.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1436272802_version148.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1436272802_version148.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1438324122_version149.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1438324122_version149.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1438781855_version150.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1438781855_version150.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1438783799_version151.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1438783799_version151.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1439191729_version152.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1439191729_version152.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1442315894_version153.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1442315894_version153.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1442471230_version154.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1442471230_version154.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1442483176_version155.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1442483176_version155.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1442993030_version156.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1442993030_version156.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1444635945_version157.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1444635945_version157.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1445410750_version158.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1445410750_version158.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1445410751_version159.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1445410751_version159.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1445420631_version160.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1445420631_version160.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1445421057_version161.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1445421057_version161.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1462800074_version162.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1462800074_version162.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1462866203_version163.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1462866203_version163.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1462866204_version164.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1462866204_version164.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1463996712_version165.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1463996712_version165.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1464352114_version166.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1464352114_version166.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1464773201_version167.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1464773201_version167.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1464778949_version168.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1464778949_version168.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1464859013_version169.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1464859013_version169.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1464937157_version170.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1464937157_version170.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1465385339_version171.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1465385339_version171.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1465395247_version172.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1465395247_version172.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1465547634_version173.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1465547634_version173.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1465573421_version174.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1465573421_version174.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1465974932_version175.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1465974932_version175.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1465980569_version176.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1465980569_version176.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1467965885_version177.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1467965885_version177.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1467979634_version178.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1467979634_version178.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1472111794_version179.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1472111794_version179.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1472470355_version180.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1472470355_version180.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1472470356_version181.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1472470356_version181.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1472476273_version182.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1472476273_version182.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1472478180_version183.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1472478180_version183.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1472625999_version184.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1472625999_version184.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1472729671_version185.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1472729671_version185.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1472729672_version186.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1472729672_version186.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1472730970_version187.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1472730970_version187.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1472730971_version188.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1472730971_version188.php -------------------------------------------------------------------------------- /lib/migration/doctrine/1473075179_version189.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/migration/doctrine/1473075179_version189.php -------------------------------------------------------------------------------- /lib/model/BillInterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/BillInterface.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/ApiTokenOffset.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/ApiTokenOffset.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Bill.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Bill.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/BillItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/BillItem.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/BillItemTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/BillItemTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/BillTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/BillTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Campaign.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Campaign.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/CampaignRights.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/CampaignRights.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/CampaignStore.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/CampaignStore.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/CampaignTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/CampaignTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Contact.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Contact.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/ContactMeta.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/ContactMeta.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/ContactMetaTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/ContactMetaTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/ContactTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/ContactTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/CountryCollection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/CountryCollection.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/CountryTax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/CountryTax.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/CountryTaxTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/CountryTaxTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/DefaultText.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/DefaultText.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/DefaultTextTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/DefaultTextTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/DigestEmail.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/DigestEmail.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/DigestEmailTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/DigestEmailTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Download.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Download.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/DownloadTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/DownloadTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/FacebookTab.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/FacebookTab.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/FacebookTabTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/FacebookTabTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Group.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Group.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/GroupMember.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/GroupMember.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/GroupMemberTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/GroupMemberTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/GroupPermission.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/GroupPermission.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/GroupTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/GroupTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Invitation.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Invitation.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/InvitationTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/InvitationTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Language.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Language.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/LanguageTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/LanguageTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MailMessage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MailMessage.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MailMessageTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MailMessageTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MailingList.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MailingList.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MailingListMeta.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MailingListMeta.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MailingListTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MailingListTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Mapping.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Mapping.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MappingPair.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MappingPair.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MappingPairTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MappingPairTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MappingTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MappingTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MediaFile.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MediaFile.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MediaFileTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MediaFileTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Member.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Member.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MemberTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MemberTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/MigrationVersion.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/MigrationVersion.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Offer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Offer.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/OfferItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/OfferItem.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/OfferItemTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/OfferItemTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/OfferTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/OfferTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Order.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Order.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/OrderTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/OrderTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Owner.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Owner.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/OwnerTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/OwnerTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Permission.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Permission.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PermissionTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PermissionTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Petition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Petition.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PetitionApiToken.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PetitionApiToken.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PetitionContact.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PetitionContact.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PetitionRights.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PetitionRights.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PetitionSigning.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PetitionSigning.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PetitionTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PetitionTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PetitionText.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PetitionText.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PetitionTextTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PetitionTextTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Pledge.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Pledge.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PledgeItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PledgeItem.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PledgeItemTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PledgeItemTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PledgeTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PledgeTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PledgeText.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PledgeText.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PledgeTextTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PledgeTextTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/PrivacyPolicy.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/PrivacyPolicy.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Product.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Product.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/ProductTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/ProductTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/QueryCache.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/QueryCache.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/QueryCacheTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/QueryCacheTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Quota.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Quota.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/QuotaTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/QuotaTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Registry.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Registry.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/RegistryTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/RegistryTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Store.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Store.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/StoreTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/StoreTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/TargetListRights.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/TargetListRights.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/TaxNote.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/TaxNote.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/TaxNoteTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/TaxNoteTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Ticket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Ticket.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/TicketTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/TicketTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/Widget.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/Widget.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/WidgetOwner.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/WidgetOwner.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/WidgetOwnerTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/WidgetOwnerTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/WidgetTable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/WidgetTable.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseBill.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseBill.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseBillItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseBillItem.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseCampaign.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseCampaign.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseContact.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseContact.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseDownload.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseDownload.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseGroup.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseGroup.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseLanguage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseLanguage.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseMapping.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseMapping.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseMember.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseMember.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseOffer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseOffer.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseOrder.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseOrder.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseOwner.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseOwner.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BasePetition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BasePetition.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BasePledge.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BasePledge.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseProduct.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseProduct.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseQuota.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseQuota.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseRegistry.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseRegistry.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseStore.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseStore.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseTaxNote.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseTaxNote.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseTicket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseTicket.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/base/BaseWidget.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/base/BaseWidget.class.php -------------------------------------------------------------------------------- /lib/model/doctrine/myDoctrineRecord.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/model/doctrine/myDoctrineRecord.class.php -------------------------------------------------------------------------------- /lib/pager/policatPager.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/pager/policatPager.class.php -------------------------------------------------------------------------------- /lib/routing/policatRouting.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/routing/policatRouting.class.php -------------------------------------------------------------------------------- /lib/task/geoCronLoopTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/geoCronLoopTask.class.php -------------------------------------------------------------------------------- /lib/task/geoCronTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/geoCronTask.class.php -------------------------------------------------------------------------------- /lib/task/mailexportTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/mailexportTask.class.php -------------------------------------------------------------------------------- /lib/task/migrateJsonSigningsTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/migrateJsonSigningsTask.class.php -------------------------------------------------------------------------------- /lib/task/openActionsTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/openActionsTask.class.php -------------------------------------------------------------------------------- /lib/task/openEciFetchCounterTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/openEciFetchCounterTask.class.php -------------------------------------------------------------------------------- /lib/task/policatActionScheduleTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/policatActionScheduleTask.class.php -------------------------------------------------------------------------------- /lib/task/policatDeletePendingTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/policatDeletePendingTask.class.php -------------------------------------------------------------------------------- /lib/task/policatEmailHashTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/policatEmailHashTask.class.php -------------------------------------------------------------------------------- /lib/task/policatEmailHashWorkerTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/policatEmailHashWorkerTask.class.php -------------------------------------------------------------------------------- /lib/task/policatImportsigningsTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/policatImportsigningsTask.class.php -------------------------------------------------------------------------------- /lib/task/policatRecallPendingTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/policatRecallPendingTask.class.php -------------------------------------------------------------------------------- /lib/task/policatSendEmailsTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/policatSendEmailsTask.class.php -------------------------------------------------------------------------------- /lib/task/policatSigningsSearchTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/policatSigningsSearchTask.class.php -------------------------------------------------------------------------------- /lib/task/printI18NTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/printI18NTask.class.php -------------------------------------------------------------------------------- /lib/task/quotaCheckTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/quotaCheckTask.class.php -------------------------------------------------------------------------------- /lib/task/sendDigestEmailTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/sendDigestEmailTask.class.php -------------------------------------------------------------------------------- /lib/task/signings24Task.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/signings24Task.class.php -------------------------------------------------------------------------------- /lib/task/testMailTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/task/testMailTask.class.php -------------------------------------------------------------------------------- /lib/util/Ajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/Ajax.class.php -------------------------------------------------------------------------------- /lib/util/Util.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/Util.class.php -------------------------------------------------------------------------------- /lib/util/UtilBold.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilBold.class.php -------------------------------------------------------------------------------- /lib/util/UtilCSRF.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilCSRF.class.php -------------------------------------------------------------------------------- /lib/util/UtilEmailHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilEmailHash.php -------------------------------------------------------------------------------- /lib/util/UtilEmailLinks.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilEmailLinks.class.php -------------------------------------------------------------------------------- /lib/util/UtilEmailValidation.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilEmailValidation.class.php -------------------------------------------------------------------------------- /lib/util/UtilFont.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilFont.class.php -------------------------------------------------------------------------------- /lib/util/UtilHtmlPurifier.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilHtmlPurifier.class.php -------------------------------------------------------------------------------- /lib/util/UtilIdHash.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilIdHash.class.php -------------------------------------------------------------------------------- /lib/util/UtilLink.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilLink.class.php -------------------------------------------------------------------------------- /lib/util/UtilMail.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilMail.class.php -------------------------------------------------------------------------------- /lib/util/UtilMarkdown.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilMarkdown.class.php -------------------------------------------------------------------------------- /lib/util/UtilOpenActions.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilOpenActions.class.php -------------------------------------------------------------------------------- /lib/util/UtilPolicat.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilPolicat.class.php -------------------------------------------------------------------------------- /lib/util/UtilPrivacyPolicy.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilPrivacyPolicy.class.php -------------------------------------------------------------------------------- /lib/util/UtilRegistry.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilRegistry.class.php -------------------------------------------------------------------------------- /lib/util/UtilScrambleEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilScrambleEmail.php -------------------------------------------------------------------------------- /lib/util/UtilSpf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilSpf.php -------------------------------------------------------------------------------- /lib/util/UtilTargetSelectorPreselect.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilTargetSelectorPreselect.class.php -------------------------------------------------------------------------------- /lib/util/UtilThankYouEmail.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilThankYouEmail.class.php -------------------------------------------------------------------------------- /lib/util/UtilTheme.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilTheme.class.php -------------------------------------------------------------------------------- /lib/util/UtilWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilWidget.php -------------------------------------------------------------------------------- /lib/util/UtilXhprof.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/UtilXhprof.class.php -------------------------------------------------------------------------------- /lib/util/cssmin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/util/cssmin.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorCssColor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorCssColor.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorEmail.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorEmail.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorEmails.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorEmails.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorFreeId.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorFreeId.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorKeywords.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorKeywords.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorList.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorList.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorPassword.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorPassword.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorPetitionText.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorPetitionText.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorUnchanged.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorUnchanged.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorUniqueEmail.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorUniqueEmail.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorUrl.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorUrl.class.php -------------------------------------------------------------------------------- /lib/validator/ValidatorVat.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/validator/ValidatorVat.class.php -------------------------------------------------------------------------------- /lib/widget/FormatterRadio.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/widget/FormatterRadio.class.php -------------------------------------------------------------------------------- /lib/widget/WidgetBoolean.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/widget/WidgetBoolean.class.php -------------------------------------------------------------------------------- /lib/widget/WidgetPetitionText.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/widget/WidgetPetitionText.class.php -------------------------------------------------------------------------------- /lib/widget/sfWidgetCheckboxBootstrap.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/widget/sfWidgetCheckboxBootstrap.class.php -------------------------------------------------------------------------------- /lib/widget/sfWidgetFormSelectProduct.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/lib/widget/sfWidgetFormSelectProduct.class.php -------------------------------------------------------------------------------- /npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/npm -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/package.json -------------------------------------------------------------------------------- /plugins/sfCacheTaggingPlugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/plugins/sfCacheTaggingPlugin/LICENSE -------------------------------------------------------------------------------- /plugins/sfCacheTaggingPlugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/plugins/sfCacheTaggingPlugin/README -------------------------------------------------------------------------------- /plugins/sfCacheTaggingPlugin/config/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/plugins/sfCacheTaggingPlugin/config/app.yml -------------------------------------------------------------------------------- /plugins/sfDoctrineGuardPlugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/plugins/sfDoctrineGuardPlugin/LICENSE -------------------------------------------------------------------------------- /plugins/sfDoctrineGuardPlugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/plugins/sfDoctrineGuardPlugin/README -------------------------------------------------------------------------------- /plugins/sfDoctrineGuardPlugin/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.4 2 | -------------------------------------------------------------------------------- /plugins/sfDoctrineGuardPlugin/data/tasks/.sf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sfFormExtraPlugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/plugins/sfFormExtraPlugin/LICENSE -------------------------------------------------------------------------------- /plugins/sfFormExtraPlugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/plugins/sfFormExtraPlugin/README -------------------------------------------------------------------------------- /plugins/sfFormExtraPlugin/bin/prove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/plugins/sfFormExtraPlugin/bin/prove.php -------------------------------------------------------------------------------- /plugins/sfFormExtraPlugin/test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/plugins/sfFormExtraPlugin/test/bootstrap.php -------------------------------------------------------------------------------- /plugins/sfFormExtraPlugin/web/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/plugins/sfFormExtraPlugin/web/images/next.png -------------------------------------------------------------------------------- /symfony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/symfony -------------------------------------------------------------------------------- /test/bootstrap/functional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/test/bootstrap/functional.php -------------------------------------------------------------------------------- /test/bootstrap/unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/test/bootstrap/unit.php -------------------------------------------------------------------------------- /test/stresstest/signing-workflow.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/test/stresstest/signing-workflow.jmx -------------------------------------------------------------------------------- /test/stresstest/widgets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/test/stresstest/widgets.csv -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/css/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/.htaccess -------------------------------------------------------------------------------- /web/css/FontAwesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/animated.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/core.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/fixed-width.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/font-awesome.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/icons.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/larger.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/list.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/mixins.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/path.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/screen-reader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/screen-reader.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/stacked.less -------------------------------------------------------------------------------- /web/css/FontAwesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/FontAwesome/less/variables.less -------------------------------------------------------------------------------- /web/css/bootstrap-custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/bootstrap-custom.less -------------------------------------------------------------------------------- /web/css/bootstrap-mixins-fixed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/bootstrap-mixins-fixed.less -------------------------------------------------------------------------------- /web/css/bootstrap-responsive-fixed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/bootstrap-responsive-fixed.less -------------------------------------------------------------------------------- /web/css/bootstrap.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/bootstrap.sass -------------------------------------------------------------------------------- /web/css/counterbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/counterbar.css -------------------------------------------------------------------------------- /web/css/dashboard.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/dashboard.less -------------------------------------------------------------------------------- /web/css/email.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/email.css -------------------------------------------------------------------------------- /web/css/frontend.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/frontend.less -------------------------------------------------------------------------------- /web/css/frontend_print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/frontend_print.less -------------------------------------------------------------------------------- /web/css/markdown/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/bold.png -------------------------------------------------------------------------------- /web/css/markdown/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/code.png -------------------------------------------------------------------------------- /web/css/markdown/images/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/h1.png -------------------------------------------------------------------------------- /web/css/markdown/images/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/h2.png -------------------------------------------------------------------------------- /web/css/markdown/images/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/h3.png -------------------------------------------------------------------------------- /web/css/markdown/images/h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/h4.png -------------------------------------------------------------------------------- /web/css/markdown/images/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/h5.png -------------------------------------------------------------------------------- /web/css/markdown/images/h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/h6.png -------------------------------------------------------------------------------- /web/css/markdown/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/italic.png -------------------------------------------------------------------------------- /web/css/markdown/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/link.png -------------------------------------------------------------------------------- /web/css/markdown/images/list-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/list-bullet.png -------------------------------------------------------------------------------- /web/css/markdown/images/list-numeric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/list-numeric.png -------------------------------------------------------------------------------- /web/css/markdown/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/picture.png -------------------------------------------------------------------------------- /web/css/markdown/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/preview.png -------------------------------------------------------------------------------- /web/css/markdown/images/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/images/quotes.png -------------------------------------------------------------------------------- /web/css/markdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/markdown/style.css -------------------------------------------------------------------------------- /web/css/policat_widget.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/policat_widget.less -------------------------------------------------------------------------------- /web/css/policat_widget_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/policat_widget_variables.less -------------------------------------------------------------------------------- /web/css/theme/classic-modified.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/theme/classic-modified.less -------------------------------------------------------------------------------- /web/css/theme/flat.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/theme/flat.less -------------------------------------------------------------------------------- /web/css/theme/light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/theme/light.less -------------------------------------------------------------------------------- /web/css/theme/minimal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/theme/minimal.less -------------------------------------------------------------------------------- /web/css/theme/sleek-variant-1.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/theme/sleek-variant-1.less -------------------------------------------------------------------------------- /web/css/theme/sleek.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/css/theme/sleek.less -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/fonts/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/.htaccess -------------------------------------------------------------------------------- /web/fonts/FontAwesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/FontAwesome/FontAwesome.otf -------------------------------------------------------------------------------- /web/fonts/FontAwesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/FontAwesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /web/fonts/FontAwesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/FontAwesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /web/fonts/FontAwesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/FontAwesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /web/fonts/FontAwesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/FontAwesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /web/fonts/OpenSans/OpenSans-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/OpenSans/OpenSans-Bold.eot -------------------------------------------------------------------------------- /web/fonts/OpenSans/OpenSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/OpenSans/OpenSans-Bold.woff -------------------------------------------------------------------------------- /web/fonts/OpenSans/OpenSans-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/OpenSans/OpenSans-Regular.eot -------------------------------------------------------------------------------- /web/fonts/OpenSans/OpenSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/OpenSans/OpenSans-Regular.woff -------------------------------------------------------------------------------- /web/fonts/OpenSans/OpenSans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/OpenSans/OpenSans.css -------------------------------------------------------------------------------- /web/fonts/Roboto/Roboto-Black-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/Roboto/Roboto-Black-webfont.eot -------------------------------------------------------------------------------- /web/fonts/Roboto/Roboto-Black-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/Roboto/Roboto-Black-webfont.woff -------------------------------------------------------------------------------- /web/fonts/Roboto/Roboto-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/Roboto/Roboto-Bold-webfont.eot -------------------------------------------------------------------------------- /web/fonts/Roboto/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/Roboto/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /web/fonts/Roboto/Roboto-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/Roboto/Roboto-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /web/fonts/Roboto/Roboto-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/Roboto/Roboto-Italic-webfont.eot -------------------------------------------------------------------------------- /web/fonts/Roboto/Roboto-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/Roboto/Roboto-Italic-webfont.woff -------------------------------------------------------------------------------- /web/fonts/Roboto/Roboto-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/Roboto/Roboto-Regular-webfont.eot -------------------------------------------------------------------------------- /web/fonts/Roboto/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/Roboto/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /web/fonts/Roboto/Roboto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/fonts/Roboto/Roboto.css -------------------------------------------------------------------------------- /web/frontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/frontend.php -------------------------------------------------------------------------------- /web/frontend_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/frontend_dev.php -------------------------------------------------------------------------------- /web/frontend_stress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/frontend_stress.php -------------------------------------------------------------------------------- /web/images_static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/.htaccess -------------------------------------------------------------------------------- /web/images_static/bg_button.spr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/bg_button.spr.png -------------------------------------------------------------------------------- /web/images_static/bg_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/bg_footer.png -------------------------------------------------------------------------------- /web/images_static/bg_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/bg_header.png -------------------------------------------------------------------------------- /web/images_static/bg_signbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/bg_signbox.png -------------------------------------------------------------------------------- /web/images_static/bg_twitter_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/bg_twitter_bubble.png -------------------------------------------------------------------------------- /web/images_static/charity-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/charity-32.png -------------------------------------------------------------------------------- /web/images_static/charity-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/charity-64.png -------------------------------------------------------------------------------- /web/images_static/clipboard-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/clipboard-64.png -------------------------------------------------------------------------------- /web/images_static/code-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/code-32.png -------------------------------------------------------------------------------- /web/images_static/code-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/code-64.png -------------------------------------------------------------------------------- /web/images_static/email-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/email-32.png -------------------------------------------------------------------------------- /web/images_static/email-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/email-64.png -------------------------------------------------------------------------------- /web/images_static/facebook-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/facebook-32.png -------------------------------------------------------------------------------- /web/images_static/facebook-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/facebook-64.png -------------------------------------------------------------------------------- /web/images_static/googleplus-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/googleplus-32.png -------------------------------------------------------------------------------- /web/images_static/icon_rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/icon_rss.png -------------------------------------------------------------------------------- /web/images_static/line_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/line_tab.png -------------------------------------------------------------------------------- /web/images_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/logo.png -------------------------------------------------------------------------------- /web/images_static/markitup-policat-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/markitup-policat-block.png -------------------------------------------------------------------------------- /web/images_static/markitup-policat-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/markitup-policat-link.png -------------------------------------------------------------------------------- /web/images_static/markitup-policat-media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/markitup-policat-media.png -------------------------------------------------------------------------------- /web/images_static/pay-direct-debit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/pay-direct-debit.png -------------------------------------------------------------------------------- /web/images_static/pay-maestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/pay-maestro.png -------------------------------------------------------------------------------- /web/images_static/pay-mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/pay-mastercard.png -------------------------------------------------------------------------------- /web/images_static/pay-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/pay-paypal.png -------------------------------------------------------------------------------- /web/images_static/pay-visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/pay-visa.png -------------------------------------------------------------------------------- /web/images_static/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/pixel.png -------------------------------------------------------------------------------- /web/images_static/pledge.spr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/pledge.spr.png -------------------------------------------------------------------------------- /web/images_static/policat_test_keyvisual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/policat_test_keyvisual.png -------------------------------------------------------------------------------- /web/images_static/twitter-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/twitter-32.png -------------------------------------------------------------------------------- /web/images_static/twitter-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/twitter-64.png -------------------------------------------------------------------------------- /web/images_static/underline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/underline1.png -------------------------------------------------------------------------------- /web/images_static/whatsapp-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/whatsapp-32.png -------------------------------------------------------------------------------- /web/images_static/whatsapp-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/images_static/whatsapp-64.png -------------------------------------------------------------------------------- /web/js/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/.htaccess -------------------------------------------------------------------------------- /web/js/counterbar_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/counterbar_generator.js -------------------------------------------------------------------------------- /web/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/dashboard.js -------------------------------------------------------------------------------- /web/js/dashboard_home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/dashboard_home.js -------------------------------------------------------------------------------- /web/js/lib/iframeResizer/iframeResizer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/lib/iframeResizer/iframeResizer.min.js -------------------------------------------------------------------------------- /web/js/policat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/policat.js -------------------------------------------------------------------------------- /web/js/policat_counterbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/policat_counterbar.js -------------------------------------------------------------------------------- /web/js/policat_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/policat_widget.js -------------------------------------------------------------------------------- /web/js/policat_widget_outer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/policat_widget_outer.js -------------------------------------------------------------------------------- /web/js/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/preview.html -------------------------------------------------------------------------------- /web/js/signers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/js/signers.js -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/robots.txt -------------------------------------------------------------------------------- /web/sf: -------------------------------------------------------------------------------- 1 | ../lib/vendor/lexpress/symfony1/data/web/sf -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/css/default.css -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/css/global.css -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/asc.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/default.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/delete.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/desc.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/edit.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/error.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/first.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/last.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/list.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/new.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/next.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/previous.png -------------------------------------------------------------------------------- /web/sfDoctrinePlugin/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfDoctrinePlugin/images/tick.png -------------------------------------------------------------------------------- /web/sfFormExtraPlugin/images/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfFormExtraPlugin/images/indicator.gif -------------------------------------------------------------------------------- /web/sfFormExtraPlugin/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfFormExtraPlugin/images/next.png -------------------------------------------------------------------------------- /web/sfFormExtraPlugin/images/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfFormExtraPlugin/images/previous.png -------------------------------------------------------------------------------- /web/sfFormExtraPlugin/js/double_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/sfFormExtraPlugin/js/double_list.js -------------------------------------------------------------------------------- /web/widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/widget.php -------------------------------------------------------------------------------- /web/widget_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/widget_dev.php -------------------------------------------------------------------------------- /web/widget_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/widget_page.html -------------------------------------------------------------------------------- /web/widget_stress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webvariants/policat/HEAD/web/widget_stress.php --------------------------------------------------------------------------------